blob: 5dee4a0bb49fa2aaf345995220d9fe6629351ef5 [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
9#include <linux/slab.h>
Alexey Dobriyan4af3c9c2007-10-16 23:29:23 -070010#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/shm.h>
13#include <linux/mman.h>
14#include <linux/pagemap.h>
15#include <linux/swap.h>
16#include <linux/syscalls.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080017#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
19#include <linux/file.h>
20#include <linux/fs.h>
21#include <linux/personality.h>
22#include <linux/security.h>
23#include <linux/hugetlb.h>
24#include <linux/profile.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mount.h>
27#include <linux/mempolicy.h>
28#include <linux/rmap.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070029#include <linux/mmu_notifier.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020030#include <linux/perf_event.h>
Al Viro120a7952010-10-30 02:54:44 -040031#include <linux/audit.h>
Andrea Arcangelib15d00b2011-01-13 15:46:59 -080032#include <linux/khugepaged.h>
Srikar Dronamraju2b144492012-02-09 14:56:42 +053033#include <linux/uprobes.h>
Michel Lespinassed3737182012-12-11 16:01:38 -080034#include <linux/rbtree_augmented.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060035#include <linux/sched/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/uaccess.h>
38#include <asm/cacheflush.h>
39#include <asm/tlb.h>
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +020040#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jan Beulich42b77722008-07-23 21:27:10 -070042#include "internal.h"
43
Kirill Korotaev3a459752006-09-07 14:17:04 +040044#ifndef arch_mmap_check
45#define arch_mmap_check(addr, len, flags) (0)
46#endif
47
Martin Schwidefsky08e7d9b2008-02-04 22:29:16 -080048#ifndef arch_rebalance_pgtables
49#define arch_rebalance_pgtables(addr, len) (addr)
50#endif
51
Hugh Dickinse0da3822005-04-19 13:29:15 -070052static void unmap_region(struct mm_struct *mm,
53 struct vm_area_struct *vma, struct vm_area_struct *prev,
54 unsigned long start, unsigned long end);
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* description of effects of mapping type and prot in current implementation.
57 * this is due to the limited x86 page protection hardware. The expected
58 * behavior is in parens:
59 *
60 * map_type prot
61 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
62 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
63 * w: (no) no w: (no) no w: (yes) yes w: (no) no
64 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
65 *
66 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
67 * w: (no) no w: (no) no w: (copy) copy w: (no) no
68 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
69 *
70 */
71pgprot_t protection_map[16] = {
72 __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
73 __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
74};
75
Hugh Dickins804af2c2006-07-26 21:39:49 +010076pgprot_t vm_get_page_prot(unsigned long vm_flags)
77{
Dave Kleikampb845f312008-07-08 00:28:51 +100078 return __pgprot(pgprot_val(protection_map[vm_flags &
79 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
80 pgprot_val(arch_vm_get_page_prot(vm_flags)));
Hugh Dickins804af2c2006-07-26 21:39:49 +010081}
82EXPORT_SYMBOL(vm_get_page_prot);
83
Shaohua Li34679d72011-05-24 17:11:18 -070084int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS; /* heuristic overcommit */
85int sysctl_overcommit_ratio __read_mostly = 50; /* default is 50% */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070086int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
Shaohua Li34679d72011-05-24 17:11:18 -070087/*
88 * Make sure vm_committed_as in one cacheline and not cacheline shared with
89 * other variables. It can be updated by several CPUs frequently.
90 */
91struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
K. Y. Srinivasan997071b2012-11-15 14:34:42 -080094 * The global memory commitment made in the system can be a metric
95 * that can be used to drive ballooning decisions when Linux is hosted
96 * as a guest. On Hyper-V, the host implements a policy engine for dynamically
97 * balancing memory across competing virtual machines that are hosted.
98 * Several metrics drive this policy engine including the guest reported
99 * memory commitment.
100 */
101unsigned long vm_memory_committed(void)
102{
103 return percpu_counter_read_positive(&vm_committed_as);
104}
105EXPORT_SYMBOL_GPL(vm_memory_committed);
106
107/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * Check that a process has enough memory to allocate a new virtual
109 * mapping. 0 means there is enough memory for the allocation to
110 * succeed and -ENOMEM implies there is not.
111 *
112 * We currently support three overcommit policies, which are set via the
113 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting
114 *
115 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
116 * Additional code 2002 Jul 20 by Robert Love.
117 *
118 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
119 *
120 * Note this is a helper function intended to be used by LSMs which
121 * wish to use this logic.
122 */
Alan Cox34b4e4a2007-08-22 14:01:28 -0700123int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 unsigned long free, allowed;
126
127 vm_acct_memory(pages);
128
129 /*
130 * Sometimes we want to use more memory than we have
131 */
132 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
133 return 0;
134
135 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
Dmitry Finkc15bef32011-07-25 17:12:19 -0700136 free = global_page_state(NR_FREE_PAGES);
137 free += global_page_state(NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Dmitry Finkc15bef32011-07-25 17:12:19 -0700139 /*
140 * shmem pages shouldn't be counted as free in this
141 * case, they can't be purged, only swapped out, and
142 * that won't affect the overall amount of available
143 * memory in the system.
144 */
145 free -= global_page_state(NR_SHMEM);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 free += nr_swap_pages;
148
149 /*
150 * Any slabs which are created with the
151 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
152 * which are reclaimable, under pressure. The dentry
153 * cache and most inode caches should fall into this
154 */
Christoph Lameter972d1a72006-09-25 23:31:51 -0700155 free += global_page_state(NR_SLAB_RECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /*
Dmitry Finkc15bef32011-07-25 17:12:19 -0700158 * Leave reserved pages. The pages are not for anonymous pages.
159 */
160 if (free <= totalreserve_pages)
161 goto error;
162 else
163 free -= totalreserve_pages;
164
165 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * Leave the last 3% for root
167 */
168 if (!cap_sys_admin)
169 free -= free / 32;
170
171 if (free > pages)
172 return 0;
173
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700174 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 allowed = (totalram_pages - hugetlb_total_pages())
178 * sysctl_overcommit_ratio / 100;
179 /*
180 * Leave the last 3% for root
181 */
182 if (!cap_sys_admin)
183 allowed -= allowed / 32;
184 allowed += total_swap_pages;
185
186 /* Don't let a single process grow too big:
187 leave 3% of the size of this process for other processes */
Alan Cox731572d2008-10-29 14:01:20 -0700188 if (mm)
189 allowed -= mm->total_vm / 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -0700191 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return 0;
Hideo AOKI6d9f7832006-04-10 22:53:00 -0700193error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 vm_unacct_memory(pages);
195
196 return -ENOMEM;
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700200 * Requires inode->i_mapping->i_mmap_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 */
202static void __remove_shared_vm_struct(struct vm_area_struct *vma,
203 struct file *file, struct address_space *mapping)
204{
205 if (vma->vm_flags & VM_DENYWRITE)
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -0800206 atomic_inc(&file->f_path.dentry->d_inode->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (vma->vm_flags & VM_SHARED)
208 mapping->i_mmap_writable--;
209
210 flush_dcache_mmap_lock(mapping);
211 if (unlikely(vma->vm_flags & VM_NONLINEAR))
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700212 list_del_init(&vma->shared.nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 else
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700214 vma_interval_tree_remove(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 flush_dcache_mmap_unlock(mapping);
216}
217
218/*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700219 * Unlink a file-based vm structure from its interval tree, to hide
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700220 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700222void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct file *file = vma->vm_file;
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (file) {
227 struct address_space *mapping = file->f_mapping;
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700228 mutex_lock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 __remove_shared_vm_struct(vma, file, mapping);
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700230 mutex_unlock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700232}
233
234/*
235 * Close a vm structure and free it, returning the next.
236 */
237static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
238{
239 struct vm_area_struct *next = vma->vm_next;
240
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700241 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (vma->vm_ops && vma->vm_ops->close)
243 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700244 if (vma->vm_file)
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700245 fput(vma->vm_file);
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700246 mpol_put(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700248 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700251static unsigned long do_brk(unsigned long addr, unsigned long len);
252
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100253SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 unsigned long rlim, retval;
256 unsigned long newbrk, oldbrk;
257 struct mm_struct *mm = current->mm;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700258 unsigned long min_brk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 down_write(&mm->mmap_sem);
261
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700262#ifdef CONFIG_COMPAT_BRK
Jiri Kosina5520e892011-01-13 15:47:23 -0800263 /*
264 * CONFIG_COMPAT_BRK can still be overridden by setting
265 * randomize_va_space to 2, which will still cause mm->start_brk
266 * to be arbitrarily shifted
267 */
Jiri Kosina4471a672011-04-14 15:22:09 -0700268 if (current->brk_randomized)
Jiri Kosina5520e892011-01-13 15:47:23 -0800269 min_brk = mm->start_brk;
270 else
271 min_brk = mm->end_data;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700272#else
273 min_brk = mm->start_brk;
274#endif
275 if (brk < min_brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 goto out;
Ram Gupta1e624192006-04-10 22:52:57 -0700277
278 /*
279 * Check against rlimit here. If this check is done later after the test
280 * of oldbrk with newbrk then it can escape the test and let the data
281 * segment grow beyond its set limit the in case where the limit is
282 * not page aligned -Ram Gupta
283 */
Jiri Slaby59e99e52010-03-05 13:41:44 -0800284 rlim = rlimit(RLIMIT_DATA);
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100285 if (rlim < RLIM_INFINITY && (brk - mm->start_brk) +
286 (mm->end_data - mm->start_data) > rlim)
Ram Gupta1e624192006-04-10 22:52:57 -0700287 goto out;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 newbrk = PAGE_ALIGN(brk);
290 oldbrk = PAGE_ALIGN(mm->brk);
291 if (oldbrk == newbrk)
292 goto set_brk;
293
294 /* Always allow shrinking brk. */
295 if (brk <= mm->brk) {
296 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
297 goto set_brk;
298 goto out;
299 }
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* Check against existing mmap mappings. */
302 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
303 goto out;
304
305 /* Ok, looks good - let it rip. */
306 if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk)
307 goto out;
308set_brk:
309 mm->brk = brk;
310out:
311 retval = mm->brk;
312 up_write(&mm->mmap_sem);
313 return retval;
314}
315
Michel Lespinassed3737182012-12-11 16:01:38 -0800316static long vma_compute_subtree_gap(struct vm_area_struct *vma)
317{
318 unsigned long max, subtree_gap;
319 max = vma->vm_start;
320 if (vma->vm_prev)
321 max -= vma->vm_prev->vm_end;
322 if (vma->vm_rb.rb_left) {
323 subtree_gap = rb_entry(vma->vm_rb.rb_left,
324 struct vm_area_struct, vm_rb)->rb_subtree_gap;
325 if (subtree_gap > max)
326 max = subtree_gap;
327 }
328 if (vma->vm_rb.rb_right) {
329 subtree_gap = rb_entry(vma->vm_rb.rb_right,
330 struct vm_area_struct, vm_rb)->rb_subtree_gap;
331 if (subtree_gap > max)
332 max = subtree_gap;
333 }
334 return max;
335}
336
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700337#ifdef CONFIG_DEBUG_VM_RB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static int browse_rb(struct rb_root *root)
339{
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800340 int i = 0, j, bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct rb_node *nd, *pn = NULL;
342 unsigned long prev = 0, pend = 0;
343
344 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
345 struct vm_area_struct *vma;
346 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800347 if (vma->vm_start < prev) {
348 printk("vm_start %lx prev %lx\n", vma->vm_start, prev);
349 bug = 1;
350 }
351 if (vma->vm_start < pend) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 printk("vm_start %lx pend %lx\n", vma->vm_start, pend);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800353 bug = 1;
354 }
355 if (vma->vm_start > vma->vm_end) {
356 printk("vm_end %lx < vm_start %lx\n",
357 vma->vm_end, vma->vm_start);
358 bug = 1;
359 }
360 if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
361 printk("free gap %lx, correct %lx\n",
362 vma->rb_subtree_gap,
363 vma_compute_subtree_gap(vma));
364 bug = 1;
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 i++;
367 pn = nd;
David Millerd1af65d2007-02-28 20:13:13 -0800368 prev = vma->vm_start;
369 pend = vma->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371 j = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800372 for (nd = pn; nd; nd = rb_prev(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 j++;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800374 if (i != j) {
375 printk("backwards %d, forwards %d\n", j, i);
376 bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800378 return bug ? -1 : i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Michel Lespinassed3737182012-12-11 16:01:38 -0800381static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
382{
383 struct rb_node *nd;
384
385 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
386 struct vm_area_struct *vma;
387 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
388 BUG_ON(vma != ignore &&
389 vma->rb_subtree_gap != vma_compute_subtree_gap(vma));
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393void validate_mm(struct mm_struct *mm)
394{
395 int bug = 0;
396 int i = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800397 unsigned long highest_address = 0;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700398 struct vm_area_struct *vma = mm->mmap;
399 while (vma) {
400 struct anon_vma_chain *avc;
Michel Lespinasse63c3b902012-11-16 14:14:47 -0800401 vma_lock_anon_vma(vma);
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700402 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
403 anon_vma_interval_tree_verify(avc);
Michel Lespinasse63c3b902012-11-16 14:14:47 -0800404 vma_unlock_anon_vma(vma);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800405 highest_address = vma->vm_end;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700406 vma = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 i++;
408 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800409 if (i != mm->map_count) {
410 printk("map_count %d vm_next %d\n", mm->map_count, i);
411 bug = 1;
412 }
413 if (highest_address != mm->highest_vm_end) {
414 printk("mm->highest_vm_end %lx, found %lx\n",
415 mm->highest_vm_end, highest_address);
416 bug = 1;
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 i = browse_rb(&mm->mm_rb);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800419 if (i != mm->map_count) {
420 printk("map_count %d rb %d\n", mm->map_count, i);
421 bug = 1;
422 }
Eric Sesterhenn46a350e2006-04-01 01:23:29 +0200423 BUG_ON(bug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425#else
Michel Lespinassed3737182012-12-11 16:01:38 -0800426#define validate_mm_rb(root, ignore) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#define validate_mm(mm) do { } while (0)
428#endif
429
Michel Lespinassed3737182012-12-11 16:01:38 -0800430RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb,
431 unsigned long, rb_subtree_gap, vma_compute_subtree_gap)
432
433/*
434 * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
435 * vma->vm_prev->vm_end values changed, without modifying the vma's position
436 * in the rbtree.
437 */
438static void vma_gap_update(struct vm_area_struct *vma)
439{
440 /*
441 * As it turns out, RB_DECLARE_CALLBACKS() already created a callback
442 * function that does exacltly what we want.
443 */
444 vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
445}
446
447static inline void vma_rb_insert(struct vm_area_struct *vma,
448 struct rb_root *root)
449{
450 /* All rb_subtree_gap values must be consistent prior to insertion */
451 validate_mm_rb(root, NULL);
452
453 rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
454}
455
456static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
457{
458 /*
459 * All rb_subtree_gap values must be consistent prior to erase,
460 * with the possible exception of the vma being erased.
461 */
462 validate_mm_rb(root, vma);
463
464 /*
465 * Note rb_erase_augmented is a fairly large inline function,
466 * so make sure we instantiate it only once with our desired
467 * augmented rbtree callbacks.
468 */
469 rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
470}
471
Michel Lespinassebf181b92012-10-08 16:31:39 -0700472/*
473 * vma has some anon_vma assigned, and is already inserted on that
474 * anon_vma's interval trees.
475 *
476 * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
477 * vma must be removed from the anon_vma's interval trees using
478 * anon_vma_interval_tree_pre_update_vma().
479 *
480 * After the update, the vma will be reinserted using
481 * anon_vma_interval_tree_post_update_vma().
482 *
483 * The entire update must be protected by exclusive mmap_sem and by
484 * the root anon_vma's mutex.
485 */
486static inline void
487anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
488{
489 struct anon_vma_chain *avc;
490
491 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
492 anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
493}
494
495static inline void
496anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
497{
498 struct anon_vma_chain *avc;
499
500 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
501 anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
502}
503
Hugh Dickins6597d782012-10-08 16:29:07 -0700504static int find_vma_links(struct mm_struct *mm, unsigned long addr,
505 unsigned long end, struct vm_area_struct **pprev,
506 struct rb_node ***rb_link, struct rb_node **rb_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Hugh Dickins6597d782012-10-08 16:29:07 -0700508 struct rb_node **__rb_link, *__rb_parent, *rb_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 __rb_link = &mm->mm_rb.rb_node;
511 rb_prev = __rb_parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 while (*__rb_link) {
514 struct vm_area_struct *vma_tmp;
515
516 __rb_parent = *__rb_link;
517 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
518
519 if (vma_tmp->vm_end > addr) {
Hugh Dickins6597d782012-10-08 16:29:07 -0700520 /* Fail if an existing vma overlaps the area */
521 if (vma_tmp->vm_start < end)
522 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 __rb_link = &__rb_parent->rb_left;
524 } else {
525 rb_prev = __rb_parent;
526 __rb_link = &__rb_parent->rb_right;
527 }
528 }
529
530 *pprev = NULL;
531 if (rb_prev)
532 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
533 *rb_link = __rb_link;
534 *rb_parent = __rb_parent;
Hugh Dickins6597d782012-10-08 16:29:07 -0700535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
539 struct rb_node **rb_link, struct rb_node *rb_parent)
540{
Michel Lespinassed3737182012-12-11 16:01:38 -0800541 /* Update tracking information for the gap following the new vma. */
542 if (vma->vm_next)
543 vma_gap_update(vma->vm_next);
544 else
545 mm->highest_vm_end = vma->vm_end;
546
547 /*
548 * vma->vm_prev wasn't known when we followed the rbtree to find the
549 * correct insertion point for that vma. As a result, we could not
550 * update the vma vm_rb parents rb_subtree_gap values on the way down.
551 * So, we first insert the vma with a zero rb_subtree_gap value
552 * (to be consistent with what we did on the way down), and then
553 * immediately update the gap to the correct value. Finally we
554 * rebalance the rbtree after all augmented values have been set.
555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
Michel Lespinassed3737182012-12-11 16:01:38 -0800557 vma->rb_subtree_gap = 0;
558 vma_gap_update(vma);
559 vma_rb_insert(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Denys Vlasenkocb8f4882008-10-18 20:27:01 -0700562static void __vma_link_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
ZhenwenXu48aae422009-01-06 14:40:21 -0800564 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 file = vma->vm_file;
567 if (file) {
568 struct address_space *mapping = file->f_mapping;
569
570 if (vma->vm_flags & VM_DENYWRITE)
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -0800571 atomic_dec(&file->f_path.dentry->d_inode->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (vma->vm_flags & VM_SHARED)
573 mapping->i_mmap_writable++;
574
575 flush_dcache_mmap_lock(mapping);
576 if (unlikely(vma->vm_flags & VM_NONLINEAR))
577 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
578 else
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700579 vma_interval_tree_insert(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 flush_dcache_mmap_unlock(mapping);
581 }
582}
583
584static void
585__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
586 struct vm_area_struct *prev, struct rb_node **rb_link,
587 struct rb_node *rb_parent)
588{
589 __vma_link_list(mm, vma, prev, rb_parent);
590 __vma_link_rb(mm, vma, rb_link, rb_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
594 struct vm_area_struct *prev, struct rb_node **rb_link,
595 struct rb_node *rb_parent)
596{
597 struct address_space *mapping = NULL;
598
599 if (vma->vm_file)
600 mapping = vma->vm_file->f_mapping;
601
Peter Zijlstra97a89412011-05-24 17:12:04 -0700602 if (mapping)
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700603 mutex_lock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 __vma_link(mm, vma, prev, rb_link, rb_parent);
606 __vma_link_file(vma);
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (mapping)
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700609 mutex_unlock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 mm->map_count++;
612 validate_mm(mm);
613}
614
615/*
Kautuk Consul88f6b4c2012-03-21 16:34:16 -0700616 * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700617 * mm's list and rbtree. It has already been inserted into the interval tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
ZhenwenXu48aae422009-01-06 14:40:21 -0800619static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Hugh Dickins6597d782012-10-08 16:29:07 -0700621 struct vm_area_struct *prev;
ZhenwenXu48aae422009-01-06 14:40:21 -0800622 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Hugh Dickins6597d782012-10-08 16:29:07 -0700624 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
625 &prev, &rb_link, &rb_parent))
626 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 __vma_link(mm, vma, prev, rb_link, rb_parent);
628 mm->map_count++;
629}
630
631static inline void
632__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
633 struct vm_area_struct *prev)
634{
Michel Lespinassed3737182012-12-11 16:01:38 -0800635 struct vm_area_struct *next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700636
Michel Lespinassed3737182012-12-11 16:01:38 -0800637 vma_rb_erase(vma, &mm->mm_rb);
638 prev->vm_next = next = vma->vm_next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700639 if (next)
640 next->vm_prev = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (mm->mmap_cache == vma)
642 mm->mmap_cache = prev;
643}
644
645/*
646 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
647 * is already present in an i_mmap tree without adjusting the tree.
648 * The following helper function should be used when such adjustments
649 * are necessary. The "insert" vma (if any) is to be inserted
650 * before we drop the necessary locks.
651 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800652int vma_adjust(struct vm_area_struct *vma, unsigned long start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
654{
655 struct mm_struct *mm = vma->vm_mm;
656 struct vm_area_struct *next = vma->vm_next;
657 struct vm_area_struct *importer = NULL;
658 struct address_space *mapping = NULL;
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700659 struct rb_root *root = NULL;
Rik van Riel012f18002010-08-09 17:18:40 -0700660 struct anon_vma *anon_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 struct file *file = vma->vm_file;
Michel Lespinassed3737182012-12-11 16:01:38 -0800662 bool start_changed = false, end_changed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 long adjust_next = 0;
664 int remove_next = 0;
665
666 if (next && !insert) {
Linus Torvalds287d97a2010-04-10 15:22:30 -0700667 struct vm_area_struct *exporter = NULL;
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (end >= next->vm_end) {
670 /*
671 * vma expands, overlapping all the next, and
672 * perhaps the one after too (mprotect case 6).
673 */
674again: remove_next = 1 + (end > next->vm_end);
675 end = next->vm_end;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700676 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 importer = vma;
678 } else if (end > next->vm_start) {
679 /*
680 * vma expands, overlapping part of the next:
681 * mprotect case 5 shifting the boundary up.
682 */
683 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700684 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 importer = vma;
686 } else if (end < vma->vm_end) {
687 /*
688 * vma shrinks, and !insert tells it's not
689 * split_vma inserting another: so it must be
690 * mprotect case 4 shifting the boundary down.
691 */
692 adjust_next = - ((vma->vm_end - end) >> PAGE_SHIFT);
Linus Torvalds287d97a2010-04-10 15:22:30 -0700693 exporter = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 importer = next;
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Rik van Riel5beb4932010-03-05 13:42:07 -0800697 /*
698 * Easily overlooked: when mprotect shifts the boundary,
699 * make sure the expanding vma has anon_vma set if the
700 * shrinking vma had, to cover any anon pages imported.
701 */
Linus Torvalds287d97a2010-04-10 15:22:30 -0700702 if (exporter && exporter->anon_vma && !importer->anon_vma) {
703 if (anon_vma_clone(importer, exporter))
Rik van Riel5beb4932010-03-05 13:42:07 -0800704 return -ENOMEM;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700705 importer->anon_vma = exporter->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -0800706 }
707 }
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (file) {
710 mapping = file->f_mapping;
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530711 if (!(vma->vm_flags & VM_NONLINEAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 root = &mapping->i_mmap;
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530713 uprobe_munmap(vma, vma->vm_start, vma->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530714
715 if (adjust_next)
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530716 uprobe_munmap(next, next->vm_start,
717 next->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530718 }
719
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700720 mutex_lock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (insert) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700723 * Put into interval tree now, so instantiated pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * are visible to arm/parisc __flush_dcache_page
725 * throughout; but we cannot insert into address
726 * space until vma start or end is updated.
727 */
728 __vma_link_file(insert);
729 }
730 }
731
Andrea Arcangeli94fcc582011-01-13 15:47:08 -0800732 vma_adjust_trans_huge(vma, start, end, adjust_next);
733
Michel Lespinassebf181b92012-10-08 16:31:39 -0700734 anon_vma = vma->anon_vma;
735 if (!anon_vma && adjust_next)
736 anon_vma = next->anon_vma;
737 if (anon_vma) {
Michel Lespinasseca42b262012-10-08 16:30:01 -0700738 VM_BUG_ON(adjust_next && next->anon_vma &&
739 anon_vma != next->anon_vma);
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000740 anon_vma_lock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700741 anon_vma_interval_tree_pre_update_vma(vma);
742 if (adjust_next)
743 anon_vma_interval_tree_pre_update_vma(next);
744 }
Rik van Riel012f18002010-08-09 17:18:40 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (root) {
747 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700748 vma_interval_tree_remove(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700750 vma_interval_tree_remove(next, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752
Michel Lespinassed3737182012-12-11 16:01:38 -0800753 if (start != vma->vm_start) {
754 vma->vm_start = start;
755 start_changed = true;
756 }
757 if (end != vma->vm_end) {
758 vma->vm_end = end;
759 end_changed = true;
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 vma->vm_pgoff = pgoff;
762 if (adjust_next) {
763 next->vm_start += adjust_next << PAGE_SHIFT;
764 next->vm_pgoff += adjust_next;
765 }
766
767 if (root) {
768 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700769 vma_interval_tree_insert(next, root);
770 vma_interval_tree_insert(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 flush_dcache_mmap_unlock(mapping);
772 }
773
774 if (remove_next) {
775 /*
776 * vma_merge has merged next into vma, and needs
777 * us to remove next before dropping the locks.
778 */
779 __vma_unlink(mm, next, vma);
780 if (file)
781 __remove_shared_vm_struct(next, file, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 } else if (insert) {
783 /*
784 * split_vma has split insert from vma, and needs
785 * us to insert it before dropping the locks
786 * (it may either follow vma or precede it).
787 */
788 __insert_vm_struct(mm, insert);
Michel Lespinassed3737182012-12-11 16:01:38 -0800789 } else {
790 if (start_changed)
791 vma_gap_update(vma);
792 if (end_changed) {
793 if (!next)
794 mm->highest_vm_end = end;
795 else if (!adjust_next)
796 vma_gap_update(next);
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
Michel Lespinassebf181b92012-10-08 16:31:39 -0700800 if (anon_vma) {
801 anon_vma_interval_tree_post_update_vma(vma);
802 if (adjust_next)
803 anon_vma_interval_tree_post_update_vma(next);
Rik van Riel012f18002010-08-09 17:18:40 -0700804 anon_vma_unlock(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (mapping)
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700807 mutex_unlock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530809 if (root) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100810 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530811
812 if (adjust_next)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100813 uprobe_mmap(next);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530814 }
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (remove_next) {
Matt Helsley925d1c42008-04-29 01:01:36 -0700817 if (file) {
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530818 uprobe_munmap(next, next->vm_start, next->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 fput(file);
Matt Helsley925d1c42008-04-29 01:01:36 -0700820 }
Rik van Riel5beb4932010-03-05 13:42:07 -0800821 if (next->anon_vma)
822 anon_vma_merge(vma, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 mm->map_count--;
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700824 mpol_put(vma_policy(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 kmem_cache_free(vm_area_cachep, next);
826 /*
827 * In mprotect's case 6 (see comments on vma_merge),
828 * we must remove another next too. It would clutter
829 * up the code too much to do both in one go.
830 */
Michel Lespinassed3737182012-12-11 16:01:38 -0800831 next = vma->vm_next;
832 if (remove_next == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 goto again;
Michel Lespinassed3737182012-12-11 16:01:38 -0800834 else if (next)
835 vma_gap_update(next);
836 else
837 mm->highest_vm_end = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530839 if (insert && file)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100840 uprobe_mmap(insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 validate_mm(mm);
Rik van Riel5beb4932010-03-05 13:42:07 -0800843
844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
847/*
848 * If the vma has a ->close operation then the driver probably needs to release
849 * per-vma resources, so we don't attempt to merge those.
850 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851static inline int is_mergeable_vma(struct vm_area_struct *vma,
852 struct file *file, unsigned long vm_flags)
853{
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -0700854 if (vma->vm_flags ^ vm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return 0;
856 if (vma->vm_file != file)
857 return 0;
858 if (vma->vm_ops && vma->vm_ops->close)
859 return 0;
860 return 1;
861}
862
863static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
Shaohua Li965f55d2011-05-24 17:11:20 -0700864 struct anon_vma *anon_vma2,
865 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Shaohua Li965f55d2011-05-24 17:11:20 -0700867 /*
868 * The list_is_singular() test is to avoid merging VMA cloned from
869 * parents. This can improve scalability caused by anon_vma lock.
870 */
871 if ((!anon_vma1 || !anon_vma2) && (!vma ||
872 list_is_singular(&vma->anon_vma_chain)))
873 return 1;
874 return anon_vma1 == anon_vma2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877/*
878 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
879 * in front of (at a lower virtual address and file offset than) the vma.
880 *
881 * We cannot merge two vmas if they have differently assigned (non-NULL)
882 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
883 *
884 * We don't check here for the merged mmap wrapping around the end of pagecache
885 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
886 * wrap, nor mmaps which cover the final page at index -1UL.
887 */
888static int
889can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
890 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
891{
892 if (is_mergeable_vma(vma, file, vm_flags) &&
Shaohua Li965f55d2011-05-24 17:11:20 -0700893 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (vma->vm_pgoff == vm_pgoff)
895 return 1;
896 }
897 return 0;
898}
899
900/*
901 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
902 * beyond (at a higher virtual address and file offset than) the vma.
903 *
904 * We cannot merge two vmas if they have differently assigned (non-NULL)
905 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
906 */
907static int
908can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
909 struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
910{
911 if (is_mergeable_vma(vma, file, vm_flags) &&
Shaohua Li965f55d2011-05-24 17:11:20 -0700912 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 pgoff_t vm_pglen;
914 vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
915 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
916 return 1;
917 }
918 return 0;
919}
920
921/*
922 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
923 * whether that can be merged with its predecessor or its successor.
924 * Or both (it neatly fills a hole).
925 *
926 * In most cases - when called for mmap, brk or mremap - [addr,end) is
927 * certain not to be mapped by the time vma_merge is called; but when
928 * called for mprotect, it is certain to be already mapped (either at
929 * an offset within prev, or at the start of next), and the flags of
930 * this area are about to be changed to vm_flags - and the no-change
931 * case has already been eliminated.
932 *
933 * The following mprotect cases have to be considered, where AAAA is
934 * the area passed down from mprotect_fixup, never extending beyond one
935 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
936 *
937 * AAAA AAAA AAAA AAAA
938 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
939 * cannot merge might become might become might become
940 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
941 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
942 * mremap move: PPPPNNNNNNNN 8
943 * AAAA
944 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
945 * might become case 1 below case 2 below case 3 below
946 *
947 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
948 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
949 */
950struct vm_area_struct *vma_merge(struct mm_struct *mm,
951 struct vm_area_struct *prev, unsigned long addr,
952 unsigned long end, unsigned long vm_flags,
953 struct anon_vma *anon_vma, struct file *file,
954 pgoff_t pgoff, struct mempolicy *policy)
955{
956 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
957 struct vm_area_struct *area, *next;
Rik van Riel5beb4932010-03-05 13:42:07 -0800958 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 /*
961 * We later require that vma->vm_flags == vm_flags,
962 * so this tests vma->vm_flags & VM_SPECIAL, too.
963 */
964 if (vm_flags & VM_SPECIAL)
965 return NULL;
966
967 if (prev)
968 next = prev->vm_next;
969 else
970 next = mm->mmap;
971 area = next;
972 if (next && next->vm_end == end) /* cases 6, 7, 8 */
973 next = next->vm_next;
974
975 /*
976 * Can it merge with the predecessor?
977 */
978 if (prev && prev->vm_end == addr &&
979 mpol_equal(vma_policy(prev), policy) &&
980 can_vma_merge_after(prev, vm_flags,
981 anon_vma, file, pgoff)) {
982 /*
983 * OK, it can. Can we now merge in the successor as well?
984 */
985 if (next && end == next->vm_start &&
986 mpol_equal(policy, vma_policy(next)) &&
987 can_vma_merge_before(next, vm_flags,
988 anon_vma, file, pgoff+pglen) &&
989 is_mergeable_anon_vma(prev->anon_vma,
Shaohua Li965f55d2011-05-24 17:11:20 -0700990 next->anon_vma, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /* cases 1, 6 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800992 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 next->vm_end, prev->vm_pgoff, NULL);
994 } else /* cases 2, 5, 7 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800995 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 end, prev->vm_pgoff, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -0800997 if (err)
998 return NULL;
Andrea Arcangelib15d00b2011-01-13 15:46:59 -0800999 khugepaged_enter_vma_merge(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return prev;
1001 }
1002
1003 /*
1004 * Can this new request be merged in front of next?
1005 */
1006 if (next && end == next->vm_start &&
1007 mpol_equal(policy, vma_policy(next)) &&
1008 can_vma_merge_before(next, vm_flags,
1009 anon_vma, file, pgoff+pglen)) {
1010 if (prev && addr < prev->vm_end) /* case 4 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001011 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 addr, prev->vm_pgoff, NULL);
1013 else /* cases 3, 8 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001014 err = vma_adjust(area, addr, next->vm_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 next->vm_pgoff - pglen, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -08001016 if (err)
1017 return NULL;
Andrea Arcangelib15d00b2011-01-13 15:46:59 -08001018 khugepaged_enter_vma_merge(area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return area;
1020 }
1021
1022 return NULL;
1023}
1024
1025/*
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001026 * Rough compatbility check to quickly see if it's even worth looking
1027 * at sharing an anon_vma.
1028 *
1029 * They need to have the same vm_file, and the flags can only differ
1030 * in things that mprotect may change.
1031 *
1032 * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1033 * we can merge the two vma's. For example, we refuse to merge a vma if
1034 * there is a vm_ops->close() function, because that indicates that the
1035 * driver is doing some kind of reference counting. But that doesn't
1036 * really matter for the anon_vma sharing case.
1037 */
1038static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1039{
1040 return a->vm_end == b->vm_start &&
1041 mpol_equal(vma_policy(a), vma_policy(b)) &&
1042 a->vm_file == b->vm_file &&
1043 !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC)) &&
1044 b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1045}
1046
1047/*
1048 * Do some basic sanity checking to see if we can re-use the anon_vma
1049 * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1050 * the same as 'old', the other will be the new one that is trying
1051 * to share the anon_vma.
1052 *
1053 * NOTE! This runs with mm_sem held for reading, so it is possible that
1054 * the anon_vma of 'old' is concurrently in the process of being set up
1055 * by another page fault trying to merge _that_. But that's ok: if it
1056 * is being set up, that automatically means that it will be a singleton
1057 * acceptable for merging, so we can do all of this optimistically. But
1058 * we do that ACCESS_ONCE() to make sure that we never re-load the pointer.
1059 *
1060 * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1061 * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1062 * is to return an anon_vma that is "complex" due to having gone through
1063 * a fork).
1064 *
1065 * We also make sure that the two vma's are compatible (adjacent,
1066 * and with the same memory policies). That's all stable, even with just
1067 * a read lock on the mm_sem.
1068 */
1069static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1070{
1071 if (anon_vma_compatible(a, b)) {
1072 struct anon_vma *anon_vma = ACCESS_ONCE(old->anon_vma);
1073
1074 if (anon_vma && list_is_singular(&old->anon_vma_chain))
1075 return anon_vma;
1076 }
1077 return NULL;
1078}
1079
1080/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
1082 * neighbouring vmas for a suitable anon_vma, before it goes off
1083 * to allocate a new anon_vma. It checks because a repetitive
1084 * sequence of mprotects and faults may otherwise lead to distinct
1085 * anon_vmas being allocated, preventing vma merge in subsequent
1086 * mprotect.
1087 */
1088struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
1089{
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001090 struct anon_vma *anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct vm_area_struct *near;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 near = vma->vm_next;
1094 if (!near)
1095 goto try_prev;
1096
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001097 anon_vma = reusable_anon_vma(near, vma, near);
1098 if (anon_vma)
1099 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100try_prev:
Linus Torvalds9be34c92011-06-16 00:35:09 -07001101 near = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (!near)
1103 goto none;
1104
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001105 anon_vma = reusable_anon_vma(near, near, vma);
1106 if (anon_vma)
1107 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108none:
1109 /*
1110 * There's no absolute need to look only at touching neighbours:
1111 * we could search further afield for "compatible" anon_vmas.
1112 * But it would probably just be a waste of time searching,
1113 * or lead to too many vmas hanging off the same anon_vma.
1114 * We're trying to allow mprotect remerging later on,
1115 * not trying to minimize memory used for anon_vmas.
1116 */
1117 return NULL;
1118}
1119
1120#ifdef CONFIG_PROC_FS
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001121void vm_stat_account(struct mm_struct *mm, unsigned long flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 struct file *file, long pages)
1123{
1124 const unsigned long stack_flags
1125 = VM_STACK_FLAGS & (VM_GROWSUP|VM_GROWSDOWN);
1126
Huang Shijie44de9d02012-07-31 16:41:49 -07001127 mm->total_vm += pages;
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (file) {
1130 mm->shared_vm += pages;
1131 if ((flags & (VM_EXEC|VM_WRITE)) == VM_EXEC)
1132 mm->exec_vm += pages;
1133 } else if (flags & stack_flags)
1134 mm->stack_vm += pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136#endif /* CONFIG_PROC_FS */
1137
1138/*
Al Viro40401532012-02-13 03:58:52 +00001139 * If a hint addr is less than mmap_min_addr change hint to be as
1140 * low as possible but still greater than mmap_min_addr
1141 */
1142static inline unsigned long round_hint_to_min(unsigned long hint)
1143{
1144 hint &= PAGE_MASK;
1145 if (((void *)hint != NULL) &&
1146 (hint < mmap_min_addr))
1147 return PAGE_ALIGN(mmap_min_addr);
1148 return hint;
1149}
1150
1151/*
Jianjun Kong27f5de72009-09-17 19:26:26 -07001152 * The caller must hold down_write(&current->mm->mmap_sem).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 */
1154
Al Viroe3fc6292012-05-30 20:08:42 -04001155unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 unsigned long len, unsigned long prot,
1157 unsigned long flags, unsigned long pgoff)
1158{
1159 struct mm_struct * mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 struct inode *inode;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001161 vm_flags_t vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 /*
1164 * Does the application expect PROT_READ to imply PROT_EXEC?
1165 *
1166 * (the exception is when the underlying filesystem is noexec
1167 * mounted, in which case we dont add PROT_EXEC.)
1168 */
1169 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001170 if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 prot |= PROT_EXEC;
1172
1173 if (!len)
1174 return -EINVAL;
1175
Eric Paris7cd94142007-11-26 18:47:40 -05001176 if (!(flags & MAP_FIXED))
1177 addr = round_hint_to_min(addr);
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 /* Careful about overflows.. */
1180 len = PAGE_ALIGN(len);
Al Viro9206de92009-12-03 15:23:11 -05001181 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return -ENOMEM;
1183
1184 /* offset overflow? */
1185 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
1186 return -EOVERFLOW;
1187
1188 /* Too many mappings? */
1189 if (mm->map_count > sysctl_max_map_count)
1190 return -ENOMEM;
1191
1192 /* Obtain the address to map to. we verify (or select) it and ensure
1193 * that it represents a valid section of the address space.
1194 */
1195 addr = get_unmapped_area(file, addr, len, pgoff, flags);
1196 if (addr & ~PAGE_MASK)
1197 return addr;
1198
1199 /* Do simple checking here so the lower-level routines won't have
1200 * to. we assume access permissions have been handled by the open
1201 * of the memory object, so we don't do any here.
1202 */
1203 vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
1204 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1205
Huang Shijiecdf7b342009-09-21 17:03:36 -07001206 if (flags & MAP_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!can_do_mlock())
1208 return -EPERM;
Rik van Rielba470de2008-10-18 20:26:50 -07001209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 /* mlock MCL_FUTURE? */
1211 if (vm_flags & VM_LOCKED) {
1212 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07001213 locked = len >> PAGE_SHIFT;
1214 locked += mm->locked_vm;
Jiri Slaby59e99e52010-03-05 13:41:44 -08001215 lock_limit = rlimit(RLIMIT_MEMLOCK);
Chris Wright93ea1d02005-05-01 08:58:38 -07001216 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1218 return -EAGAIN;
1219 }
1220
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001221 inode = file ? file->f_path.dentry->d_inode : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (file) {
1224 switch (flags & MAP_TYPE) {
1225 case MAP_SHARED:
1226 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
1227 return -EACCES;
1228
1229 /*
1230 * Make sure we don't allow writing to an append-only
1231 * file..
1232 */
1233 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
1234 return -EACCES;
1235
1236 /*
1237 * Make sure there are no mandatory locks on the file.
1238 */
1239 if (locks_verify_locked(inode))
1240 return -EAGAIN;
1241
1242 vm_flags |= VM_SHARED | VM_MAYSHARE;
1243 if (!(file->f_mode & FMODE_WRITE))
1244 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1245
1246 /* fall through */
1247 case MAP_PRIVATE:
1248 if (!(file->f_mode & FMODE_READ))
1249 return -EACCES;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001250 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
Linus Torvalds80c56062006-10-15 14:09:55 -07001251 if (vm_flags & VM_EXEC)
1252 return -EPERM;
1253 vm_flags &= ~VM_MAYEXEC;
1254 }
Linus Torvalds80c56062006-10-15 14:09:55 -07001255
1256 if (!file->f_op || !file->f_op->mmap)
1257 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 break;
1259
1260 default:
1261 return -EINVAL;
1262 }
1263 } else {
1264 switch (flags & MAP_TYPE) {
1265 case MAP_SHARED:
Tejun Heoce363942008-09-03 16:09:47 +02001266 /*
1267 * Ignore pgoff.
1268 */
1269 pgoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 vm_flags |= VM_SHARED | VM_MAYSHARE;
1271 break;
1272 case MAP_PRIVATE:
1273 /*
1274 * Set pgoff according to addr for anon_vma.
1275 */
1276 pgoff = addr >> PAGE_SHIFT;
1277 break;
1278 default:
1279 return -EINVAL;
1280 }
1281 }
1282
Mel Gorman5a6fe122009-02-10 14:02:27 +00001283 return mmap_region(file, addr, len, flags, vm_flags, pgoff);
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001284}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001285
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001286SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1287 unsigned long, prot, unsigned long, flags,
1288 unsigned long, fd, unsigned long, pgoff)
1289{
1290 struct file *file = NULL;
1291 unsigned long retval = -EBADF;
1292
1293 if (!(flags & MAP_ANONYMOUS)) {
Al Viro120a7952010-10-30 02:54:44 -04001294 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001295 if (unlikely(flags & MAP_HUGETLB))
1296 return -EINVAL;
1297 file = fget(fd);
1298 if (!file)
1299 goto out;
1300 } else if (flags & MAP_HUGETLB) {
1301 struct user_struct *user = NULL;
1302 /*
1303 * VM_NORESERVE is used because the reservations will be
1304 * taken when vm_ops->mmap() is called
1305 * A dummy user value is used because we are not locking
1306 * memory so no accounting is necessary
1307 */
Steven Truelove40716e22012-03-21 16:34:14 -07001308 file = hugetlb_file_setup(HUGETLB_ANON_FILE, addr, len,
Andi Kleen42d73952012-12-11 16:01:34 -08001309 VM_NORESERVE,
1310 &user, HUGETLB_ANONHUGE_INODE,
1311 (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001312 if (IS_ERR(file))
1313 return PTR_ERR(file);
1314 }
1315
1316 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1317
Al Viroeb36c582012-05-30 20:17:35 -04001318 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001319 if (file)
1320 fput(file);
1321out:
1322 return retval;
1323}
1324
Christoph Hellwiga4679372010-03-10 15:21:15 -08001325#ifdef __ARCH_WANT_SYS_OLD_MMAP
1326struct mmap_arg_struct {
1327 unsigned long addr;
1328 unsigned long len;
1329 unsigned long prot;
1330 unsigned long flags;
1331 unsigned long fd;
1332 unsigned long offset;
1333};
1334
1335SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1336{
1337 struct mmap_arg_struct a;
1338
1339 if (copy_from_user(&a, arg, sizeof(a)))
1340 return -EFAULT;
1341 if (a.offset & ~PAGE_MASK)
1342 return -EINVAL;
1343
1344 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1345 a.offset >> PAGE_SHIFT);
1346}
1347#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1348
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001349/*
1350 * Some shared mappigns will want the pages marked read-only
1351 * to track write events. If so, we'll downgrade vm_page_prot
1352 * to the private version (using protection_map[] without the
1353 * VM_SHARED bit).
1354 */
1355int vma_wants_writenotify(struct vm_area_struct *vma)
1356{
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001357 vm_flags_t vm_flags = vma->vm_flags;
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001358
1359 /* If it was private or non-writable, the write bit is already clear */
1360 if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
1361 return 0;
1362
1363 /* The backer wishes to know when pages are first written to? */
1364 if (vma->vm_ops && vma->vm_ops->page_mkwrite)
1365 return 1;
1366
1367 /* The open routine did something to the protections already? */
1368 if (pgprot_val(vma->vm_page_prot) !=
Coly Li3ed75eb2007-10-18 23:39:15 -07001369 pgprot_val(vm_get_page_prot(vm_flags)))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001370 return 0;
1371
1372 /* Specialty mapping? */
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001373 if (vm_flags & VM_PFNMAP)
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001374 return 0;
1375
1376 /* Can the mapping track the dirty pages? */
1377 return vma->vm_file && vma->vm_file->f_mapping &&
1378 mapping_cap_account_dirty(vma->vm_file->f_mapping);
1379}
1380
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001381/*
1382 * We account for memory if it's a private writeable mapping,
Mel Gorman5a6fe122009-02-10 14:02:27 +00001383 * not hugepages and VM_NORESERVE wasn't set.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001384 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001385static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001386{
Mel Gorman5a6fe122009-02-10 14:02:27 +00001387 /*
1388 * hugetlb has its own accounting separate from the core VM
1389 * VM_HUGETLB may not be set yet so we cannot check for that flag.
1390 */
1391 if (file && is_file_hugepages(file))
1392 return 0;
1393
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001394 return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1395}
1396
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001397unsigned long mmap_region(struct file *file, unsigned long addr,
1398 unsigned long len, unsigned long flags,
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001399 vm_flags_t vm_flags, unsigned long pgoff)
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001400{
1401 struct mm_struct *mm = current->mm;
1402 struct vm_area_struct *vma, *prev;
1403 int correct_wcount = 0;
1404 int error;
1405 struct rb_node **rb_link, *rb_parent;
1406 unsigned long charged = 0;
1407 struct inode *inode = file ? file->f_path.dentry->d_inode : NULL;
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /* Clear old maps */
1410 error = -ENOMEM;
1411munmap_back:
Hugh Dickins6597d782012-10-08 16:29:07 -07001412 if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (do_munmap(mm, addr, len))
1414 return -ENOMEM;
1415 goto munmap_back;
1416 }
1417
1418 /* Check against address space limit. */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001419 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -ENOMEM;
1421
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001422 /*
1423 * Set 'VM_NORESERVE' if we should not account for the
Mel Gorman5a6fe122009-02-10 14:02:27 +00001424 * memory use of this mapping.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001425 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001426 if ((flags & MAP_NORESERVE)) {
1427 /* We honor MAP_NORESERVE if allowed to overcommit */
1428 if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1429 vm_flags |= VM_NORESERVE;
1430
1431 /* hugetlb applies strict overcommit unless MAP_NORESERVE */
1432 if (file && is_file_hugepages(file))
1433 vm_flags |= VM_NORESERVE;
1434 }
Andy Whitcroftcdfd4322008-07-23 21:27:28 -07001435
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001436 /*
1437 * Private writable mapping: check memory availability
1438 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001439 if (accountable_mapping(file, vm_flags)) {
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001440 charged = len >> PAGE_SHIFT;
Al Viro191c5422012-02-13 03:58:52 +00001441 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001442 return -ENOMEM;
1443 vm_flags |= VM_ACCOUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445
1446 /*
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001447 * Can we just expand an old mapping?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001449 vma = vma_merge(mm, prev, addr, addr + len, vm_flags, NULL, file, pgoff, NULL);
1450 if (vma)
1451 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 /*
1454 * Determine the object being mapped and call the appropriate
1455 * specific mapper. the address has already been validated, but
1456 * not unmapped, but the maps are removed from the list.
1457 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001458 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (!vma) {
1460 error = -ENOMEM;
1461 goto unacct_error;
1462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 vma->vm_mm = mm;
1465 vma->vm_start = addr;
1466 vma->vm_end = addr + len;
1467 vma->vm_flags = vm_flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07001468 vma->vm_page_prot = vm_get_page_prot(vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 vma->vm_pgoff = pgoff;
Rik van Riel5beb4932010-03-05 13:42:07 -08001470 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Hugh Dickinsce8fea72012-03-06 12:28:52 -08001472 error = -EINVAL; /* when rejecting VM_GROWSDOWN|VM_GROWSUP */
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1476 goto free_vma;
1477 if (vm_flags & VM_DENYWRITE) {
1478 error = deny_write_access(file);
1479 if (error)
1480 goto free_vma;
1481 correct_wcount = 1;
1482 }
Al Virocb0942b2012-08-27 14:48:26 -04001483 vma->vm_file = get_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 error = file->f_op->mmap(file, vma);
1485 if (error)
1486 goto unmap_and_free_vma;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001487
1488 /* Can addr have changed??
1489 *
1490 * Answer: Yes, several device drivers can do it in their
1491 * f_op->mmap method. -DaveM
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001492 * Bug: If addr is changed, prev, rb_link, rb_parent should
1493 * be updated for vma_link()
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001494 */
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001495 WARN_ON_ONCE(addr != vma->vm_start);
1496
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001497 addr = vma->vm_start;
1498 pgoff = vma->vm_pgoff;
1499 vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 } else if (vm_flags & VM_SHARED) {
Al Viro835ee792012-03-05 06:39:47 +00001501 if (unlikely(vm_flags & (VM_GROWSDOWN|VM_GROWSUP)))
1502 goto free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 error = shmem_zero_setup(vma);
1504 if (error)
1505 goto free_vma;
1506 }
1507
Magnus Dammc9d0bf22009-12-14 17:59:49 -08001508 if (vma_wants_writenotify(vma)) {
1509 pgprot_t pprot = vma->vm_page_prot;
1510
1511 /* Can vma->vm_page_prot have changed??
1512 *
1513 * Answer: Yes, drivers may have changed it in their
1514 * f_op->mmap method.
1515 *
1516 * Ensures that vmas marked as uncached stay that way.
1517 */
Hugh Dickins1ddd4392007-10-22 20:45:12 -07001518 vma->vm_page_prot = vm_get_page_prot(vm_flags & ~VM_SHARED);
Magnus Dammc9d0bf22009-12-14 17:59:49 -08001519 if (pgprot_val(pprot) == pgprot_val(pgprot_noncached(pprot)))
1520 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1521 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001522
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001523 vma_link(mm, vma, prev, rb_link, rb_parent);
1524 file = vma->vm_file;
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001525
1526 /* Once vma denies write, undo our temporary denial count */
1527 if (correct_wcount)
1528 atomic_inc(&inode->i_writecount);
1529out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001530 perf_event_mmap(vma);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02001531
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07001532 vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (vm_flags & VM_LOCKED) {
KOSAKI Motohiro06f9d8c2010-03-05 13:41:43 -08001534 if (!mlock_vma_pages_range(vma, addr, addr + len))
1535 mm->locked_vm += (len >> PAGE_SHIFT);
Rik van Rielba470de2008-10-18 20:26:50 -07001536 } else if ((flags & MAP_POPULATE) && !(flags & MAP_NONBLOCK))
Nick Piggin54cb8822007-07-19 01:46:59 -07001537 make_pages_present(addr, addr + len);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301538
Oleg Nesterovc7a3a882012-08-19 19:10:42 +02001539 if (file)
1540 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return addr;
1543
1544unmap_and_free_vma:
1545 if (correct_wcount)
1546 atomic_inc(&inode->i_writecount);
1547 vma->vm_file = NULL;
1548 fput(file);
1549
1550 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001551 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1552 charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553free_vma:
1554 kmem_cache_free(vm_area_cachep, vma);
1555unacct_error:
1556 if (charged)
1557 vm_unacct_memory(charged);
1558 return error;
1559}
1560
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001561unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1562{
1563 /*
1564 * We implement the search by looking for an rbtree node that
1565 * immediately follows a suitable gap. That is,
1566 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1567 * - gap_end = vma->vm_start >= info->low_limit + length;
1568 * - gap_end - gap_start >= length
1569 */
1570
1571 struct mm_struct *mm = current->mm;
1572 struct vm_area_struct *vma;
1573 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1574
1575 /* Adjust search length to account for worst case alignment overhead */
1576 length = info->length + info->align_mask;
1577 if (length < info->length)
1578 return -ENOMEM;
1579
1580 /* Adjust search limits by the desired length */
1581 if (info->high_limit < length)
1582 return -ENOMEM;
1583 high_limit = info->high_limit - length;
1584
1585 if (info->low_limit > high_limit)
1586 return -ENOMEM;
1587 low_limit = info->low_limit + length;
1588
1589 /* Check if rbtree root looks promising */
1590 if (RB_EMPTY_ROOT(&mm->mm_rb))
1591 goto check_highest;
1592 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1593 if (vma->rb_subtree_gap < length)
1594 goto check_highest;
1595
1596 while (true) {
1597 /* Visit left subtree if it looks promising */
1598 gap_end = vma->vm_start;
1599 if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1600 struct vm_area_struct *left =
1601 rb_entry(vma->vm_rb.rb_left,
1602 struct vm_area_struct, vm_rb);
1603 if (left->rb_subtree_gap >= length) {
1604 vma = left;
1605 continue;
1606 }
1607 }
1608
1609 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1610check_current:
1611 /* Check if current node has a suitable gap */
1612 if (gap_start > high_limit)
1613 return -ENOMEM;
1614 if (gap_end >= low_limit && gap_end - gap_start >= length)
1615 goto found;
1616
1617 /* Visit right subtree if it looks promising */
1618 if (vma->vm_rb.rb_right) {
1619 struct vm_area_struct *right =
1620 rb_entry(vma->vm_rb.rb_right,
1621 struct vm_area_struct, vm_rb);
1622 if (right->rb_subtree_gap >= length) {
1623 vma = right;
1624 continue;
1625 }
1626 }
1627
1628 /* Go back up the rbtree to find next candidate node */
1629 while (true) {
1630 struct rb_node *prev = &vma->vm_rb;
1631 if (!rb_parent(prev))
1632 goto check_highest;
1633 vma = rb_entry(rb_parent(prev),
1634 struct vm_area_struct, vm_rb);
1635 if (prev == vma->vm_rb.rb_left) {
1636 gap_start = vma->vm_prev->vm_end;
1637 gap_end = vma->vm_start;
1638 goto check_current;
1639 }
1640 }
1641 }
1642
1643check_highest:
1644 /* Check highest gap, which does not precede any rbtree node */
1645 gap_start = mm->highest_vm_end;
1646 gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */
1647 if (gap_start > high_limit)
1648 return -ENOMEM;
1649
1650found:
1651 /* We found a suitable gap. Clip it with the original low_limit. */
1652 if (gap_start < info->low_limit)
1653 gap_start = info->low_limit;
1654
1655 /* Adjust gap address to the desired alignment */
1656 gap_start += (info->align_offset - gap_start) & info->align_mask;
1657
1658 VM_BUG_ON(gap_start + info->length > info->high_limit);
1659 VM_BUG_ON(gap_start + info->length > gap_end);
1660 return gap_start;
1661}
1662
1663unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1664{
1665 struct mm_struct *mm = current->mm;
1666 struct vm_area_struct *vma;
1667 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1668
1669 /* Adjust search length to account for worst case alignment overhead */
1670 length = info->length + info->align_mask;
1671 if (length < info->length)
1672 return -ENOMEM;
1673
1674 /*
1675 * Adjust search limits by the desired length.
1676 * See implementation comment at top of unmapped_area().
1677 */
1678 gap_end = info->high_limit;
1679 if (gap_end < length)
1680 return -ENOMEM;
1681 high_limit = gap_end - length;
1682
1683 if (info->low_limit > high_limit)
1684 return -ENOMEM;
1685 low_limit = info->low_limit + length;
1686
1687 /* Check highest gap, which does not precede any rbtree node */
1688 gap_start = mm->highest_vm_end;
1689 if (gap_start <= high_limit)
1690 goto found_highest;
1691
1692 /* Check if rbtree root looks promising */
1693 if (RB_EMPTY_ROOT(&mm->mm_rb))
1694 return -ENOMEM;
1695 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1696 if (vma->rb_subtree_gap < length)
1697 return -ENOMEM;
1698
1699 while (true) {
1700 /* Visit right subtree if it looks promising */
1701 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1702 if (gap_start <= high_limit && vma->vm_rb.rb_right) {
1703 struct vm_area_struct *right =
1704 rb_entry(vma->vm_rb.rb_right,
1705 struct vm_area_struct, vm_rb);
1706 if (right->rb_subtree_gap >= length) {
1707 vma = right;
1708 continue;
1709 }
1710 }
1711
1712check_current:
1713 /* Check if current node has a suitable gap */
1714 gap_end = vma->vm_start;
1715 if (gap_end < low_limit)
1716 return -ENOMEM;
1717 if (gap_start <= high_limit && gap_end - gap_start >= length)
1718 goto found;
1719
1720 /* Visit left subtree if it looks promising */
1721 if (vma->vm_rb.rb_left) {
1722 struct vm_area_struct *left =
1723 rb_entry(vma->vm_rb.rb_left,
1724 struct vm_area_struct, vm_rb);
1725 if (left->rb_subtree_gap >= length) {
1726 vma = left;
1727 continue;
1728 }
1729 }
1730
1731 /* Go back up the rbtree to find next candidate node */
1732 while (true) {
1733 struct rb_node *prev = &vma->vm_rb;
1734 if (!rb_parent(prev))
1735 return -ENOMEM;
1736 vma = rb_entry(rb_parent(prev),
1737 struct vm_area_struct, vm_rb);
1738 if (prev == vma->vm_rb.rb_right) {
1739 gap_start = vma->vm_prev ?
1740 vma->vm_prev->vm_end : 0;
1741 goto check_current;
1742 }
1743 }
1744 }
1745
1746found:
1747 /* We found a suitable gap. Clip it with the original high_limit. */
1748 if (gap_end > info->high_limit)
1749 gap_end = info->high_limit;
1750
1751found_highest:
1752 /* Compute highest gap address at the desired alignment */
1753 gap_end -= info->length;
1754 gap_end -= (gap_end - info->align_offset) & info->align_mask;
1755
1756 VM_BUG_ON(gap_end < info->low_limit);
1757 VM_BUG_ON(gap_end < gap_start);
1758 return gap_end;
1759}
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761/* Get an address range which is currently unmapped.
1762 * For shmat() with addr=0.
1763 *
1764 * Ugly calling convention alert:
1765 * Return value with the low bits set means error value,
1766 * ie
1767 * if (ret & ~PAGE_MASK)
1768 * error = ret;
1769 *
1770 * This function "knows" that -ENOMEM has the bits set.
1771 */
1772#ifndef HAVE_ARCH_UNMAPPED_AREA
1773unsigned long
1774arch_get_unmapped_area(struct file *filp, unsigned long addr,
1775 unsigned long len, unsigned long pgoff, unsigned long flags)
1776{
1777 struct mm_struct *mm = current->mm;
1778 struct vm_area_struct *vma;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001779 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 if (len > TASK_SIZE)
1782 return -ENOMEM;
1783
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001784 if (flags & MAP_FIXED)
1785 return addr;
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (addr) {
1788 addr = PAGE_ALIGN(addr);
1789 vma = find_vma(mm, addr);
1790 if (TASK_SIZE - len >= addr &&
1791 (!vma || addr + len <= vma->vm_start))
1792 return addr;
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001795 info.flags = 0;
1796 info.length = len;
1797 info.low_limit = TASK_UNMAPPED_BASE;
1798 info.high_limit = TASK_SIZE;
1799 info.align_mask = 0;
1800 return vm_unmapped_area(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802#endif
1803
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001804void arch_unmap_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
1806 /*
1807 * Is this a new hole at the lowest possible address?
1808 */
Xiao Guangrongf44d2192012-03-21 16:33:56 -07001809 if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache)
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001810 mm->free_area_cache = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
1813/*
1814 * This mmap-allocator allocates new areas top-down from below the
1815 * stack's low limit (the base):
1816 */
1817#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1818unsigned long
1819arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1820 const unsigned long len, const unsigned long pgoff,
1821 const unsigned long flags)
1822{
1823 struct vm_area_struct *vma;
1824 struct mm_struct *mm = current->mm;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001825 unsigned long addr = addr0;
1826 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 /* requested length too big for entire address space */
1829 if (len > TASK_SIZE)
1830 return -ENOMEM;
1831
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001832 if (flags & MAP_FIXED)
1833 return addr;
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 /* requesting a specific address */
1836 if (addr) {
1837 addr = PAGE_ALIGN(addr);
1838 vma = find_vma(mm, addr);
1839 if (TASK_SIZE - len >= addr &&
1840 (!vma || addr + len <= vma->vm_start))
1841 return addr;
1842 }
1843
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001844 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
1845 info.length = len;
1846 info.low_limit = PAGE_SIZE;
1847 info.high_limit = mm->mmap_base;
1848 info.align_mask = 0;
1849 addr = vm_unmapped_area(&info);
Xiao Guangrongb716ad92012-03-21 16:33:56 -07001850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /*
1852 * A failed mmap() very likely causes application failure,
1853 * so fall back to the bottom-up function here. This scenario
1854 * can happen with large stack limits and large mmap()
1855 * allocations.
1856 */
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001857 if (addr & ~PAGE_MASK) {
1858 VM_BUG_ON(addr != -ENOMEM);
1859 info.flags = 0;
1860 info.low_limit = TASK_UNMAPPED_BASE;
1861 info.high_limit = TASK_SIZE;
1862 addr = vm_unmapped_area(&info);
1863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 return addr;
1866}
1867#endif
1868
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001869void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 /*
1872 * Is this a new hole at the highest possible address?
1873 */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001874 if (addr > mm->free_area_cache)
1875 mm->free_area_cache = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 /* dont allow allocations above current base */
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07001878 if (mm->free_area_cache > mm->mmap_base)
1879 mm->free_area_cache = mm->mmap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
1882unsigned long
1883get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1884 unsigned long pgoff, unsigned long flags)
1885{
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001886 unsigned long (*get_area)(struct file *, unsigned long,
1887 unsigned long, unsigned long, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Al Viro9206de92009-12-03 15:23:11 -05001889 unsigned long error = arch_mmap_check(addr, len, flags);
1890 if (error)
1891 return error;
1892
1893 /* Careful about overflows.. */
1894 if (len > TASK_SIZE)
1895 return -ENOMEM;
1896
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001897 get_area = current->mm->get_unmapped_area;
1898 if (file && file->f_op && file->f_op->get_unmapped_area)
1899 get_area = file->f_op->get_unmapped_area;
1900 addr = get_area(file, addr, len, pgoff, flags);
1901 if (IS_ERR_VALUE(addr))
1902 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001904 if (addr > TASK_SIZE - len)
1905 return -ENOMEM;
1906 if (addr & ~PAGE_MASK)
1907 return -EINVAL;
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001908
Al Viro9ac4ed42012-05-30 17:13:15 -04001909 addr = arch_rebalance_pgtables(addr, len);
1910 error = security_mmap_addr(addr);
1911 return error ? error : addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
1914EXPORT_SYMBOL(get_unmapped_area);
1915
1916/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
ZhenwenXu48aae422009-01-06 14:40:21 -08001917struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
1919 struct vm_area_struct *vma = NULL;
1920
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001921 if (WARN_ON_ONCE(!mm)) /* Remove this in linux-3.6 */
1922 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001924 /* Check the cache first. */
1925 /* (Cache hit rate is typically around 35%.) */
1926 vma = mm->mmap_cache;
1927 if (!(vma && vma->vm_end > addr && vma->vm_start <= addr)) {
1928 struct rb_node *rb_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001930 rb_node = mm->mm_rb.rb_node;
1931 vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001933 while (rb_node) {
1934 struct vm_area_struct *vma_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001936 vma_tmp = rb_entry(rb_node,
1937 struct vm_area_struct, vm_rb);
1938
1939 if (vma_tmp->vm_end > addr) {
1940 vma = vma_tmp;
1941 if (vma_tmp->vm_start <= addr)
1942 break;
1943 rb_node = rb_node->rb_left;
1944 } else
1945 rb_node = rb_node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001947 if (vma)
1948 mm->mmap_cache = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950 return vma;
1951}
1952
1953EXPORT_SYMBOL(find_vma);
1954
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001955/*
1956 * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958struct vm_area_struct *
1959find_vma_prev(struct mm_struct *mm, unsigned long addr,
1960 struct vm_area_struct **pprev)
1961{
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001962 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001964 vma = find_vma(mm, addr);
Mikulas Patocka83cd9042012-03-04 19:52:03 -05001965 if (vma) {
1966 *pprev = vma->vm_prev;
1967 } else {
1968 struct rb_node *rb_node = mm->mm_rb.rb_node;
1969 *pprev = NULL;
1970 while (rb_node) {
1971 *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1972 rb_node = rb_node->rb_right;
1973 }
1974 }
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001975 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
1978/*
1979 * Verify that the stack growth is acceptable and
1980 * update accounting. This is shared with both the
1981 * grow-up and grow-down cases.
1982 */
ZhenwenXu48aae422009-01-06 14:40:21 -08001983static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
1985 struct mm_struct *mm = vma->vm_mm;
1986 struct rlimit *rlim = current->signal->rlim;
Adam Litke0d59a012007-01-30 14:35:39 -08001987 unsigned long new_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 /* address space limit tests */
akpm@osdl.org119f6572005-05-01 08:58:35 -07001990 if (!may_expand_vm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return -ENOMEM;
1992
1993 /* Stack limit test */
Jiri Slaby59e99e52010-03-05 13:41:44 -08001994 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 return -ENOMEM;
1996
1997 /* mlock limit tests */
1998 if (vma->vm_flags & VM_LOCKED) {
1999 unsigned long locked;
2000 unsigned long limit;
2001 locked = mm->locked_vm + grow;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002002 limit = ACCESS_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
2003 limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 if (locked > limit && !capable(CAP_IPC_LOCK))
2005 return -ENOMEM;
2006 }
2007
Adam Litke0d59a012007-01-30 14:35:39 -08002008 /* Check to ensure the stack will not grow into a hugetlb-only region */
2009 new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
2010 vma->vm_end - size;
2011 if (is_hugepage_only_range(vma->vm_mm, new_start, size))
2012 return -EFAULT;
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 /*
2015 * Overcommit.. This must be the final test, as it will
2016 * update security statistics.
2017 */
Hugh Dickins05fa1992009-04-16 21:58:12 +01002018 if (security_vm_enough_memory_mm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return -ENOMEM;
2020
2021 /* Ok, everything looks good - let it rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (vma->vm_flags & VM_LOCKED)
2023 mm->locked_vm += grow;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -07002024 vm_stat_account(mm, vma->vm_flags, vma->vm_file, grow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return 0;
2026}
2027
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002028#if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029/*
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002030 * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
2031 * vma is the last one with address > vma->vm_end. Have to extend vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 */
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002033int expand_upwards(struct vm_area_struct *vma, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
2035 int error;
2036
2037 if (!(vma->vm_flags & VM_GROWSUP))
2038 return -EFAULT;
2039
2040 /*
2041 * We must make sure the anon_vma is allocated
2042 * so that the anon_vma locking is not a noop.
2043 */
2044 if (unlikely(anon_vma_prepare(vma)))
2045 return -ENOMEM;
Rik van Rielbb4a3402010-08-09 17:18:37 -07002046 vma_lock_anon_vma(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 /*
2049 * vma->vm_start/vm_end cannot change under us because the caller
2050 * is required to hold the mmap_sem in read mode. We need the
2051 * anon_vma lock to serialize against concurrent expand_stacks.
Helge Deller06b32f32006-12-19 19:28:33 +01002052 * Also guard against wrapping around to address 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 */
Helge Deller06b32f32006-12-19 19:28:33 +01002054 if (address < PAGE_ALIGN(address+4))
2055 address = PAGE_ALIGN(address+4);
2056 else {
Rik van Rielbb4a3402010-08-09 17:18:37 -07002057 vma_unlock_anon_vma(vma);
Helge Deller06b32f32006-12-19 19:28:33 +01002058 return -ENOMEM;
2059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 error = 0;
2061
2062 /* Somebody else might have raced and expanded it already */
2063 if (address > vma->vm_end) {
2064 unsigned long size, grow;
2065
2066 size = address - vma->vm_start;
2067 grow = (address - vma->vm_end) >> PAGE_SHIFT;
2068
Hugh Dickins42c36f62011-05-09 17:44:42 -07002069 error = -ENOMEM;
2070 if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
2071 error = acct_stack_growth(vma, size, grow);
2072 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002073 /*
2074 * vma_gap_update() doesn't support concurrent
2075 * updates, but we only hold a shared mmap_sem
2076 * lock here, so we need to protect against
2077 * concurrent vma expansions.
2078 * vma_lock_anon_vma() doesn't help here, as
2079 * we don't guarantee that all growable vmas
2080 * in a mm share the same root anon vma.
2081 * So, we reuse mm->page_table_lock to guard
2082 * against concurrent vma expansions.
2083 */
2084 spin_lock(&vma->vm_mm->page_table_lock);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002085 anon_vma_interval_tree_pre_update_vma(vma);
Hugh Dickins42c36f62011-05-09 17:44:42 -07002086 vma->vm_end = address;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002087 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002088 if (vma->vm_next)
2089 vma_gap_update(vma->vm_next);
2090 else
2091 vma->vm_mm->highest_vm_end = address;
Michel Lespinasse41289972012-12-12 13:52:25 -08002092 spin_unlock(&vma->vm_mm->page_table_lock);
2093
Hugh Dickins42c36f62011-05-09 17:44:42 -07002094 perf_event_mmap(vma);
2095 }
Eric B Munson3af9e852010-05-18 15:30:49 +01002096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 }
Rik van Rielbb4a3402010-08-09 17:18:37 -07002098 vma_unlock_anon_vma(vma);
Andrea Arcangelib15d00b2011-01-13 15:46:59 -08002099 khugepaged_enter_vma_merge(vma);
Michel Lespinasseed8ea812012-10-08 16:31:45 -07002100 validate_mm(vma->vm_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return error;
2102}
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002103#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105/*
2106 * vma is the first one with address < vma->vm_start. Have to extend vma.
2107 */
Michal Hockod05f3162011-05-24 17:11:44 -07002108int expand_downwards(struct vm_area_struct *vma,
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002109 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 int error;
2112
2113 /*
2114 * We must make sure the anon_vma is allocated
2115 * so that the anon_vma locking is not a noop.
2116 */
2117 if (unlikely(anon_vma_prepare(vma)))
2118 return -ENOMEM;
Eric Paris88694772007-11-26 18:47:26 -05002119
2120 address &= PAGE_MASK;
Al Viroe5467852012-05-30 13:30:51 -04002121 error = security_mmap_addr(address);
Eric Paris88694772007-11-26 18:47:26 -05002122 if (error)
2123 return error;
2124
Rik van Rielbb4a3402010-08-09 17:18:37 -07002125 vma_lock_anon_vma(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /*
2128 * vma->vm_start/vm_end cannot change under us because the caller
2129 * is required to hold the mmap_sem in read mode. We need the
2130 * anon_vma lock to serialize against concurrent expand_stacks.
2131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* Somebody else might have raced and expanded it already */
2134 if (address < vma->vm_start) {
2135 unsigned long size, grow;
2136
2137 size = vma->vm_end - address;
2138 grow = (vma->vm_start - address) >> PAGE_SHIFT;
2139
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002140 error = -ENOMEM;
2141 if (grow <= vma->vm_pgoff) {
2142 error = acct_stack_growth(vma, size, grow);
2143 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002144 /*
2145 * vma_gap_update() doesn't support concurrent
2146 * updates, but we only hold a shared mmap_sem
2147 * lock here, so we need to protect against
2148 * concurrent vma expansions.
2149 * vma_lock_anon_vma() doesn't help here, as
2150 * we don't guarantee that all growable vmas
2151 * in a mm share the same root anon vma.
2152 * So, we reuse mm->page_table_lock to guard
2153 * against concurrent vma expansions.
2154 */
2155 spin_lock(&vma->vm_mm->page_table_lock);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002156 anon_vma_interval_tree_pre_update_vma(vma);
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002157 vma->vm_start = address;
2158 vma->vm_pgoff -= grow;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002159 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002160 vma_gap_update(vma);
Michel Lespinasse41289972012-12-12 13:52:25 -08002161 spin_unlock(&vma->vm_mm->page_table_lock);
2162
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002163 perf_event_mmap(vma);
2164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166 }
Rik van Rielbb4a3402010-08-09 17:18:37 -07002167 vma_unlock_anon_vma(vma);
Andrea Arcangelib15d00b2011-01-13 15:46:59 -08002168 khugepaged_enter_vma_merge(vma);
Michel Lespinasseed8ea812012-10-08 16:31:45 -07002169 validate_mm(vma->vm_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return error;
2171}
2172
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002173#ifdef CONFIG_STACK_GROWSUP
2174int expand_stack(struct vm_area_struct *vma, unsigned long address)
2175{
2176 return expand_upwards(vma, address);
2177}
2178
2179struct vm_area_struct *
2180find_extend_vma(struct mm_struct *mm, unsigned long addr)
2181{
2182 struct vm_area_struct *vma, *prev;
2183
2184 addr &= PAGE_MASK;
2185 vma = find_vma_prev(mm, addr, &prev);
2186 if (vma && (vma->vm_start <= addr))
2187 return vma;
Denys Vlasenko1c127182008-11-12 01:24:41 +01002188 if (!prev || expand_stack(prev, addr))
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002189 return NULL;
Rik van Rielba470de2008-10-18 20:26:50 -07002190 if (prev->vm_flags & VM_LOCKED) {
KOSAKI Motohiroc58267c2010-03-05 13:41:43 -08002191 mlock_vma_pages_range(prev, addr, prev->vm_end);
Rik van Rielba470de2008-10-18 20:26:50 -07002192 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002193 return prev;
2194}
2195#else
2196int expand_stack(struct vm_area_struct *vma, unsigned long address)
2197{
2198 return expand_downwards(vma, address);
2199}
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201struct vm_area_struct *
2202find_extend_vma(struct mm_struct * mm, unsigned long addr)
2203{
2204 struct vm_area_struct * vma;
2205 unsigned long start;
2206
2207 addr &= PAGE_MASK;
2208 vma = find_vma(mm,addr);
2209 if (!vma)
2210 return NULL;
2211 if (vma->vm_start <= addr)
2212 return vma;
2213 if (!(vma->vm_flags & VM_GROWSDOWN))
2214 return NULL;
2215 start = vma->vm_start;
2216 if (expand_stack(vma, addr))
2217 return NULL;
Rik van Rielba470de2008-10-18 20:26:50 -07002218 if (vma->vm_flags & VM_LOCKED) {
KOSAKI Motohiroc58267c2010-03-05 13:41:43 -08002219 mlock_vma_pages_range(vma, addr, start);
Rik van Rielba470de2008-10-18 20:26:50 -07002220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 return vma;
2222}
2223#endif
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002226 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002228 *
2229 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002231static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002233 unsigned long nr_accounted = 0;
2234
Hugh Dickins365e9c872005-10-29 18:16:18 -07002235 /* Update high watermark before we lower total_vm */
2236 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002238 long nrpages = vma_pages(vma);
2239
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002240 if (vma->vm_flags & VM_ACCOUNT)
2241 nr_accounted += nrpages;
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002242 vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002243 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07002244 } while (vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002245 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 validate_mm(mm);
2247}
2248
2249/*
2250 * Get rid of page table information in the indicated region.
2251 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07002252 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 */
2254static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07002255 struct vm_area_struct *vma, struct vm_area_struct *prev,
2256 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Hugh Dickinse0da3822005-04-19 13:29:15 -07002258 struct vm_area_struct *next = prev? prev->vm_next: mm->mmap;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002259 struct mmu_gather tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 lru_add_drain();
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002262 tlb_gather_mmu(&tlb, mm, 0);
Hugh Dickins365e9c872005-10-29 18:16:18 -07002263 update_hiwater_rss(mm);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002264 unmap_vmas(&tlb, vma, start, end);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002265 free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
2266 next ? next->vm_start : 0);
2267 tlb_finish_mmu(&tlb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
2270/*
2271 * Create a list of vma's touched by the unmap, removing them from the mm's
2272 * vma list as we go..
2273 */
2274static void
2275detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
2276 struct vm_area_struct *prev, unsigned long end)
2277{
2278 struct vm_area_struct **insertion_point;
2279 struct vm_area_struct *tail_vma = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07002280 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002283 vma->vm_prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 do {
Michel Lespinassed3737182012-12-11 16:01:38 -08002285 vma_rb_erase(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 mm->map_count--;
2287 tail_vma = vma;
2288 vma = vma->vm_next;
2289 } while (vma && vma->vm_start < end);
2290 *insertion_point = vma;
Michel Lespinassed3737182012-12-11 16:01:38 -08002291 if (vma) {
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002292 vma->vm_prev = prev;
Michel Lespinassed3737182012-12-11 16:01:38 -08002293 vma_gap_update(vma);
2294 } else
2295 mm->highest_vm_end = prev ? prev->vm_end : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 tail_vma->vm_next = NULL;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -07002297 if (mm->unmap_area == arch_unmap_area)
2298 addr = prev ? prev->vm_end : mm->mmap_base;
2299 else
2300 addr = vma ? vma->vm_start : mm->mmap_base;
2301 mm->unmap_area(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 mm->mmap_cache = NULL; /* Kill the cache. */
2303}
2304
2305/*
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002306 * __split_vma() bypasses sysctl_max_map_count checking. We use this on the
2307 * munmap path where it doesn't make sense to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 */
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002309static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 unsigned long addr, int new_below)
2311{
2312 struct mempolicy *pol;
2313 struct vm_area_struct *new;
Rik van Riel5beb4932010-03-05 13:42:07 -08002314 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Andi Kleena5516432008-07-23 21:27:41 -07002316 if (is_vm_hugetlb_page(vma) && (addr &
2317 ~(huge_page_mask(hstate_vma(vma)))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return -EINVAL;
2319
Christoph Lametere94b1762006-12-06 20:33:17 -08002320 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (!new)
Rik van Riel5beb4932010-03-05 13:42:07 -08002322 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 /* most fields are the same, copy all, and then fixup */
2325 *new = *vma;
2326
Rik van Riel5beb4932010-03-05 13:42:07 -08002327 INIT_LIST_HEAD(&new->anon_vma_chain);
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 if (new_below)
2330 new->vm_end = addr;
2331 else {
2332 new->vm_start = addr;
2333 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
2334 }
2335
Lee Schermerhorn846a16b2008-04-28 02:13:09 -07002336 pol = mpol_dup(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (IS_ERR(pol)) {
Rik van Riel5beb4932010-03-05 13:42:07 -08002338 err = PTR_ERR(pol);
2339 goto out_free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
2341 vma_set_policy(new, pol);
2342
Rik van Riel5beb4932010-03-05 13:42:07 -08002343 if (anon_vma_clone(new, vma))
2344 goto out_free_mpol;
2345
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002346 if (new->vm_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 get_file(new->vm_file);
2348
2349 if (new->vm_ops && new->vm_ops->open)
2350 new->vm_ops->open(new);
2351
2352 if (new_below)
Rik van Riel5beb4932010-03-05 13:42:07 -08002353 err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 ((addr - new->vm_start) >> PAGE_SHIFT), new);
2355 else
Rik van Riel5beb4932010-03-05 13:42:07 -08002356 err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Rik van Riel5beb4932010-03-05 13:42:07 -08002358 /* Success. */
2359 if (!err)
2360 return 0;
2361
2362 /* Clean everything up if vma_adjust failed. */
Rik van Riel58927532010-04-26 12:33:03 -04002363 if (new->vm_ops && new->vm_ops->close)
2364 new->vm_ops->close(new);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002365 if (new->vm_file)
Rik van Riel5beb4932010-03-05 13:42:07 -08002366 fput(new->vm_file);
Andrea Arcangeli2aeadc32010-09-22 13:05:12 -07002367 unlink_anon_vmas(new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002368 out_free_mpol:
2369 mpol_put(pol);
2370 out_free_vma:
2371 kmem_cache_free(vm_area_cachep, new);
2372 out_err:
2373 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002376/*
2377 * Split a vma into two pieces at address 'addr', a new vma is allocated
2378 * either for the first part or the tail.
2379 */
2380int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2381 unsigned long addr, int new_below)
2382{
2383 if (mm->map_count >= sysctl_max_map_count)
2384 return -ENOMEM;
2385
2386 return __split_vma(mm, vma, addr, new_below);
2387}
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389/* Munmap is split into 2 main parts -- this part which finds
2390 * what needs doing, and the areas themselves, which do the
2391 * work. This now handles partial unmappings.
2392 * Jeremy Fitzhardinge <jeremy@goop.org>
2393 */
2394int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
2395{
2396 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07002397 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
2399 if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
2400 return -EINVAL;
2401
2402 if ((len = PAGE_ALIGN(len)) == 0)
2403 return -EINVAL;
2404
2405 /* Find the first overlapping VMA */
Linus Torvalds9be34c92011-06-16 00:35:09 -07002406 vma = find_vma(mm, start);
Hugh Dickins146425a2005-04-19 13:29:18 -07002407 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 return 0;
Linus Torvalds9be34c92011-06-16 00:35:09 -07002409 prev = vma->vm_prev;
Hugh Dickins146425a2005-04-19 13:29:18 -07002410 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 /* if it doesn't overlap, we have nothing.. */
2413 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07002414 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 return 0;
2416
2417 /*
2418 * If we need to split any vma, do it now to save pain later.
2419 *
2420 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
2421 * unmapped vm_area_struct will remain in use: so lower split_vma
2422 * places tmp vma above, and higher split_vma places tmp vma below.
2423 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002424 if (start > vma->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002425 int error;
2426
2427 /*
2428 * Make sure that map_count on return from munmap() will
2429 * not exceed its limit; but let map_count go just above
2430 * its limit temporarily, to help free resources as expected.
2431 */
2432 if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2433 return -ENOMEM;
2434
2435 error = __split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (error)
2437 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07002438 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440
2441 /* Does it split the last one? */
2442 last = find_vma(mm, end);
2443 if (last && end > last->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002444 int error = __split_vma(mm, last, end, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (error)
2446 return error;
2447 }
Hugh Dickins146425a2005-04-19 13:29:18 -07002448 vma = prev? prev->vm_next: mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450 /*
Rik van Rielba470de2008-10-18 20:26:50 -07002451 * unlock any mlock()ed ranges before detaching vmas
2452 */
2453 if (mm->locked_vm) {
2454 struct vm_area_struct *tmp = vma;
2455 while (tmp && tmp->vm_start < end) {
2456 if (tmp->vm_flags & VM_LOCKED) {
2457 mm->locked_vm -= vma_pages(tmp);
2458 munlock_vma_pages_all(tmp);
2459 }
2460 tmp = tmp->vm_next;
2461 }
2462 }
2463
2464 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 * Remove the vma's, and unmap the actual pages
2466 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002467 detach_vmas_to_be_unmapped(mm, vma, prev, end);
2468 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002471 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 return 0;
2474}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Al Virobfce2812012-04-20 21:57:04 -04002476int vm_munmap(unsigned long start, size_t len)
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002477{
2478 int ret;
Al Virobfce2812012-04-20 21:57:04 -04002479 struct mm_struct *mm = current->mm;
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002480
2481 down_write(&mm->mmap_sem);
2482 ret = do_munmap(mm, start, len);
2483 up_write(&mm->mmap_sem);
2484 return ret;
2485}
2486EXPORT_SYMBOL(vm_munmap);
2487
Heiko Carstens6a6160a2009-01-14 14:14:15 +01002488SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 profile_munmap(addr);
Al Virobfce2812012-04-20 21:57:04 -04002491 return vm_munmap(addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
2494static inline void verify_mm_writelocked(struct mm_struct *mm)
2495{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08002496#ifdef CONFIG_DEBUG_VM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
2498 WARN_ON(1);
2499 up_read(&mm->mmap_sem);
2500 }
2501#endif
2502}
2503
2504/*
2505 * this is really a simplified "do_mmap". it only handles
2506 * anonymous maps. eventually we may be able to do some
2507 * brk-specific accounting here.
2508 */
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002509static unsigned long do_brk(unsigned long addr, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
2511 struct mm_struct * mm = current->mm;
2512 struct vm_area_struct * vma, * prev;
2513 unsigned long flags;
2514 struct rb_node ** rb_link, * rb_parent;
2515 pgoff_t pgoff = addr >> PAGE_SHIFT;
Kirill Korotaev3a459752006-09-07 14:17:04 +04002516 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 len = PAGE_ALIGN(len);
2519 if (!len)
2520 return addr;
2521
Kirill Korotaev3a459752006-09-07 14:17:04 +04002522 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
2523
Al Viro2c6a1012009-12-03 19:40:46 -05002524 error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
2525 if (error & ~PAGE_MASK)
Kirill Korotaev3a459752006-09-07 14:17:04 +04002526 return error;
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 /*
2529 * mlock MCL_FUTURE?
2530 */
2531 if (mm->def_flags & VM_LOCKED) {
2532 unsigned long locked, lock_limit;
Chris Wright93ea1d02005-05-01 08:58:38 -07002533 locked = len >> PAGE_SHIFT;
2534 locked += mm->locked_vm;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002535 lock_limit = rlimit(RLIMIT_MEMLOCK);
Chris Wright93ea1d02005-05-01 08:58:38 -07002536 lock_limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
2538 return -EAGAIN;
2539 }
2540
2541 /*
2542 * mm->mmap_sem is required to protect against another thread
2543 * changing the mappings in case we sleep.
2544 */
2545 verify_mm_writelocked(mm);
2546
2547 /*
2548 * Clear old maps. this also does some error checking for us
2549 */
2550 munmap_back:
Hugh Dickins6597d782012-10-08 16:29:07 -07002551 if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (do_munmap(mm, addr, len))
2553 return -ENOMEM;
2554 goto munmap_back;
2555 }
2556
2557 /* Check against address space limits *after* clearing old maps... */
akpm@osdl.org119f6572005-05-01 08:58:35 -07002558 if (!may_expand_vm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 return -ENOMEM;
2560
2561 if (mm->map_count > sysctl_max_map_count)
2562 return -ENOMEM;
2563
Al Viro191c5422012-02-13 03:58:52 +00002564 if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return -ENOMEM;
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 /* Can we just expand an old private anonymous mapping? */
Rik van Rielba470de2008-10-18 20:26:50 -07002568 vma = vma_merge(mm, prev, addr, addr + len, flags,
2569 NULL, NULL, pgoff, NULL);
2570 if (vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 goto out;
2572
2573 /*
2574 * create a vma struct for an anonymous mapping
2575 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002576 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (!vma) {
2578 vm_unacct_memory(len >> PAGE_SHIFT);
2579 return -ENOMEM;
2580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Rik van Riel5beb4932010-03-05 13:42:07 -08002582 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 vma->vm_mm = mm;
2584 vma->vm_start = addr;
2585 vma->vm_end = addr + len;
2586 vma->vm_pgoff = pgoff;
2587 vma->vm_flags = flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07002588 vma->vm_page_prot = vm_get_page_prot(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 vma_link(mm, vma, prev, rb_link, rb_parent);
2590out:
Eric B Munson3af9e852010-05-18 15:30:49 +01002591 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 mm->total_vm += len >> PAGE_SHIFT;
2593 if (flags & VM_LOCKED) {
Rik van Rielba470de2008-10-18 20:26:50 -07002594 if (!mlock_vma_pages_range(vma, addr, addr + len))
2595 mm->locked_vm += (len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 }
2597 return addr;
2598}
2599
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002600unsigned long vm_brk(unsigned long addr, unsigned long len)
2601{
2602 struct mm_struct *mm = current->mm;
2603 unsigned long ret;
2604
2605 down_write(&mm->mmap_sem);
2606 ret = do_brk(addr, len);
2607 up_write(&mm->mmap_sem);
2608 return ret;
2609}
2610EXPORT_SYMBOL(vm_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612/* Release all mmaps. */
2613void exit_mmap(struct mm_struct *mm)
2614{
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002615 struct mmu_gather tlb;
Rik van Rielba470de2008-10-18 20:26:50 -07002616 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 unsigned long nr_accounted = 0;
2618
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002619 /* mm's last user has gone, and its about to be pulled down */
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07002620 mmu_notifier_release(mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002621
Rik van Rielba470de2008-10-18 20:26:50 -07002622 if (mm->locked_vm) {
2623 vma = mm->mmap;
2624 while (vma) {
2625 if (vma->vm_flags & VM_LOCKED)
2626 munlock_vma_pages_all(vma);
2627 vma = vma->vm_next;
2628 }
2629 }
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002630
2631 arch_exit_mmap(mm);
2632
Rik van Rielba470de2008-10-18 20:26:50 -07002633 vma = mm->mmap;
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002634 if (!vma) /* Can happen if dup_mmap() received an OOM */
2635 return;
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 flush_cache_mm(mm);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002639 tlb_gather_mmu(&tlb, mm, 1);
Oleg Nesterov901608d2009-01-06 14:40:29 -08002640 /* update_hiwater_rss(mm) here? but nobody should be looking */
Hugh Dickinse0da3822005-04-19 13:29:15 -07002641 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002642 unmap_vmas(&tlb, vma, 0, -1);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002643
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002644 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
Al Viro853f5e22012-03-05 14:03:47 -05002645 tlb_finish_mmu(&tlb, 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 /*
Hugh Dickins8f4f8c12005-10-29 18:16:29 -07002648 * Walk the list again, actually closing and freeing it,
2649 * with preemption enabled, without holding any MM locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002651 while (vma) {
2652 if (vma->vm_flags & VM_ACCOUNT)
2653 nr_accounted += vma_pages(vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002654 vma = remove_vma(vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002655 }
2656 vm_unacct_memory(nr_accounted);
Hugh Dickinse0da3822005-04-19 13:29:15 -07002657
Hugh Dickinsf9aed622012-08-21 16:15:45 -07002658 WARN_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
2661/* Insert vm structure into process list sorted by address
2662 * and into the inode's i_mmap tree. If vm_file is non-NULL
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07002663 * then i_mmap_mutex is taken here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 */
Hugh Dickins6597d782012-10-08 16:29:07 -07002665int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Hugh Dickins6597d782012-10-08 16:29:07 -07002667 struct vm_area_struct *prev;
2668 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 /*
2671 * The vm_pgoff of a purely anonymous vma should be irrelevant
2672 * until its first write fault, when page's anon_vma and index
2673 * are set. But now set the vm_pgoff it will almost certainly
2674 * end up with (unless mremap moves it elsewhere before that
2675 * first wfault), so /proc/pid/maps tells a consistent story.
2676 *
2677 * By setting it to reflect the virtual start address of the
2678 * vma, merges and splits can happen in a seamless way, just
2679 * using the existing file pgoff checks and manipulations.
2680 * Similarly in do_mmap_pgoff and in do_brk.
2681 */
2682 if (!vma->vm_file) {
2683 BUG_ON(vma->anon_vma);
2684 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2685 }
Hugh Dickins6597d782012-10-08 16:29:07 -07002686 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
2687 &prev, &rb_link, &rb_parent))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 return -ENOMEM;
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01002689 if ((vma->vm_flags & VM_ACCOUNT) &&
Alan Cox34b4e4a2007-08-22 14:01:28 -07002690 security_vm_enough_memory_mm(mm, vma_pages(vma)))
Hugh Dickins2fd4ef82005-09-14 06:13:02 +01002691 return -ENOMEM;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 vma_link(mm, vma, prev, rb_link, rb_parent);
2694 return 0;
2695}
2696
2697/*
2698 * Copy the vma structure to a new location in the same mm,
2699 * prior to moving page table entries, to effect an mremap move.
2700 */
2701struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
Michel Lespinasse38a76012012-10-08 16:31:50 -07002702 unsigned long addr, unsigned long len, pgoff_t pgoff,
2703 bool *need_rmap_locks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705 struct vm_area_struct *vma = *vmap;
2706 unsigned long vma_start = vma->vm_start;
2707 struct mm_struct *mm = vma->vm_mm;
2708 struct vm_area_struct *new_vma, *prev;
2709 struct rb_node **rb_link, *rb_parent;
2710 struct mempolicy *pol;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002711 bool faulted_in_anon_vma = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 /*
2714 * If anonymous vma has not yet been faulted, update new pgoff
2715 * to match new location, to increase its chance of merging.
2716 */
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002717 if (unlikely(!vma->vm_file && !vma->anon_vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 pgoff = addr >> PAGE_SHIFT;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002719 faulted_in_anon_vma = false;
2720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Hugh Dickins6597d782012-10-08 16:29:07 -07002722 if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
2723 return NULL; /* should never get here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
2725 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
2726 if (new_vma) {
2727 /*
2728 * Source vma may have been merged into new_vma
2729 */
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002730 if (unlikely(vma_start >= new_vma->vm_start &&
2731 vma_start < new_vma->vm_end)) {
2732 /*
2733 * The only way we can get a vma_merge with
2734 * self during an mremap is if the vma hasn't
2735 * been faulted in yet and we were allowed to
2736 * reset the dst vma->vm_pgoff to the
2737 * destination address of the mremap to allow
2738 * the merge to happen. mremap must change the
2739 * vm_pgoff linearity between src and dst vmas
2740 * (in turn preventing a vma_merge) to be
2741 * safe. It is only safe to keep the vm_pgoff
2742 * linear if there are no pages mapped yet.
2743 */
2744 VM_BUG_ON(faulted_in_anon_vma);
Michel Lespinasse38a76012012-10-08 16:31:50 -07002745 *vmap = vma = new_vma;
Michel Lespinasse108d6642012-10-08 16:31:36 -07002746 }
Michel Lespinasse38a76012012-10-08 16:31:50 -07002747 *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 } else {
Christoph Lametere94b1762006-12-06 20:33:17 -08002749 new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (new_vma) {
2751 *new_vma = *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 new_vma->vm_start = addr;
2753 new_vma->vm_end = addr + len;
2754 new_vma->vm_pgoff = pgoff;
Michel Lespinasse523d4e22012-10-08 16:31:48 -07002755 pol = mpol_dup(vma_policy(vma));
2756 if (IS_ERR(pol))
2757 goto out_free_vma;
2758 vma_set_policy(new_vma, pol);
2759 INIT_LIST_HEAD(&new_vma->anon_vma_chain);
2760 if (anon_vma_clone(new_vma, vma))
2761 goto out_free_mempol;
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002762 if (new_vma->vm_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 get_file(new_vma->vm_file);
2764 if (new_vma->vm_ops && new_vma->vm_ops->open)
2765 new_vma->vm_ops->open(new_vma);
2766 vma_link(mm, new_vma, prev, rb_link, rb_parent);
Michel Lespinasse38a76012012-10-08 16:31:50 -07002767 *need_rmap_locks = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 }
2769 }
2770 return new_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002771
2772 out_free_mempol:
2773 mpol_put(pol);
2774 out_free_vma:
2775 kmem_cache_free(vm_area_cachep, new_vma);
2776 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002778
2779/*
2780 * Return true if the calling process may expand its vm space by the passed
2781 * number of pages
2782 */
2783int may_expand_vm(struct mm_struct *mm, unsigned long npages)
2784{
2785 unsigned long cur = mm->total_vm; /* pages */
2786 unsigned long lim;
2787
Jiri Slaby59e99e52010-03-05 13:41:44 -08002788 lim = rlimit(RLIMIT_AS) >> PAGE_SHIFT;
akpm@osdl.org119f6572005-05-01 08:58:35 -07002789
2790 if (cur + npages > lim)
2791 return 0;
2792 return 1;
2793}
Roland McGrathfa5dc222007-02-08 14:20:41 -08002794
2795
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002796static int special_mapping_fault(struct vm_area_struct *vma,
2797 struct vm_fault *vmf)
Roland McGrathfa5dc222007-02-08 14:20:41 -08002798{
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002799 pgoff_t pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002800 struct page **pages;
2801
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002802 /*
2803 * special mappings have no vm_file, and in that case, the mm
2804 * uses vm_pgoff internally. So we have to subtract it from here.
2805 * We are allowed to do this because we are the mm; do not copy
2806 * this code into drivers!
2807 */
2808 pgoff = vmf->pgoff - vma->vm_pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002809
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002810 for (pages = vma->vm_private_data; pgoff && *pages; ++pages)
2811 pgoff--;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002812
2813 if (*pages) {
2814 struct page *page = *pages;
2815 get_page(page);
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002816 vmf->page = page;
2817 return 0;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002818 }
2819
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002820 return VM_FAULT_SIGBUS;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002821}
2822
2823/*
2824 * Having a close hook prevents vma merging regardless of flags.
2825 */
2826static void special_mapping_close(struct vm_area_struct *vma)
2827{
2828}
2829
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002830static const struct vm_operations_struct special_mapping_vmops = {
Roland McGrathfa5dc222007-02-08 14:20:41 -08002831 .close = special_mapping_close,
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01002832 .fault = special_mapping_fault,
Roland McGrathfa5dc222007-02-08 14:20:41 -08002833};
2834
2835/*
2836 * Called with mm->mmap_sem held for writing.
2837 * Insert a new vma covering the given region, with the given flags.
2838 * Its pages are supplied by the given array of struct page *.
2839 * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
2840 * The region past the last page supplied will always produce SIGBUS.
2841 * The array pointer and the pages it points to are assumed to stay alive
2842 * for as long as this mapping might exist.
2843 */
2844int install_special_mapping(struct mm_struct *mm,
2845 unsigned long addr, unsigned long len,
2846 unsigned long vm_flags, struct page **pages)
2847{
Tavis Ormandy462e635e2010-12-09 15:29:42 +01002848 int ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002849 struct vm_area_struct *vma;
2850
2851 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
2852 if (unlikely(vma == NULL))
2853 return -ENOMEM;
2854
Rik van Riel5beb4932010-03-05 13:42:07 -08002855 INIT_LIST_HEAD(&vma->anon_vma_chain);
Roland McGrathfa5dc222007-02-08 14:20:41 -08002856 vma->vm_mm = mm;
2857 vma->vm_start = addr;
2858 vma->vm_end = addr + len;
2859
Nick Piggin2f987352008-02-02 03:08:53 +01002860 vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND;
Coly Li3ed75eb2007-10-18 23:39:15 -07002861 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Roland McGrathfa5dc222007-02-08 14:20:41 -08002862
2863 vma->vm_ops = &special_mapping_vmops;
2864 vma->vm_private_data = pages;
2865
Tavis Ormandy462e635e2010-12-09 15:29:42 +01002866 ret = insert_vm_struct(mm, vma);
2867 if (ret)
2868 goto out;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002869
2870 mm->total_vm += len >> PAGE_SHIFT;
2871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002872 perf_event_mmap(vma);
Peter Zijlstra089dd792009-06-05 14:04:55 +02002873
Roland McGrathfa5dc222007-02-08 14:20:41 -08002874 return 0;
Tavis Ormandy462e635e2010-12-09 15:29:42 +01002875
2876out:
2877 kmem_cache_free(vm_area_cachep, vma);
2878 return ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08002879}
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002880
2881static DEFINE_MUTEX(mm_all_locks_mutex);
2882
Peter Zijlstra454ed842008-08-11 09:30:25 +02002883static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002884{
Michel Lespinassebf181b92012-10-08 16:31:39 -07002885 if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002886 /*
2887 * The LSB of head.next can't change from under us
2888 * because we hold the mm_all_locks_mutex.
2889 */
Jiri Kosina572043c2013-01-11 14:31:59 -08002890 down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002891 /*
2892 * We can safely modify head.next after taking the
Ingo Molnar5a505082012-12-02 19:56:46 +00002893 * anon_vma->root->rwsem. If some other vma in this mm shares
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002894 * the same anon_vma we won't take it again.
2895 *
2896 * No need of atomic instructions here, head.next
2897 * can't change from under us thanks to the
Ingo Molnar5a505082012-12-02 19:56:46 +00002898 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002899 */
2900 if (__test_and_set_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07002901 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002902 BUG();
2903 }
2904}
2905
Peter Zijlstra454ed842008-08-11 09:30:25 +02002906static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002907{
2908 if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
2909 /*
2910 * AS_MM_ALL_LOCKS can't change from under us because
2911 * we hold the mm_all_locks_mutex.
2912 *
2913 * Operations on ->flags have to be atomic because
2914 * even if AS_MM_ALL_LOCKS is stable thanks to the
2915 * mm_all_locks_mutex, there may be other cpus
2916 * changing other bitflags in parallel to us.
2917 */
2918 if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
2919 BUG();
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07002920 mutex_lock_nest_lock(&mapping->i_mmap_mutex, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002921 }
2922}
2923
2924/*
2925 * This operation locks against the VM for all pte/vma/mm related
2926 * operations that could ever happen on a certain mm. This includes
2927 * vmtruncate, try_to_unmap, and all page faults.
2928 *
2929 * The caller must take the mmap_sem in write mode before calling
2930 * mm_take_all_locks(). The caller isn't allowed to release the
2931 * mmap_sem until mm_drop_all_locks() returns.
2932 *
2933 * mmap_sem in write mode is required in order to block all operations
2934 * that could modify pagetables and free pages without need of
2935 * altering the vma layout (for example populate_range() with
2936 * nonlinear vmas). It's also needed in write mode to avoid new
2937 * anon_vmas to be associated with existing vmas.
2938 *
2939 * A single task can't take more than one mm_take_all_locks() in a row
2940 * or it would deadlock.
2941 *
Michel Lespinassebf181b92012-10-08 16:31:39 -07002942 * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002943 * mapping->flags avoid to take the same lock twice, if more than one
2944 * vma in this mm is backed by the same anon_vma or address_space.
2945 *
2946 * We can take all the locks in random order because the VM code
Peter Zijlstra2b575eb2011-05-24 17:12:11 -07002947 * taking i_mmap_mutex or anon_vma->mutex outside the mmap_sem never
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002948 * takes more than one of them in a row. Secondly we're protected
2949 * against a concurrent mm_take_all_locks() by the mm_all_locks_mutex.
2950 *
2951 * mm_take_all_locks() and mm_drop_all_locks are expensive operations
2952 * that may have to take thousand of locks.
2953 *
2954 * mm_take_all_locks() can fail if it's interrupted by signals.
2955 */
2956int mm_take_all_locks(struct mm_struct *mm)
2957{
2958 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002959 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002960
2961 BUG_ON(down_read_trylock(&mm->mmap_sem));
2962
2963 mutex_lock(&mm_all_locks_mutex);
2964
2965 for (vma = mm->mmap; vma; vma = vma->vm_next) {
2966 if (signal_pending(current))
2967 goto out_unlock;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002968 if (vma->vm_file && vma->vm_file->f_mapping)
Peter Zijlstra454ed842008-08-11 09:30:25 +02002969 vm_lock_mapping(mm, vma->vm_file->f_mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002970 }
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02002971
2972 for (vma = mm->mmap; vma; vma = vma->vm_next) {
2973 if (signal_pending(current))
2974 goto out_unlock;
2975 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08002976 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
2977 vm_lock_anon_vma(mm, avc->anon_vma);
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02002978 }
2979
Kautuk Consul584cff52011-10-31 17:08:59 -07002980 return 0;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002981
2982out_unlock:
Kautuk Consul584cff52011-10-31 17:08:59 -07002983 mm_drop_all_locks(mm);
2984 return -EINTR;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002985}
2986
2987static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
2988{
Michel Lespinassebf181b92012-10-08 16:31:39 -07002989 if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002990 /*
2991 * The LSB of head.next can't change to 0 from under
2992 * us because we hold the mm_all_locks_mutex.
2993 *
2994 * We must however clear the bitflag before unlocking
Michel Lespinassebf181b92012-10-08 16:31:39 -07002995 * the vma so the users using the anon_vma->rb_root will
Andrea Arcangeli7906d002008-07-28 15:46:26 -07002996 * never see our bitflag.
2997 *
2998 * No need of atomic instructions here, head.next
2999 * can't change from under us until we release the
Ingo Molnar5a505082012-12-02 19:56:46 +00003000 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003001 */
3002 if (!__test_and_clear_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003003 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003004 BUG();
Rik van Rielcba48b92010-08-09 17:18:38 -07003005 anon_vma_unlock(anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003006 }
3007}
3008
3009static void vm_unlock_mapping(struct address_space *mapping)
3010{
3011 if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3012 /*
3013 * AS_MM_ALL_LOCKS can't change to 0 from under us
3014 * because we hold the mm_all_locks_mutex.
3015 */
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07003016 mutex_unlock(&mapping->i_mmap_mutex);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003017 if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
3018 &mapping->flags))
3019 BUG();
3020 }
3021}
3022
3023/*
3024 * The mmap_sem cannot be released by the caller until
3025 * mm_drop_all_locks() returns.
3026 */
3027void mm_drop_all_locks(struct mm_struct *mm)
3028{
3029 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003030 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003031
3032 BUG_ON(down_read_trylock(&mm->mmap_sem));
3033 BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
3034
3035 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3036 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003037 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3038 vm_unlock_anon_vma(avc->anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003039 if (vma->vm_file && vma->vm_file->f_mapping)
3040 vm_unlock_mapping(vma->vm_file->f_mapping);
3041 }
3042
3043 mutex_unlock(&mm_all_locks_mutex);
3044}
David Howells8feae132009-01-08 12:04:47 +00003045
3046/*
3047 * initialise the VMA slab
3048 */
3049void __init mmap_init(void)
3050{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003051 int ret;
3052
3053 ret = percpu_counter_init(&vm_committed_as, 0);
3054 VM_BUG_ON(ret);
David Howells8feae132009-01-08 12:04:47 +00003055}