blob: 563fbdd6293ae3f0139450d6b7d848f862c1f8dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/mremap.c
3 *
4 * (C) Copyright 1996 Linus Torvalds
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 * (C) Copyright 2002 Red Hat Inc, All Rights Reserved
8 */
9
10#include <linux/mm.h>
11#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/shm.h>
Hugh Dickins1ff82992009-09-21 17:02:05 -070013#include <linux/ksm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mman.h>
15#include <linux/swap.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
18#include <linux/highmem.h>
19#include <linux/security.h>
20#include <linux/syscalls.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070021#include <linux/mmu_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/uaccess.h>
24#include <asm/cacheflush.h>
25#include <asm/tlbflush.h>
26
Rik van Rielba470de2008-10-18 20:26:50 -070027#include "internal.h"
28
Hugh Dickins7be7a542005-10-29 18:16:00 -070029static pmd_t *get_old_pmd(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 pgd_t *pgd;
32 pud_t *pud;
33 pmd_t *pmd;
34
35 pgd = pgd_offset(mm, addr);
36 if (pgd_none_or_clear_bad(pgd))
37 return NULL;
38
39 pud = pud_offset(pgd, addr);
40 if (pud_none_or_clear_bad(pud))
41 return NULL;
42
43 pmd = pmd_offset(pud, addr);
44 if (pmd_none_or_clear_bad(pmd))
45 return NULL;
46
Hugh Dickins7be7a542005-10-29 18:16:00 -070047 return pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
Hugh Dickins7be7a542005-10-29 18:16:00 -070050static pmd_t *alloc_new_pmd(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 pgd_t *pgd;
53 pud_t *pud;
Hugh Dickinsc74df322005-10-29 18:16:23 -070054 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 pgd = pgd_offset(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 pud = pud_alloc(mm, pgd, addr);
58 if (!pud)
Hugh Dickinsc74df322005-10-29 18:16:23 -070059 return NULL;
Hugh Dickins7be7a542005-10-29 18:16:00 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 pmd = pmd_alloc(mm, pud, addr);
Hugh Dickins7be7a542005-10-29 18:16:00 -070062 if (!pmd)
Hugh Dickinsc74df322005-10-29 18:16:23 -070063 return NULL;
Hugh Dickins7be7a542005-10-29 18:16:00 -070064
Hugh Dickins1bb36302005-10-29 18:16:22 -070065 if (!pmd_present(*pmd) && __pte_alloc(mm, pmd, addr))
Hugh Dickinsc74df322005-10-29 18:16:23 -070066 return NULL;
67
Hugh Dickins7be7a542005-10-29 18:16:00 -070068 return pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Hugh Dickins7be7a542005-10-29 18:16:00 -070071static void move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd,
72 unsigned long old_addr, unsigned long old_end,
73 struct vm_area_struct *new_vma, pmd_t *new_pmd,
74 unsigned long new_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 struct address_space *mapping = NULL;
77 struct mm_struct *mm = vma->vm_mm;
Hugh Dickins7be7a542005-10-29 18:16:00 -070078 pte_t *old_pte, *new_pte, pte;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -070079 spinlock_t *old_ptl, *new_ptl;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070080 unsigned long old_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070082 old_start = old_addr;
83 mmu_notifier_invalidate_range_start(vma->vm_mm,
84 old_start, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (vma->vm_file) {
86 /*
87 * Subtle point from Rajesh Venkatasubramanian: before
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +100088 * moving file-based ptes, we must lock truncate_pagecache
89 * out, since it might clean the dst vma before the src vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * and we propagate stale pages into the dst afterward.
91 */
92 mapping = vma->vm_file->f_mapping;
93 spin_lock(&mapping->i_mmap_lock);
94 if (new_vma->vm_truncate_count &&
95 new_vma->vm_truncate_count != vma->vm_truncate_count)
96 new_vma->vm_truncate_count = 0;
97 }
Hugh Dickins7be7a542005-10-29 18:16:00 -070098
Hugh Dickins4c21e2f2005-10-29 18:16:40 -070099 /*
100 * We don't have to worry about the ordering of src and dst
101 * pte locks because exclusive mmap_sem prevents deadlock.
102 */
Hugh Dickinsc74df322005-10-29 18:16:23 -0700103 old_pte = pte_offset_map_lock(mm, old_pmd, old_addr, &old_ptl);
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700104 new_pte = pte_offset_map(new_pmd, new_addr);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700105 new_ptl = pte_lockptr(mm, new_pmd);
106 if (new_ptl != old_ptl)
Ingo Molnarf20dc5f2006-07-03 00:25:08 -0700107 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700108 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Hugh Dickins7be7a542005-10-29 18:16:00 -0700110 for (; old_addr < old_end; old_pte++, old_addr += PAGE_SIZE,
111 new_pte++, new_addr += PAGE_SIZE) {
112 if (pte_none(*old_pte))
113 continue;
114 pte = ptep_clear_flush(vma, old_addr, old_pte);
Hugh Dickins7be7a542005-10-29 18:16:00 -0700115 pte = move_pte(pte, new_vma->vm_page_prot, old_addr, new_addr);
116 set_pte_at(mm, new_addr, new_pte, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Hugh Dickins7be7a542005-10-29 18:16:00 -0700118
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700119 arch_leave_lazy_mmu_mode();
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700120 if (new_ptl != old_ptl)
121 spin_unlock(new_ptl);
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700122 pte_unmap(new_pte - 1);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700123 pte_unmap_unlock(old_pte - 1, old_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (mapping)
125 spin_unlock(&mapping->i_mmap_lock);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700126 mmu_notifier_invalidate_range_end(vma->vm_mm, old_start, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Hugh Dickins7be7a542005-10-29 18:16:00 -0700129#define LATENCY_LIMIT (64 * PAGE_SIZE)
130
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700131unsigned long move_page_tables(struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 unsigned long old_addr, struct vm_area_struct *new_vma,
133 unsigned long new_addr, unsigned long len)
134{
Hugh Dickins7be7a542005-10-29 18:16:00 -0700135 unsigned long extent, next, old_end;
136 pmd_t *old_pmd, *new_pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Hugh Dickins7be7a542005-10-29 18:16:00 -0700138 old_end = old_addr + len;
139 flush_cache_range(vma, old_addr, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Hugh Dickins7be7a542005-10-29 18:16:00 -0700141 for (; old_addr < old_end; old_addr += extent, new_addr += extent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 cond_resched();
Hugh Dickins7be7a542005-10-29 18:16:00 -0700143 next = (old_addr + PMD_SIZE) & PMD_MASK;
144 if (next - 1 > old_end)
145 next = old_end;
146 extent = next - old_addr;
147 old_pmd = get_old_pmd(vma->vm_mm, old_addr);
148 if (!old_pmd)
149 continue;
150 new_pmd = alloc_new_pmd(vma->vm_mm, new_addr);
151 if (!new_pmd)
152 break;
153 next = (new_addr + PMD_SIZE) & PMD_MASK;
154 if (extent > next - new_addr)
155 extent = next - new_addr;
156 if (extent > LATENCY_LIMIT)
157 extent = LATENCY_LIMIT;
158 move_ptes(vma, old_pmd, old_addr, old_addr + extent,
159 new_vma, new_pmd, new_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Hugh Dickins7be7a542005-10-29 18:16:00 -0700161
162 return len + old_addr - old_end; /* how much done */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
165static unsigned long move_vma(struct vm_area_struct *vma,
166 unsigned long old_addr, unsigned long old_len,
167 unsigned long new_len, unsigned long new_addr)
168{
169 struct mm_struct *mm = vma->vm_mm;
170 struct vm_area_struct *new_vma;
171 unsigned long vm_flags = vma->vm_flags;
172 unsigned long new_pgoff;
173 unsigned long moved_len;
174 unsigned long excess = 0;
Hugh Dickins365e9c872005-10-29 18:16:18 -0700175 unsigned long hiwater_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 int split = 0;
Hugh Dickins7103ad32009-09-21 17:02:28 -0700177 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /*
180 * We'd prefer to avoid failure later on in do_munmap:
181 * which may split one vma into three before unmapping.
182 */
183 if (mm->map_count >= sysctl_max_map_count - 3)
184 return -ENOMEM;
185
Hugh Dickins1ff82992009-09-21 17:02:05 -0700186 /*
187 * Advise KSM to break any KSM pages in the area to be moved:
188 * it would be confusing if they were to turn up at the new
189 * location, where they happen to coincide with different KSM
190 * pages recently unmapped. But leave vma->vm_flags as it was,
191 * so KSM can come around to merge on vma and new_vma afterwards.
192 */
Hugh Dickins7103ad32009-09-21 17:02:28 -0700193 err = ksm_madvise(vma, old_addr, old_addr + old_len,
194 MADV_UNMERGEABLE, &vm_flags);
195 if (err)
196 return err;
Hugh Dickins1ff82992009-09-21 17:02:05 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 new_pgoff = vma->vm_pgoff + ((old_addr - vma->vm_start) >> PAGE_SHIFT);
199 new_vma = copy_vma(&vma, new_addr, new_len, new_pgoff);
200 if (!new_vma)
201 return -ENOMEM;
202
203 moved_len = move_page_tables(vma, old_addr, new_vma, new_addr, old_len);
204 if (moved_len < old_len) {
205 /*
206 * On error, move entries back from new area to old,
207 * which will succeed since page tables still there,
208 * and then proceed to unmap new area instead of old.
209 */
210 move_page_tables(new_vma, new_addr, vma, old_addr, moved_len);
211 vma = new_vma;
212 old_len = new_len;
213 old_addr = new_addr;
214 new_addr = -ENOMEM;
215 }
216
217 /* Conceal VM_ACCOUNT so old reservation is not undone */
218 if (vm_flags & VM_ACCOUNT) {
219 vma->vm_flags &= ~VM_ACCOUNT;
220 excess = vma->vm_end - vma->vm_start - old_len;
221 if (old_addr > vma->vm_start &&
222 old_addr + old_len < vma->vm_end)
223 split = 1;
224 }
225
Kirill Korotaev71799062005-05-16 21:53:18 -0700226 /*
Hugh Dickins365e9c872005-10-29 18:16:18 -0700227 * If we failed to move page tables we still do total_vm increment
228 * since do_munmap() will decrement it by old_len == new_len.
229 *
230 * Since total_vm is about to be raised artificially high for a
231 * moment, we need to restore high watermark afterwards: if stats
232 * are taken meanwhile, total_vm and hiwater_vm appear too high.
233 * If this were a serious issue, we'd add a flag to do_munmap().
Kirill Korotaev71799062005-05-16 21:53:18 -0700234 */
Hugh Dickins365e9c872005-10-29 18:16:18 -0700235 hiwater_vm = mm->hiwater_vm;
Kirill Korotaev71799062005-05-16 21:53:18 -0700236 mm->total_vm += new_len >> PAGE_SHIFT;
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700237 vm_stat_account(mm, vma->vm_flags, vma->vm_file, new_len>>PAGE_SHIFT);
Kirill Korotaev71799062005-05-16 21:53:18 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (do_munmap(mm, old_addr, old_len) < 0) {
240 /* OOM: unable to split vma, just get accounts right */
241 vm_unacct_memory(excess >> PAGE_SHIFT);
242 excess = 0;
243 }
Hugh Dickins365e9c872005-10-29 18:16:18 -0700244 mm->hiwater_vm = hiwater_vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* Restore VM_ACCOUNT if one or two pieces of vma left */
247 if (excess) {
248 vma->vm_flags |= VM_ACCOUNT;
249 if (split)
250 vma->vm_next->vm_flags |= VM_ACCOUNT;
251 }
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (vm_flags & VM_LOCKED) {
254 mm->locked_vm += new_len >> PAGE_SHIFT;
255 if (new_len > old_len)
Rik van Rielba470de2008-10-18 20:26:50 -0700256 mlock_vma_pages_range(new_vma, new_addr + old_len,
257 new_addr + new_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
260 return new_addr;
261}
262
Al Viro54f5de72009-11-24 07:17:46 -0500263static struct vm_area_struct *vma_to_resize(unsigned long addr,
264 unsigned long old_len, unsigned long new_len, unsigned long *p)
265{
266 struct mm_struct *mm = current->mm;
267 struct vm_area_struct *vma = find_vma(mm, addr);
268
269 if (!vma || vma->vm_start > addr)
270 goto Efault;
271
272 if (is_vm_hugetlb_page(vma))
273 goto Einval;
274
275 /* We can't remap across vm area boundaries */
276 if (old_len > vma->vm_end - addr)
277 goto Efault;
278
279 if (vma->vm_flags & (VM_DONTEXPAND | VM_PFNMAP)) {
280 if (new_len > old_len)
281 goto Efault;
282 }
283
284 if (vma->vm_flags & VM_LOCKED) {
285 unsigned long locked, lock_limit;
286 locked = mm->locked_vm << PAGE_SHIFT;
Jiri Slaby59e99e52010-03-05 13:41:44 -0800287 lock_limit = rlimit(RLIMIT_MEMLOCK);
Al Viro54f5de72009-11-24 07:17:46 -0500288 locked += new_len - old_len;
289 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
290 goto Eagain;
291 }
292
293 if (!may_expand_vm(mm, (new_len - old_len) >> PAGE_SHIFT))
294 goto Enomem;
295
296 if (vma->vm_flags & VM_ACCOUNT) {
297 unsigned long charged = (new_len - old_len) >> PAGE_SHIFT;
298 if (security_vm_enough_memory(charged))
299 goto Efault;
300 *p = charged;
301 }
302
303 return vma;
304
305Efault: /* very odd choice for most of the cases, but... */
306 return ERR_PTR(-EFAULT);
307Einval:
308 return ERR_PTR(-EINVAL);
309Enomem:
310 return ERR_PTR(-ENOMEM);
311Eagain:
312 return ERR_PTR(-EAGAIN);
313}
314
Al Viroecc1a892009-11-24 07:28:07 -0500315static unsigned long mremap_to(unsigned long addr,
316 unsigned long old_len, unsigned long new_addr,
317 unsigned long new_len)
318{
319 struct mm_struct *mm = current->mm;
320 struct vm_area_struct *vma;
321 unsigned long ret = -EINVAL;
322 unsigned long charged = 0;
Al Viro097eed12009-11-24 08:43:52 -0500323 unsigned long map_flags;
Al Viroecc1a892009-11-24 07:28:07 -0500324
325 if (new_addr & ~PAGE_MASK)
326 goto out;
327
328 if (new_len > TASK_SIZE || new_addr > TASK_SIZE - new_len)
329 goto out;
330
331 /* Check if the location we're moving into overlaps the
332 * old location at all, and fail if it does.
333 */
334 if ((new_addr <= addr) && (new_addr+new_len) > addr)
335 goto out;
336
337 if ((addr <= new_addr) && (addr+old_len) > new_addr)
338 goto out;
339
340 ret = security_file_mmap(NULL, 0, 0, 0, new_addr, 1);
341 if (ret)
342 goto out;
343
344 ret = do_munmap(mm, new_addr, new_len);
345 if (ret)
346 goto out;
347
348 if (old_len >= new_len) {
349 ret = do_munmap(mm, addr+new_len, old_len - new_len);
350 if (ret && old_len != new_len)
351 goto out;
352 old_len = new_len;
353 }
354
355 vma = vma_to_resize(addr, old_len, new_len, &charged);
356 if (IS_ERR(vma)) {
357 ret = PTR_ERR(vma);
358 goto out;
359 }
360
Al Viro097eed12009-11-24 08:43:52 -0500361 map_flags = MAP_FIXED;
362 if (vma->vm_flags & VM_MAYSHARE)
363 map_flags |= MAP_SHARED;
Al Viro9206de92009-12-03 15:23:11 -0500364
Al Viro097eed12009-11-24 08:43:52 -0500365 ret = get_unmapped_area(vma->vm_file, new_addr, new_len, vma->vm_pgoff +
366 ((addr - vma->vm_start) >> PAGE_SHIFT),
367 map_flags);
Al Viroecc1a892009-11-24 07:28:07 -0500368 if (ret & ~PAGE_MASK)
Al Viro097eed12009-11-24 08:43:52 -0500369 goto out1;
370
371 ret = move_vma(vma, addr, old_len, new_len, new_addr);
372 if (!(ret & ~PAGE_MASK))
373 goto out;
374out1:
375 vm_unacct_memory(charged);
Al Viroecc1a892009-11-24 07:28:07 -0500376
377out:
378 return ret;
379}
380
Al Viro1a0ef852009-11-24 07:43:18 -0500381static int vma_expandable(struct vm_area_struct *vma, unsigned long delta)
382{
Al Virof106af42009-11-24 08:25:18 -0500383 unsigned long end = vma->vm_end + delta;
Al Viro9206de92009-12-03 15:23:11 -0500384 if (end < vma->vm_end) /* overflow */
Al Viro1a0ef852009-11-24 07:43:18 -0500385 return 0;
Al Viro9206de92009-12-03 15:23:11 -0500386 if (vma->vm_next && vma->vm_next->vm_start < end) /* intersection */
Al Virof106af42009-11-24 08:25:18 -0500387 return 0;
388 if (get_unmapped_area(NULL, vma->vm_start, end - vma->vm_start,
389 0, MAP_FIXED) & ~PAGE_MASK)
390 return 0;
Al Viro1a0ef852009-11-24 07:43:18 -0500391 return 1;
392}
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394/*
395 * Expand (or shrink) an existing mapping, potentially moving it at the
396 * same time (controlled by the MREMAP_MAYMOVE flag and available VM space)
397 *
398 * MREMAP_FIXED option added 5-Dec-1999 by Benjamin LaHaise
399 * This option implies MREMAP_MAYMOVE.
400 */
401unsigned long do_mremap(unsigned long addr,
402 unsigned long old_len, unsigned long new_len,
403 unsigned long flags, unsigned long new_addr)
404{
Hugh Dickinsd0de32d2005-10-29 18:16:16 -0700405 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct vm_area_struct *vma;
407 unsigned long ret = -EINVAL;
408 unsigned long charged = 0;
409
410 if (flags & ~(MREMAP_FIXED | MREMAP_MAYMOVE))
411 goto out;
412
413 if (addr & ~PAGE_MASK)
414 goto out;
415
416 old_len = PAGE_ALIGN(old_len);
417 new_len = PAGE_ALIGN(new_len);
418
419 /*
420 * We allow a zero old-len as a special case
421 * for DOS-emu "duplicate shm area" thing. But
422 * a zero new-len is nonsensical.
423 */
424 if (!new_len)
425 goto out;
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (flags & MREMAP_FIXED) {
Al Viroecc1a892009-11-24 07:28:07 -0500428 if (flags & MREMAP_MAYMOVE)
429 ret = mremap_to(addr, old_len, new_addr, new_len);
430 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 /*
434 * Always allow a shrinking remap: that just unmaps
435 * the unnecessary pages..
436 * do_munmap does all the needed commit accounting
437 */
438 if (old_len >= new_len) {
Hugh Dickinsd0de32d2005-10-29 18:16:16 -0700439 ret = do_munmap(mm, addr+new_len, old_len - new_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (ret && old_len != new_len)
441 goto out;
442 ret = addr;
Al Viroecc1a892009-11-24 07:28:07 -0500443 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
446 /*
Al Viroecc1a892009-11-24 07:28:07 -0500447 * Ok, we need to grow..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Al Viro54f5de72009-11-24 07:17:46 -0500449 vma = vma_to_resize(addr, old_len, new_len, &charged);
450 if (IS_ERR(vma)) {
451 ret = PTR_ERR(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
455 /* old_len exactly to the end of the area..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
Al Viroecc1a892009-11-24 07:28:07 -0500457 if (old_len == vma->vm_end - addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* can we just expand the current mapping? */
Al Viro1a0ef852009-11-24 07:43:18 -0500459 if (vma_expandable(vma, new_len - old_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 int pages = (new_len - old_len) >> PAGE_SHIFT;
461
Rik van Riel5beb4932010-03-05 13:42:07 -0800462 if (vma_adjust(vma, vma->vm_start, addr + new_len,
463 vma->vm_pgoff, NULL)) {
464 ret = -ENOMEM;
465 goto out;
466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Hugh Dickinsd0de32d2005-10-29 18:16:16 -0700468 mm->total_vm += pages;
469 vm_stat_account(mm, vma->vm_flags, vma->vm_file, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (vma->vm_flags & VM_LOCKED) {
Hugh Dickinsd0de32d2005-10-29 18:16:16 -0700471 mm->locked_vm += pages;
Rik van Rielba470de2008-10-18 20:26:50 -0700472 mlock_vma_pages_range(vma, addr + old_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 addr + new_len);
474 }
475 ret = addr;
476 goto out;
477 }
478 }
479
480 /*
481 * We weren't able to just expand or shrink the area,
482 * we need to create a new one and move it..
483 */
484 ret = -ENOMEM;
485 if (flags & MREMAP_MAYMOVE) {
Al Viroecc1a892009-11-24 07:28:07 -0500486 unsigned long map_flags = 0;
487 if (vma->vm_flags & VM_MAYSHARE)
488 map_flags |= MAP_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Al Viroecc1a892009-11-24 07:28:07 -0500490 new_addr = get_unmapped_area(vma->vm_file, 0, new_len,
Al Viro93587412009-11-24 08:45:24 -0500491 vma->vm_pgoff +
492 ((addr - vma->vm_start) >> PAGE_SHIFT),
493 map_flags);
Al Viroecc1a892009-11-24 07:28:07 -0500494 if (new_addr & ~PAGE_MASK) {
495 ret = new_addr;
496 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Al Viroecc1a892009-11-24 07:28:07 -0500498
499 ret = security_file_mmap(NULL, 0, 0, 0, new_addr, 1);
500 if (ret)
501 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 ret = move_vma(vma, addr, old_len, new_len, new_addr);
503 }
504out:
505 if (ret & ~PAGE_MASK)
506 vm_unacct_memory(charged);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return ret;
508}
509
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100510SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
511 unsigned long, new_len, unsigned long, flags,
512 unsigned long, new_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 unsigned long ret;
515
516 down_write(&current->mm->mmap_sem);
517 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
518 up_write(&current->mm->mmap_sem);
519 return ret;
520}