USB: serial: add IDs for WinChipHead USB->RS232 adapter
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / mm / mremap.c
blob97de5aef9431e49b3f60a91b83863bdd7a5b0b98
1 /*
2 * mm/mremap.c
4 * (C) Copyright 1996 Linus Torvalds
6 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
7 * (C) Copyright 2002 Red Hat Inc, All Rights Reserved
8 */
10 #include <linux/mm.h>
11 #include <linux/hugetlb.h>
12 #include <linux/shm.h>
13 #include <linux/ksm.h>
14 #include <linux/mman.h>
15 #include <linux/swap.h>
16 #include <linux/capability.h>
17 #include <linux/fs.h>
18 #include <linux/highmem.h>
19 #include <linux/security.h>
20 #include <linux/syscalls.h>
21 #include <linux/mmu_notifier.h>
23 #include <asm/uaccess.h>
24 #include <asm/cacheflush.h>
25 #include <asm/tlbflush.h>
27 #include "internal.h"
29 static pmd_t *get_old_pmd(struct mm_struct *mm, unsigned long addr)
31 pgd_t *pgd;
32 pud_t *pud;
33 pmd_t *pmd;
35 pgd = pgd_offset(mm, addr);
36 if (pgd_none_or_clear_bad(pgd))
37 return NULL;
39 pud = pud_offset(pgd, addr);
40 if (pud_none_or_clear_bad(pud))
41 return NULL;
43 pmd = pmd_offset(pud, addr);
44 if (pmd_none_or_clear_bad(pmd))
45 return NULL;
47 return pmd;
50 static pmd_t *alloc_new_pmd(struct mm_struct *mm, unsigned long addr)
52 pgd_t *pgd;
53 pud_t *pud;
54 pmd_t *pmd;
56 pgd = pgd_offset(mm, addr);
57 pud = pud_alloc(mm, pgd, addr);
58 if (!pud)
59 return NULL;
61 pmd = pmd_alloc(mm, pud, addr);
62 if (!pmd)
63 return NULL;
65 if (!pmd_present(*pmd) && __pte_alloc(mm, pmd, addr))
66 return NULL;
68 return pmd;
71 static 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)
76 struct address_space *mapping = NULL;
77 struct mm_struct *mm = vma->vm_mm;
78 pte_t *old_pte, *new_pte, pte;
79 spinlock_t *old_ptl, *new_ptl;
80 unsigned long old_start;
82 old_start = old_addr;
83 mmu_notifier_invalidate_range_start(vma->vm_mm,
84 old_start, old_end);
85 if (vma->vm_file) {
87 * Subtle point from Rajesh Venkatasubramanian: before
88 * moving file-based ptes, we must lock truncate_pagecache
89 * out, since it might clean the dst vma before the src vma,
90 * and we propagate stale pages into the dst afterward.
92 mapping = vma->vm_file->f_mapping;
93 spin_lock(&mapping->i_mmap_lock);
94 new_vma->vm_truncate_count = 0;
98 * We don't have to worry about the ordering of src and dst
99 * pte locks because exclusive mmap_sem prevents deadlock.
101 old_pte = pte_offset_map_lock(mm, old_pmd, old_addr, &old_ptl);
102 new_pte = pte_offset_map_nested(new_pmd, new_addr);
103 new_ptl = pte_lockptr(mm, new_pmd);
104 if (new_ptl != old_ptl)
105 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
106 arch_enter_lazy_mmu_mode();
108 for (; old_addr < old_end; old_pte++, old_addr += PAGE_SIZE,
109 new_pte++, new_addr += PAGE_SIZE) {
110 if (pte_none(*old_pte))
111 continue;
112 pte = ptep_clear_flush(vma, old_addr, old_pte);
113 pte = move_pte(pte, new_vma->vm_page_prot, old_addr, new_addr);
114 set_pte_at(mm, new_addr, new_pte, pte);
117 arch_leave_lazy_mmu_mode();
118 if (new_ptl != old_ptl)
119 spin_unlock(new_ptl);
120 pte_unmap_nested(new_pte - 1);
121 pte_unmap_unlock(old_pte - 1, old_ptl);
122 if (mapping)
123 spin_unlock(&mapping->i_mmap_lock);
124 mmu_notifier_invalidate_range_end(vma->vm_mm, old_start, old_end);
127 #define LATENCY_LIMIT (64 * PAGE_SIZE)
129 unsigned long move_page_tables(struct vm_area_struct *vma,
130 unsigned long old_addr, struct vm_area_struct *new_vma,
131 unsigned long new_addr, unsigned long len)
133 unsigned long extent, next, old_end;
134 pmd_t *old_pmd, *new_pmd;
136 old_end = old_addr + len;
137 flush_cache_range(vma, old_addr, old_end);
139 for (; old_addr < old_end; old_addr += extent, new_addr += extent) {
140 cond_resched();
141 next = (old_addr + PMD_SIZE) & PMD_MASK;
142 if (next - 1 > old_end)
143 next = old_end;
144 extent = next - old_addr;
145 old_pmd = get_old_pmd(vma->vm_mm, old_addr);
146 if (!old_pmd)
147 continue;
148 new_pmd = alloc_new_pmd(vma->vm_mm, new_addr);
149 if (!new_pmd)
150 break;
151 next = (new_addr + PMD_SIZE) & PMD_MASK;
152 if (extent > next - new_addr)
153 extent = next - new_addr;
154 if (extent > LATENCY_LIMIT)
155 extent = LATENCY_LIMIT;
156 move_ptes(vma, old_pmd, old_addr, old_addr + extent,
157 new_vma, new_pmd, new_addr);
160 return len + old_addr - old_end; /* how much done */
163 static unsigned long move_vma(struct vm_area_struct *vma,
164 unsigned long old_addr, unsigned long old_len,
165 unsigned long new_len, unsigned long new_addr)
167 struct mm_struct *mm = vma->vm_mm;
168 struct vm_area_struct *new_vma;
169 unsigned long vm_flags = vma->vm_flags;
170 unsigned long new_pgoff;
171 unsigned long moved_len;
172 unsigned long excess = 0;
173 unsigned long hiwater_vm;
174 int split = 0;
175 int err;
178 * We'd prefer to avoid failure later on in do_munmap:
179 * which may split one vma into three before unmapping.
181 if (mm->map_count >= sysctl_max_map_count - 3)
182 return -ENOMEM;
185 * Advise KSM to break any KSM pages in the area to be moved:
186 * it would be confusing if they were to turn up at the new
187 * location, where they happen to coincide with different KSM
188 * pages recently unmapped. But leave vma->vm_flags as it was,
189 * so KSM can come around to merge on vma and new_vma afterwards.
191 err = ksm_madvise(vma, old_addr, old_addr + old_len,
192 MADV_UNMERGEABLE, &vm_flags);
193 if (err)
194 return err;
196 new_pgoff = vma->vm_pgoff + ((old_addr - vma->vm_start) >> PAGE_SHIFT);
197 new_vma = copy_vma(&vma, new_addr, new_len, new_pgoff);
198 if (!new_vma)
199 return -ENOMEM;
201 moved_len = move_page_tables(vma, old_addr, new_vma, new_addr, old_len);
202 if (moved_len < old_len) {
204 * On error, move entries back from new area to old,
205 * which will succeed since page tables still there,
206 * and then proceed to unmap new area instead of old.
208 move_page_tables(new_vma, new_addr, vma, old_addr, moved_len);
209 vma = new_vma;
210 old_len = new_len;
211 old_addr = new_addr;
212 new_addr = -ENOMEM;
215 /* Conceal VM_ACCOUNT so old reservation is not undone */
216 if (vm_flags & VM_ACCOUNT) {
217 vma->vm_flags &= ~VM_ACCOUNT;
218 excess = vma->vm_end - vma->vm_start - old_len;
219 if (old_addr > vma->vm_start &&
220 old_addr + old_len < vma->vm_end)
221 split = 1;
225 * If we failed to move page tables we still do total_vm increment
226 * since do_munmap() will decrement it by old_len == new_len.
228 * Since total_vm is about to be raised artificially high for a
229 * moment, we need to restore high watermark afterwards: if stats
230 * are taken meanwhile, total_vm and hiwater_vm appear too high.
231 * If this were a serious issue, we'd add a flag to do_munmap().
233 hiwater_vm = mm->hiwater_vm;
234 mm->total_vm += new_len >> PAGE_SHIFT;
235 vm_stat_account(mm, vma->vm_flags, vma->vm_file, new_len>>PAGE_SHIFT);
237 if (do_munmap(mm, old_addr, old_len) < 0) {
238 /* OOM: unable to split vma, just get accounts right */
239 vm_unacct_memory(excess >> PAGE_SHIFT);
240 excess = 0;
242 mm->hiwater_vm = hiwater_vm;
244 /* Restore VM_ACCOUNT if one or two pieces of vma left */
245 if (excess) {
246 vma->vm_flags |= VM_ACCOUNT;
247 if (split)
248 vma->vm_next->vm_flags |= VM_ACCOUNT;
251 if (vm_flags & VM_LOCKED) {
252 mm->locked_vm += new_len >> PAGE_SHIFT;
253 if (new_len > old_len)
254 mlock_vma_pages_range(new_vma, new_addr + old_len,
255 new_addr + new_len);
258 return new_addr;
261 static struct vm_area_struct *vma_to_resize(unsigned long addr,
262 unsigned long old_len, unsigned long new_len, unsigned long *p)
264 struct mm_struct *mm = current->mm;
265 struct vm_area_struct *vma = find_vma(mm, addr);
267 if (!vma || vma->vm_start > addr)
268 goto Efault;
270 if (is_vm_hugetlb_page(vma))
271 goto Einval;
273 /* We can't remap across vm area boundaries */
274 if (old_len > vma->vm_end - addr)
275 goto Efault;
277 /* Need to be careful about a growing mapping */
278 if (new_len > old_len) {
279 unsigned long pgoff;
281 if (vma->vm_flags & (VM_DONTEXPAND | VM_PFNMAP))
282 goto Efault;
283 pgoff = (addr - vma->vm_start) >> PAGE_SHIFT;
284 pgoff += vma->vm_pgoff;
285 if (pgoff + (new_len >> PAGE_SHIFT) < pgoff)
286 goto Einval;
289 if (vma->vm_flags & VM_LOCKED) {
290 unsigned long locked, lock_limit;
291 locked = mm->locked_vm << PAGE_SHIFT;
292 lock_limit = rlimit(RLIMIT_MEMLOCK);
293 locked += new_len - old_len;
294 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
295 goto Eagain;
298 if (!may_expand_vm(mm, (new_len - old_len) >> PAGE_SHIFT))
299 goto Enomem;
301 if (vma->vm_flags & VM_ACCOUNT) {
302 unsigned long charged = (new_len - old_len) >> PAGE_SHIFT;
303 if (security_vm_enough_memory(charged))
304 goto Efault;
305 *p = charged;
308 return vma;
310 Efault: /* very odd choice for most of the cases, but... */
311 return ERR_PTR(-EFAULT);
312 Einval:
313 return ERR_PTR(-EINVAL);
314 Enomem:
315 return ERR_PTR(-ENOMEM);
316 Eagain:
317 return ERR_PTR(-EAGAIN);
320 static unsigned long mremap_to(unsigned long addr,
321 unsigned long old_len, unsigned long new_addr,
322 unsigned long new_len)
324 struct mm_struct *mm = current->mm;
325 struct vm_area_struct *vma;
326 unsigned long ret = -EINVAL;
327 unsigned long charged = 0;
328 unsigned long map_flags;
330 if (new_addr & ~PAGE_MASK)
331 goto out;
333 if (new_len > TASK_SIZE || new_addr > TASK_SIZE - new_len)
334 goto out;
336 /* Check if the location we're moving into overlaps the
337 * old location at all, and fail if it does.
339 if ((new_addr <= addr) && (new_addr+new_len) > addr)
340 goto out;
342 if ((addr <= new_addr) && (addr+old_len) > new_addr)
343 goto out;
345 ret = security_file_mmap(NULL, 0, 0, 0, new_addr, 1);
346 if (ret)
347 goto out;
349 ret = do_munmap(mm, new_addr, new_len);
350 if (ret)
351 goto out;
353 if (old_len >= new_len) {
354 ret = do_munmap(mm, addr+new_len, old_len - new_len);
355 if (ret && old_len != new_len)
356 goto out;
357 old_len = new_len;
360 vma = vma_to_resize(addr, old_len, new_len, &charged);
361 if (IS_ERR(vma)) {
362 ret = PTR_ERR(vma);
363 goto out;
366 map_flags = MAP_FIXED;
367 if (vma->vm_flags & VM_MAYSHARE)
368 map_flags |= MAP_SHARED;
370 ret = get_unmapped_area(vma->vm_file, new_addr, new_len, vma->vm_pgoff +
371 ((addr - vma->vm_start) >> PAGE_SHIFT),
372 map_flags);
373 if (ret & ~PAGE_MASK)
374 goto out1;
376 ret = move_vma(vma, addr, old_len, new_len, new_addr);
377 if (!(ret & ~PAGE_MASK))
378 goto out;
379 out1:
380 vm_unacct_memory(charged);
382 out:
383 return ret;
386 static int vma_expandable(struct vm_area_struct *vma, unsigned long delta)
388 unsigned long end = vma->vm_end + delta;
389 if (end < vma->vm_end) /* overflow */
390 return 0;
391 if (vma->vm_next && vma->vm_next->vm_start < end) /* intersection */
392 return 0;
393 if (get_unmapped_area(NULL, vma->vm_start, end - vma->vm_start,
394 0, MAP_FIXED) & ~PAGE_MASK)
395 return 0;
396 return 1;
400 * Expand (or shrink) an existing mapping, potentially moving it at the
401 * same time (controlled by the MREMAP_MAYMOVE flag and available VM space)
403 * MREMAP_FIXED option added 5-Dec-1999 by Benjamin LaHaise
404 * This option implies MREMAP_MAYMOVE.
406 unsigned long do_mremap(unsigned long addr,
407 unsigned long old_len, unsigned long new_len,
408 unsigned long flags, unsigned long new_addr)
410 struct mm_struct *mm = current->mm;
411 struct vm_area_struct *vma;
412 unsigned long ret = -EINVAL;
413 unsigned long charged = 0;
415 if (flags & ~(MREMAP_FIXED | MREMAP_MAYMOVE))
416 goto out;
418 if (addr & ~PAGE_MASK)
419 goto out;
421 old_len = PAGE_ALIGN(old_len);
422 new_len = PAGE_ALIGN(new_len);
425 * We allow a zero old-len as a special case
426 * for DOS-emu "duplicate shm area" thing. But
427 * a zero new-len is nonsensical.
429 if (!new_len)
430 goto out;
432 if (flags & MREMAP_FIXED) {
433 if (flags & MREMAP_MAYMOVE)
434 ret = mremap_to(addr, old_len, new_addr, new_len);
435 goto out;
439 * Always allow a shrinking remap: that just unmaps
440 * the unnecessary pages..
441 * do_munmap does all the needed commit accounting
443 if (old_len >= new_len) {
444 ret = do_munmap(mm, addr+new_len, old_len - new_len);
445 if (ret && old_len != new_len)
446 goto out;
447 ret = addr;
448 goto out;
452 * Ok, we need to grow..
454 vma = vma_to_resize(addr, old_len, new_len, &charged);
455 if (IS_ERR(vma)) {
456 ret = PTR_ERR(vma);
457 goto out;
460 /* old_len exactly to the end of the area..
462 if (old_len == vma->vm_end - addr) {
463 /* can we just expand the current mapping? */
464 if (vma_expandable(vma, new_len - old_len)) {
465 int pages = (new_len - old_len) >> PAGE_SHIFT;
467 if (vma_adjust(vma, vma->vm_start, addr + new_len,
468 vma->vm_pgoff, NULL)) {
469 ret = -ENOMEM;
470 goto out;
473 mm->total_vm += pages;
474 vm_stat_account(mm, vma->vm_flags, vma->vm_file, pages);
475 if (vma->vm_flags & VM_LOCKED) {
476 mm->locked_vm += pages;
477 mlock_vma_pages_range(vma, addr + old_len,
478 addr + new_len);
480 ret = addr;
481 goto out;
486 * We weren't able to just expand or shrink the area,
487 * we need to create a new one and move it..
489 ret = -ENOMEM;
490 if (flags & MREMAP_MAYMOVE) {
491 unsigned long map_flags = 0;
492 if (vma->vm_flags & VM_MAYSHARE)
493 map_flags |= MAP_SHARED;
495 new_addr = get_unmapped_area(vma->vm_file, 0, new_len,
496 vma->vm_pgoff +
497 ((addr - vma->vm_start) >> PAGE_SHIFT),
498 map_flags);
499 if (new_addr & ~PAGE_MASK) {
500 ret = new_addr;
501 goto out;
504 ret = security_file_mmap(NULL, 0, 0, 0, new_addr, 1);
505 if (ret)
506 goto out;
507 ret = move_vma(vma, addr, old_len, new_len, new_addr);
509 out:
510 if (ret & ~PAGE_MASK)
511 vm_unacct_memory(charged);
512 return ret;
515 SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
516 unsigned long, new_len, unsigned long, flags,
517 unsigned long, new_addr)
519 unsigned long ret;
521 down_write(&current->mm->mmap_sem);
522 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
523 up_write(&current->mm->mmap_sem);
524 return ret;