blob: 4b4fc3a7ea4858a1bba7e2aa60f1ace8fdbd4e0c [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/*
Linus Torvalds6aab3412005-11-28 14:34:23 -0800336 * This function is called to print an error when a bad pte
337 * is found. For example, we might have a PFN-mapped pte in
338 * a region that doesn't allow it.
Nick Pigginb5810032005-10-29 18:16:12 -0700339 *
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 Torvalds6aab3412005-11-28 14:34:23 -0800353 * This function gets the "struct page" associated with a pte.
354 *
355 * NOTE! Some mappings do not have "struct pages". A raw PFN mapping
356 * will have each page table entry just pointing to a raw page frame
357 * number, and as far as the VM layer is concerned, those do not have
358 * pages associated with them - even if the PFN might point to memory
359 * that otherwise is perfectly fine and has a "struct page".
360 *
361 * The way we recognize those mappings is through the rules set up
362 * by "remap_pfn_range()": the vma will have the VM_PFNMAP bit set,
363 * and the vm_pgoff will point to the first PFN mapped: thus every
364 * page that is a raw mapping will always honor the rule
365 *
366 * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
367 *
368 * and if that isn't true, the page has been COW'ed (in which case it
369 * _does_ have a "struct page" associated with it even if it is in a
370 * VM_PFNMAP range).
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800371 */
Linus Torvalds6aab3412005-11-28 14:34:23 -0800372struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, pte_t pte)
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800373{
Linus Torvalds6aab3412005-11-28 14:34:23 -0800374 unsigned long pfn = pte_pfn(pte);
375
376 if (vma->vm_flags & VM_PFNMAP) {
377 unsigned long off = (addr - vma->vm_start) >> PAGE_SHIFT;
378 if (pfn == vma->vm_pgoff + off)
379 return NULL;
380 }
381
382 /*
383 * Add some anal sanity checks for now. Eventually,
384 * we should just do "return pfn_to_page(pfn)", but
385 * in the meantime we check that we get a valid pfn,
386 * and that the resulting page looks ok.
387 *
388 * Remove this test eventually!
389 */
390 if (unlikely(!pfn_valid(pfn))) {
391 print_bad_pte(vma, pte, addr);
392 return NULL;
393 }
394
395 /*
396 * NOTE! We still have PageReserved() pages in the page
397 * tables.
398 *
399 * The PAGE_ZERO() pages and various VDSO mappings can
400 * cause them to exist.
401 */
402 return pfn_to_page(pfn);
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800403}
404
405/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * copy one vm_area from one task to the other. Assumes the page tables
407 * already present in the new task to be cleared in the whole range
408 * covered by this vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
410
Hugh Dickins8c103762005-10-29 18:16:13 -0700411static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
Nick Pigginb5810032005-10-29 18:16:12 -0700413 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
Hugh Dickins8c103762005-10-29 18:16:13 -0700414 unsigned long addr, int *rss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Nick Pigginb5810032005-10-29 18:16:12 -0700416 unsigned long vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 pte_t pte = *src_pte;
418 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /* pte contains position in swap or file, so copy. */
421 if (unlikely(!pte_present(pte))) {
422 if (!pte_file(pte)) {
423 swap_duplicate(pte_to_swp_entry(pte));
424 /* make sure dst_mm is on swapoff's mmlist. */
425 if (unlikely(list_empty(&dst_mm->mmlist))) {
426 spin_lock(&mmlist_lock);
Hugh Dickinsf412ac02005-10-29 18:16:41 -0700427 if (list_empty(&dst_mm->mmlist))
428 list_add(&dst_mm->mmlist,
429 &src_mm->mmlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 spin_unlock(&mmlist_lock);
431 }
432 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700433 goto out_set_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * If it's a COW mapping, write protect it both
438 * in the parent and the child
439 */
440 if ((vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE) {
441 ptep_set_wrprotect(src_mm, addr, src_pte);
442 pte = *src_pte;
443 }
444
445 /*
446 * If it's a shared mapping, mark it clean in
447 * the child
448 */
449 if (vm_flags & VM_SHARED)
450 pte = pte_mkclean(pte);
451 pte = pte_mkold(pte);
Linus Torvalds6aab3412005-11-28 14:34:23 -0800452
453 page = vm_normal_page(vma, addr, pte);
454 if (page) {
455 get_page(page);
456 page_dup_rmap(page);
457 rss[!!PageAnon(page)]++;
458 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700459
460out_set_pte:
461 set_pte_at(dst_mm, addr, dst_pte, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
465 pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
466 unsigned long addr, unsigned long end)
467{
468 pte_t *src_pte, *dst_pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700469 spinlock_t *src_ptl, *dst_ptl;
Hugh Dickinse040f212005-10-29 18:15:53 -0700470 int progress = 0;
Hugh Dickins8c103762005-10-29 18:16:13 -0700471 int rss[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473again:
Hugh Dickinsae859762005-10-29 18:16:05 -0700474 rss[1] = rss[0] = 0;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700475 dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (!dst_pte)
477 return -ENOMEM;
478 src_pte = pte_offset_map_nested(src_pmd, addr);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700479 src_ptl = pte_lockptr(src_mm, src_pmd);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700480 spin_lock(src_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 do {
483 /*
484 * We are holding two locks at this point - either of them
485 * could generate latencies in another task on another CPU.
486 */
Hugh Dickinse040f212005-10-29 18:15:53 -0700487 if (progress >= 32) {
488 progress = 0;
489 if (need_resched() ||
Hugh Dickinsc74df322005-10-29 18:16:23 -0700490 need_lockbreak(src_ptl) ||
491 need_lockbreak(dst_ptl))
Hugh Dickinse040f212005-10-29 18:15:53 -0700492 break;
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (pte_none(*src_pte)) {
495 progress++;
496 continue;
497 }
Hugh Dickins8c103762005-10-29 18:16:13 -0700498 copy_one_pte(dst_mm, src_mm, dst_pte, src_pte, vma, addr, rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 progress += 8;
500 } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Hugh Dickinsc74df322005-10-29 18:16:23 -0700502 spin_unlock(src_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 pte_unmap_nested(src_pte - 1);
Hugh Dickinsae859762005-10-29 18:16:05 -0700504 add_mm_rss(dst_mm, rss[0], rss[1]);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700505 pte_unmap_unlock(dst_pte - 1, dst_ptl);
506 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (addr != end)
508 goto again;
509 return 0;
510}
511
512static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
513 pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
514 unsigned long addr, unsigned long end)
515{
516 pmd_t *src_pmd, *dst_pmd;
517 unsigned long next;
518
519 dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
520 if (!dst_pmd)
521 return -ENOMEM;
522 src_pmd = pmd_offset(src_pud, addr);
523 do {
524 next = pmd_addr_end(addr, end);
525 if (pmd_none_or_clear_bad(src_pmd))
526 continue;
527 if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
528 vma, addr, next))
529 return -ENOMEM;
530 } while (dst_pmd++, src_pmd++, addr = next, addr != end);
531 return 0;
532}
533
534static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
535 pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
536 unsigned long addr, unsigned long end)
537{
538 pud_t *src_pud, *dst_pud;
539 unsigned long next;
540
541 dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
542 if (!dst_pud)
543 return -ENOMEM;
544 src_pud = pud_offset(src_pgd, addr);
545 do {
546 next = pud_addr_end(addr, end);
547 if (pud_none_or_clear_bad(src_pud))
548 continue;
549 if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
550 vma, addr, next))
551 return -ENOMEM;
552 } while (dst_pud++, src_pud++, addr = next, addr != end);
553 return 0;
554}
555
556int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
557 struct vm_area_struct *vma)
558{
559 pgd_t *src_pgd, *dst_pgd;
560 unsigned long next;
561 unsigned long addr = vma->vm_start;
562 unsigned long end = vma->vm_end;
563
Nick Piggind9928952005-08-28 16:49:11 +1000564 /*
565 * Don't copy ptes where a page fault will fill them correctly.
566 * Fork becomes much lighter when there are big shared or private
567 * readonly mappings. The tradeoff is that copy_page_range is more
568 * efficient than faulting.
569 */
Linus Torvalds6aab3412005-11-28 14:34:23 -0800570 if (!(vma->vm_flags & (VM_HUGETLB|VM_NONLINEAR|VM_PFNMAP))) {
Nick Piggind9928952005-08-28 16:49:11 +1000571 if (!vma->anon_vma)
572 return 0;
573 }
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (is_vm_hugetlb_page(vma))
576 return copy_hugetlb_page_range(dst_mm, src_mm, vma);
577
578 dst_pgd = pgd_offset(dst_mm, addr);
579 src_pgd = pgd_offset(src_mm, addr);
580 do {
581 next = pgd_addr_end(addr, end);
582 if (pgd_none_or_clear_bad(src_pgd))
583 continue;
584 if (copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
585 vma, addr, next))
586 return -ENOMEM;
587 } while (dst_pgd++, src_pgd++, addr = next, addr != end);
588 return 0;
589}
590
Robin Holt51c6f662005-11-13 16:06:42 -0800591static unsigned long zap_pte_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -0700592 struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800594 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Nick Pigginb5810032005-10-29 18:16:12 -0700596 struct mm_struct *mm = tlb->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 pte_t *pte;
Hugh Dickins508034a2005-10-29 18:16:30 -0700598 spinlock_t *ptl;
Hugh Dickinsae859762005-10-29 18:16:05 -0700599 int file_rss = 0;
600 int anon_rss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Hugh Dickins508034a2005-10-29 18:16:30 -0700602 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 do {
604 pte_t ptent = *pte;
Robin Holt51c6f662005-11-13 16:06:42 -0800605 if (pte_none(ptent)) {
606 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (pte_present(ptent)) {
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800610 struct page *page;
Robin Holt51c6f662005-11-13 16:06:42 -0800611
612 (*zap_work) -= PAGE_SIZE;
613
Linus Torvalds6aab3412005-11-28 14:34:23 -0800614 page = vm_normal_page(vma, addr, ptent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (unlikely(details) && page) {
616 /*
617 * unmap_shared_mapping_pages() wants to
618 * invalidate cache without truncating:
619 * unmap shared but keep private pages.
620 */
621 if (details->check_mapping &&
622 details->check_mapping != page->mapping)
623 continue;
624 /*
625 * Each page->index must be checked when
626 * invalidating or truncating nonlinear.
627 */
628 if (details->nonlinear_vma &&
629 (page->index < details->first_index ||
630 page->index > details->last_index))
631 continue;
632 }
Nick Pigginb5810032005-10-29 18:16:12 -0700633 ptent = ptep_get_and_clear_full(mm, addr, pte,
Zachary Amsdena6003882005-09-03 15:55:04 -0700634 tlb->fullmm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 tlb_remove_tlb_entry(tlb, pte, addr);
636 if (unlikely(!page))
637 continue;
638 if (unlikely(details) && details->nonlinear_vma
639 && linear_page_index(details->nonlinear_vma,
640 addr) != page->index)
Nick Pigginb5810032005-10-29 18:16:12 -0700641 set_pte_at(mm, addr, pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 pgoff_to_pte(page->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (PageAnon(page))
Hugh Dickins86d912f2005-10-29 18:16:14 -0700644 anon_rss--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -0700645 else {
646 if (pte_dirty(ptent))
647 set_page_dirty(page);
648 if (pte_young(ptent))
649 mark_page_accessed(page);
Hugh Dickins86d912f2005-10-29 18:16:14 -0700650 file_rss--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -0700651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 page_remove_rmap(page);
653 tlb_remove_page(tlb, page);
654 continue;
655 }
656 /*
657 * If details->check_mapping, we leave swap entries;
658 * if details->nonlinear_vma, we leave file entries.
659 */
660 if (unlikely(details))
661 continue;
662 if (!pte_file(ptent))
663 free_swap_and_cache(pte_to_swp_entry(ptent));
Nick Pigginb5810032005-10-29 18:16:12 -0700664 pte_clear_full(mm, addr, pte, tlb->fullmm);
Robin Holt51c6f662005-11-13 16:06:42 -0800665 } while (pte++, addr += PAGE_SIZE, (addr != end && *zap_work > 0));
Hugh Dickinsae859762005-10-29 18:16:05 -0700666
Hugh Dickins86d912f2005-10-29 18:16:14 -0700667 add_mm_rss(mm, file_rss, anon_rss);
Hugh Dickins508034a2005-10-29 18:16:30 -0700668 pte_unmap_unlock(pte - 1, ptl);
Robin Holt51c6f662005-11-13 16:06:42 -0800669
670 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Robin Holt51c6f662005-11-13 16:06:42 -0800673static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -0700674 struct vm_area_struct *vma, pud_t *pud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800676 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 pmd_t *pmd;
679 unsigned long next;
680
681 pmd = pmd_offset(pud, addr);
682 do {
683 next = pmd_addr_end(addr, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800684 if (pmd_none_or_clear_bad(pmd)) {
685 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800687 }
688 next = zap_pte_range(tlb, vma, pmd, addr, next,
689 zap_work, details);
690 } while (pmd++, addr = next, (addr != end && *zap_work > 0));
691
692 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Robin Holt51c6f662005-11-13 16:06:42 -0800695static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -0700696 struct vm_area_struct *vma, pgd_t *pgd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800698 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 pud_t *pud;
701 unsigned long next;
702
703 pud = pud_offset(pgd, addr);
704 do {
705 next = pud_addr_end(addr, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800706 if (pud_none_or_clear_bad(pud)) {
707 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800709 }
710 next = zap_pmd_range(tlb, vma, pud, addr, next,
711 zap_work, details);
712 } while (pud++, addr = next, (addr != end && *zap_work > 0));
713
714 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Robin Holt51c6f662005-11-13 16:06:42 -0800717static unsigned long unmap_page_range(struct mmu_gather *tlb,
718 struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 unsigned long addr, unsigned long end,
Robin Holt51c6f662005-11-13 16:06:42 -0800720 long *zap_work, struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 pgd_t *pgd;
723 unsigned long next;
724
725 if (details && !details->check_mapping && !details->nonlinear_vma)
726 details = NULL;
727
728 BUG_ON(addr >= end);
729 tlb_start_vma(tlb, vma);
730 pgd = pgd_offset(vma->vm_mm, addr);
731 do {
732 next = pgd_addr_end(addr, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800733 if (pgd_none_or_clear_bad(pgd)) {
734 (*zap_work)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 continue;
Robin Holt51c6f662005-11-13 16:06:42 -0800736 }
737 next = zap_pud_range(tlb, vma, pgd, addr, next,
738 zap_work, details);
739 } while (pgd++, addr = next, (addr != end && *zap_work > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 tlb_end_vma(tlb, vma);
Robin Holt51c6f662005-11-13 16:06:42 -0800741
742 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745#ifdef CONFIG_PREEMPT
746# define ZAP_BLOCK_SIZE (8 * PAGE_SIZE)
747#else
748/* No preempt: go for improved straight-line efficiency */
749# define ZAP_BLOCK_SIZE (1024 * PAGE_SIZE)
750#endif
751
752/**
753 * unmap_vmas - unmap a range of memory covered by a list of vma's
754 * @tlbp: address of the caller's struct mmu_gather
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * @vma: the starting vma
756 * @start_addr: virtual address at which to start unmapping
757 * @end_addr: virtual address at which to end unmapping
758 * @nr_accounted: Place number of unmapped pages in vm-accountable vma's here
759 * @details: details of nonlinear truncation or shared cache invalidation
760 *
Hugh Dickinsee39b372005-04-19 13:29:15 -0700761 * Returns the end address of the unmapping (restart addr if interrupted).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 *
Hugh Dickins508034a2005-10-29 18:16:30 -0700763 * Unmap all pages in the vma list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *
Hugh Dickins508034a2005-10-29 18:16:30 -0700765 * We aim to not hold locks for too long (for scheduling latency reasons).
766 * So zap pages in ZAP_BLOCK_SIZE bytecounts. This means we need to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * return the ending mmu_gather to the caller.
768 *
769 * Only addresses between `start' and `end' will be unmapped.
770 *
771 * The VMA list must be sorted in ascending virtual address order.
772 *
773 * unmap_vmas() assumes that the caller will flush the whole unmapped address
774 * range after unmap_vmas() returns. So the only responsibility here is to
775 * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
776 * drops the lock and schedules.
777 */
Hugh Dickins508034a2005-10-29 18:16:30 -0700778unsigned long unmap_vmas(struct mmu_gather **tlbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct vm_area_struct *vma, unsigned long start_addr,
780 unsigned long end_addr, unsigned long *nr_accounted,
781 struct zap_details *details)
782{
Robin Holt51c6f662005-11-13 16:06:42 -0800783 long zap_work = ZAP_BLOCK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 unsigned long tlb_start = 0; /* For tlb_finish_mmu */
785 int tlb_start_valid = 0;
Hugh Dickinsee39b372005-04-19 13:29:15 -0700786 unsigned long start = start_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL;
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -0700788 int fullmm = (*tlbp)->fullmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 unsigned long end;
792
793 start = max(vma->vm_start, start_addr);
794 if (start >= vma->vm_end)
795 continue;
796 end = min(vma->vm_end, end_addr);
797 if (end <= vma->vm_start)
798 continue;
799
800 if (vma->vm_flags & VM_ACCOUNT)
801 *nr_accounted += (end - start) >> PAGE_SHIFT;
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 while (start != end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!tlb_start_valid) {
805 tlb_start = start;
806 tlb_start_valid = 1;
807 }
808
Robin Holt51c6f662005-11-13 16:06:42 -0800809 if (unlikely(is_vm_hugetlb_page(vma))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 unmap_hugepage_range(vma, start, end);
Robin Holt51c6f662005-11-13 16:06:42 -0800811 zap_work -= (end - start) /
812 (HPAGE_SIZE / PAGE_SIZE);
813 start = end;
814 } else
815 start = unmap_page_range(*tlbp, vma,
816 start, end, &zap_work, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Robin Holt51c6f662005-11-13 16:06:42 -0800818 if (zap_work > 0) {
819 BUG_ON(start != end);
820 break;
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 tlb_finish_mmu(*tlbp, tlb_start, start);
824
825 if (need_resched() ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 (i_mmap_lock && need_lockbreak(i_mmap_lock))) {
827 if (i_mmap_lock) {
Hugh Dickins508034a2005-10-29 18:16:30 -0700828 *tlbp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
Hugh Dickins508034a2005-10-29 18:16:30 -0700834 *tlbp = tlb_gather_mmu(vma->vm_mm, fullmm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 tlb_start_valid = 0;
Robin Holt51c6f662005-11-13 16:06:42 -0800836 zap_work = ZAP_BLOCK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 }
839out:
Hugh Dickinsee39b372005-04-19 13:29:15 -0700840 return start; /* which is now the end (or restart) address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
843/**
844 * zap_page_range - remove user pages in a given range
845 * @vma: vm_area_struct holding the applicable pages
846 * @address: starting address of pages to zap
847 * @size: number of bytes to zap
848 * @details: details of nonlinear truncation or shared cache invalidation
849 */
Hugh Dickinsee39b372005-04-19 13:29:15 -0700850unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 unsigned long size, struct zap_details *details)
852{
853 struct mm_struct *mm = vma->vm_mm;
854 struct mmu_gather *tlb;
855 unsigned long end = address + size;
856 unsigned long nr_accounted = 0;
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 tlb = tlb_gather_mmu(mm, 0);
Hugh Dickins365e9c872005-10-29 18:16:18 -0700860 update_hiwater_rss(mm);
Hugh Dickins508034a2005-10-29 18:16:30 -0700861 end = unmap_vmas(&tlb, vma, address, end, &nr_accounted, details);
862 if (tlb)
863 tlb_finish_mmu(tlb, address, end);
Hugh Dickinsee39b372005-04-19 13:29:15 -0700864 return end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867/*
868 * Do a quick page-table lookup for a single page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 */
Linus Torvalds6aab3412005-11-28 14:34:23 -0800870struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700871 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
873 pgd_t *pgd;
874 pud_t *pud;
875 pmd_t *pmd;
876 pte_t *ptep, pte;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700877 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 struct page *page;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800879 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700881 page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
882 if (!IS_ERR(page)) {
883 BUG_ON(flags & FOLL_GET);
884 goto out;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700887 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 pgd = pgd_offset(mm, address);
889 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700890 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 pud = pud_offset(pgd, address);
893 if (pud_none(*pud) || unlikely(pud_bad(*pud)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700894 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 pmd = pmd_offset(pud, address);
897 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700898 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700900 if (pmd_huge(*pmd)) {
901 BUG_ON(flags & FOLL_GET);
902 page = follow_huge_pmd(mm, address, pmd, flags & FOLL_WRITE);
903 goto out;
904 }
905
906 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (!ptep)
908 goto out;
909
910 pte = *ptep;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700911 if (!pte_present(pte))
912 goto unlock;
913 if ((flags & FOLL_WRITE) && !pte_write(pte))
914 goto unlock;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800915 page = vm_normal_page(vma, address, pte);
916 if (unlikely(!page))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700917 goto unlock;
918
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700919 if (flags & FOLL_GET)
920 get_page(page);
921 if (flags & FOLL_TOUCH) {
922 if ((flags & FOLL_WRITE) &&
923 !pte_dirty(pte) && !PageDirty(page))
924 set_page_dirty(page);
925 mark_page_accessed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700927unlock:
928 pte_unmap_unlock(ptep, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929out:
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700930 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700932no_page_table:
933 /*
934 * When core dumping an enormous anonymous area that nobody
935 * has touched so far, we don't want to allocate page tables.
936 */
937 if (flags & FOLL_ANON) {
938 page = ZERO_PAGE(address);
939 if (flags & FOLL_GET)
940 get_page(page);
941 BUG_ON(flags & FOLL_WRITE);
942 }
943 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
947 unsigned long start, int len, int write, int force,
948 struct page **pages, struct vm_area_struct **vmas)
949{
950 int i;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700951 unsigned int vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /*
954 * Require read or write permissions.
955 * If 'force' is set, we only require the "MAY" flags.
956 */
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700957 vm_flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
958 vm_flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 i = 0;
960
961 do {
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -0700962 struct vm_area_struct *vma;
963 unsigned int foll_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 vma = find_extend_vma(mm, start);
966 if (!vma && in_gate_area(tsk, start)) {
967 unsigned long pg = start & PAGE_MASK;
968 struct vm_area_struct *gate_vma = get_gate_vma(tsk);
969 pgd_t *pgd;
970 pud_t *pud;
971 pmd_t *pmd;
972 pte_t *pte;
973 if (write) /* user gate pages are read-only */
974 return i ? : -EFAULT;
975 if (pg > TASK_SIZE)
976 pgd = pgd_offset_k(pg);
977 else
978 pgd = pgd_offset_gate(mm, pg);
979 BUG_ON(pgd_none(*pgd));
980 pud = pud_offset(pgd, pg);
981 BUG_ON(pud_none(*pud));
982 pmd = pmd_offset(pud, pg);
Hugh Dickins690dbe12005-08-01 21:11:42 -0700983 if (pmd_none(*pmd))
984 return i ? : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 pte = pte_offset_map(pmd, pg);
Hugh Dickins690dbe12005-08-01 21:11:42 -0700986 if (pte_none(*pte)) {
987 pte_unmap(pte);
988 return i ? : -EFAULT;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (pages) {
Nick Pigginfa2a4552005-11-29 18:43:17 +1100991 struct page *page = vm_normal_page(gate_vma, start, *pte);
Linus Torvalds6aab3412005-11-28 14:34:23 -0800992 pages[i] = page;
993 if (page)
994 get_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996 pte_unmap(pte);
997 if (vmas)
998 vmas[i] = gate_vma;
999 i++;
1000 start += PAGE_SIZE;
1001 len--;
1002 continue;
1003 }
1004
Hugh Dickinsed5297a2005-11-21 21:32:11 -08001005 if (!vma || (vma->vm_flags & VM_IO)
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001006 || !(vm_flags & vma->vm_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return i ? : -EFAULT;
1008
1009 if (is_vm_hugetlb_page(vma)) {
1010 i = follow_hugetlb_page(mm, vma, pages, vmas,
1011 &start, &len, i);
1012 continue;
1013 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001014
1015 foll_flags = FOLL_TOUCH;
1016 if (pages)
1017 foll_flags |= FOLL_GET;
1018 if (!write && !(vma->vm_flags & VM_LOCKED) &&
1019 (!vma->vm_ops || !vma->vm_ops->nopage))
1020 foll_flags |= FOLL_ANON;
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 do {
Hugh Dickins08ef4722005-06-21 17:15:10 -07001023 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001025 if (write)
1026 foll_flags |= FOLL_WRITE;
1027
1028 cond_resched();
Linus Torvalds6aab3412005-11-28 14:34:23 -08001029 while (!(page = follow_page(vma, start, foll_flags))) {
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001030 int ret;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001031 ret = __handle_mm_fault(mm, vma, start,
1032 foll_flags & FOLL_WRITE);
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001033 /*
1034 * The VM_FAULT_WRITE bit tells us that do_wp_page has
1035 * broken COW when necessary, even if maybe_mkwrite
1036 * decided not to set pte_write. We can thus safely do
1037 * subsequent page lookups as if they were reads.
1038 */
1039 if (ret & VM_FAULT_WRITE)
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001040 foll_flags &= ~FOLL_WRITE;
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001041
1042 switch (ret & ~VM_FAULT_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 case VM_FAULT_MINOR:
1044 tsk->min_flt++;
1045 break;
1046 case VM_FAULT_MAJOR:
1047 tsk->maj_flt++;
1048 break;
1049 case VM_FAULT_SIGBUS:
1050 return i ? i : -EFAULT;
1051 case VM_FAULT_OOM:
1052 return i ? i : -ENOMEM;
1053 default:
1054 BUG();
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057 if (pages) {
Hugh Dickins08ef4722005-06-21 17:15:10 -07001058 pages[i] = page;
1059 flush_dcache_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061 if (vmas)
1062 vmas[i] = vma;
1063 i++;
1064 start += PAGE_SIZE;
1065 len--;
Hugh Dickins08ef4722005-06-21 17:15:10 -07001066 } while (len && start < vma->vm_end);
Hugh Dickins08ef4722005-06-21 17:15:10 -07001067 } while (len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return i;
1069}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070EXPORT_SYMBOL(get_user_pages);
1071
1072static int zeromap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1073 unsigned long addr, unsigned long end, pgprot_t prot)
1074{
1075 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -07001076 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Hugh Dickinsc74df322005-10-29 18:16:23 -07001078 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (!pte)
1080 return -ENOMEM;
1081 do {
Nick Pigginb5810032005-10-29 18:16:12 -07001082 struct page *page = ZERO_PAGE(addr);
1083 pte_t zero_pte = pte_wrprotect(mk_pte(page, prot));
1084 page_cache_get(page);
1085 page_add_file_rmap(page);
1086 inc_mm_counter(mm, file_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 BUG_ON(!pte_none(*pte));
1088 set_pte_at(mm, addr, pte, zero_pte);
1089 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001090 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return 0;
1092}
1093
1094static inline int zeromap_pmd_range(struct mm_struct *mm, pud_t *pud,
1095 unsigned long addr, unsigned long end, pgprot_t prot)
1096{
1097 pmd_t *pmd;
1098 unsigned long next;
1099
1100 pmd = pmd_alloc(mm, pud, addr);
1101 if (!pmd)
1102 return -ENOMEM;
1103 do {
1104 next = pmd_addr_end(addr, end);
1105 if (zeromap_pte_range(mm, pmd, addr, next, prot))
1106 return -ENOMEM;
1107 } while (pmd++, addr = next, addr != end);
1108 return 0;
1109}
1110
1111static inline int zeromap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1112 unsigned long addr, unsigned long end, pgprot_t prot)
1113{
1114 pud_t *pud;
1115 unsigned long next;
1116
1117 pud = pud_alloc(mm, pgd, addr);
1118 if (!pud)
1119 return -ENOMEM;
1120 do {
1121 next = pud_addr_end(addr, end);
1122 if (zeromap_pmd_range(mm, pud, addr, next, prot))
1123 return -ENOMEM;
1124 } while (pud++, addr = next, addr != end);
1125 return 0;
1126}
1127
1128int zeromap_page_range(struct vm_area_struct *vma,
1129 unsigned long addr, unsigned long size, pgprot_t prot)
1130{
1131 pgd_t *pgd;
1132 unsigned long next;
1133 unsigned long end = addr + size;
1134 struct mm_struct *mm = vma->vm_mm;
1135 int err;
1136
1137 BUG_ON(addr >= end);
1138 pgd = pgd_offset(mm, addr);
1139 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 do {
1141 next = pgd_addr_end(addr, end);
1142 err = zeromap_pud_range(mm, pgd, addr, next, prot);
1143 if (err)
1144 break;
1145 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return err;
1147}
1148
Trond Myklebust49c91fb2005-11-29 19:27:22 -05001149pte_t * fastcall get_locked_pte(struct mm_struct *mm, unsigned long addr, spinlock_t **ptl)
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001150{
1151 pgd_t * pgd = pgd_offset(mm, addr);
1152 pud_t * pud = pud_alloc(mm, pgd, addr);
1153 if (pud) {
Trond Myklebust49c91fb2005-11-29 19:27:22 -05001154 pmd_t * pmd = pmd_alloc(mm, pud, addr);
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001155 if (pmd)
1156 return pte_alloc_map_lock(mm, pmd, addr, ptl);
1157 }
1158 return NULL;
1159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161/*
Linus Torvalds238f58d2005-11-29 13:01:56 -08001162 * This is the old fallback for page remapping.
1163 *
1164 * For historical reasons, it only allows reserved pages. Only
1165 * old drivers should use this, and they needed to mark their
1166 * pages reserved for the old functions anyway.
1167 */
1168static int insert_page(struct mm_struct *mm, unsigned long addr, struct page *page, pgprot_t prot)
1169{
1170 int retval;
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001171 pte_t *pte;
Linus Torvalds238f58d2005-11-29 13:01:56 -08001172 spinlock_t *ptl;
1173
1174 retval = -EINVAL;
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001175 if (PageAnon(page))
Linus Torvalds238f58d2005-11-29 13:01:56 -08001176 goto out;
1177 retval = -ENOMEM;
1178 flush_dcache_page(page);
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001179 pte = get_locked_pte(mm, addr, &ptl);
Linus Torvalds238f58d2005-11-29 13:01:56 -08001180 if (!pte)
1181 goto out;
1182 retval = -EBUSY;
1183 if (!pte_none(*pte))
1184 goto out_unlock;
1185
1186 /* Ok, finally just insert the thing.. */
1187 get_page(page);
1188 inc_mm_counter(mm, file_rss);
1189 page_add_file_rmap(page);
1190 set_pte_at(mm, addr, pte, mk_pte(page, prot));
1191
1192 retval = 0;
1193out_unlock:
1194 pte_unmap_unlock(pte, ptl);
1195out:
1196 return retval;
1197}
1198
1199/*
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001200 * This allows drivers to insert individual pages they've allocated
1201 * into a user vma.
1202 *
1203 * The page has to be a nice clean _individual_ kernel allocation.
1204 * If you allocate a compound page, you need to have marked it as
1205 * such (__GFP_COMP), or manually just split the page up yourself
1206 * (which is mainly an issue of doing "set_page_count(page, 1)" for
1207 * each sub-page, and then freeing them one by one when you free
1208 * them rather than freeing it as a compound page).
1209 *
1210 * NOTE! Traditionally this was done with "remap_pfn_range()" which
1211 * took an arbitrary page protection parameter. This doesn't allow
1212 * that. Your vma protection will have to be set up correctly, which
1213 * means that if you want a shared writable mapping, you'd better
1214 * ask for a shared writable mapping!
1215 *
1216 * The page does not need to be reserved.
1217 */
1218int vm_insert_page(struct vm_area_struct *vma, unsigned long addr, struct page *page)
1219{
1220 if (addr < vma->vm_start || addr >= vma->vm_end)
1221 return -EFAULT;
1222 if (!page_count(page))
1223 return -EINVAL;
1224 return insert_page(vma->vm_mm, addr, page, vma->vm_page_prot);
1225}
1226EXPORT_SYMBOL_GPL(vm_insert_page);
1227
1228/*
Linus Torvalds238f58d2005-11-29 13:01:56 -08001229 * Somebody does a pfn remapping that doesn't actually work as a vma.
1230 *
1231 * Do it as individual pages instead, and warn about it. It's bad form,
1232 * and very inefficient.
1233 */
1234static int incomplete_pfn_remap(struct vm_area_struct *vma,
1235 unsigned long start, unsigned long end,
1236 unsigned long pfn, pgprot_t prot)
1237{
1238 static int warn = 10;
1239 struct page *page;
1240 int retval;
1241
1242 if (!(vma->vm_flags & VM_INCOMPLETE)) {
1243 if (warn) {
1244 warn--;
1245 printk("%s does an incomplete pfn remapping", current->comm);
1246 dump_stack();
1247 }
1248 }
1249 vma->vm_flags |= VM_INCOMPLETE | VM_IO | VM_RESERVED;
1250
1251 if (start < vma->vm_start || end > vma->vm_end)
1252 return -EINVAL;
1253
1254 if (!pfn_valid(pfn))
1255 return -EINVAL;
1256
Linus Torvalds238f58d2005-11-29 13:01:56 -08001257 page = pfn_to_page(pfn);
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001258 if (!PageReserved(page))
1259 return -EINVAL;
1260
1261 retval = 0;
Linus Torvalds238f58d2005-11-29 13:01:56 -08001262 while (start < end) {
1263 retval = insert_page(vma->vm_mm, start, page, prot);
1264 if (retval < 0)
1265 break;
1266 start += PAGE_SIZE;
1267 page++;
1268 }
1269 return retval;
1270}
1271
1272/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * maps a range of physical memory into the requested pages. the old
1274 * mappings are removed. any references to nonexistent pages results
1275 * in null mappings (currently treated as "copy-on-access")
1276 */
1277static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1278 unsigned long addr, unsigned long end,
1279 unsigned long pfn, pgprot_t prot)
1280{
1281 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -07001282 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Hugh Dickinsc74df322005-10-29 18:16:23 -07001284 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (!pte)
1286 return -ENOMEM;
1287 do {
1288 BUG_ON(!pte_none(*pte));
Nick Pigginb5810032005-10-29 18:16:12 -07001289 set_pte_at(mm, addr, pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 pfn++;
1291 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001292 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return 0;
1294}
1295
1296static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
1297 unsigned long addr, unsigned long end,
1298 unsigned long pfn, pgprot_t prot)
1299{
1300 pmd_t *pmd;
1301 unsigned long next;
1302
1303 pfn -= addr >> PAGE_SHIFT;
1304 pmd = pmd_alloc(mm, pud, addr);
1305 if (!pmd)
1306 return -ENOMEM;
1307 do {
1308 next = pmd_addr_end(addr, end);
1309 if (remap_pte_range(mm, pmd, addr, next,
1310 pfn + (addr >> PAGE_SHIFT), prot))
1311 return -ENOMEM;
1312 } while (pmd++, addr = next, addr != end);
1313 return 0;
1314}
1315
1316static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1317 unsigned long addr, unsigned long end,
1318 unsigned long pfn, pgprot_t prot)
1319{
1320 pud_t *pud;
1321 unsigned long next;
1322
1323 pfn -= addr >> PAGE_SHIFT;
1324 pud = pud_alloc(mm, pgd, addr);
1325 if (!pud)
1326 return -ENOMEM;
1327 do {
1328 next = pud_addr_end(addr, end);
1329 if (remap_pmd_range(mm, pud, addr, next,
1330 pfn + (addr >> PAGE_SHIFT), prot))
1331 return -ENOMEM;
1332 } while (pud++, addr = next, addr != end);
1333 return 0;
1334}
1335
1336/* Note: this is only safe if the mm semaphore is held when called. */
1337int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1338 unsigned long pfn, unsigned long size, pgprot_t prot)
1339{
1340 pgd_t *pgd;
1341 unsigned long next;
Hugh Dickins2d15cab2005-06-25 14:54:33 -07001342 unsigned long end = addr + PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 struct mm_struct *mm = vma->vm_mm;
1344 int err;
1345
Linus Torvalds238f58d2005-11-29 13:01:56 -08001346 if (addr != vma->vm_start || end != vma->vm_end)
1347 return incomplete_pfn_remap(vma, addr, end, pfn, prot);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /*
1350 * Physically remapped pages are special. Tell the
1351 * rest of the world about it:
1352 * VM_IO tells people not to look at these pages
1353 * (accesses can have side effects).
Hugh Dickins0b14c172005-11-21 21:32:15 -08001354 * VM_RESERVED is specified all over the place, because
1355 * in 2.4 it kept swapout's vma scan off this vma; but
1356 * in 2.6 the LRU scan won't even find its pages, so this
1357 * flag means no more than count its pages in reserved_vm,
1358 * and omit it from core dump, even when VM_IO turned off.
Linus Torvalds6aab3412005-11-28 14:34:23 -08001359 * VM_PFNMAP tells the core MM that the base pages are just
1360 * raw PFN mappings, and do not have a "struct page" associated
1361 * with them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 */
Linus Torvalds6aab3412005-11-28 14:34:23 -08001363 vma->vm_flags |= VM_IO | VM_RESERVED | VM_PFNMAP;
1364 vma->vm_pgoff = pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 BUG_ON(addr >= end);
1367 pfn -= addr >> PAGE_SHIFT;
1368 pgd = pgd_offset(mm, addr);
1369 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 do {
1371 next = pgd_addr_end(addr, end);
1372 err = remap_pud_range(mm, pgd, addr, next,
1373 pfn + (addr >> PAGE_SHIFT), prot);
1374 if (err)
1375 break;
1376 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return err;
1378}
1379EXPORT_SYMBOL(remap_pfn_range);
1380
1381/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001382 * handle_pte_fault chooses page fault handler according to an entry
1383 * which was read non-atomically. Before making any commitment, on
1384 * those architectures or configurations (e.g. i386 with PAE) which
1385 * might give a mix of unmatched parts, do_swap_page and do_file_page
1386 * must check under lock before unmapping the pte and proceeding
1387 * (but do_wp_page is only called after already making such a check;
1388 * and do_anonymous_page and do_no_page can safely check later on).
1389 */
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001390static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001391 pte_t *page_table, pte_t orig_pte)
1392{
1393 int same = 1;
1394#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
1395 if (sizeof(pte_t) > sizeof(unsigned long)) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001396 spinlock_t *ptl = pte_lockptr(mm, pmd);
1397 spin_lock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001398 same = pte_same(*page_table, orig_pte);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001399 spin_unlock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001400 }
1401#endif
1402 pte_unmap(page_table);
1403 return same;
1404}
1405
1406/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * Do pte_mkwrite, but only if the vma says VM_WRITE. We do this when
1408 * servicing faults for write access. In the normal case, do always want
1409 * pte_mkwrite. But get_user_pages can cause write faults for mappings
1410 * that do not have writing enabled, when used by access_process_vm.
1411 */
1412static inline pte_t maybe_mkwrite(pte_t pte, struct vm_area_struct *vma)
1413{
1414 if (likely(vma->vm_flags & VM_WRITE))
1415 pte = pte_mkwrite(pte);
1416 return pte;
1417}
1418
Linus Torvalds6aab3412005-11-28 14:34:23 -08001419static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va)
1420{
1421 /*
1422 * If the source page was a PFN mapping, we don't have
1423 * a "struct page" for it. We do a best-effort copy by
1424 * just copying from the original user address. If that
1425 * fails, we just zero-fill it. Live with it.
1426 */
1427 if (unlikely(!src)) {
1428 void *kaddr = kmap_atomic(dst, KM_USER0);
Linus Torvalds5d2a2db2005-11-29 14:07:55 -08001429 void __user *uaddr = (void __user *)(va & PAGE_MASK);
1430
1431 /*
1432 * This really shouldn't fail, because the page is there
1433 * in the page tables. But it might just be unreadable,
1434 * in which case we just give up and fill the result with
1435 * zeroes.
1436 */
1437 if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE))
Linus Torvalds6aab3412005-11-28 14:34:23 -08001438 memset(kaddr, 0, PAGE_SIZE);
1439 kunmap_atomic(kaddr, KM_USER0);
1440 return;
1441
1442 }
1443 copy_user_highpage(dst, src, va);
1444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 * This routine handles present pages, when users try to write
1448 * to a shared page. It is done by copying the page to a new address
1449 * and decrementing the shared-page counter for the old page.
1450 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 * Note that this routine assumes that the protection checks have been
1452 * done by the caller (the low-level page fault routine in most cases).
1453 * Thus we can safely just mark it writable once we've done any necessary
1454 * COW.
1455 *
1456 * We also mark the page dirty at this point even though the page will
1457 * change only once the write actually happens. This avoids a few races,
1458 * and potentially makes it more efficient.
1459 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001460 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1461 * but allow concurrent faults), with pte both mapped and locked.
1462 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001464static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
1465 unsigned long address, pte_t *page_table, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001466 spinlock_t *ptl, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Hugh Dickinse5bbe4d2005-11-29 16:54:51 +00001468 struct page *old_page, *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 pte_t entry;
Hugh Dickins65500d22005-10-29 18:15:59 -07001470 int ret = VM_FAULT_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Linus Torvalds6aab3412005-11-28 14:34:23 -08001472 old_page = vm_normal_page(vma, address, orig_pte);
Linus Torvalds6aab3412005-11-28 14:34:23 -08001473 if (!old_page)
1474 goto gotten;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Hugh Dickinsd296e9c2005-06-21 17:15:11 -07001476 if (PageAnon(old_page) && !TestSetPageLocked(old_page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 int reuse = can_share_swap_page(old_page);
1478 unlock_page(old_page);
1479 if (reuse) {
Ben Collinseca35132005-11-29 11:45:26 -08001480 flush_cache_page(vma, address, pte_pfn(orig_pte));
Hugh Dickins65500d22005-10-29 18:15:59 -07001481 entry = pte_mkyoung(orig_pte);
1482 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 ptep_set_access_flags(vma, address, page_table, entry, 1);
1484 update_mmu_cache(vma, address, entry);
1485 lazy_mmu_prot_update(entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07001486 ret |= VM_FAULT_WRITE;
1487 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 /*
1492 * Ok, we need to copy. Oh, well..
1493 */
Nick Pigginb5810032005-10-29 18:16:12 -07001494 page_cache_get(old_page);
Hugh Dickins920fc352005-11-21 21:32:17 -08001495gotten:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001496 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (unlikely(anon_vma_prepare(vma)))
Hugh Dickins65500d22005-10-29 18:15:59 -07001499 goto oom;
Hugh Dickinse5bbe4d2005-11-29 16:54:51 +00001500 if (old_page == ZERO_PAGE(address)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 new_page = alloc_zeroed_user_highpage(vma, address);
1502 if (!new_page)
Hugh Dickins65500d22005-10-29 18:15:59 -07001503 goto oom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 } else {
1505 new_page = alloc_page_vma(GFP_HIGHUSER, vma, address);
1506 if (!new_page)
Hugh Dickins65500d22005-10-29 18:15:59 -07001507 goto oom;
Hugh Dickinse5bbe4d2005-11-29 16:54:51 +00001508 cow_user_page(new_page, old_page, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
Hugh Dickins65500d22005-10-29 18:15:59 -07001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 /*
1512 * Re-check the pte - we dropped the lock
1513 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001514 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins65500d22005-10-29 18:15:59 -07001515 if (likely(pte_same(*page_table, orig_pte))) {
Hugh Dickins920fc352005-11-21 21:32:17 -08001516 if (old_page) {
1517 page_remove_rmap(old_page);
1518 if (!PageAnon(old_page)) {
1519 dec_mm_counter(mm, file_rss);
1520 inc_mm_counter(mm, anon_rss);
1521 }
1522 } else
Hugh Dickins42946212005-10-29 18:16:05 -07001523 inc_mm_counter(mm, anon_rss);
Ben Collinseca35132005-11-29 11:45:26 -08001524 flush_cache_page(vma, address, pte_pfn(orig_pte));
Hugh Dickins65500d22005-10-29 18:15:59 -07001525 entry = mk_pte(new_page, vma->vm_page_prot);
1526 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1527 ptep_establish(vma, address, page_table, entry);
1528 update_mmu_cache(vma, address, entry);
1529 lazy_mmu_prot_update(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 lru_cache_add_active(new_page);
1531 page_add_anon_rmap(new_page, vma, address);
1532
1533 /* Free the old page.. */
1534 new_page = old_page;
Nick Pigginf33ea7f2005-08-03 20:24:01 +10001535 ret |= VM_FAULT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Hugh Dickins920fc352005-11-21 21:32:17 -08001537 if (new_page)
1538 page_cache_release(new_page);
1539 if (old_page)
1540 page_cache_release(old_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001541unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001542 pte_unmap_unlock(page_table, ptl);
Nick Pigginf33ea7f2005-08-03 20:24:01 +10001543 return ret;
Hugh Dickins65500d22005-10-29 18:15:59 -07001544oom:
Hugh Dickins920fc352005-11-21 21:32:17 -08001545 if (old_page)
1546 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return VM_FAULT_OOM;
1548}
1549
1550/*
1551 * Helper functions for unmap_mapping_range().
1552 *
1553 * __ Notes on dropping i_mmap_lock to reduce latency while unmapping __
1554 *
1555 * We have to restart searching the prio_tree whenever we drop the lock,
1556 * since the iterator is only valid while the lock is held, and anyway
1557 * a later vma might be split and reinserted earlier while lock dropped.
1558 *
1559 * The list of nonlinear vmas could be handled more efficiently, using
1560 * a placeholder, but handle it in the same way until a need is shown.
1561 * It is important to search the prio_tree before nonlinear list: a vma
1562 * may become nonlinear and be shifted from prio_tree to nonlinear list
1563 * while the lock is dropped; but never shifted from list to prio_tree.
1564 *
1565 * In order to make forward progress despite restarting the search,
1566 * vm_truncate_count is used to mark a vma as now dealt with, so we can
1567 * quickly skip it next time around. Since the prio_tree search only
1568 * shows us those vmas affected by unmapping the range in question, we
1569 * can't efficiently keep all vmas in step with mapping->truncate_count:
1570 * so instead reset them all whenever it wraps back to 0 (then go to 1).
1571 * mapping->truncate_count and vma->vm_truncate_count are protected by
1572 * i_mmap_lock.
1573 *
1574 * In order to make forward progress despite repeatedly restarting some
Hugh Dickinsee39b372005-04-19 13:29:15 -07001575 * large vma, note the restart_addr from unmap_vmas when it breaks out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 * and restart from that address when we reach that vma again. It might
1577 * have been split or merged, shrunk or extended, but never shifted: so
1578 * restart_addr remains valid so long as it remains in the vma's range.
1579 * unmap_mapping_range forces truncate_count to leap over page-aligned
1580 * values so we can save vma's restart_addr in its truncate_count field.
1581 */
1582#define is_restart_addr(truncate_count) (!((truncate_count) & ~PAGE_MASK))
1583
1584static void reset_vma_truncate_counts(struct address_space *mapping)
1585{
1586 struct vm_area_struct *vma;
1587 struct prio_tree_iter iter;
1588
1589 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, 0, ULONG_MAX)
1590 vma->vm_truncate_count = 0;
1591 list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
1592 vma->vm_truncate_count = 0;
1593}
1594
1595static int unmap_mapping_range_vma(struct vm_area_struct *vma,
1596 unsigned long start_addr, unsigned long end_addr,
1597 struct zap_details *details)
1598{
1599 unsigned long restart_addr;
1600 int need_break;
1601
1602again:
1603 restart_addr = vma->vm_truncate_count;
1604 if (is_restart_addr(restart_addr) && start_addr < restart_addr) {
1605 start_addr = restart_addr;
1606 if (start_addr >= end_addr) {
1607 /* Top of vma has been split off since last time */
1608 vma->vm_truncate_count = details->truncate_count;
1609 return 0;
1610 }
1611 }
1612
Hugh Dickinsee39b372005-04-19 13:29:15 -07001613 restart_addr = zap_page_range(vma, start_addr,
1614 end_addr - start_addr, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 need_break = need_resched() ||
1616 need_lockbreak(details->i_mmap_lock);
1617
Hugh Dickinsee39b372005-04-19 13:29:15 -07001618 if (restart_addr >= end_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 /* We have now completed this vma: mark it so */
1620 vma->vm_truncate_count = details->truncate_count;
1621 if (!need_break)
1622 return 0;
1623 } else {
1624 /* Note restart_addr in vma's truncate_count field */
Hugh Dickinsee39b372005-04-19 13:29:15 -07001625 vma->vm_truncate_count = restart_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (!need_break)
1627 goto again;
1628 }
1629
1630 spin_unlock(details->i_mmap_lock);
1631 cond_resched();
1632 spin_lock(details->i_mmap_lock);
1633 return -EINTR;
1634}
1635
1636static inline void unmap_mapping_range_tree(struct prio_tree_root *root,
1637 struct zap_details *details)
1638{
1639 struct vm_area_struct *vma;
1640 struct prio_tree_iter iter;
1641 pgoff_t vba, vea, zba, zea;
1642
1643restart:
1644 vma_prio_tree_foreach(vma, &iter, root,
1645 details->first_index, details->last_index) {
1646 /* Skip quickly over those we have already dealt with */
1647 if (vma->vm_truncate_count == details->truncate_count)
1648 continue;
1649
1650 vba = vma->vm_pgoff;
1651 vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1;
1652 /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
1653 zba = details->first_index;
1654 if (zba < vba)
1655 zba = vba;
1656 zea = details->last_index;
1657 if (zea > vea)
1658 zea = vea;
1659
1660 if (unmap_mapping_range_vma(vma,
1661 ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
1662 ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
1663 details) < 0)
1664 goto restart;
1665 }
1666}
1667
1668static inline void unmap_mapping_range_list(struct list_head *head,
1669 struct zap_details *details)
1670{
1671 struct vm_area_struct *vma;
1672
1673 /*
1674 * In nonlinear VMAs there is no correspondence between virtual address
1675 * offset and file offset. So we must perform an exhaustive search
1676 * across *all* the pages in each nonlinear VMA, not just the pages
1677 * whose virtual address lies outside the file truncation point.
1678 */
1679restart:
1680 list_for_each_entry(vma, head, shared.vm_set.list) {
1681 /* Skip quickly over those we have already dealt with */
1682 if (vma->vm_truncate_count == details->truncate_count)
1683 continue;
1684 details->nonlinear_vma = vma;
1685 if (unmap_mapping_range_vma(vma, vma->vm_start,
1686 vma->vm_end, details) < 0)
1687 goto restart;
1688 }
1689}
1690
1691/**
1692 * unmap_mapping_range - unmap the portion of all mmaps
1693 * in the specified address_space corresponding to the specified
1694 * page range in the underlying file.
Martin Waitz3d410882005-06-23 22:05:21 -07001695 * @mapping: the address space containing mmaps to be unmapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 * @holebegin: byte in first page to unmap, relative to the start of
1697 * the underlying file. This will be rounded down to a PAGE_SIZE
1698 * boundary. Note that this is different from vmtruncate(), which
1699 * must keep the partial page. In contrast, we must get rid of
1700 * partial pages.
1701 * @holelen: size of prospective hole in bytes. This will be rounded
1702 * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
1703 * end of the file.
1704 * @even_cows: 1 when truncating a file, unmap even private COWed pages;
1705 * but 0 when invalidating pagecache, don't throw away private data.
1706 */
1707void unmap_mapping_range(struct address_space *mapping,
1708 loff_t const holebegin, loff_t const holelen, int even_cows)
1709{
1710 struct zap_details details;
1711 pgoff_t hba = holebegin >> PAGE_SHIFT;
1712 pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1713
1714 /* Check for overflow. */
1715 if (sizeof(holelen) > sizeof(hlen)) {
1716 long long holeend =
1717 (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1718 if (holeend & ~(long long)ULONG_MAX)
1719 hlen = ULONG_MAX - hba + 1;
1720 }
1721
1722 details.check_mapping = even_cows? NULL: mapping;
1723 details.nonlinear_vma = NULL;
1724 details.first_index = hba;
1725 details.last_index = hba + hlen - 1;
1726 if (details.last_index < details.first_index)
1727 details.last_index = ULONG_MAX;
1728 details.i_mmap_lock = &mapping->i_mmap_lock;
1729
1730 spin_lock(&mapping->i_mmap_lock);
1731
1732 /* serialize i_size write against truncate_count write */
1733 smp_wmb();
1734 /* Protect against page faults, and endless unmapping loops */
1735 mapping->truncate_count++;
1736 /*
1737 * For archs where spin_lock has inclusive semantics like ia64
1738 * this smp_mb() will prevent to read pagetable contents
1739 * before the truncate_count increment is visible to
1740 * other cpus.
1741 */
1742 smp_mb();
1743 if (unlikely(is_restart_addr(mapping->truncate_count))) {
1744 if (mapping->truncate_count == 0)
1745 reset_vma_truncate_counts(mapping);
1746 mapping->truncate_count++;
1747 }
1748 details.truncate_count = mapping->truncate_count;
1749
1750 if (unlikely(!prio_tree_empty(&mapping->i_mmap)))
1751 unmap_mapping_range_tree(&mapping->i_mmap, &details);
1752 if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
1753 unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
1754 spin_unlock(&mapping->i_mmap_lock);
1755}
1756EXPORT_SYMBOL(unmap_mapping_range);
1757
1758/*
1759 * Handle all mappings that got truncated by a "truncate()"
1760 * system call.
1761 *
1762 * NOTE! We have to be ready to update the memory sharing
1763 * between the file and the memory map for a potential last
1764 * incomplete page. Ugly, but necessary.
1765 */
1766int vmtruncate(struct inode * inode, loff_t offset)
1767{
1768 struct address_space *mapping = inode->i_mapping;
1769 unsigned long limit;
1770
1771 if (inode->i_size < offset)
1772 goto do_expand;
1773 /*
1774 * truncation of in-use swapfiles is disallowed - it would cause
1775 * subsequent swapout to scribble on the now-freed blocks.
1776 */
1777 if (IS_SWAPFILE(inode))
1778 goto out_busy;
1779 i_size_write(inode, offset);
1780 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1781 truncate_inode_pages(mapping, offset);
1782 goto out_truncate;
1783
1784do_expand:
1785 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1786 if (limit != RLIM_INFINITY && offset > limit)
1787 goto out_sig;
1788 if (offset > inode->i_sb->s_maxbytes)
1789 goto out_big;
1790 i_size_write(inode, offset);
1791
1792out_truncate:
1793 if (inode->i_op && inode->i_op->truncate)
1794 inode->i_op->truncate(inode);
1795 return 0;
1796out_sig:
1797 send_sig(SIGXFSZ, current, 0);
1798out_big:
1799 return -EFBIG;
1800out_busy:
1801 return -ETXTBSY;
1802}
1803
1804EXPORT_SYMBOL(vmtruncate);
1805
1806/*
1807 * Primitive swap readahead code. We simply read an aligned block of
1808 * (1 << page_cluster) entries in the swap area. This method is chosen
1809 * because it doesn't cost us any seek time. We also make sure to queue
1810 * the 'original' request together with the readahead ones...
1811 *
1812 * This has been extended to use the NUMA policies from the mm triggering
1813 * the readahead.
1814 *
1815 * Caller must hold down_read on the vma->vm_mm if vma is not NULL.
1816 */
1817void swapin_readahead(swp_entry_t entry, unsigned long addr,struct vm_area_struct *vma)
1818{
1819#ifdef CONFIG_NUMA
1820 struct vm_area_struct *next_vma = vma ? vma->vm_next : NULL;
1821#endif
1822 int i, num;
1823 struct page *new_page;
1824 unsigned long offset;
1825
1826 /*
1827 * Get the number of handles we should do readahead io to.
1828 */
1829 num = valid_swaphandles(entry, &offset);
1830 for (i = 0; i < num; offset++, i++) {
1831 /* Ok, do the async read-ahead now */
1832 new_page = read_swap_cache_async(swp_entry(swp_type(entry),
1833 offset), vma, addr);
1834 if (!new_page)
1835 break;
1836 page_cache_release(new_page);
1837#ifdef CONFIG_NUMA
1838 /*
1839 * Find the next applicable VMA for the NUMA policy.
1840 */
1841 addr += PAGE_SIZE;
1842 if (addr == 0)
1843 vma = NULL;
1844 if (vma) {
1845 if (addr >= vma->vm_end) {
1846 vma = next_vma;
1847 next_vma = vma ? vma->vm_next : NULL;
1848 }
1849 if (vma && addr < vma->vm_start)
1850 vma = NULL;
1851 } else {
1852 if (next_vma && addr >= next_vma->vm_start) {
1853 vma = next_vma;
1854 next_vma = vma->vm_next;
1855 }
1856 }
1857#endif
1858 }
1859 lru_add_drain(); /* Push any new pages onto the LRU now */
1860}
1861
1862/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001863 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1864 * but allow concurrent faults), and pte mapped but not yet locked.
1865 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001867static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
1868 unsigned long address, pte_t *page_table, pmd_t *pmd,
1869 int write_access, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001871 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 struct page *page;
Hugh Dickins65500d22005-10-29 18:15:59 -07001873 swp_entry_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 pte_t pte;
1875 int ret = VM_FAULT_MINOR;
1876
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001877 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001878 goto out;
Hugh Dickins65500d22005-10-29 18:15:59 -07001879
1880 entry = pte_to_swp_entry(orig_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 page = lookup_swap_cache(entry);
1882 if (!page) {
1883 swapin_readahead(entry, address, vma);
1884 page = read_swap_cache_async(entry, vma, address);
1885 if (!page) {
1886 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001887 * Back out if somebody else faulted in this pte
1888 * while we released the pte lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001890 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (likely(pte_same(*page_table, orig_pte)))
1892 ret = VM_FAULT_OOM;
Hugh Dickins65500d22005-10-29 18:15:59 -07001893 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895
1896 /* Had to read the page from swap area: Major fault */
1897 ret = VM_FAULT_MAJOR;
1898 inc_page_state(pgmajfault);
1899 grab_swap_token();
1900 }
1901
1902 mark_page_accessed(page);
1903 lock_page(page);
1904
1905 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001906 * Back out if somebody else already faulted in this pte.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001908 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins9e9bef02005-10-29 18:16:15 -07001909 if (unlikely(!pte_same(*page_table, orig_pte)))
Kirill Korotaevb8107482005-05-16 21:53:50 -07001910 goto out_nomap;
Kirill Korotaevb8107482005-05-16 21:53:50 -07001911
1912 if (unlikely(!PageUptodate(page))) {
1913 ret = VM_FAULT_SIGBUS;
1914 goto out_nomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916
1917 /* The page isn't present yet, go ahead with the fault. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Hugh Dickins42946212005-10-29 18:16:05 -07001919 inc_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 pte = mk_pte(page, vma->vm_page_prot);
1921 if (write_access && can_share_swap_page(page)) {
1922 pte = maybe_mkwrite(pte_mkdirty(pte), vma);
1923 write_access = 0;
1924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 flush_icache_page(vma, page);
1927 set_pte_at(mm, address, page_table, pte);
1928 page_add_anon_rmap(page, vma, address);
1929
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001930 swap_free(entry);
1931 if (vm_swap_full())
1932 remove_exclusive_swap_page(page);
1933 unlock_page(page);
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (write_access) {
1936 if (do_wp_page(mm, vma, address,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001937 page_table, pmd, ptl, pte) == VM_FAULT_OOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 ret = VM_FAULT_OOM;
1939 goto out;
1940 }
1941
1942 /* No need to invalidate - it was non-present before */
1943 update_mmu_cache(vma, address, pte);
1944 lazy_mmu_prot_update(pte);
Hugh Dickins65500d22005-10-29 18:15:59 -07001945unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001946 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947out:
1948 return ret;
Kirill Korotaevb8107482005-05-16 21:53:50 -07001949out_nomap:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001950 pte_unmap_unlock(page_table, ptl);
Kirill Korotaevb8107482005-05-16 21:53:50 -07001951 unlock_page(page);
1952 page_cache_release(page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
1956/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001957 * We enter with non-exclusive mmap_sem (to exclude vma changes,
1958 * but allow concurrent faults), and pte mapped but not yet locked.
1959 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 */
Hugh Dickins65500d22005-10-29 18:15:59 -07001961static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
1962 unsigned long address, pte_t *page_table, pmd_t *pmd,
1963 int write_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001965 struct page *page;
1966 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 pte_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Linus Torvalds6aab3412005-11-28 14:34:23 -08001969 if (write_access) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 /* Allocate our own private page. */
1971 pte_unmap(page_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 if (unlikely(anon_vma_prepare(vma)))
Hugh Dickins65500d22005-10-29 18:15:59 -07001974 goto oom;
1975 page = alloc_zeroed_user_highpage(vma, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (!page)
Hugh Dickins65500d22005-10-29 18:15:59 -07001977 goto oom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Hugh Dickins65500d22005-10-29 18:15:59 -07001979 entry = mk_pte(page, vma->vm_page_prot);
1980 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001981
1982 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
1983 if (!pte_none(*page_table))
1984 goto release;
1985 inc_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 lru_cache_add_active(page);
1987 SetPageReferenced(page);
Hugh Dickins65500d22005-10-29 18:15:59 -07001988 page_add_anon_rmap(page, vma, address);
Nick Pigginb5810032005-10-29 18:16:12 -07001989 } else {
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001990 /* Map the ZERO_PAGE - vm_page_prot is readonly */
1991 page = ZERO_PAGE(address);
1992 page_cache_get(page);
1993 entry = mk_pte(page, vma->vm_page_prot);
1994
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001995 ptl = pte_lockptr(mm, pmd);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001996 spin_lock(ptl);
1997 if (!pte_none(*page_table))
1998 goto release;
Nick Pigginb5810032005-10-29 18:16:12 -07001999 inc_mm_counter(mm, file_rss);
2000 page_add_file_rmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002
Hugh Dickins65500d22005-10-29 18:15:59 -07002003 set_pte_at(mm, address, page_table, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 /* No need to invalidate - it was non-present before */
Hugh Dickins65500d22005-10-29 18:15:59 -07002006 update_mmu_cache(vma, address, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 lazy_mmu_prot_update(entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07002008unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002009 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return VM_FAULT_MINOR;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002011release:
2012 page_cache_release(page);
2013 goto unlock;
Hugh Dickins65500d22005-10-29 18:15:59 -07002014oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return VM_FAULT_OOM;
2016}
2017
2018/*
2019 * do_no_page() tries to create a new page mapping. It aggressively
2020 * tries to share with existing pages, but makes a separate copy if
2021 * the "write_access" parameter is true in order to avoid the next
2022 * page fault.
2023 *
2024 * As this is called only for pages that do not currently exist, we
2025 * do not need to flush old virtual caches or the TLB.
2026 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002027 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2028 * but allow concurrent faults), and pte mapped but not yet locked.
2029 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002031static int do_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
2032 unsigned long address, pte_t *page_table, pmd_t *pmd,
2033 int write_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002035 spinlock_t *ptl;
Hugh Dickins65500d22005-10-29 18:15:59 -07002036 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 struct address_space *mapping = NULL;
2038 pte_t entry;
2039 unsigned int sequence = 0;
2040 int ret = VM_FAULT_MINOR;
2041 int anon = 0;
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 pte_unmap(page_table);
Hugh Dickins325f04d2005-11-29 16:55:48 +00002044 BUG_ON(vma->vm_flags & VM_PFNMAP);
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (vma->vm_file) {
2047 mapping = vma->vm_file->f_mapping;
2048 sequence = mapping->truncate_count;
2049 smp_rmb(); /* serializes i_size against truncate_count */
2050 }
2051retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 new_page = vma->vm_ops->nopage(vma, address & PAGE_MASK, &ret);
2053 /*
2054 * No smp_rmb is needed here as long as there's a full
2055 * spin_lock/unlock sequence inside the ->nopage callback
2056 * (for the pagecache lookup) that acts as an implicit
2057 * smp_mb() and prevents the i_size read to happen
2058 * after the next truncate_count read.
2059 */
2060
2061 /* no page was available -- either SIGBUS or OOM */
2062 if (new_page == NOPAGE_SIGBUS)
2063 return VM_FAULT_SIGBUS;
2064 if (new_page == NOPAGE_OOM)
2065 return VM_FAULT_OOM;
2066
2067 /*
2068 * Should we do an early C-O-W break?
2069 */
2070 if (write_access && !(vma->vm_flags & VM_SHARED)) {
2071 struct page *page;
2072
2073 if (unlikely(anon_vma_prepare(vma)))
2074 goto oom;
2075 page = alloc_page_vma(GFP_HIGHUSER, vma, address);
2076 if (!page)
2077 goto oom;
Hugh Dickins325f04d2005-11-29 16:55:48 +00002078 copy_user_highpage(page, new_page, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 page_cache_release(new_page);
2080 new_page = page;
2081 anon = 1;
2082 }
2083
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002084 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 /*
2086 * For a file-backed vma, someone could have truncated or otherwise
2087 * invalidated this page. If unmap_mapping_range got called,
2088 * retry getting the page.
2089 */
2090 if (mapping && unlikely(sequence != mapping->truncate_count)) {
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002091 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002093 cond_resched();
2094 sequence = mapping->truncate_count;
2095 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 goto retry;
2097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 /*
2100 * This silly early PAGE_DIRTY setting removes a race
2101 * due to the bad i386 page protection. But it's valid
2102 * for other architectures too.
2103 *
2104 * Note that if write_access is true, we either now have
2105 * an exclusive copy of the page, or this is a shared mapping,
2106 * so we can make it writable and dirty to avoid having to
2107 * handle that later.
2108 */
2109 /* Only go through if we didn't race with anybody else... */
2110 if (pte_none(*page_table)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 flush_icache_page(vma, new_page);
2112 entry = mk_pte(new_page, vma->vm_page_prot);
2113 if (write_access)
2114 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
2115 set_pte_at(mm, address, page_table, entry);
2116 if (anon) {
Hugh Dickins42946212005-10-29 18:16:05 -07002117 inc_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 lru_cache_add_active(new_page);
2119 page_add_anon_rmap(new_page, vma, address);
Hugh Dickinsf57e88a2005-11-21 21:32:19 -08002120 } else {
Hugh Dickins42946212005-10-29 18:16:05 -07002121 inc_mm_counter(mm, file_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 page_add_file_rmap(new_page);
Hugh Dickins42946212005-10-29 18:16:05 -07002123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 } else {
2125 /* One of our sibling threads was faster, back out. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002127 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129
2130 /* no need to invalidate: a not-present page shouldn't be cached */
2131 update_mmu_cache(vma, address, entry);
2132 lazy_mmu_prot_update(entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07002133unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002134 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return ret;
2136oom:
2137 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002138 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139}
2140
2141/*
2142 * Fault of a previously existing named mapping. Repopulate the pte
2143 * from the encoded file_pte if possible. This enables swappable
2144 * nonlinear vmas.
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002145 *
2146 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2147 * but allow concurrent faults), and pte mapped but not yet locked.
2148 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002150static int do_file_page(struct mm_struct *mm, struct vm_area_struct *vma,
2151 unsigned long address, pte_t *page_table, pmd_t *pmd,
2152 int write_access, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Hugh Dickins65500d22005-10-29 18:15:59 -07002154 pgoff_t pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 int err;
2156
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002157 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002158 return VM_FAULT_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Hugh Dickins65500d22005-10-29 18:15:59 -07002160 if (unlikely(!(vma->vm_flags & VM_NONLINEAR))) {
2161 /*
2162 * Page table corrupted: show pte and kill process.
2163 */
Nick Pigginb5810032005-10-29 18:16:12 -07002164 print_bad_pte(vma, orig_pte, address);
Hugh Dickins65500d22005-10-29 18:15:59 -07002165 return VM_FAULT_OOM;
2166 }
2167 /* We can then assume vm->vm_ops && vma->vm_ops->populate */
2168
2169 pgoff = pte_to_pgoff(orig_pte);
2170 err = vma->vm_ops->populate(vma, address & PAGE_MASK, PAGE_SIZE,
2171 vma->vm_page_prot, pgoff, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (err == -ENOMEM)
2173 return VM_FAULT_OOM;
2174 if (err)
2175 return VM_FAULT_SIGBUS;
2176 return VM_FAULT_MAJOR;
2177}
2178
2179/*
2180 * These routines also need to handle stuff like marking pages dirty
2181 * and/or accessed for architectures that don't do it in hardware (most
2182 * RISC architectures). The early dirtying is also good on the i386.
2183 *
2184 * There is also a hook called "update_mmu_cache()" that architectures
2185 * with external mmu caches can use to update those (ie the Sparc or
2186 * PowerPC hashed page tables that act as extended TLBs).
2187 *
Hugh Dickinsc74df322005-10-29 18:16:23 -07002188 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2189 * but allow concurrent faults), and pte mapped but not yet locked.
2190 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 */
2192static inline int handle_pte_fault(struct mm_struct *mm,
Hugh Dickins65500d22005-10-29 18:15:59 -07002193 struct vm_area_struct *vma, unsigned long address,
2194 pte_t *pte, pmd_t *pmd, int write_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
2196 pte_t entry;
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07002197 pte_t old_entry;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002198 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07002200 old_entry = entry = *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (!pte_present(entry)) {
Hugh Dickins65500d22005-10-29 18:15:59 -07002202 if (pte_none(entry)) {
2203 if (!vma->vm_ops || !vma->vm_ops->nopage)
2204 return do_anonymous_page(mm, vma, address,
2205 pte, pmd, write_access);
2206 return do_no_page(mm, vma, address,
2207 pte, pmd, write_access);
2208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 if (pte_file(entry))
Hugh Dickins65500d22005-10-29 18:15:59 -07002210 return do_file_page(mm, vma, address,
2211 pte, pmd, write_access, entry);
2212 return do_swap_page(mm, vma, address,
2213 pte, pmd, write_access, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002216 ptl = pte_lockptr(mm, pmd);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002217 spin_lock(ptl);
2218 if (unlikely(!pte_same(*pte, entry)))
2219 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 if (write_access) {
2221 if (!pte_write(entry))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002222 return do_wp_page(mm, vma, address,
2223 pte, pmd, ptl, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 entry = pte_mkdirty(entry);
2225 }
2226 entry = pte_mkyoung(entry);
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07002227 if (!pte_same(old_entry, entry)) {
2228 ptep_set_access_flags(vma, address, pte, entry, write_access);
2229 update_mmu_cache(vma, address, entry);
2230 lazy_mmu_prot_update(entry);
2231 } else {
2232 /*
2233 * This is needed only for protection faults but the arch code
2234 * is not yet telling us if this is a protection fault or not.
2235 * This still avoids useless tlb flushes for .text page faults
2236 * with threads.
2237 */
2238 if (write_access)
2239 flush_tlb_page(vma, address);
2240 }
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002241unlock:
2242 pte_unmap_unlock(pte, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return VM_FAULT_MINOR;
2244}
2245
2246/*
2247 * By the time we get here, we already hold the mm semaphore
2248 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002249int __handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 unsigned long address, int write_access)
2251{
2252 pgd_t *pgd;
2253 pud_t *pud;
2254 pmd_t *pmd;
2255 pte_t *pte;
2256
2257 __set_current_state(TASK_RUNNING);
2258
2259 inc_page_state(pgfault);
2260
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002261 if (unlikely(is_vm_hugetlb_page(vma)))
2262 return hugetlb_fault(mm, vma, address, write_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 pgd = pgd_offset(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 pud = pud_alloc(mm, pgd, address);
2266 if (!pud)
Hugh Dickinsc74df322005-10-29 18:16:23 -07002267 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 pmd = pmd_alloc(mm, pud, address);
2269 if (!pmd)
Hugh Dickinsc74df322005-10-29 18:16:23 -07002270 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 pte = pte_alloc_map(mm, pmd, address);
2272 if (!pte)
Hugh Dickinsc74df322005-10-29 18:16:23 -07002273 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Hugh Dickinsc74df322005-10-29 18:16:23 -07002275 return handle_pte_fault(mm, vma, address, pte, pmd, write_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278#ifndef __PAGETABLE_PUD_FOLDED
2279/*
2280 * Allocate page upper directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07002281 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07002283int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
Hugh Dickinsc74df322005-10-29 18:16:23 -07002285 pud_t *new = pud_alloc_one(mm, address);
2286 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07002287 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Hugh Dickins872fec12005-10-29 18:16:21 -07002289 spin_lock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002290 if (pgd_present(*pgd)) /* Another has populated it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 pud_free(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002292 else
2293 pgd_populate(mm, pgd, new);
Hugh Dickinsc74df322005-10-29 18:16:23 -07002294 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296}
Alan Sterne0f39592005-11-28 13:43:44 -08002297#else
2298/* Workaround for gcc 2.96 */
2299int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
2300{
2301 return 0;
2302}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303#endif /* __PAGETABLE_PUD_FOLDED */
2304
2305#ifndef __PAGETABLE_PMD_FOLDED
2306/*
2307 * Allocate page middle directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07002308 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07002310int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
Hugh Dickinsc74df322005-10-29 18:16:23 -07002312 pmd_t *new = pmd_alloc_one(mm, address);
2313 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07002314 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Hugh Dickins872fec12005-10-29 18:16:21 -07002316 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317#ifndef __ARCH_HAS_4LEVEL_HACK
Hugh Dickins1bb36302005-10-29 18:16:22 -07002318 if (pud_present(*pud)) /* Another has populated it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 pmd_free(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002320 else
2321 pud_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322#else
Hugh Dickins1bb36302005-10-29 18:16:22 -07002323 if (pgd_present(*pud)) /* Another has populated it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 pmd_free(new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002325 else
2326 pgd_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327#endif /* __ARCH_HAS_4LEVEL_HACK */
Hugh Dickinsc74df322005-10-29 18:16:23 -07002328 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07002329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330}
Alan Sterne0f39592005-11-28 13:43:44 -08002331#else
2332/* Workaround for gcc 2.96 */
2333int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
2334{
2335 return 0;
2336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337#endif /* __PAGETABLE_PMD_FOLDED */
2338
2339int make_pages_present(unsigned long addr, unsigned long end)
2340{
2341 int ret, len, write;
2342 struct vm_area_struct * vma;
2343
2344 vma = find_vma(current->mm, addr);
2345 if (!vma)
2346 return -1;
2347 write = (vma->vm_flags & VM_WRITE) != 0;
2348 if (addr >= end)
2349 BUG();
2350 if (end > vma->vm_end)
2351 BUG();
2352 len = (end+PAGE_SIZE-1)/PAGE_SIZE-addr/PAGE_SIZE;
2353 ret = get_user_pages(current, current->mm, addr,
2354 len, write, 0, NULL, NULL);
2355 if (ret < 0)
2356 return ret;
2357 return ret == len ? 0 : -1;
2358}
2359
2360/*
2361 * Map a vmalloc()-space virtual address to the physical page.
2362 */
2363struct page * vmalloc_to_page(void * vmalloc_addr)
2364{
2365 unsigned long addr = (unsigned long) vmalloc_addr;
2366 struct page *page = NULL;
2367 pgd_t *pgd = pgd_offset_k(addr);
2368 pud_t *pud;
2369 pmd_t *pmd;
2370 pte_t *ptep, pte;
2371
2372 if (!pgd_none(*pgd)) {
2373 pud = pud_offset(pgd, addr);
2374 if (!pud_none(*pud)) {
2375 pmd = pmd_offset(pud, addr);
2376 if (!pmd_none(*pmd)) {
2377 ptep = pte_offset_map(pmd, addr);
2378 pte = *ptep;
2379 if (pte_present(pte))
2380 page = pte_page(pte);
2381 pte_unmap(ptep);
2382 }
2383 }
2384 }
2385 return page;
2386}
2387
2388EXPORT_SYMBOL(vmalloc_to_page);
2389
2390/*
2391 * Map a vmalloc()-space virtual address to the physical page frame number.
2392 */
2393unsigned long vmalloc_to_pfn(void * vmalloc_addr)
2394{
2395 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
2396}
2397
2398EXPORT_SYMBOL(vmalloc_to_pfn);
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400#if !defined(__HAVE_ARCH_GATE_AREA)
2401
2402#if defined(AT_SYSINFO_EHDR)
Adrian Bunk5ce78522005-09-10 00:26:28 -07002403static struct vm_area_struct gate_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405static int __init gate_vma_init(void)
2406{
2407 gate_vma.vm_mm = NULL;
2408 gate_vma.vm_start = FIXADDR_USER_START;
2409 gate_vma.vm_end = FIXADDR_USER_END;
2410 gate_vma.vm_page_prot = PAGE_READONLY;
Hugh Dickins0b14c172005-11-21 21:32:15 -08002411 gate_vma.vm_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 return 0;
2413}
2414__initcall(gate_vma_init);
2415#endif
2416
2417struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
2418{
2419#ifdef AT_SYSINFO_EHDR
2420 return &gate_vma;
2421#else
2422 return NULL;
2423#endif
2424}
2425
2426int in_gate_area_no_task(unsigned long addr)
2427{
2428#ifdef AT_SYSINFO_EHDR
2429 if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
2430 return 1;
2431#endif
2432 return 0;
2433}
2434
2435#endif /* __HAVE_ARCH_GATE_AREA */