vserver 1.9.3
[linux-2.6.git] / mm / mremap.c
1 /*
2  *      mm/mremap.c
3  *
4  *      (C) Copyright 1996 Linus Torvalds
5  *
6  *      Address space accounting code   <alan@redhat.com>
7  *      (C) Copyright 2002 Red Hat Inc, All Rights Reserved
8  */
9
10 #include <linux/mm.h>
11 #include <linux/hugetlb.h>
12 #include <linux/slab.h>
13 #include <linux/shm.h>
14 #include <linux/mman.h>
15 #include <linux/swap.h>
16 #include <linux/fs.h>
17 #include <linux/highmem.h>
18 #include <linux/security.h>
19 #include <linux/vs_memory.h>
20
21 #include <asm/uaccess.h>
22 #include <asm/cacheflush.h>
23 #include <asm/tlbflush.h>
24
25 static pte_t *get_one_pte_map_nested(struct mm_struct *mm, unsigned long addr)
26 {
27         pgd_t *pgd;
28         pmd_t *pmd;
29         pte_t *pte = NULL;
30
31         pgd = pgd_offset(mm, addr);
32         if (pgd_none(*pgd))
33                 goto end;
34         if (pgd_bad(*pgd)) {
35                 pgd_ERROR(*pgd);
36                 pgd_clear(pgd);
37                 goto end;
38         }
39
40         pmd = pmd_offset(pgd, addr);
41         if (pmd_none(*pmd))
42                 goto end;
43         if (pmd_bad(*pmd)) {
44                 pmd_ERROR(*pmd);
45                 pmd_clear(pmd);
46                 goto end;
47         }
48
49         pte = pte_offset_map_nested(pmd, addr);
50         if (pte_none(*pte)) {
51                 pte_unmap_nested(pte);
52                 pte = NULL;
53         }
54 end:
55         return pte;
56 }
57
58 static pte_t *get_one_pte_map(struct mm_struct *mm, unsigned long addr)
59 {
60         pgd_t *pgd;
61         pmd_t *pmd;
62
63         pgd = pgd_offset(mm, addr);
64         if (pgd_none(*pgd))
65                 return NULL;
66         pmd = pmd_offset(pgd, addr);
67         if (!pmd_present(*pmd))
68                 return NULL;
69         return pte_offset_map(pmd, addr);
70 }
71
72 static inline pte_t *alloc_one_pte_map(struct mm_struct *mm, unsigned long addr)
73 {
74         pmd_t *pmd;
75         pte_t *pte = NULL;
76
77         pmd = pmd_alloc(mm, pgd_offset(mm, addr), addr);
78         if (pmd)
79                 pte = pte_alloc_map(mm, pmd, addr);
80         return pte;
81 }
82
83 static int
84 move_one_page(struct vm_area_struct *vma, unsigned long old_addr,
85                 unsigned long new_addr)
86 {
87         struct address_space *mapping = NULL;
88         struct mm_struct *mm = vma->vm_mm;
89         int error = 0;
90         pte_t *src, *dst;
91
92         if (vma->vm_file) {
93                 /*
94                  * Subtle point from Rajesh Venkatasubramanian: before
95                  * moving file-based ptes, we must lock vmtruncate out,
96                  * since it might clean the dst vma before the src vma,
97                  * and we propagate stale pages into the dst afterward.
98                  */
99                 mapping = vma->vm_file->f_mapping;
100                 spin_lock(&mapping->i_mmap_lock);
101         }
102         spin_lock(&mm->page_table_lock);
103
104         src = get_one_pte_map_nested(mm, old_addr);
105         if (src) {
106                 /*
107                  * Look to see whether alloc_one_pte_map needs to perform a
108                  * memory allocation.  If it does then we need to drop the
109                  * atomic kmap
110                  */
111                 dst = get_one_pte_map(mm, new_addr);
112                 if (unlikely(!dst)) {
113                         pte_unmap_nested(src);
114                         if (mapping)
115                                 spin_unlock(&mapping->i_mmap_lock);
116                         dst = alloc_one_pte_map(mm, new_addr);
117                         if (mapping && !spin_trylock(&mapping->i_mmap_lock)) {
118                                 spin_unlock(&mm->page_table_lock);
119                                 spin_lock(&mapping->i_mmap_lock);
120                                 spin_lock(&mm->page_table_lock);
121                         }
122                         src = get_one_pte_map_nested(mm, old_addr);
123                 }
124                 /*
125                  * Since alloc_one_pte_map can drop and re-acquire
126                  * page_table_lock, we should re-check the src entry...
127                  */
128                 if (src) {
129                         if (dst) {
130                                 pte_t pte;
131                                 pte = ptep_clear_flush(vma, old_addr, src);
132                                 set_pte(dst, pte);
133                         } else
134                                 error = -ENOMEM;
135                         pte_unmap_nested(src);
136                 }
137                 if (dst)
138                         pte_unmap(dst);
139         }
140         spin_unlock(&mm->page_table_lock);
141         if (mapping)
142                 spin_unlock(&mapping->i_mmap_lock);
143         return error;
144 }
145
146 static unsigned long move_page_tables(struct vm_area_struct *vma,
147                 unsigned long new_addr, unsigned long old_addr,
148                 unsigned long len)
149 {
150         unsigned long offset;
151
152         flush_cache_range(vma, old_addr, old_addr + len);
153
154         /*
155          * This is not the clever way to do this, but we're taking the
156          * easy way out on the assumption that most remappings will be
157          * only a few pages.. This also makes error recovery easier.
158          */
159         for (offset = 0; offset < len; offset += PAGE_SIZE) {
160                 if (move_one_page(vma, old_addr+offset, new_addr+offset) < 0)
161                         break;
162                 cond_resched();
163         }
164         return offset;
165 }
166
167 static unsigned long move_vma(struct vm_area_struct *vma,
168                 unsigned long old_addr, unsigned long old_len,
169                 unsigned long new_len, unsigned long new_addr)
170 {
171         struct mm_struct *mm = vma->vm_mm;
172         struct vm_area_struct *new_vma;
173         unsigned long vm_flags = vma->vm_flags;
174         unsigned long new_pgoff;
175         unsigned long moved_len;
176         unsigned long excess = 0;
177         int split = 0;
178
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
186         new_pgoff = vma->vm_pgoff + ((old_addr - vma->vm_start) >> PAGE_SHIFT);
187         new_vma = copy_vma(&vma, new_addr, new_len, new_pgoff);
188         if (!new_vma)
189                 return -ENOMEM;
190
191         moved_len = move_page_tables(vma, new_addr, old_addr, old_len);
192         if (moved_len < old_len) {
193                 /*
194                  * On error, move entries back from new area to old,
195                  * which will succeed since page tables still there,
196                  * and then proceed to unmap new area instead of old.
197                  */
198                 move_page_tables(new_vma, old_addr, new_addr, moved_len);
199                 vma = new_vma;
200                 old_len = new_len;
201                 old_addr = new_addr;
202                 new_addr = -ENOMEM;
203         }
204
205         /* Conceal VM_ACCOUNT so old reservation is not undone */
206         if (vm_flags & VM_ACCOUNT) {
207                 vma->vm_flags &= ~VM_ACCOUNT;
208                 excess = vma->vm_end - vma->vm_start - old_len;
209                 if (old_addr > vma->vm_start &&
210                     old_addr + old_len < vma->vm_end)
211                         split = 1;
212         }
213
214         if (do_munmap(mm, old_addr, old_len) < 0) {
215                 /* OOM: unable to split vma, just get accounts right */
216                 vm_unacct_memory(excess >> PAGE_SHIFT);
217                 excess = 0;
218         }
219
220         /* Restore VM_ACCOUNT if one or two pieces of vma left */
221         if (excess) {
222                 vma->vm_flags |= VM_ACCOUNT;
223                 if (split)
224                         vma->vm_next->vm_flags |= VM_ACCOUNT;
225         }
226
227         // mm->total_vm += new_len >> PAGE_SHIFT;
228         vx_vmpages_add(mm, new_len >> PAGE_SHIFT);
229         __vm_stat_account(mm, vma->vm_flags, vma->vm_file, new_len>>PAGE_SHIFT);
230         if (vm_flags & VM_LOCKED) {
231                 // mm->locked_vm += new_len >> PAGE_SHIFT;
232                 vx_vmlocked_add(mm, new_len >> PAGE_SHIFT);
233                 if (new_len > old_len)
234                         make_pages_present(new_addr + old_len,
235                                            new_addr + new_len);
236         }
237
238         return new_addr;
239 }
240
241 /*
242  * Expand (or shrink) an existing mapping, potentially moving it at the
243  * same time (controlled by the MREMAP_MAYMOVE flag and available VM space)
244  *
245  * MREMAP_FIXED option added 5-Dec-1999 by Benjamin LaHaise
246  * This option implies MREMAP_MAYMOVE.
247  */
248 unsigned long do_mremap(unsigned long addr,
249         unsigned long old_len, unsigned long new_len,
250         unsigned long flags, unsigned long new_addr)
251 {
252         struct vm_area_struct *vma;
253         unsigned long ret = -EINVAL;
254         unsigned long charged = 0;
255
256         if (flags & ~(MREMAP_FIXED | MREMAP_MAYMOVE))
257                 goto out;
258
259         if (addr & ~PAGE_MASK)
260                 goto out;
261
262         old_len = PAGE_ALIGN(old_len);
263         new_len = PAGE_ALIGN(new_len);
264
265         /*
266          * We allow a zero old-len as a special case
267          * for DOS-emu "duplicate shm area" thing. But
268          * a zero new-len is nonsensical.
269          */
270         if (!new_len)
271                 goto out;
272
273         /* new_addr is only valid if MREMAP_FIXED is specified */
274         if (flags & MREMAP_FIXED) {
275                 if (new_addr & ~PAGE_MASK)
276                         goto out;
277                 if (!(flags & MREMAP_MAYMOVE))
278                         goto out;
279
280                 if (new_len > TASK_SIZE || new_addr > TASK_SIZE - new_len)
281                         goto out;
282
283                 /* Check if the location we're moving into overlaps the
284                  * old location at all, and fail if it does.
285                  */
286                 if ((new_addr <= addr) && (new_addr+new_len) > addr)
287                         goto out;
288
289                 if ((addr <= new_addr) && (addr+old_len) > new_addr)
290                         goto out;
291
292                 ret = do_munmap(current->mm, new_addr, new_len);
293                 if (ret)
294                         goto out;
295         }
296
297         /*
298          * Always allow a shrinking remap: that just unmaps
299          * the unnecessary pages..
300          * do_munmap does all the needed commit accounting
301          */
302         if (old_len >= new_len) {
303                 ret = do_munmap(current->mm, addr+new_len, old_len - new_len);
304                 if (ret && old_len != new_len)
305                         goto out;
306                 ret = addr;
307                 if (!(flags & MREMAP_FIXED) || (new_addr == addr))
308                         goto out;
309                 old_len = new_len;
310         }
311
312         /*
313          * Ok, we need to grow..  or relocate.
314          */
315         ret = -EFAULT;
316         vma = find_vma(current->mm, addr);
317         if (!vma || vma->vm_start > addr)
318                 goto out;
319         if (is_vm_hugetlb_page(vma)) {
320                 ret = -EINVAL;
321                 goto out;
322         }
323         /* We can't remap across vm area boundaries */
324         if (old_len > vma->vm_end - addr)
325                 goto out;
326         if (vma->vm_flags & VM_DONTEXPAND) {
327                 if (new_len > old_len)
328                         goto out;
329         }
330         if (vma->vm_flags & VM_LOCKED) {
331                 unsigned long locked, lock_limit;
332                 locked = current->mm->locked_vm << PAGE_SHIFT;
333                 lock_limit = current->rlim[RLIMIT_MEMLOCK].rlim_cur;
334                 locked += new_len - old_len;
335                 ret = -EAGAIN;
336                 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
337                         goto out;
338                 ret = -ENOMEM;
339                 if (!vx_vmlocked_avail(current->mm,
340                         (new_len - old_len) >> PAGE_SHIFT))
341                         goto out;
342         }
343         ret = -ENOMEM;
344         if ((current->mm->total_vm << PAGE_SHIFT) + (new_len - old_len)
345             > current->rlim[RLIMIT_AS].rlim_cur)
346                 goto out;
347         /* check context space, maybe only Private writable mapping? */
348         if (!vx_vmpages_avail(current->mm, (new_len - old_len) >> PAGE_SHIFT))
349                 goto out;
350
351         if (vma->vm_flags & VM_ACCOUNT) {
352                 charged = (new_len - old_len) >> PAGE_SHIFT;
353                 if (security_vm_enough_memory(charged))
354                         goto out_nc;
355         }
356
357         /* old_len exactly to the end of the area..
358          * And we're not relocating the area.
359          */
360         if (old_len == vma->vm_end - addr &&
361             !((flags & MREMAP_FIXED) && (addr != new_addr)) &&
362             (old_len != new_len || !(flags & MREMAP_MAYMOVE))) {
363                 unsigned long max_addr = TASK_SIZE;
364                 if (vma->vm_next)
365                         max_addr = vma->vm_next->vm_start;
366                 /* can we just expand the current mapping? */
367                 if (max_addr - addr >= new_len) {
368                         int pages = (new_len - old_len) >> PAGE_SHIFT;
369
370                         vma_adjust(vma, vma->vm_start,
371                                 addr + new_len, vma->vm_pgoff, NULL);
372
373                         // current->mm->total_vm += pages;
374                         vx_vmpages_add(current->mm, pages);
375                         __vm_stat_account(vma->vm_mm, vma->vm_flags,
376                                                         vma->vm_file, pages);
377                         if (vma->vm_flags & VM_LOCKED) {
378                                 // current->mm->locked_vm += pages;
379                                 vx_vmlocked_add(vma->vm_mm, pages);
380                                 make_pages_present(addr + old_len,
381                                                    addr + new_len);
382                         }
383                         ret = addr;
384                         goto out;
385                 }
386         }
387
388         /*
389          * We weren't able to just expand or shrink the area,
390          * we need to create a new one and move it..
391          */
392         ret = -ENOMEM;
393         if (flags & MREMAP_MAYMOVE) {
394                 if (!(flags & MREMAP_FIXED)) {
395                         unsigned long map_flags = 0;
396                         if (vma->vm_flags & VM_MAYSHARE)
397                                 map_flags |= MAP_SHARED;
398
399                         new_addr = get_unmapped_area(vma->vm_file, 0, new_len,
400                                                 vma->vm_pgoff, map_flags);
401                         ret = new_addr;
402                         if (new_addr & ~PAGE_MASK)
403                                 goto out;
404                 }
405                 ret = move_vma(vma, addr, old_len, new_len, new_addr);
406         }
407 out:
408         if (ret & ~PAGE_MASK)
409                 vm_unacct_memory(charged);
410 out_nc:
411         return ret;
412 }
413
414 asmlinkage unsigned long sys_mremap(unsigned long addr,
415         unsigned long old_len, unsigned long new_len,
416         unsigned long flags, unsigned long new_addr)
417 {
418         unsigned long ret;
419
420         down_write(&current->mm->mmap_sem);
421         ret = do_mremap(addr, old_len, new_len, flags, new_addr);
422         up_write(&current->mm->mmap_sem);
423         return ret;
424 }