blob: ece04963158e4c61cb89c0bd38736d2dc59f76d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/memory.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 */
6
7/*
8 * demand-loading started 01.12.91 - seems it is high on the list of
9 * things wanted, and it should be easy to implement. - Linus
10 */
11
12/*
13 * Ok, demand-loading was easy, shared pages a little bit tricker. Shared
14 * pages started 02.12.91, seems to work. - Linus.
15 *
16 * Tested sharing by executing about 30 /bin/sh: under the old kernel it
17 * would have taken more than the 6M I have free, but it worked well as
18 * far as I could see.
19 *
20 * Also corrected some "invalidate()"s - I wasn't doing enough of them.
21 */
22
23/*
24 * Real VM (paging to/from disk) started 18.12.91. Much more work and
25 * thought has to go into this. Oh, well..
26 * 19.12.91 - works, somewhat. Sometimes I get faults, don't know why.
27 * Found it. Everything seems to work now.
28 * 20.12.91 - Ok, making the swap-device changeable like the root.
29 */
30
31/*
32 * 05.04.94 - Multi-page memory management added for v1.1.
33 * Idea by Alex Bligh (alex@cconcepts.co.uk)
34 *
35 * 16.07.99 - Support of BIGMEM added by Gerhard Wichert, Siemens AG
36 * (Gerhard.Wichert@pdb.siemens.de)
37 *
38 * Aug/Sep 2004 Changed to four level page tables (Andi Kleen)
39 */
40
41#include <linux/kernel_stat.h>
42#include <linux/mm.h>
43#include <linux/hugetlb.h>
44#include <linux/mman.h>
45#include <linux/swap.h>
46#include <linux/highmem.h>
47#include <linux/pagemap.h>
48#include <linux/rmap.h>
49#include <linux/module.h>
50#include <linux/init.h>
51
52#include <asm/pgalloc.h>
53#include <asm/uaccess.h>
54#include <asm/tlb.h>
55#include <asm/tlbflush.h>
56#include <asm/pgtable.h>
57
58#include <linux/swapops.h>
59#include <linux/elf.h>
60
Andy Whitcroftd41dee32005-06-23 00:07:54 -070061#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/* use the per-pgdat data instead for discontigmem - mbligh */
63unsigned long max_mapnr;
64struct page *mem_map;
65
66EXPORT_SYMBOL(max_mapnr);
67EXPORT_SYMBOL(mem_map);
68#endif
69
70unsigned long num_physpages;
71/*
72 * A number of key systems in x86 including ioremap() rely on the assumption
73 * that high_memory defines the upper bound on direct map memory, then end
74 * of ZONE_NORMAL. Under CONFIG_DISCONTIG this means that max_low_pfn and
75 * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
76 * and ZONE_HIGHMEM.
77 */
78void * high_memory;
79unsigned long vmalloc_earlyreserve;
80
81EXPORT_SYMBOL(num_physpages);
82EXPORT_SYMBOL(high_memory);
83EXPORT_SYMBOL(vmalloc_earlyreserve);
84
85/*
86 * If a p?d_bad entry is found while walking page tables, report
87 * the error, before resetting entry to p?d_none. Usually (but
88 * very seldom) called out from the p?d_none_or_clear_bad macros.
89 */
90
91void pgd_clear_bad(pgd_t *pgd)
92{
93 pgd_ERROR(*pgd);
94 pgd_clear(pgd);
95}
96
97void pud_clear_bad(pud_t *pud)
98{
99 pud_ERROR(*pud);
100 pud_clear(pud);
101}
102
103void pmd_clear_bad(pmd_t *pmd)
104{
105 pmd_ERROR(*pmd);
106 pmd_clear(pmd);
107}
108
109/*
110 * Note: this doesn't free the actual pages themselves. That
111 * has been handled earlier when unmapping all the memory regions.
112 */
Hugh Dickinse0da3822005-04-19 13:29:15 -0700113static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Hugh Dickinse0da3822005-04-19 13:29:15 -0700115 struct page *page = pmd_page(*pmd);
116 pmd_clear(pmd);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700117 pte_lock_deinit(page);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700118 pte_free_tlb(tlb, page);
119 dec_page_state(nr_page_table_pages);
120 tlb->mm->nr_ptes--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Hugh Dickinse0da3822005-04-19 13:29:15 -0700123static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
124 unsigned long addr, unsigned long end,
125 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 pmd_t *pmd;
128 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700129 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Hugh Dickinse0da3822005-04-19 13:29:15 -0700131 start = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 pmd = pmd_offset(pud, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 do {
134 next = pmd_addr_end(addr, end);
135 if (pmd_none_or_clear_bad(pmd))
136 continue;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700137 free_pte_range(tlb, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 } while (pmd++, addr = next, addr != end);
139
Hugh Dickinse0da3822005-04-19 13:29:15 -0700140 start &= PUD_MASK;
141 if (start < floor)
142 return;
143 if (ceiling) {
144 ceiling &= PUD_MASK;
145 if (!ceiling)
146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700148 if (end - 1 > ceiling - 1)
149 return;
150
151 pmd = pmd_offset(pud, start);
152 pud_clear(pud);
153 pmd_free_tlb(tlb, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Hugh Dickinse0da3822005-04-19 13:29:15 -0700156static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
157 unsigned long addr, unsigned long end,
158 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 pud_t *pud;
161 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700162 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Hugh Dickinse0da3822005-04-19 13:29:15 -0700164 start = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 pud = pud_offset(pgd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 do {
167 next = pud_addr_end(addr, end);
168 if (pud_none_or_clear_bad(pud))
169 continue;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700170 free_pmd_range(tlb, pud, addr, next, floor, ceiling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 } while (pud++, addr = next, addr != end);
172
Hugh Dickinse0da3822005-04-19 13:29:15 -0700173 start &= PGDIR_MASK;
174 if (start < floor)
175 return;
176 if (ceiling) {
177 ceiling &= PGDIR_MASK;
178 if (!ceiling)
179 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700181 if (end - 1 > ceiling - 1)
182 return;
183
184 pud = pud_offset(pgd, start);
185 pgd_clear(pgd);
186 pud_free_tlb(tlb, pud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189/*
Hugh Dickinse0da3822005-04-19 13:29:15 -0700190 * This function frees user-level page tables of a process.
191 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * Must be called with pagetable lock held.
193 */
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700194void free_pgd_range(struct mmu_gather **tlb,
Hugh Dickinse0da3822005-04-19 13:29:15 -0700195 unsigned long addr, unsigned long end,
196 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 pgd_t *pgd;
199 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700200 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Hugh Dickinse0da3822005-04-19 13:29:15 -0700202 /*
203 * The next few lines have given us lots of grief...
204 *
205 * Why are we testing PMD* at this top level? Because often
206 * there will be no work to do at all, and we'd prefer not to
207 * go all the way down to the bottom just to discover that.
208 *
209 * Why all these "- 1"s? Because 0 represents both the bottom
210 * of the address space and the top of it (using -1 for the
211 * top wouldn't help much: the masks would do the wrong thing).
212 * The rule is that addr 0 and floor 0 refer to the bottom of
213 * the address space, but end 0 and ceiling 0 refer to the top
214 * Comparisons need to use "end - 1" and "ceiling - 1" (though
215 * that end 0 case should be mythical).
216 *
217 * Wherever addr is brought up or ceiling brought down, we must
218 * be careful to reject "the opposite 0" before it confuses the
219 * subsequent tests. But what about where end is brought down
220 * by PMD_SIZE below? no, end can't go down to 0 there.
221 *
222 * Whereas we round start (addr) and ceiling down, by different
223 * masks at different levels, in order to test whether a table
224 * now has no other vmas using it, so can be freed, we don't
225 * bother to round floor or end up - the tests don't need that.
226 */
227
228 addr &= PMD_MASK;
229 if (addr < floor) {
230 addr += PMD_SIZE;
231 if (!addr)
232 return;
233 }
234 if (ceiling) {
235 ceiling &= PMD_MASK;
236 if (!ceiling)
237 return;
238 }
239 if (end - 1 > ceiling - 1)
240 end -= PMD_SIZE;
241 if (addr > end - 1)
242 return;
243
244 start = addr;
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700245 pgd = pgd_offset((*tlb)->mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 do {
247 next = pgd_addr_end(addr, end);
248 if (pgd_none_or_clear_bad(pgd))
249 continue;
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700250 free_pud_range(*tlb, pgd, addr, next, floor, ceiling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 } while (pgd++, addr = next, addr != end);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700252
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -0700253 if (!(*tlb)->fullmm)
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700254 flush_tlb_pgtables((*tlb)->mm, start, end);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700255}
256
257void free_pgtables(struct mmu_gather **tlb, struct vm_area_struct *vma,
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700258 unsigned long floor, unsigned long ceiling)
Hugh Dickinse0da3822005-04-19 13:29:15 -0700259{
260 while (vma) {
261 struct vm_area_struct *next = vma->vm_next;
262 unsigned long addr = vma->vm_start;
263
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700264 /*
265 * Hide vma from rmap and vmtruncate before freeing pgtables
266 */
267 anon_vma_unlink(vma);
268 unlink_file_vma(vma);
269
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700270 if (is_hugepage_only_range(vma->vm_mm, addr, HPAGE_SIZE)) {
271 hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
Hugh Dickinse0da3822005-04-19 13:29:15 -0700272 floor, next? next->vm_start: ceiling);
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700273 } else {
274 /*
275 * Optimization: gather nearby vmas into one call down
276 */
277 while (next && next->vm_start <= vma->vm_end + PMD_SIZE
278 && !is_hugepage_only_range(vma->vm_mm, next->vm_start,
279 HPAGE_SIZE)) {
280 vma = next;
281 next = vma->vm_next;
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700282 anon_vma_unlink(vma);
283 unlink_file_vma(vma);
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700284 }
285 free_pgd_range(tlb, addr, vma->vm_end,
286 floor, next? next->vm_start: ceiling);
287 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700288 vma = next;
289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Hugh Dickins1bb36302005-10-29 18:16:22 -0700292int __pte_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Hugh Dickinsc74df322005-10-29 18:16:23 -0700294 struct page *new = pte_alloc_one(mm, address);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700295 if (!new)
296 return -ENOMEM;
297
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700298 pte_lock_init(new);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700299 spin_lock(&mm->page_table_lock);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700300 if (pmd_present(*pmd)) { /* Another has populated it */
301 pte_lock_deinit(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700302 pte_free(new);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700303 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 mm->nr_ptes++;
305 inc_page_state(nr_page_table_pages);
306 pmd_populate(mm, pmd, new);
307 }
Hugh Dickinsc74df322005-10-29 18:16:23 -0700308 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700309 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Hugh Dickins1bb36302005-10-29 18:16:22 -0700312int __pte_alloc_kernel(pmd_t *pmd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Hugh Dickins1bb36302005-10-29 18:16:22 -0700314 pte_t *new = pte_alloc_one_kernel(&init_mm, address);
315 if (!new)
316 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Hugh Dickins1bb36302005-10-29 18:16:22 -0700318 spin_lock(&init_mm.page_table_lock);
319 if (pmd_present(*pmd)) /* Another has populated it */
320 pte_free_kernel(new);
321 else
322 pmd_populate_kernel(&init_mm, pmd, new);
323 spin_unlock(&init_mm.page_table_lock);
324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Hugh Dickinsae859762005-10-29 18:16:05 -0700327static inline void add_mm_rss(struct mm_struct *mm, int file_rss, int anon_rss)
328{
329 if (file_rss)
330 add_mm_counter(mm, file_rss, file_rss);
331 if (anon_rss)
332 add_mm_counter(mm, anon_rss, anon_rss);
333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Nick Pigginb5810032005-10-29 18:16:12 -0700336 * This function is called to print an error when a pte in a
Hugh Dickins0b14c172005-11-21 21:32:15 -0800337 * !VM_UNPAGED region is found pointing to an invalid pfn (which
Nick Pigginb5810032005-10-29 18:16:12 -0700338 * is an error.
339 *
340 * The calling function must still handle the error.
341 */
342void print_bad_pte(struct vm_area_struct *vma, pte_t pte, unsigned long vaddr)
343{
344 printk(KERN_ERR "Bad pte = %08llx, process = %s, "
345 "vm_flags = %lx, vaddr = %lx\n",
346 (long long)pte_val(pte),
347 (vma->vm_mm == current->mm ? current->comm : "???"),
348 vma->vm_flags, vaddr);
349 dump_stack();
350}
351
352/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * copy one vm_area from one task to the other. Assumes the page tables
354 * already present in the new task to be cleared in the whole range
355 * covered by this vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 */
357
Hugh Dickins8c103762005-10-29 18:16:13 -0700358static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
Nick Pigginb5810032005-10-29 18:16:12 -0700360 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
Hugh Dickins8c103762005-10-29 18:16:13 -0700361 unsigned long addr, int *rss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Nick Pigginb5810032005-10-29 18:16:12 -0700363 unsigned long vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 pte_t pte = *src_pte;
365 struct page *page;
366 unsigned long pfn;
367
368 /* pte contains position in swap or file, so copy. */
369 if (unlikely(!pte_present(pte))) {
370 if (!pte_file(pte)) {
371 swap_duplicate(pte_to_swp_entry(pte));
372 /* make sure dst_mm is on swapoff's mmlist. */
373 if (unlikely(list_empty(&dst_mm->mmlist))) {
374 spin_lock(&mmlist_lock);
Hugh Dickinsf412ac02005-10-29 18:16:41 -0700375 if (list_empty(&dst_mm->mmlist))
376 list_add(&dst_mm->mmlist,
377 &src_mm->mmlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 spin_unlock(&mmlist_lock);
379 }
380 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700381 goto out_set_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Hugh Dickins0b14c172005-11-21 21:32:15 -0800384 /* If the region is VM_UNPAGED, the mapping is not
Nick Pigginb5810032005-10-29 18:16:12 -0700385 * mapped via rmap - duplicate the pte as is.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
Hugh Dickins0b14c172005-11-21 21:32:15 -0800387 if (vm_flags & VM_UNPAGED)
Hugh Dickinsae859762005-10-29 18:16:05 -0700388 goto out_set_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Nick Pigginb5810032005-10-29 18:16:12 -0700390 pfn = pte_pfn(pte);
391 /* If the pte points outside of valid memory but
Hugh Dickins0b14c172005-11-21 21:32:15 -0800392 * the region is not VM_UNPAGED, we have a problem.
Nick Pigginb5810032005-10-29 18:16:12 -0700393 */
394 if (unlikely(!pfn_valid(pfn))) {
395 print_bad_pte(vma, pte, addr);
396 goto out_set_pte; /* try to do something sane */
397 }
398
399 page = pfn_to_page(pfn);
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /*
402 * If it's a COW mapping, write protect it both
403 * in the parent and the child
404 */
405 if ((vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE) {
406 ptep_set_wrprotect(src_mm, addr, src_pte);
407 pte = *src_pte;
408 }
409
410 /*
411 * If it's a shared mapping, mark it clean in
412 * the child
413 */
414 if (vm_flags & VM_SHARED)
415 pte = pte_mkclean(pte);
416 pte = pte_mkold(pte);
417 get_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 page_dup_rmap(page);
Hugh Dickins8c103762005-10-29 18:16:13 -0700419 rss[!!PageAnon(page)]++;
Hugh Dickinsae859762005-10-29 18:16:05 -0700420
421out_set_pte:
422 set_pte_at(dst_mm, addr, dst_pte, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
425static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
426 pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
427 unsigned long addr, unsigned long end)
428{
429 pte_t *src_pte, *dst_pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700430 spinlock_t *src_ptl, *dst_ptl;
Hugh Dickinse040f212005-10-29 18:15:53 -0700431 int progress = 0;
Hugh Dickins8c103762005-10-29 18:16:13 -0700432 int rss[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434again:
Hugh Dickinsae859762005-10-29 18:16:05 -0700435 rss[1] = rss[0] = 0;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700436 dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (!dst_pte)
438 return -ENOMEM;
439 src_pte = pte_offset_map_nested(src_pmd, addr);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700440 src_ptl = pte_lockptr(src_mm, src_pmd);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700441 spin_lock(src_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 do {
444 /*
445 * We are holding two locks at this point - either of them
446 * could generate latencies in another task on another CPU.
447 */
Hugh Dickinse040f212005-10-29 18:15:53 -0700448 if (progress >= 32) {
449 progress = 0;
450 if (need_resched() ||
Hugh Dickinsc74df322005-10-29 18:16:23 -0700451 need_lockbreak(src_ptl) ||
452 need_lockbreak(dst_ptl))
Hugh Dickinse040f212005-10-29 18:15:53 -0700453 break;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (pte_none(*src_pte)) {
456 progress++;
457 continue;
458 }
Hugh Dickins8c103762005-10-29 18:16:13 -0700459 copy_one_pte(dst_mm, src_mm, dst_pte, src_pte, vma, addr, rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 progress += 8;
461 } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Hugh Dickinsc74df322005-10-29 18:16:23 -0700463 spin_unlock(src_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 pte_unmap_nested(src_pte - 1);
Hugh Dickinsae859762005-10-29 18:16:05 -0700465 add_mm_rss(dst_mm, rss[0], rss[1]);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700466 pte_unmap_unlock(dst_pte - 1, dst_ptl);
467 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (addr != end)
469 goto again;
470 return 0;
471}
472
473static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
474 pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
475 unsigned long addr, unsigned long end)
476{
477 pmd_t *src_pmd, *dst_pmd;
478 unsigned long next;
479
480 dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
481 if (!dst_pmd)
482 return -ENOMEM;
483 src_pmd = pmd_offset(src_pud, addr);
484 do {
485 next = pmd_addr_end(addr, end);
486 if (pmd_none_or_clear_bad(src_pmd))
487 continue;
488 if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
489 vma, addr, next))
490 return -ENOMEM;
491 } while (dst_pmd++, src_pmd++, addr = next, addr != end);
492 return 0;
493}
494
495static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
496 pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
497 unsigned long addr, unsigned long end)
498{
499 pud_t *src_pud, *dst_pud;
500 unsigned long next;
501
502 dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
503 if (!dst_pud)
504 return -ENOMEM;
505 src_pud = pud_offset(src_pgd, addr);
506 do {
507 next = pud_addr_end(addr, end);
508 if (pud_none_or_clear_bad(src_pud))
509 continue;
510 if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
511 vma, addr, next))
512 return -ENOMEM;
513 } while (dst_pud++, src_pud++, addr = next, addr != end);
514 return 0;
515}
516
517int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
518 struct vm_area_struct *vma)
519{
520 pgd_t *src_pgd, *dst_pgd;
521 unsigned long next;
522 unsigned long addr = vma->vm_start;
523 unsigned long end = vma->vm_end;
524
Nick Piggind9928952005-08-28 16:49:11 +1000525 /*
526 * Don't copy ptes where a page fault will fill them correctly.
527 * Fork becomes much lighter when there are big shared or private
528 * readonly mappings. The tradeoff is that copy_page_range is more
529 * efficient than faulting.
530 */
Hugh Dickins0b14c172005-11-21 21:32:15 -0800531 if (!(vma->vm_flags & (VM_HUGETLB|VM_NONLINEAR|VM_UNPAGED))) {
Nick Piggind9928952005-08-28 16:49:11 +1000532 if (!vma->anon_vma)
533 return 0;
534 }
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (is_vm_hugetlb_page(vma))
537 return copy_hugetlb_page_range(dst_mm, src_mm, vma);
538
539 dst_pgd = pgd_offset(dst_mm, addr);
540 src_pgd = pgd_offset(src_mm, addr);
541 do {
542 next = pgd_addr_end(addr, end);
543 if (pgd_none_or_clear_bad(src_pgd))
544 continue;
545 if (copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
546 vma, addr, next))
547 return -ENOMEM;
548 } while (dst_pgd++, src_pgd++, addr = next, addr != end);
549 return 0;
550}
551
Robin Holt51c6f662005-11-13 16:06:42 -0800552static unsigned long zap_pte_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -0700553 struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800555 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Nick Pigginb5810032005-10-29 18:16:12 -0700557 struct mm_struct *mm = tlb->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 pte_t *pte;
Hugh Dickins508034a2005-10-29 18:16:30 -0700559 spinlock_t *ptl;
Hugh Dickinsae859762005-10-29 18:16:05 -0700560 int file_rss = 0;
561 int anon_rss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Hugh Dickins508034a2005-10-29 18:16:30 -0700563 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 do {
565 pte_t ptent = *pte;
Robin Holt51c6f662005-11-13 16:06:42 -0800566 if (pte_none(ptent)) {
567 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (pte_present(ptent)) {
571 struct page *page = NULL;
Robin Holt51c6f662005-11-13 16:06:42 -0800572
573 (*zap_work) -= PAGE_SIZE;
574
Hugh Dickins0b14c172005-11-21 21:32:15 -0800575 if (!(vma->vm_flags & VM_UNPAGED)) {
Nick Pigginb5810032005-10-29 18:16:12 -0700576 unsigned long pfn = pte_pfn(ptent);
577 if (unlikely(!pfn_valid(pfn)))
578 print_bad_pte(vma, ptent, addr);
579 else
580 page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
582 if (unlikely(details) && page) {
583 /*
584 * unmap_shared_mapping_pages() wants to
585 * invalidate cache without truncating:
586 * unmap shared but keep private pages.
587 */
588 if (details->check_mapping &&
589 details->check_mapping != page->mapping)
590 continue;
591 /*
592 * Each page->index must be checked when
593 * invalidating or truncating nonlinear.
594 */
595 if (details->nonlinear_vma &&
596 (page->index < details->first_index ||
597 page->index > details->last_index))
598 continue;
599 }
Nick Pigginb5810032005-10-29 18:16:12 -0700600 ptent = ptep_get_and_clear_full(mm, addr, pte,
Zachary Amsdena6003882005-09-03 15:55:04 -0700601 tlb->fullmm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 tlb_remove_tlb_entry(tlb, pte, addr);
603 if (unlikely(!page))
604 continue;
605 if (unlikely(details) && details->nonlinear_vma
606 && linear_page_index(details->nonlinear_vma,
607 addr) != page->index)
Nick Pigginb5810032005-10-29 18:16:12 -0700608 set_pte_at(mm, addr, pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 pgoff_to_pte(page->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (PageAnon(page))
Hugh Dickins86d912f2005-10-29 18:16:14 -0700611 anon_rss--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -0700612 else {
613 if (pte_dirty(ptent))
614 set_page_dirty(page);
615 if (pte_young(ptent))
616 mark_page_accessed(page);
Hugh Dickins86d912f2005-10-29 18:16:14 -0700617 file_rss--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -0700618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 page_remove_rmap(page);
620 tlb_remove_page(tlb, page);
621 continue;
622 }
623 /*
624 * If details->check_mapping, we leave swap entries;
625 * if details->nonlinear_vma, we leave file entries.
626 */
627 if (unlikely(details))
628 continue;
629 if (!pte_file(ptent))
630 free_swap_and_cache(pte_to_swp_entry(ptent));
Nick Pigginb5810032005-10-29 18:16:12 -0700631 pte_clear_full(mm, addr, pte, tlb->fullmm);
Robin Holt51c6f662005-11-13 16:06:42 -0800632 } while (pte++, addr += PAGE_SIZE, (addr != end && *zap_work > 0));
Hugh Dickinsae859762005-10-29 18:16:05 -0700633
Hugh Dickins86d912f2005-10-29 18:16:14 -0700634 add_mm_rss(mm, file_rss, anon_rss);
Hugh Dickins508034a2005-10-29 18:16:30 -0700635 pte_unmap_unlock(pte - 1, ptl);
Robin Holt51c6f662005-11-13 16:06:42 -0800636
637 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Robin Holt51c6f662005-11-13 16:06:42 -0800640static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -0700641 struct vm_area_struct *vma, pud_t *pud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800643 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 pmd_t *pmd;
646 unsigned long next;
647
648 pmd = pmd_offset(pud, addr);
649 do {
650 next = pmd_addr_end(addr, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800651 if (pmd_none_or_clear_bad(pmd)) {
652 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800654 }
655 next = zap_pte_range(tlb, vma, pmd, addr, next,
656 zap_work, details);
657 } while (pmd++, addr = next, (addr != end && *zap_work > 0));
658
659 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Robin Holt51c6f662005-11-13 16:06:42 -0800662static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -0700663 struct vm_area_struct *vma, pgd_t *pgd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800665 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 pud_t *pud;
668 unsigned long next;
669
670 pud = pud_offset(pgd, addr);
671 do {
672 next = pud_addr_end(addr, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800673 if (pud_none_or_clear_bad(pud)) {
674 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800676 }
677 next = zap_pmd_range(tlb, vma, pud, addr, next,
678 zap_work, details);
679 } while (pud++, addr = next, (addr != end && *zap_work > 0));
680
681 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Robin Holt51c6f662005-11-13 16:06:42 -0800684static unsigned long unmap_page_range(struct mmu_gather *tlb,
685 struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800687 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 pgd_t *pgd;
690 unsigned long next;
691
692 if (details && !details->check_mapping && !details->nonlinear_vma)
693 details = NULL;
694
695 BUG_ON(addr >= end);
696 tlb_start_vma(tlb, vma);
697 pgd = pgd_offset(vma->vm_mm, addr);
698 do {
699 next = pgd_addr_end(addr, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800700 if (pgd_none_or_clear_bad(pgd)) {
701 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800703 }
704 next = zap_pud_range(tlb, vma, pgd, addr, next,
705 zap_work, details);
706 } while (pgd++, addr = next, (addr != end && *zap_work > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 tlb_end_vma(tlb, vma);
Robin Holt51c6f662005-11-13 16:06:42 -0800708
709 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712#ifdef CONFIG_PREEMPT
713# define ZAP_BLOCK_SIZE (8 * PAGE_SIZE)
714#else
715/* No preempt: go for improved straight-line efficiency */
716# define ZAP_BLOCK_SIZE (1024 * PAGE_SIZE)
717#endif
718
719/**
720 * unmap_vmas - unmap a range of memory covered by a list of vma's
721 * @tlbp: address of the caller's struct mmu_gather
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * @vma: the starting vma
723 * @start_addr: virtual address at which to start unmapping
724 * @end_addr: virtual address at which to end unmapping
725 * @nr_accounted: Place number of unmapped pages in vm-accountable vma's here
726 * @details: details of nonlinear truncation or shared cache invalidation
727 *
Hugh Dickinsee39b372005-04-19 13:29:15 -0700728 * Returns the end address of the unmapping (restart addr if interrupted).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
Hugh Dickins508034a2005-10-29 18:16:30 -0700730 * Unmap all pages in the vma list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 *
Hugh Dickins508034a2005-10-29 18:16:30 -0700732 * We aim to not hold locks for too long (for scheduling latency reasons).
733 * So zap pages in ZAP_BLOCK_SIZE bytecounts. This means we need to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 * return the ending mmu_gather to the caller.
735 *
736 * Only addresses between `start' and `end' will be unmapped.
737 *
738 * The VMA list must be sorted in ascending virtual address order.
739 *
740 * unmap_vmas() assumes that the caller will flush the whole unmapped address
741 * range after unmap_vmas() returns. So the only responsibility here is to
742 * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
743 * drops the lock and schedules.
744 */
Hugh Dickins508034a2005-10-29 18:16:30 -0700745unsigned long unmap_vmas(struct mmu_gather **tlbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 struct vm_area_struct *vma, unsigned long start_addr,
747 unsigned long end_addr, unsigned long *nr_accounted,
748 struct zap_details *details)
749{
Robin Holt51c6f662005-11-13 16:06:42 -0800750 long zap_work = ZAP_BLOCK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long tlb_start = 0; /* For tlb_finish_mmu */
752 int tlb_start_valid = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -0700753 unsigned long start = start_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL;
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -0700755 int fullmm = (*tlbp)->fullmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 unsigned long end;
759
760 start = max(vma->vm_start, start_addr);
761 if (start >= vma->vm_end)
762 continue;
763 end = min(vma->vm_end, end_addr);
764 if (end <= vma->vm_start)
765 continue;
766
767 if (vma->vm_flags & VM_ACCOUNT)
768 *nr_accounted += (end - start) >> PAGE_SHIFT;
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 while (start != end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!tlb_start_valid) {
772 tlb_start = start;
773 tlb_start_valid = 1;
774 }
775
Robin Holt51c6f662005-11-13 16:06:42 -0800776 if (unlikely(is_vm_hugetlb_page(vma))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 unmap_hugepage_range(vma, start, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800778 zap_work -= (end - start) /
779 (HPAGE_SIZE / PAGE_SIZE);
780 start = end;
781 } else
782 start = unmap_page_range(*tlbp, vma,
783 start, end, &zap_work, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Robin Holt51c6f662005-11-13 16:06:42 -0800785 if (zap_work > 0) {
786 BUG_ON(start != end);
787 break;
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 tlb_finish_mmu(*tlbp, tlb_start, start);
791
792 if (need_resched() ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 (i_mmap_lock && need_lockbreak(i_mmap_lock))) {
794 if (i_mmap_lock) {
Hugh Dickins508034a2005-10-29 18:16:30 -0700795 *tlbp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 goto out;
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Hugh Dickins508034a2005-10-29 18:16:30 -0700801 *tlbp = tlb_gather_mmu(vma->vm_mm, fullmm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 tlb_start_valid = 0;
Robin Holt51c6f662005-11-13 16:06:42 -0800803 zap_work = ZAP_BLOCK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
806out:
Hugh Dickinsee39b372005-04-19 13:29:15 -0700807 return start; /* which is now the end (or restart) address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810/**
811 * zap_page_range - remove user pages in a given range
812 * @vma: vm_area_struct holding the applicable pages
813 * @address: starting address of pages to zap
814 * @size: number of bytes to zap
815 * @details: details of nonlinear truncation or shared cache invalidation
816 */
Hugh Dickinsee39b372005-04-19 13:29:15 -0700817unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 unsigned long size, struct zap_details *details)
819{
820 struct mm_struct *mm = vma->vm_mm;
821 struct mmu_gather *tlb;
822 unsigned long end = address + size;
823 unsigned long nr_accounted = 0;
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 tlb = tlb_gather_mmu(mm, 0);
Hugh Dickins365e9c872005-10-29 18:16:18 -0700827 update_hiwater_rss(mm);
Hugh Dickins508034a2005-10-29 18:16:30 -0700828 end = unmap_vmas(&tlb, vma, address, end, &nr_accounted, details);
829 if (tlb)
830 tlb_finish_mmu(tlb, address, end);
Hugh Dickinsee39b372005-04-19 13:29:15 -0700831 return end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/*
835 * Do a quick page-table lookup for a single page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700837struct page *follow_page(struct mm_struct *mm, unsigned long address,
838 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 pgd_t *pgd;
841 pud_t *pud;
842 pmd_t *pmd;
843 pte_t *ptep, pte;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700844 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 unsigned long pfn;
846 struct page *page;
847
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700848 page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
849 if (!IS_ERR(page)) {
850 BUG_ON(flags & FOLL_GET);
851 goto out;
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700854 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 pgd = pgd_offset(mm, address);
856 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700857 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 pud = pud_offset(pgd, address);
860 if (pud_none(*pud) || unlikely(pud_bad(*pud)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700861 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 pmd = pmd_offset(pud, address);
864 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700865 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700867 if (pmd_huge(*pmd)) {
868 BUG_ON(flags & FOLL_GET);
869 page = follow_huge_pmd(mm, address, pmd, flags & FOLL_WRITE);
870 goto out;
871 }
872
873 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!ptep)
875 goto out;
876
877 pte = *ptep;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700878 if (!pte_present(pte))
879 goto unlock;
880 if ((flags & FOLL_WRITE) && !pte_write(pte))
881 goto unlock;
882 pfn = pte_pfn(pte);
883 if (!pfn_valid(pfn))
884 goto unlock;
885
886 page = pfn_to_page(pfn);
887 if (flags & FOLL_GET)
888 get_page(page);
889 if (flags & FOLL_TOUCH) {
890 if ((flags & FOLL_WRITE) &&
891 !pte_dirty(pte) && !PageDirty(page))
892 set_page_dirty(page);
893 mark_page_accessed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700895unlock:
896 pte_unmap_unlock(ptep, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897out:
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700898 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700900no_page_table:
901 /*
902 * When core dumping an enormous anonymous area that nobody
903 * has touched so far, we don't want to allocate page tables.
904 */
905 if (flags & FOLL_ANON) {
906 page = ZERO_PAGE(address);
907 if (flags & FOLL_GET)
908 get_page(page);
909 BUG_ON(flags & FOLL_WRITE);
910 }
911 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
915 unsigned long start, int len, int write, int force,
916 struct page **pages, struct vm_area_struct **vmas)
917{
918 int i;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700919 unsigned int vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /*
922 * Require read or write permissions.
923 * If 'force' is set, we only require the "MAY" flags.
924 */
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700925 vm_flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
926 vm_flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 i = 0;
928
929 do {
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700930 struct vm_area_struct *vma;
931 unsigned int foll_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 vma = find_extend_vma(mm, start);
934 if (!vma && in_gate_area(tsk, start)) {
935 unsigned long pg = start & PAGE_MASK;
936 struct vm_area_struct *gate_vma = get_gate_vma(tsk);
937 pgd_t *pgd;
938 pud_t *pud;
939 pmd_t *pmd;
940 pte_t *pte;
941 if (write) /* user gate pages are read-only */
942 return i ? : -EFAULT;
943 if (pg > TASK_SIZE)
944 pgd = pgd_offset_k(pg);
945 else
946 pgd = pgd_offset_gate(mm, pg);
947 BUG_ON(pgd_none(*pgd));
948 pud = pud_offset(pgd, pg);
949 BUG_ON(pud_none(*pud));
950 pmd = pmd_offset(pud, pg);
Hugh Dickins690dbe12005-08-01 21:11:42 -0700951 if (pmd_none(*pmd))
952 return i ? : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 pte = pte_offset_map(pmd, pg);
Hugh Dickins690dbe12005-08-01 21:11:42 -0700954 if (pte_none(*pte)) {
955 pte_unmap(pte);
956 return i ? : -EFAULT;
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (pages) {
959 pages[i] = pte_page(*pte);
960 get_page(pages[i]);
961 }
962 pte_unmap(pte);
963 if (vmas)
964 vmas[i] = gate_vma;
965 i++;
966 start += PAGE_SIZE;
967 len--;
968 continue;
969 }
970
Hugh Dickinsed5297a2005-11-21 21:32:11 -0800971 if (!vma || (vma->vm_flags & VM_IO)
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700972 || !(vm_flags & vma->vm_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return i ? : -EFAULT;
974
975 if (is_vm_hugetlb_page(vma)) {
976 i = follow_hugetlb_page(mm, vma, pages, vmas,
977 &start, &len, i);
978 continue;
979 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700980
981 foll_flags = FOLL_TOUCH;
982 if (pages)
983 foll_flags |= FOLL_GET;
984 if (!write && !(vma->vm_flags & VM_LOCKED) &&
985 (!vma->vm_ops || !vma->vm_ops->nopage))
986 foll_flags |= FOLL_ANON;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 do {
Hugh Dickins08ef4722005-06-21 17:15:10 -0700989 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700991 if (write)
992 foll_flags |= FOLL_WRITE;
993
994 cond_resched();
995 while (!(page = follow_page(mm, start, foll_flags))) {
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -0700996 int ret;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700997 ret = __handle_mm_fault(mm, vma, start,
998 foll_flags & FOLL_WRITE);
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -0700999 /*
1000 * The VM_FAULT_WRITE bit tells us that do_wp_page has
1001 * broken COW when necessary, even if maybe_mkwrite
1002 * decided not to set pte_write. We can thus safely do
1003 * subsequent page lookups as if they were reads.
1004 */
1005 if (ret & VM_FAULT_WRITE)
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001006 foll_flags &= ~FOLL_WRITE;
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001007
1008 switch (ret & ~VM_FAULT_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 case VM_FAULT_MINOR:
1010 tsk->min_flt++;
1011 break;
1012 case VM_FAULT_MAJOR:
1013 tsk->maj_flt++;
1014 break;
1015 case VM_FAULT_SIGBUS:
1016 return i ? i : -EFAULT;
1017 case VM_FAULT_OOM:
1018 return i ? i : -ENOMEM;
1019 default:
1020 BUG();
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023 if (pages) {
Hugh Dickins08ef4722005-06-21 17:15:10 -07001024 pages[i] = page;
1025 flush_dcache_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 if (vmas)
1028 vmas[i] = vma;
1029 i++;
1030 start += PAGE_SIZE;
1031 len--;
Hugh Dickins08ef4722005-06-21 17:15:10 -07001032 } while (len && start < vma->vm_end);
Hugh Dickins08ef4722005-06-21 17:15:10 -07001033 } while (len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return i;
1035}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036EXPORT_SYMBOL(get_user_pages);
1037
1038static int zeromap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1039 unsigned long addr, unsigned long end, pgprot_t prot)
1040{
1041 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -07001042 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Hugh Dickinsc74df322005-10-29 18:16:23 -07001044 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (!pte)
1046 return -ENOMEM;
1047 do {
Nick Pigginb5810032005-10-29 18:16:12 -07001048 struct page *page = ZERO_PAGE(addr);
1049 pte_t zero_pte = pte_wrprotect(mk_pte(page, prot));
1050 page_cache_get(page);
1051 page_add_file_rmap(page);
1052 inc_mm_counter(mm, file_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 BUG_ON(!pte_none(*pte));
1054 set_pte_at(mm, addr, pte, zero_pte);
1055 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001056 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return 0;
1058}
1059
1060static inline int zeromap_pmd_range(struct mm_struct *mm, pud_t *pud,
1061 unsigned long addr, unsigned long end, pgprot_t prot)
1062{
1063 pmd_t *pmd;
1064 unsigned long next;
1065
1066 pmd = pmd_alloc(mm, pud, addr);
1067 if (!pmd)
1068 return -ENOMEM;
1069 do {
1070 next = pmd_addr_end(addr, end);
1071 if (zeromap_pte_range(mm, pmd, addr, next, prot))
1072 return -ENOMEM;
1073 } while (pmd++, addr = next, addr != end);
1074 return 0;
1075}
1076
1077static inline int zeromap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1078 unsigned long addr, unsigned long end, pgprot_t prot)
1079{
1080 pud_t *pud;
1081 unsigned long next;
1082
1083 pud = pud_alloc(mm, pgd, addr);
1084 if (!pud)
1085 return -ENOMEM;
1086 do {
1087 next = pud_addr_end(addr, end);
1088 if (zeromap_pmd_range(mm, pud, addr, next, prot))
1089 return -ENOMEM;
1090 } while (pud++, addr = next, addr != end);
1091 return 0;
1092}
1093
1094int zeromap_page_range(struct vm_area_struct *vma,
1095 unsigned long addr, unsigned long size, pgprot_t prot)
1096{
1097 pgd_t *pgd;
1098 unsigned long next;
1099 unsigned long end = addr + size;
1100 struct mm_struct *mm = vma->vm_mm;
1101 int err;
1102
1103 BUG_ON(addr >= end);
1104 pgd = pgd_offset(mm, addr);
1105 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 do {
1107 next = pgd_addr_end(addr, end);
1108 err = zeromap_pud_range(mm, pgd, addr, next, prot);
1109 if (err)
1110 break;
1111 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return err;
1113}
1114
1115/*
1116 * maps a range of physical memory into the requested pages. the old
1117 * mappings are removed. any references to nonexistent pages results
1118 * in null mappings (currently treated as "copy-on-access")
1119 */
1120static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1121 unsigned long addr, unsigned long end,
1122 unsigned long pfn, pgprot_t prot)
1123{
1124 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -07001125 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Hugh Dickinsc74df322005-10-29 18:16:23 -07001127 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (!pte)
1129 return -ENOMEM;
1130 do {
1131 BUG_ON(!pte_none(*pte));
Nick Pigginb5810032005-10-29 18:16:12 -07001132 set_pte_at(mm, addr, pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 pfn++;
1134 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001135 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 return 0;
1137}
1138
1139static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
1140 unsigned long addr, unsigned long end,
1141 unsigned long pfn, pgprot_t prot)
1142{
1143 pmd_t *pmd;
1144 unsigned long next;
1145
1146 pfn -= addr >> PAGE_SHIFT;
1147 pmd = pmd_alloc(mm, pud, addr);
1148 if (!pmd)
1149 return -ENOMEM;
1150 do {
1151 next = pmd_addr_end(addr, end);
1152 if (remap_pte_range(mm, pmd, addr, next,
1153 pfn + (addr >> PAGE_SHIFT), prot))
1154 return -ENOMEM;
1155 } while (pmd++, addr = next, addr != end);
1156 return 0;
1157}
1158
1159static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1160 unsigned long addr, unsigned long end,
1161 unsigned long pfn, pgprot_t prot)
1162{
1163 pud_t *pud;
1164 unsigned long next;
1165
1166 pfn -= addr >> PAGE_SHIFT;
1167 pud = pud_alloc(mm, pgd, addr);
1168 if (!pud)
1169 return -ENOMEM;
1170 do {
1171 next = pud_addr_end(addr, end);
1172 if (remap_pmd_range(mm, pud, addr, next,
1173 pfn + (addr >> PAGE_SHIFT), prot))
1174 return -ENOMEM;
1175 } while (pud++, addr = next, addr != end);
1176 return 0;
1177}
1178
1179/* Note: this is only safe if the mm semaphore is held when called. */
1180int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1181 unsigned long pfn, unsigned long size, pgprot_t prot)
1182{
1183 pgd_t *pgd;
1184 unsigned long next;
Hugh Dickins2d15cab2005-06-25 14:54:33 -07001185 unsigned long end = addr + PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 struct mm_struct *mm = vma->vm_mm;
1187 int err;
1188
1189 /*
1190 * Physically remapped pages are special. Tell the
1191 * rest of the world about it:
1192 * VM_IO tells people not to look at these pages
1193 * (accesses can have side effects).
Hugh Dickins0b14c172005-11-21 21:32:15 -08001194 * VM_RESERVED is specified all over the place, because
1195 * in 2.4 it kept swapout's vma scan off this vma; but
1196 * in 2.6 the LRU scan won't even find its pages, so this
1197 * flag means no more than count its pages in reserved_vm,
1198 * and omit it from core dump, even when VM_IO turned off.
1199 * VM_UNPAGED tells the core MM not to "manage" these pages
1200 * (e.g. refcount, mapcount, try to swap them out): in
1201 * particular, zap_pte_range does not try to free them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 */
Hugh Dickins0b14c172005-11-21 21:32:15 -08001203 vma->vm_flags |= VM_IO | VM_RESERVED | VM_UNPAGED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 BUG_ON(addr >= end);
1206 pfn -= addr >> PAGE_SHIFT;
1207 pgd = pgd_offset(mm, addr);
1208 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 do {
1210 next = pgd_addr_end(addr, end);
1211 err = remap_pud_range(mm, pgd, addr, next,
1212 pfn + (addr >> PAGE_SHIFT), prot);
1213 if (err)
1214 break;
1215 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return err;
1217}
1218EXPORT_SYMBOL(remap_pfn_range);
1219
1220/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001221 * handle_pte_fault chooses page fault handler according to an entry
1222 * which was read non-atomically. Before making any commitment, on
1223 * those architectures or configurations (e.g. i386 with PAE) which
1224 * might give a mix of unmatched parts, do_swap_page and do_file_page
1225 * must check under lock before unmapping the pte and proceeding
1226 * (but do_wp_page is only called after already making such a check;
1227 * and do_anonymous_page and do_no_page can safely check later on).
1228 */
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001229static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001230 pte_t *page_table, pte_t orig_pte)
1231{
1232 int same = 1;
1233#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
1234 if (sizeof(pte_t) > sizeof(unsigned long)) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001235 spinlock_t *ptl = pte_lockptr(mm, pmd);
1236 spin_lock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001237 same = pte_same(*page_table, orig_pte);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001238 spin_unlock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001239 }
1240#endif
1241 pte_unmap(page_table);
1242 return same;
1243}
1244
1245/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * Do pte_mkwrite, but only if the vma says VM_WRITE. We do this when
1247 * servicing faults for write access. In the normal case, do always want
1248 * pte_mkwrite. But get_user_pages can cause write faults for mappings
1249 * that do not have writing enabled, when used by access_process_vm.
1250 */
1251static inline pte_t maybe_mkwrite(pte_t pte, struct vm_area_struct *vma)
1252{
1253 if (likely(vma->vm_flags & VM_WRITE))
1254 pte = pte_mkwrite(pte);
1255 return pte;
1256}
1257
1258/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 * This routine handles present pages, when users try to write
1260 * to a shared page. It is done by copying the page to a new address
1261 * and decrementing the shared-page counter for the old page.
1262 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 * Note that this routine assumes that the protection checks have been
1264 * done by the caller (the low-level page fault routine in most cases).
1265 * Thus we can safely just mark it writable once we've done any necessary
1266 * COW.
1267 *
1268 * We also mark the page dirty at this point even though the page will
1269 * change only once the write actually happens. This avoids a few races,
1270 * and potentially makes it more efficient.
1271 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001272 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1273 * but allow concurrent faults), with pte both mapped and locked.
1274 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001276static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
1277 unsigned long address, pte_t *page_table, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001278 spinlock_t *ptl, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 struct page *old_page, *new_page;
Hugh Dickins65500d22005-10-29 18:15:59 -07001281 unsigned long pfn = pte_pfn(orig_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 pte_t entry;
Hugh Dickins65500d22005-10-29 18:15:59 -07001283 int ret = VM_FAULT_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Hugh Dickins0b14c172005-11-21 21:32:15 -08001285 BUG_ON(vma->vm_flags & VM_UNPAGED);
Nick Pigginb5810032005-10-29 18:16:12 -07001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (unlikely(!pfn_valid(pfn))) {
1288 /*
Hugh Dickins65500d22005-10-29 18:15:59 -07001289 * Page table corrupted: show pte and kill process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 */
Nick Pigginb5810032005-10-29 18:16:12 -07001291 print_bad_pte(vma, orig_pte, address);
Hugh Dickins65500d22005-10-29 18:15:59 -07001292 ret = VM_FAULT_OOM;
1293 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295 old_page = pfn_to_page(pfn);
1296
Hugh Dickinsd296e9c2005-06-21 17:15:11 -07001297 if (PageAnon(old_page) && !TestSetPageLocked(old_page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 int reuse = can_share_swap_page(old_page);
1299 unlock_page(old_page);
1300 if (reuse) {
1301 flush_cache_page(vma, address, pfn);
Hugh Dickins65500d22005-10-29 18:15:59 -07001302 entry = pte_mkyoung(orig_pte);
1303 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 ptep_set_access_flags(vma, address, page_table, entry, 1);
1305 update_mmu_cache(vma, address, entry);
1306 lazy_mmu_prot_update(entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07001307 ret |= VM_FAULT_WRITE;
1308 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /*
1313 * Ok, we need to copy. Oh, well..
1314 */
Nick Pigginb5810032005-10-29 18:16:12 -07001315 page_cache_get(old_page);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001316 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 if (unlikely(anon_vma_prepare(vma)))
Hugh Dickins65500d22005-10-29 18:15:59 -07001319 goto oom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (old_page == ZERO_PAGE(address)) {
1321 new_page = alloc_zeroed_user_highpage(vma, address);
1322 if (!new_page)
Hugh Dickins65500d22005-10-29 18:15:59 -07001323 goto oom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 } else {
1325 new_page = alloc_page_vma(GFP_HIGHUSER, vma, address);
1326 if (!new_page)
Hugh Dickins65500d22005-10-29 18:15:59 -07001327 goto oom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 copy_user_highpage(new_page, old_page, address);
1329 }
Hugh Dickins65500d22005-10-29 18:15:59 -07001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 /*
1332 * Re-check the pte - we dropped the lock
1333 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001334 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins65500d22005-10-29 18:15:59 -07001335 if (likely(pte_same(*page_table, orig_pte))) {
Nick Pigginb5810032005-10-29 18:16:12 -07001336 page_remove_rmap(old_page);
1337 if (!PageAnon(old_page)) {
Hugh Dickins42946212005-10-29 18:16:05 -07001338 inc_mm_counter(mm, anon_rss);
Nick Pigginb5810032005-10-29 18:16:12 -07001339 dec_mm_counter(mm, file_rss);
Hugh Dickins42946212005-10-29 18:16:05 -07001340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 flush_cache_page(vma, address, pfn);
Hugh Dickins65500d22005-10-29 18:15:59 -07001342 entry = mk_pte(new_page, vma->vm_page_prot);
1343 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1344 ptep_establish(vma, address, page_table, entry);
1345 update_mmu_cache(vma, address, entry);
1346 lazy_mmu_prot_update(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 lru_cache_add_active(new_page);
1348 page_add_anon_rmap(new_page, vma, address);
1349
1350 /* Free the old page.. */
1351 new_page = old_page;
Nick Pigginf33ea7f2005-08-03 20:24:01 +10001352 ret |= VM_FAULT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 page_cache_release(new_page);
1355 page_cache_release(old_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001356unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001357 pte_unmap_unlock(page_table, ptl);
Nick Pigginf33ea7f2005-08-03 20:24:01 +10001358 return ret;
Hugh Dickins65500d22005-10-29 18:15:59 -07001359oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 page_cache_release(old_page);
1361 return VM_FAULT_OOM;
1362}
1363
1364/*
1365 * Helper functions for unmap_mapping_range().
1366 *
1367 * __ Notes on dropping i_mmap_lock to reduce latency while unmapping __
1368 *
1369 * We have to restart searching the prio_tree whenever we drop the lock,
1370 * since the iterator is only valid while the lock is held, and anyway
1371 * a later vma might be split and reinserted earlier while lock dropped.
1372 *
1373 * The list of nonlinear vmas could be handled more efficiently, using
1374 * a placeholder, but handle it in the same way until a need is shown.
1375 * It is important to search the prio_tree before nonlinear list: a vma
1376 * may become nonlinear and be shifted from prio_tree to nonlinear list
1377 * while the lock is dropped; but never shifted from list to prio_tree.
1378 *
1379 * In order to make forward progress despite restarting the search,
1380 * vm_truncate_count is used to mark a vma as now dealt with, so we can
1381 * quickly skip it next time around. Since the prio_tree search only
1382 * shows us those vmas affected by unmapping the range in question, we
1383 * can't efficiently keep all vmas in step with mapping->truncate_count:
1384 * so instead reset them all whenever it wraps back to 0 (then go to 1).
1385 * mapping->truncate_count and vma->vm_truncate_count are protected by
1386 * i_mmap_lock.
1387 *
1388 * In order to make forward progress despite repeatedly restarting some
Hugh Dickinsee39b372005-04-19 13:29:15 -07001389 * large vma, note the restart_addr from unmap_vmas when it breaks out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 * and restart from that address when we reach that vma again. It might
1391 * have been split or merged, shrunk or extended, but never shifted: so
1392 * restart_addr remains valid so long as it remains in the vma's range.
1393 * unmap_mapping_range forces truncate_count to leap over page-aligned
1394 * values so we can save vma's restart_addr in its truncate_count field.
1395 */
1396#define is_restart_addr(truncate_count) (!((truncate_count) & ~PAGE_MASK))
1397
1398static void reset_vma_truncate_counts(struct address_space *mapping)
1399{
1400 struct vm_area_struct *vma;
1401 struct prio_tree_iter iter;
1402
1403 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, 0, ULONG_MAX)
1404 vma->vm_truncate_count = 0;
1405 list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
1406 vma->vm_truncate_count = 0;
1407}
1408
1409static int unmap_mapping_range_vma(struct vm_area_struct *vma,
1410 unsigned long start_addr, unsigned long end_addr,
1411 struct zap_details *details)
1412{
1413 unsigned long restart_addr;
1414 int need_break;
1415
1416again:
1417 restart_addr = vma->vm_truncate_count;
1418 if (is_restart_addr(restart_addr) && start_addr < restart_addr) {
1419 start_addr = restart_addr;
1420 if (start_addr >= end_addr) {
1421 /* Top of vma has been split off since last time */
1422 vma->vm_truncate_count = details->truncate_count;
1423 return 0;
1424 }
1425 }
1426
Hugh Dickinsee39b372005-04-19 13:29:15 -07001427 restart_addr = zap_page_range(vma, start_addr,
1428 end_addr - start_addr, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 need_break = need_resched() ||
1430 need_lockbreak(details->i_mmap_lock);
1431
Hugh Dickinsee39b372005-04-19 13:29:15 -07001432 if (restart_addr >= end_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /* We have now completed this vma: mark it so */
1434 vma->vm_truncate_count = details->truncate_count;
1435 if (!need_break)
1436 return 0;
1437 } else {
1438 /* Note restart_addr in vma's truncate_count field */
Hugh Dickinsee39b372005-04-19 13:29:15 -07001439 vma->vm_truncate_count = restart_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (!need_break)
1441 goto again;
1442 }
1443
1444 spin_unlock(details->i_mmap_lock);
1445 cond_resched();
1446 spin_lock(details->i_mmap_lock);
1447 return -EINTR;
1448}
1449
1450static inline void unmap_mapping_range_tree(struct prio_tree_root *root,
1451 struct zap_details *details)
1452{
1453 struct vm_area_struct *vma;
1454 struct prio_tree_iter iter;
1455 pgoff_t vba, vea, zba, zea;
1456
1457restart:
1458 vma_prio_tree_foreach(vma, &iter, root,
1459 details->first_index, details->last_index) {
1460 /* Skip quickly over those we have already dealt with */
1461 if (vma->vm_truncate_count == details->truncate_count)
1462 continue;
1463
1464 vba = vma->vm_pgoff;
1465 vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1;
1466 /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
1467 zba = details->first_index;
1468 if (zba < vba)
1469 zba = vba;
1470 zea = details->last_index;
1471 if (zea > vea)
1472 zea = vea;
1473
1474 if (unmap_mapping_range_vma(vma,
1475 ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
1476 ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
1477 details) < 0)
1478 goto restart;
1479 }
1480}
1481
1482static inline void unmap_mapping_range_list(struct list_head *head,
1483 struct zap_details *details)
1484{
1485 struct vm_area_struct *vma;
1486
1487 /*
1488 * In nonlinear VMAs there is no correspondence between virtual address
1489 * offset and file offset. So we must perform an exhaustive search
1490 * across *all* the pages in each nonlinear VMA, not just the pages
1491 * whose virtual address lies outside the file truncation point.
1492 */
1493restart:
1494 list_for_each_entry(vma, head, shared.vm_set.list) {
1495 /* Skip quickly over those we have already dealt with */
1496 if (vma->vm_truncate_count == details->truncate_count)
1497 continue;
1498 details->nonlinear_vma = vma;
1499 if (unmap_mapping_range_vma(vma, vma->vm_start,
1500 vma->vm_end, details) < 0)
1501 goto restart;
1502 }
1503}
1504
1505/**
1506 * unmap_mapping_range - unmap the portion of all mmaps
1507 * in the specified address_space corresponding to the specified
1508 * page range in the underlying file.
Martin Waitz3d410882005-06-23 22:05:21 -07001509 * @mapping: the address space containing mmaps to be unmapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 * @holebegin: byte in first page to unmap, relative to the start of
1511 * the underlying file. This will be rounded down to a PAGE_SIZE
1512 * boundary. Note that this is different from vmtruncate(), which
1513 * must keep the partial page. In contrast, we must get rid of
1514 * partial pages.
1515 * @holelen: size of prospective hole in bytes. This will be rounded
1516 * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
1517 * end of the file.
1518 * @even_cows: 1 when truncating a file, unmap even private COWed pages;
1519 * but 0 when invalidating pagecache, don't throw away private data.
1520 */
1521void unmap_mapping_range(struct address_space *mapping,
1522 loff_t const holebegin, loff_t const holelen, int even_cows)
1523{
1524 struct zap_details details;
1525 pgoff_t hba = holebegin >> PAGE_SHIFT;
1526 pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1527
1528 /* Check for overflow. */
1529 if (sizeof(holelen) > sizeof(hlen)) {
1530 long long holeend =
1531 (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1532 if (holeend & ~(long long)ULONG_MAX)
1533 hlen = ULONG_MAX - hba + 1;
1534 }
1535
1536 details.check_mapping = even_cows? NULL: mapping;
1537 details.nonlinear_vma = NULL;
1538 details.first_index = hba;
1539 details.last_index = hba + hlen - 1;
1540 if (details.last_index < details.first_index)
1541 details.last_index = ULONG_MAX;
1542 details.i_mmap_lock = &mapping->i_mmap_lock;
1543
1544 spin_lock(&mapping->i_mmap_lock);
1545
1546 /* serialize i_size write against truncate_count write */
1547 smp_wmb();
1548 /* Protect against page faults, and endless unmapping loops */
1549 mapping->truncate_count++;
1550 /*
1551 * For archs where spin_lock has inclusive semantics like ia64
1552 * this smp_mb() will prevent to read pagetable contents
1553 * before the truncate_count increment is visible to
1554 * other cpus.
1555 */
1556 smp_mb();
1557 if (unlikely(is_restart_addr(mapping->truncate_count))) {
1558 if (mapping->truncate_count == 0)
1559 reset_vma_truncate_counts(mapping);
1560 mapping->truncate_count++;
1561 }
1562 details.truncate_count = mapping->truncate_count;
1563
1564 if (unlikely(!prio_tree_empty(&mapping->i_mmap)))
1565 unmap_mapping_range_tree(&mapping->i_mmap, &details);
1566 if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
1567 unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
1568 spin_unlock(&mapping->i_mmap_lock);
1569}
1570EXPORT_SYMBOL(unmap_mapping_range);
1571
1572/*
1573 * Handle all mappings that got truncated by a "truncate()"
1574 * system call.
1575 *
1576 * NOTE! We have to be ready to update the memory sharing
1577 * between the file and the memory map for a potential last
1578 * incomplete page. Ugly, but necessary.
1579 */
1580int vmtruncate(struct inode * inode, loff_t offset)
1581{
1582 struct address_space *mapping = inode->i_mapping;
1583 unsigned long limit;
1584
1585 if (inode->i_size < offset)
1586 goto do_expand;
1587 /*
1588 * truncation of in-use swapfiles is disallowed - it would cause
1589 * subsequent swapout to scribble on the now-freed blocks.
1590 */
1591 if (IS_SWAPFILE(inode))
1592 goto out_busy;
1593 i_size_write(inode, offset);
1594 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1595 truncate_inode_pages(mapping, offset);
1596 goto out_truncate;
1597
1598do_expand:
1599 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1600 if (limit != RLIM_INFINITY && offset > limit)
1601 goto out_sig;
1602 if (offset > inode->i_sb->s_maxbytes)
1603 goto out_big;
1604 i_size_write(inode, offset);
1605
1606out_truncate:
1607 if (inode->i_op && inode->i_op->truncate)
1608 inode->i_op->truncate(inode);
1609 return 0;
1610out_sig:
1611 send_sig(SIGXFSZ, current, 0);
1612out_big:
1613 return -EFBIG;
1614out_busy:
1615 return -ETXTBSY;
1616}
1617
1618EXPORT_SYMBOL(vmtruncate);
1619
1620/*
1621 * Primitive swap readahead code. We simply read an aligned block of
1622 * (1 << page_cluster) entries in the swap area. This method is chosen
1623 * because it doesn't cost us any seek time. We also make sure to queue
1624 * the 'original' request together with the readahead ones...
1625 *
1626 * This has been extended to use the NUMA policies from the mm triggering
1627 * the readahead.
1628 *
1629 * Caller must hold down_read on the vma->vm_mm if vma is not NULL.
1630 */
1631void swapin_readahead(swp_entry_t entry, unsigned long addr,struct vm_area_struct *vma)
1632{
1633#ifdef CONFIG_NUMA
1634 struct vm_area_struct *next_vma = vma ? vma->vm_next : NULL;
1635#endif
1636 int i, num;
1637 struct page *new_page;
1638 unsigned long offset;
1639
1640 /*
1641 * Get the number of handles we should do readahead io to.
1642 */
1643 num = valid_swaphandles(entry, &offset);
1644 for (i = 0; i < num; offset++, i++) {
1645 /* Ok, do the async read-ahead now */
1646 new_page = read_swap_cache_async(swp_entry(swp_type(entry),
1647 offset), vma, addr);
1648 if (!new_page)
1649 break;
1650 page_cache_release(new_page);
1651#ifdef CONFIG_NUMA
1652 /*
1653 * Find the next applicable VMA for the NUMA policy.
1654 */
1655 addr += PAGE_SIZE;
1656 if (addr == 0)
1657 vma = NULL;
1658 if (vma) {
1659 if (addr >= vma->vm_end) {
1660 vma = next_vma;
1661 next_vma = vma ? vma->vm_next : NULL;
1662 }
1663 if (vma && addr < vma->vm_start)
1664 vma = NULL;
1665 } else {
1666 if (next_vma && addr >= next_vma->vm_start) {
1667 vma = next_vma;
1668 next_vma = vma->vm_next;
1669 }
1670 }
1671#endif
1672 }
1673 lru_add_drain(); /* Push any new pages onto the LRU now */
1674}
1675
1676/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001677 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1678 * but allow concurrent faults), and pte mapped but not yet locked.
1679 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001681static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
1682 unsigned long address, pte_t *page_table, pmd_t *pmd,
1683 int write_access, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001685 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 struct page *page;
Hugh Dickins65500d22005-10-29 18:15:59 -07001687 swp_entry_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 pte_t pte;
1689 int ret = VM_FAULT_MINOR;
1690
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001691 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001692 goto out;
Hugh Dickins65500d22005-10-29 18:15:59 -07001693
1694 entry = pte_to_swp_entry(orig_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 page = lookup_swap_cache(entry);
1696 if (!page) {
1697 swapin_readahead(entry, address, vma);
1698 page = read_swap_cache_async(entry, vma, address);
1699 if (!page) {
1700 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001701 * Back out if somebody else faulted in this pte
1702 * while we released the pte lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001704 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (likely(pte_same(*page_table, orig_pte)))
1706 ret = VM_FAULT_OOM;
Hugh Dickins65500d22005-10-29 18:15:59 -07001707 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 }
1709
1710 /* Had to read the page from swap area: Major fault */
1711 ret = VM_FAULT_MAJOR;
1712 inc_page_state(pgmajfault);
1713 grab_swap_token();
1714 }
1715
1716 mark_page_accessed(page);
1717 lock_page(page);
1718
1719 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001720 * Back out if somebody else already faulted in this pte.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001722 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins9e9bef02005-10-29 18:16:15 -07001723 if (unlikely(!pte_same(*page_table, orig_pte)))
Kirill Korotaevb8107482005-05-16 21:53:50 -07001724 goto out_nomap;
Kirill Korotaevb8107482005-05-16 21:53:50 -07001725
1726 if (unlikely(!PageUptodate(page))) {
1727 ret = VM_FAULT_SIGBUS;
1728 goto out_nomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 }
1730
1731 /* The page isn't present yet, go ahead with the fault. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Hugh Dickins42946212005-10-29 18:16:05 -07001733 inc_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 pte = mk_pte(page, vma->vm_page_prot);
1735 if (write_access && can_share_swap_page(page)) {
1736 pte = maybe_mkwrite(pte_mkdirty(pte), vma);
1737 write_access = 0;
1738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 flush_icache_page(vma, page);
1741 set_pte_at(mm, address, page_table, pte);
1742 page_add_anon_rmap(page, vma, address);
1743
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001744 swap_free(entry);
1745 if (vm_swap_full())
1746 remove_exclusive_swap_page(page);
1747 unlock_page(page);
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (write_access) {
1750 if (do_wp_page(mm, vma, address,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001751 page_table, pmd, ptl, pte) == VM_FAULT_OOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 ret = VM_FAULT_OOM;
1753 goto out;
1754 }
1755
1756 /* No need to invalidate - it was non-present before */
1757 update_mmu_cache(vma, address, pte);
1758 lazy_mmu_prot_update(pte);
Hugh Dickins65500d22005-10-29 18:15:59 -07001759unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001760 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761out:
1762 return ret;
Kirill Korotaevb8107482005-05-16 21:53:50 -07001763out_nomap:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001764 pte_unmap_unlock(page_table, ptl);
Kirill Korotaevb8107482005-05-16 21:53:50 -07001765 unlock_page(page);
1766 page_cache_release(page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001767 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
1770/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001771 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1772 * but allow concurrent faults), and pte mapped but not yet locked.
1773 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001775static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
1776 unsigned long address, pte_t *page_table, pmd_t *pmd,
1777 int write_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001779 struct page *page;
1780 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 pte_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if (write_access) {
1784 /* Allocate our own private page. */
1785 pte_unmap(page_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
1787 if (unlikely(anon_vma_prepare(vma)))
Hugh Dickins65500d22005-10-29 18:15:59 -07001788 goto oom;
1789 page = alloc_zeroed_user_highpage(vma, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (!page)
Hugh Dickins65500d22005-10-29 18:15:59 -07001791 goto oom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Hugh Dickins65500d22005-10-29 18:15:59 -07001793 entry = mk_pte(page, vma->vm_page_prot);
1794 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001795
1796 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
1797 if (!pte_none(*page_table))
1798 goto release;
1799 inc_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 lru_cache_add_active(page);
1801 SetPageReferenced(page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001802 page_add_anon_rmap(page, vma, address);
Nick Pigginb5810032005-10-29 18:16:12 -07001803 } else {
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001804 /* Map the ZERO_PAGE - vm_page_prot is readonly */
1805 page = ZERO_PAGE(address);
1806 page_cache_get(page);
1807 entry = mk_pte(page, vma->vm_page_prot);
1808
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001809 ptl = pte_lockptr(mm, pmd);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001810 spin_lock(ptl);
1811 if (!pte_none(*page_table))
1812 goto release;
Nick Pigginb5810032005-10-29 18:16:12 -07001813 inc_mm_counter(mm, file_rss);
1814 page_add_file_rmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816
Hugh Dickins65500d22005-10-29 18:15:59 -07001817 set_pte_at(mm, address, page_table, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
1819 /* No need to invalidate - it was non-present before */
Hugh Dickins65500d22005-10-29 18:15:59 -07001820 update_mmu_cache(vma, address, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 lazy_mmu_prot_update(entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07001822unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001823 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return VM_FAULT_MINOR;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001825release:
1826 page_cache_release(page);
1827 goto unlock;
Hugh Dickins65500d22005-10-29 18:15:59 -07001828oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return VM_FAULT_OOM;
1830}
1831
1832/*
1833 * do_no_page() tries to create a new page mapping. It aggressively
1834 * tries to share with existing pages, but makes a separate copy if
1835 * the "write_access" parameter is true in order to avoid the next
1836 * page fault.
1837 *
1838 * As this is called only for pages that do not currently exist, we
1839 * do not need to flush old virtual caches or the TLB.
1840 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001841 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1842 * but allow concurrent faults), and pte mapped but not yet locked.
1843 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001845static int do_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
1846 unsigned long address, pte_t *page_table, pmd_t *pmd,
1847 int write_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001849 spinlock_t *ptl;
Hugh Dickins65500d22005-10-29 18:15:59 -07001850 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 struct address_space *mapping = NULL;
1852 pte_t entry;
1853 unsigned int sequence = 0;
1854 int ret = VM_FAULT_MINOR;
1855 int anon = 0;
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 pte_unmap(page_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 if (vma->vm_file) {
1860 mapping = vma->vm_file->f_mapping;
1861 sequence = mapping->truncate_count;
1862 smp_rmb(); /* serializes i_size against truncate_count */
1863 }
1864retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 new_page = vma->vm_ops->nopage(vma, address & PAGE_MASK, &ret);
1866 /*
1867 * No smp_rmb is needed here as long as there's a full
1868 * spin_lock/unlock sequence inside the ->nopage callback
1869 * (for the pagecache lookup) that acts as an implicit
1870 * smp_mb() and prevents the i_size read to happen
1871 * after the next truncate_count read.
1872 */
1873
1874 /* no page was available -- either SIGBUS or OOM */
1875 if (new_page == NOPAGE_SIGBUS)
1876 return VM_FAULT_SIGBUS;
1877 if (new_page == NOPAGE_OOM)
1878 return VM_FAULT_OOM;
1879
1880 /*
1881 * Should we do an early C-O-W break?
1882 */
1883 if (write_access && !(vma->vm_flags & VM_SHARED)) {
1884 struct page *page;
1885
1886 if (unlikely(anon_vma_prepare(vma)))
1887 goto oom;
1888 page = alloc_page_vma(GFP_HIGHUSER, vma, address);
1889 if (!page)
1890 goto oom;
1891 copy_user_highpage(page, new_page, address);
1892 page_cache_release(new_page);
1893 new_page = page;
1894 anon = 1;
1895 }
1896
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001897 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /*
1899 * For a file-backed vma, someone could have truncated or otherwise
1900 * invalidated this page. If unmap_mapping_range got called,
1901 * retry getting the page.
1902 */
1903 if (mapping && unlikely(sequence != mapping->truncate_count)) {
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001904 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001906 cond_resched();
1907 sequence = mapping->truncate_count;
1908 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 goto retry;
1910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 /*
1913 * This silly early PAGE_DIRTY setting removes a race
1914 * due to the bad i386 page protection. But it's valid
1915 * for other architectures too.
1916 *
1917 * Note that if write_access is true, we either now have
1918 * an exclusive copy of the page, or this is a shared mapping,
1919 * so we can make it writable and dirty to avoid having to
1920 * handle that later.
1921 */
1922 /* Only go through if we didn't race with anybody else... */
1923 if (pte_none(*page_table)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 flush_icache_page(vma, new_page);
1925 entry = mk_pte(new_page, vma->vm_page_prot);
1926 if (write_access)
1927 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1928 set_pte_at(mm, address, page_table, entry);
1929 if (anon) {
Hugh Dickins42946212005-10-29 18:16:05 -07001930 inc_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 lru_cache_add_active(new_page);
1932 page_add_anon_rmap(new_page, vma, address);
Hugh Dickins0b14c172005-11-21 21:32:15 -08001933 } else if (!(vma->vm_flags & VM_UNPAGED)) {
Hugh Dickins42946212005-10-29 18:16:05 -07001934 inc_mm_counter(mm, file_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 page_add_file_rmap(new_page);
Hugh Dickins42946212005-10-29 18:16:05 -07001936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 } else {
1938 /* One of our sibling threads was faster, back out. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001940 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942
1943 /* no need to invalidate: a not-present page shouldn't be cached */
1944 update_mmu_cache(vma, address, entry);
1945 lazy_mmu_prot_update(entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07001946unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001947 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return ret;
1949oom:
1950 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001951 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
1954/*
1955 * Fault of a previously existing named mapping. Repopulate the pte
1956 * from the encoded file_pte if possible. This enables swappable
1957 * nonlinear vmas.
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001958 *
1959 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1960 * but allow concurrent faults), and pte mapped but not yet locked.
1961 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001963static int do_file_page(struct mm_struct *mm, struct vm_area_struct *vma,
1964 unsigned long address, pte_t *page_table, pmd_t *pmd,
1965 int write_access, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Hugh Dickins65500d22005-10-29 18:15:59 -07001967 pgoff_t pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 int err;
1969
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001970 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001971 return VM_FAULT_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Hugh Dickins65500d22005-10-29 18:15:59 -07001973 if (unlikely(!(vma->vm_flags & VM_NONLINEAR))) {
1974 /*
1975 * Page table corrupted: show pte and kill process.
1976 */
Nick Pigginb5810032005-10-29 18:16:12 -07001977 print_bad_pte(vma, orig_pte, address);
Hugh Dickins65500d22005-10-29 18:15:59 -07001978 return VM_FAULT_OOM;
1979 }
1980 /* We can then assume vm->vm_ops && vma->vm_ops->populate */
1981
1982 pgoff = pte_to_pgoff(orig_pte);
1983 err = vma->vm_ops->populate(vma, address & PAGE_MASK, PAGE_SIZE,
1984 vma->vm_page_prot, pgoff, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (err == -ENOMEM)
1986 return VM_FAULT_OOM;
1987 if (err)
1988 return VM_FAULT_SIGBUS;
1989 return VM_FAULT_MAJOR;
1990}
1991
1992/*
1993 * These routines also need to handle stuff like marking pages dirty
1994 * and/or accessed for architectures that don't do it in hardware (most
1995 * RISC architectures). The early dirtying is also good on the i386.
1996 *
1997 * There is also a hook called "update_mmu_cache()" that architectures
1998 * with external mmu caches can use to update those (ie the Sparc or
1999 * PowerPC hashed page tables that act as extended TLBs).
2000 *
Hugh Dickinsc74df322005-10-29 18:16:23 -07002001 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2002 * but allow concurrent faults), and pte mapped but not yet locked.
2003 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 */
2005static inline int handle_pte_fault(struct mm_struct *mm,
Hugh Dickins65500d22005-10-29 18:15:59 -07002006 struct vm_area_struct *vma, unsigned long address,
2007 pte_t *pte, pmd_t *pmd, int write_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 pte_t entry;
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07002010 pte_t old_entry;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002011 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07002013 old_entry = entry = *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (!pte_present(entry)) {
Hugh Dickins65500d22005-10-29 18:15:59 -07002015 if (pte_none(entry)) {
2016 if (!vma->vm_ops || !vma->vm_ops->nopage)
2017 return do_anonymous_page(mm, vma, address,
2018 pte, pmd, write_access);
2019 return do_no_page(mm, vma, address,
2020 pte, pmd, write_access);
2021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (pte_file(entry))
Hugh Dickins65500d22005-10-29 18:15:59 -07002023 return do_file_page(mm, vma, address,
2024 pte, pmd, write_access, entry);
2025 return do_swap_page(mm, vma, address,
2026 pte, pmd, write_access, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002029 ptl = pte_lockptr(mm, pmd);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002030 spin_lock(ptl);
2031 if (unlikely(!pte_same(*pte, entry)))
2032 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (write_access) {
2034 if (!pte_write(entry))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002035 return do_wp_page(mm, vma, address,
2036 pte, pmd, ptl, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 entry = pte_mkdirty(entry);
2038 }
2039 entry = pte_mkyoung(entry);
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07002040 if (!pte_same(old_entry, entry)) {
2041 ptep_set_access_flags(vma, address, pte, entry, write_access);
2042 update_mmu_cache(vma, address, entry);
2043 lazy_mmu_prot_update(entry);
2044 } else {
2045 /*
2046 * This is needed only for protection faults but the arch code
2047 * is not yet telling us if this is a protection fault or not.
2048 * This still avoids useless tlb flushes for .text page faults
2049 * with threads.
2050 */
2051 if (write_access)
2052 flush_tlb_page(vma, address);
2053 }
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002054unlock:
2055 pte_unmap_unlock(pte, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return VM_FAULT_MINOR;
2057}
2058
2059/*
2060 * By the time we get here, we already hold the mm semaphore
2061 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002062int __handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 unsigned long address, int write_access)
2064{
2065 pgd_t *pgd;
2066 pud_t *pud;
2067 pmd_t *pmd;
2068 pte_t *pte;
2069
2070 __set_current_state(TASK_RUNNING);
2071
2072 inc_page_state(pgfault);
2073
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002074 if (unlikely(is_vm_hugetlb_page(vma)))
2075 return hugetlb_fault(mm, vma, address, write_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 pgd = pgd_offset(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 pud = pud_alloc(mm, pgd, address);
2079 if (!pud)
Hugh Dickinsc74df322005-10-29 18:16:23 -07002080 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 pmd = pmd_alloc(mm, pud, address);
2082 if (!pmd)
Hugh Dickinsc74df322005-10-29 18:16:23 -07002083 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 pte = pte_alloc_map(mm, pmd, address);
2085 if (!pte)
Hugh Dickinsc74df322005-10-29 18:16:23 -07002086 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Hugh Dickinsc74df322005-10-29 18:16:23 -07002088 return handle_pte_fault(mm, vma, address, pte, pmd, write_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
2090
2091#ifndef __PAGETABLE_PUD_FOLDED
2092/*
2093 * Allocate page upper directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07002094 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07002096int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Hugh Dickinsc74df322005-10-29 18:16:23 -07002098 pud_t *new = pud_alloc_one(mm, address);
2099 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07002100 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Hugh Dickins872fec12005-10-29 18:16:21 -07002102 spin_lock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002103 if (pgd_present(*pgd)) /* Another has populated it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 pud_free(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002105 else
2106 pgd_populate(mm, pgd, new);
Hugh Dickinsc74df322005-10-29 18:16:23 -07002107 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002108 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110#endif /* __PAGETABLE_PUD_FOLDED */
2111
2112#ifndef __PAGETABLE_PMD_FOLDED
2113/*
2114 * Allocate page middle directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07002115 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07002117int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Hugh Dickinsc74df322005-10-29 18:16:23 -07002119 pmd_t *new = pmd_alloc_one(mm, address);
2120 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07002121 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Hugh Dickins872fec12005-10-29 18:16:21 -07002123 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124#ifndef __ARCH_HAS_4LEVEL_HACK
Hugh Dickins1bb36302005-10-29 18:16:22 -07002125 if (pud_present(*pud)) /* Another has populated it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 pmd_free(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002127 else
2128 pud_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129#else
Hugh Dickins1bb36302005-10-29 18:16:22 -07002130 if (pgd_present(*pud)) /* Another has populated it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 pmd_free(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002132 else
2133 pgd_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134#endif /* __ARCH_HAS_4LEVEL_HACK */
Hugh Dickinsc74df322005-10-29 18:16:23 -07002135 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138#endif /* __PAGETABLE_PMD_FOLDED */
2139
2140int make_pages_present(unsigned long addr, unsigned long end)
2141{
2142 int ret, len, write;
2143 struct vm_area_struct * vma;
2144
2145 vma = find_vma(current->mm, addr);
2146 if (!vma)
2147 return -1;
2148 write = (vma->vm_flags & VM_WRITE) != 0;
2149 if (addr >= end)
2150 BUG();
2151 if (end > vma->vm_end)
2152 BUG();
2153 len = (end+PAGE_SIZE-1)/PAGE_SIZE-addr/PAGE_SIZE;
2154 ret = get_user_pages(current, current->mm, addr,
2155 len, write, 0, NULL, NULL);
2156 if (ret < 0)
2157 return ret;
2158 return ret == len ? 0 : -1;
2159}
2160
2161/*
2162 * Map a vmalloc()-space virtual address to the physical page.
2163 */
2164struct page * vmalloc_to_page(void * vmalloc_addr)
2165{
2166 unsigned long addr = (unsigned long) vmalloc_addr;
2167 struct page *page = NULL;
2168 pgd_t *pgd = pgd_offset_k(addr);
2169 pud_t *pud;
2170 pmd_t *pmd;
2171 pte_t *ptep, pte;
2172
2173 if (!pgd_none(*pgd)) {
2174 pud = pud_offset(pgd, addr);
2175 if (!pud_none(*pud)) {
2176 pmd = pmd_offset(pud, addr);
2177 if (!pmd_none(*pmd)) {
2178 ptep = pte_offset_map(pmd, addr);
2179 pte = *ptep;
2180 if (pte_present(pte))
2181 page = pte_page(pte);
2182 pte_unmap(ptep);
2183 }
2184 }
2185 }
2186 return page;
2187}
2188
2189EXPORT_SYMBOL(vmalloc_to_page);
2190
2191/*
2192 * Map a vmalloc()-space virtual address to the physical page frame number.
2193 */
2194unsigned long vmalloc_to_pfn(void * vmalloc_addr)
2195{
2196 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
2197}
2198
2199EXPORT_SYMBOL(vmalloc_to_pfn);
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201#if !defined(__HAVE_ARCH_GATE_AREA)
2202
2203#if defined(AT_SYSINFO_EHDR)
Adrian Bunk5ce78522005-09-10 00:26:28 -07002204static struct vm_area_struct gate_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206static int __init gate_vma_init(void)
2207{
2208 gate_vma.vm_mm = NULL;
2209 gate_vma.vm_start = FIXADDR_USER_START;
2210 gate_vma.vm_end = FIXADDR_USER_END;
2211 gate_vma.vm_page_prot = PAGE_READONLY;
Hugh Dickins0b14c172005-11-21 21:32:15 -08002212 gate_vma.vm_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return 0;
2214}
2215__initcall(gate_vma_init);
2216#endif
2217
2218struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
2219{
2220#ifdef AT_SYSINFO_EHDR
2221 return &gate_vma;
2222#else
2223 return NULL;
2224#endif
2225}
2226
2227int in_gate_area_no_task(unsigned long addr)
2228{
2229#ifdef AT_SYSINFO_EHDR
2230 if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
2231 return 1;
2232#endif
2233 return 0;
2234}
2235
2236#endif /* __HAVE_ARCH_GATE_AREA */