blob: 30976b120eae7834ad9f21fc4ee5d7ad51ac0b12 [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>
Hugh Dickins9a840892009-09-21 17:02:01 -070048#include <linux/ksm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/rmap.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040050#include <linux/export.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070051#include <linux/delayacct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/init.h>
Peter Zijlstraedc79b22006-09-25 23:30:58 -070053#include <linux/writeback.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080054#include <linux/memcontrol.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070055#include <linux/mmu_notifier.h>
Hugh Dickins3dc14742009-01-06 14:40:08 -080056#include <linux/kallsyms.h>
57#include <linux/swapops.h>
58#include <linux/elf.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090059#include <linux/gfp.h>
Mel Gorman4daae3b2012-11-02 11:33:45 +000060#include <linux/migrate.h>
Andy Shevchenko2fbc57c2012-12-17 16:01:23 -080061#include <linux/string.h>
Dan Williams0abdd7a2014-01-21 15:48:12 -080062#include <linux/dma-debug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Alexey Dobriyan6952b612009-09-18 23:55:55 +040064#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <asm/pgalloc.h>
66#include <asm/uaccess.h>
67#include <asm/tlb.h>
68#include <asm/tlbflush.h>
69#include <asm/pgtable.h>
70
Jan Beulich42b77722008-07-23 21:27:10 -070071#include "internal.h"
72
Peter Zijlstra90572892013-10-07 11:29:20 +010073#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
74#warning Unfortunate NUMA and NUMA Balancing config, growing page-frame for last_cpupid.
Peter Zijlstra75980e92013-02-22 16:34:32 -080075#endif
76
Andy Whitcroftd41dee32005-06-23 00:07:54 -070077#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* use the per-pgdat data instead for discontigmem - mbligh */
79unsigned long max_mapnr;
80struct page *mem_map;
81
82EXPORT_SYMBOL(max_mapnr);
83EXPORT_SYMBOL(mem_map);
84#endif
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * A number of key systems in x86 including ioremap() rely on the assumption
88 * that high_memory defines the upper bound on direct map memory, then end
89 * of ZONE_NORMAL. Under CONFIG_DISCONTIG this means that max_low_pfn and
90 * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
91 * and ZONE_HIGHMEM.
92 */
93void * high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095EXPORT_SYMBOL(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Ingo Molnar32a93232008-02-06 22:39:44 +010097/*
98 * Randomize the address space (stacks, mmaps, brk, etc.).
99 *
100 * ( When CONFIG_COMPAT_BRK=y we exclude brk from randomization,
101 * as ancient (libc5 based) binaries can segfault. )
102 */
103int randomize_va_space __read_mostly =
104#ifdef CONFIG_COMPAT_BRK
105 1;
106#else
107 2;
108#endif
Andi Kleena62eaf12006-02-16 23:41:58 +0100109
110static int __init disable_randmaps(char *s)
111{
112 randomize_va_space = 0;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800113 return 1;
Andi Kleena62eaf12006-02-16 23:41:58 +0100114}
115__setup("norandmaps", disable_randmaps);
116
Hugh Dickins62eede62009-09-21 17:03:34 -0700117unsigned long zero_pfn __read_mostly;
Hugh Dickins03f64622009-09-21 17:03:35 -0700118unsigned long highest_memmap_pfn __read_mostly;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -0700119
Ard Biesheuvel8ea796a2014-09-12 22:17:23 +0200120EXPORT_SYMBOL(zero_pfn);
121
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -0700122/*
123 * CONFIG_MMU architectures set up ZERO_PAGE in their paging_init()
124 */
125static int __init init_zero_pfn(void)
126{
127 zero_pfn = page_to_pfn(ZERO_PAGE(0));
128 return 0;
129}
130core_initcall(init_zero_pfn);
Andi Kleena62eaf12006-02-16 23:41:58 +0100131
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800132
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800133#if defined(SPLIT_RSS_COUNTING)
134
David Rientjesea48cf72012-03-21 16:34:13 -0700135void sync_mm_rss(struct mm_struct *mm)
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800136{
137 int i;
138
139 for (i = 0; i < NR_MM_COUNTERS; i++) {
David Rientjes05af2e12012-03-21 16:34:13 -0700140 if (current->rss_stat.count[i]) {
141 add_mm_counter(mm, i, current->rss_stat.count[i]);
142 current->rss_stat.count[i] = 0;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800143 }
144 }
David Rientjes05af2e12012-03-21 16:34:13 -0700145 current->rss_stat.events = 0;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800146}
147
148static void add_mm_counter_fast(struct mm_struct *mm, int member, int val)
149{
150 struct task_struct *task = current;
151
152 if (likely(task->mm == mm))
153 task->rss_stat.count[member] += val;
154 else
155 add_mm_counter(mm, member, val);
156}
157#define inc_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, 1)
158#define dec_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, -1)
159
160/* sync counter once per 64 page faults */
161#define TASK_RSS_EVENTS_THRESH (64)
162static void check_sync_rss_stat(struct task_struct *task)
163{
164 if (unlikely(task != current))
165 return;
166 if (unlikely(task->rss_stat.events++ > TASK_RSS_EVENTS_THRESH))
David Rientjesea48cf72012-03-21 16:34:13 -0700167 sync_mm_rss(task->mm);
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800168}
Peter Zijlstra9547d012011-05-24 17:12:14 -0700169#else /* SPLIT_RSS_COUNTING */
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800170
171#define inc_mm_counter_fast(mm, member) inc_mm_counter(mm, member)
172#define dec_mm_counter_fast(mm, member) dec_mm_counter(mm, member)
173
174static void check_sync_rss_stat(struct task_struct *task)
175{
176}
177
Peter Zijlstra9547d012011-05-24 17:12:14 -0700178#endif /* SPLIT_RSS_COUNTING */
179
180#ifdef HAVE_GENERIC_MMU_GATHER
181
182static int tlb_next_batch(struct mmu_gather *tlb)
183{
184 struct mmu_gather_batch *batch;
185
186 batch = tlb->active;
187 if (batch->next) {
188 tlb->active = batch->next;
189 return 1;
190 }
191
Michal Hocko53a59fc2013-01-04 15:35:12 -0800192 if (tlb->batch_count == MAX_GATHER_BATCH_COUNT)
193 return 0;
194
Peter Zijlstra9547d012011-05-24 17:12:14 -0700195 batch = (void *)__get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
196 if (!batch)
197 return 0;
198
Michal Hocko53a59fc2013-01-04 15:35:12 -0800199 tlb->batch_count++;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700200 batch->next = NULL;
201 batch->nr = 0;
202 batch->max = MAX_GATHER_BATCH;
203
204 tlb->active->next = batch;
205 tlb->active = batch;
206
207 return 1;
208}
209
210/* tlb_gather_mmu
211 * Called to initialize an (on-stack) mmu_gather structure for page-table
212 * tear-down from @mm. The @fullmm argument is used when @mm is without
213 * users and we're going to destroy the full address space (exit/execve).
214 */
Linus Torvalds2b047252013-08-15 11:42:25 -0700215void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned long start, unsigned long end)
Peter Zijlstra9547d012011-05-24 17:12:14 -0700216{
217 tlb->mm = mm;
218
Linus Torvalds2b047252013-08-15 11:42:25 -0700219 /* Is it from 0 to ~0? */
220 tlb->fullmm = !(start | (end+1));
Dave Hansen1de14c32013-04-12 16:23:54 -0700221 tlb->need_flush_all = 0;
Linus Torvalds2b047252013-08-15 11:42:25 -0700222 tlb->start = start;
223 tlb->end = end;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700224 tlb->need_flush = 0;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700225 tlb->local.next = NULL;
226 tlb->local.nr = 0;
227 tlb->local.max = ARRAY_SIZE(tlb->__pages);
228 tlb->active = &tlb->local;
Michal Hocko53a59fc2013-01-04 15:35:12 -0800229 tlb->batch_count = 0;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700230
231#ifdef CONFIG_HAVE_RCU_TABLE_FREE
232 tlb->batch = NULL;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800233#endif
Peter Zijlstra9547d012011-05-24 17:12:14 -0700234}
235
236void tlb_flush_mmu(struct mmu_gather *tlb)
237{
238 struct mmu_gather_batch *batch;
239
240 if (!tlb->need_flush)
241 return;
242 tlb->need_flush = 0;
243 tlb_flush(tlb);
244#ifdef CONFIG_HAVE_RCU_TABLE_FREE
245 tlb_table_flush(tlb);
246#endif
247
Peter Zijlstra9547d012011-05-24 17:12:14 -0700248 for (batch = &tlb->local; batch; batch = batch->next) {
249 free_pages_and_swap_cache(batch->pages, batch->nr);
250 batch->nr = 0;
251 }
252 tlb->active = &tlb->local;
253}
254
255/* tlb_finish_mmu
256 * Called at the end of the shootdown operation to free up any resources
257 * that were required.
258 */
259void tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
260{
261 struct mmu_gather_batch *batch, *next;
262
263 tlb_flush_mmu(tlb);
264
265 /* keep the page table cache within bounds */
266 check_pgt_cache();
267
268 for (batch = tlb->local.next; batch; batch = next) {
269 next = batch->next;
270 free_pages((unsigned long)batch, 0);
271 }
272 tlb->local.next = NULL;
273}
274
275/* __tlb_remove_page
276 * Must perform the equivalent to __free_pte(pte_get_and_clear(ptep)), while
277 * handling the additional races in SMP caused by other CPUs caching valid
278 * mappings in their TLBs. Returns the number of free page slots left.
279 * When out of page slots we must call tlb_flush_mmu().
280 */
281int __tlb_remove_page(struct mmu_gather *tlb, struct page *page)
282{
283 struct mmu_gather_batch *batch;
284
Shaohua Lif21760b2012-01-12 17:19:16 -0800285 VM_BUG_ON(!tlb->need_flush);
Peter Zijlstra9547d012011-05-24 17:12:14 -0700286
Peter Zijlstra9547d012011-05-24 17:12:14 -0700287 batch = tlb->active;
288 batch->pages[batch->nr++] = page;
289 if (batch->nr == batch->max) {
290 if (!tlb_next_batch(tlb))
291 return 0;
Shaohua Li0b43c3a2011-07-08 15:39:41 -0700292 batch = tlb->active;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700293 }
Sasha Levin309381fea2014-01-23 15:52:54 -0800294 VM_BUG_ON_PAGE(batch->nr > batch->max, page);
Peter Zijlstra9547d012011-05-24 17:12:14 -0700295
296 return batch->max - batch->nr;
297}
298
299#endif /* HAVE_GENERIC_MMU_GATHER */
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800300
Peter Zijlstra26723912011-05-24 17:12:00 -0700301#ifdef CONFIG_HAVE_RCU_TABLE_FREE
302
303/*
304 * See the comment near struct mmu_table_batch.
305 */
306
307static void tlb_remove_table_smp_sync(void *arg)
308{
309 /* Simply deliver the interrupt */
310}
311
312static void tlb_remove_table_one(void *table)
313{
314 /*
315 * This isn't an RCU grace period and hence the page-tables cannot be
316 * assumed to be actually RCU-freed.
317 *
318 * It is however sufficient for software page-table walkers that rely on
319 * IRQ disabling. See the comment near struct mmu_table_batch.
320 */
321 smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
322 __tlb_remove_table(table);
323}
324
325static void tlb_remove_table_rcu(struct rcu_head *head)
326{
327 struct mmu_table_batch *batch;
328 int i;
329
330 batch = container_of(head, struct mmu_table_batch, rcu);
331
332 for (i = 0; i < batch->nr; i++)
333 __tlb_remove_table(batch->tables[i]);
334
335 free_page((unsigned long)batch);
336}
337
338void tlb_table_flush(struct mmu_gather *tlb)
339{
340 struct mmu_table_batch **batch = &tlb->batch;
341
342 if (*batch) {
343 call_rcu_sched(&(*batch)->rcu, tlb_remove_table_rcu);
344 *batch = NULL;
345 }
346}
347
348void tlb_remove_table(struct mmu_gather *tlb, void *table)
349{
350 struct mmu_table_batch **batch = &tlb->batch;
351
352 tlb->need_flush = 1;
353
354 /*
355 * When there's less then two users of this mm there cannot be a
356 * concurrent page-table walk.
357 */
358 if (atomic_read(&tlb->mm->mm_users) < 2) {
359 __tlb_remove_table(table);
360 return;
361 }
362
363 if (*batch == NULL) {
364 *batch = (struct mmu_table_batch *)__get_free_page(GFP_NOWAIT | __GFP_NOWARN);
365 if (*batch == NULL) {
366 tlb_remove_table_one(table);
367 return;
368 }
369 (*batch)->nr = 0;
370 }
371 (*batch)->tables[(*batch)->nr++] = table;
372 if ((*batch)->nr == MAX_TABLE_BATCH)
373 tlb_table_flush(tlb);
374}
375
Peter Zijlstra9547d012011-05-24 17:12:14 -0700376#endif /* CONFIG_HAVE_RCU_TABLE_FREE */
Peter Zijlstra26723912011-05-24 17:12:00 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Note: this doesn't free the actual pages themselves. That
380 * has been handled earlier when unmapping all the memory regions.
381 */
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000382static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd,
383 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800385 pgtable_t token = pmd_pgtable(*pmd);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700386 pmd_clear(pmd);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000387 pte_free_tlb(tlb, token, addr);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800388 atomic_long_dec(&tlb->mm->nr_ptes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Hugh Dickinse0da3822005-04-19 13:29:15 -0700391static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
392 unsigned long addr, unsigned long end,
393 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 pmd_t *pmd;
396 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700397 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Hugh Dickinse0da3822005-04-19 13:29:15 -0700399 start = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 pmd = pmd_offset(pud, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 do {
402 next = pmd_addr_end(addr, end);
403 if (pmd_none_or_clear_bad(pmd))
404 continue;
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000405 free_pte_range(tlb, pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 } while (pmd++, addr = next, addr != end);
407
Hugh Dickinse0da3822005-04-19 13:29:15 -0700408 start &= PUD_MASK;
409 if (start < floor)
410 return;
411 if (ceiling) {
412 ceiling &= PUD_MASK;
413 if (!ceiling)
414 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700416 if (end - 1 > ceiling - 1)
417 return;
418
419 pmd = pmd_offset(pud, start);
420 pud_clear(pud);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000421 pmd_free_tlb(tlb, pmd, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Hugh Dickinse0da3822005-04-19 13:29:15 -0700424static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
425 unsigned long addr, unsigned long end,
426 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 pud_t *pud;
429 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700430 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Hugh Dickinse0da3822005-04-19 13:29:15 -0700432 start = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 pud = pud_offset(pgd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 do {
435 next = pud_addr_end(addr, end);
436 if (pud_none_or_clear_bad(pud))
437 continue;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700438 free_pmd_range(tlb, pud, addr, next, floor, ceiling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 } while (pud++, addr = next, addr != end);
440
Hugh Dickinse0da3822005-04-19 13:29:15 -0700441 start &= PGDIR_MASK;
442 if (start < floor)
443 return;
444 if (ceiling) {
445 ceiling &= PGDIR_MASK;
446 if (!ceiling)
447 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700449 if (end - 1 > ceiling - 1)
450 return;
451
452 pud = pud_offset(pgd, start);
453 pgd_clear(pgd);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000454 pud_free_tlb(tlb, pud, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
Hugh Dickinse0da3822005-04-19 13:29:15 -0700458 * This function frees user-level page tables of a process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 */
Jan Beulich42b77722008-07-23 21:27:10 -0700460void free_pgd_range(struct mmu_gather *tlb,
Hugh Dickinse0da3822005-04-19 13:29:15 -0700461 unsigned long addr, unsigned long end,
462 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 pgd_t *pgd;
465 unsigned long next;
466
Hugh Dickinse0da3822005-04-19 13:29:15 -0700467 /*
468 * The next few lines have given us lots of grief...
469 *
470 * Why are we testing PMD* at this top level? Because often
471 * there will be no work to do at all, and we'd prefer not to
472 * go all the way down to the bottom just to discover that.
473 *
474 * Why all these "- 1"s? Because 0 represents both the bottom
475 * of the address space and the top of it (using -1 for the
476 * top wouldn't help much: the masks would do the wrong thing).
477 * The rule is that addr 0 and floor 0 refer to the bottom of
478 * the address space, but end 0 and ceiling 0 refer to the top
479 * Comparisons need to use "end - 1" and "ceiling - 1" (though
480 * that end 0 case should be mythical).
481 *
482 * Wherever addr is brought up or ceiling brought down, we must
483 * be careful to reject "the opposite 0" before it confuses the
484 * subsequent tests. But what about where end is brought down
485 * by PMD_SIZE below? no, end can't go down to 0 there.
486 *
487 * Whereas we round start (addr) and ceiling down, by different
488 * masks at different levels, in order to test whether a table
489 * now has no other vmas using it, so can be freed, we don't
490 * bother to round floor or end up - the tests don't need that.
491 */
492
493 addr &= PMD_MASK;
494 if (addr < floor) {
495 addr += PMD_SIZE;
496 if (!addr)
497 return;
498 }
499 if (ceiling) {
500 ceiling &= PMD_MASK;
501 if (!ceiling)
502 return;
503 }
504 if (end - 1 > ceiling - 1)
505 end -= PMD_SIZE;
506 if (addr > end - 1)
507 return;
508
Jan Beulich42b77722008-07-23 21:27:10 -0700509 pgd = pgd_offset(tlb->mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 do {
511 next = pgd_addr_end(addr, end);
512 if (pgd_none_or_clear_bad(pgd))
513 continue;
Jan Beulich42b77722008-07-23 21:27:10 -0700514 free_pud_range(tlb, pgd, addr, next, floor, ceiling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 } while (pgd++, addr = next, addr != end);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700516}
517
Jan Beulich42b77722008-07-23 21:27:10 -0700518void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *vma,
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700519 unsigned long floor, unsigned long ceiling)
Hugh Dickinse0da3822005-04-19 13:29:15 -0700520{
521 while (vma) {
522 struct vm_area_struct *next = vma->vm_next;
523 unsigned long addr = vma->vm_start;
524
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700525 /*
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000526 * Hide vma from rmap and truncate_pagecache before freeing
527 * pgtables
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700528 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800529 unlink_anon_vmas(vma);
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700530 unlink_file_vma(vma);
531
David Gibson9da61ae2006-03-22 00:08:57 -0800532 if (is_vm_hugetlb_page(vma)) {
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700533 hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
Hugh Dickinse0da3822005-04-19 13:29:15 -0700534 floor, next? next->vm_start: ceiling);
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700535 } else {
536 /*
537 * Optimization: gather nearby vmas into one call down
538 */
539 while (next && next->vm_start <= vma->vm_end + PMD_SIZE
David Gibson48669202006-03-22 00:08:58 -0800540 && !is_vm_hugetlb_page(next)) {
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700541 vma = next;
542 next = vma->vm_next;
Rik van Riel5beb4932010-03-05 13:42:07 -0800543 unlink_anon_vmas(vma);
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700544 unlink_file_vma(vma);
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700545 }
546 free_pgd_range(tlb, addr, vma->vm_end,
547 floor, next? next->vm_start: ceiling);
548 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700549 vma = next;
550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800553int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
554 pmd_t *pmd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800556 spinlock_t *ptl;
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800557 pgtable_t new = pte_alloc_one(mm, address);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800558 int wait_split_huge_page;
Hugh Dickins1bb36302005-10-29 18:16:22 -0700559 if (!new)
560 return -ENOMEM;
561
Nick Piggin362a61a2008-05-14 06:37:36 +0200562 /*
563 * Ensure all pte setup (eg. pte page lock and page clearing) are
564 * visible before the pte is made visible to other CPUs by being
565 * put into page tables.
566 *
567 * The other side of the story is the pointer chasing in the page
568 * table walking code (when walking the page table without locking;
569 * ie. most of the time). Fortunately, these data accesses consist
570 * of a chain of data-dependent loads, meaning most CPUs (alpha
571 * being the notable exception) will already guarantee loads are
572 * seen in-order. See the alpha page table accessors for the
573 * smp_read_barrier_depends() barriers in page table walking code.
574 */
575 smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */
576
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800577 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800578 wait_split_huge_page = 0;
579 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800580 atomic_long_inc(&mm->nr_ptes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 pmd_populate(mm, pmd, new);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800582 new = NULL;
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800583 } else if (unlikely(pmd_trans_splitting(*pmd)))
584 wait_split_huge_page = 1;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800585 spin_unlock(ptl);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800586 if (new)
587 pte_free(mm, new);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800588 if (wait_split_huge_page)
589 wait_split_huge_page(vma->anon_vma, pmd);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Hugh Dickins1bb36302005-10-29 18:16:22 -0700593int __pte_alloc_kernel(pmd_t *pmd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Hugh Dickins1bb36302005-10-29 18:16:22 -0700595 pte_t *new = pte_alloc_one_kernel(&init_mm, address);
596 if (!new)
597 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Nick Piggin362a61a2008-05-14 06:37:36 +0200599 smp_wmb(); /* See comment in __pte_alloc */
600
Hugh Dickins1bb36302005-10-29 18:16:22 -0700601 spin_lock(&init_mm.page_table_lock);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800602 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
Hugh Dickins1bb36302005-10-29 18:16:22 -0700603 pmd_populate_kernel(&init_mm, pmd, new);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800604 new = NULL;
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800605 } else
606 VM_BUG_ON(pmd_trans_splitting(*pmd));
Hugh Dickins1bb36302005-10-29 18:16:22 -0700607 spin_unlock(&init_mm.page_table_lock);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800608 if (new)
609 pte_free_kernel(&init_mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800613static inline void init_rss_vec(int *rss)
Hugh Dickinsae859762005-10-29 18:16:05 -0700614{
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800615 memset(rss, 0, sizeof(int) * NR_MM_COUNTERS);
616}
617
618static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss)
619{
620 int i;
621
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800622 if (current->mm == mm)
David Rientjes05af2e12012-03-21 16:34:13 -0700623 sync_mm_rss(mm);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800624 for (i = 0; i < NR_MM_COUNTERS; i++)
625 if (rss[i])
626 add_mm_counter(mm, i, rss[i]);
Hugh Dickinsae859762005-10-29 18:16:05 -0700627}
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/*
Linus Torvalds6aab3412005-11-28 14:34:23 -0800630 * This function is called to print an error when a bad pte
631 * is found. For example, we might have a PFN-mapped pte in
632 * a region that doesn't allow it.
Nick Pigginb5810032005-10-29 18:16:12 -0700633 *
634 * The calling function must still handle the error.
635 */
Hugh Dickins3dc14742009-01-06 14:40:08 -0800636static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
637 pte_t pte, struct page *page)
Nick Pigginb5810032005-10-29 18:16:12 -0700638{
Hugh Dickins3dc14742009-01-06 14:40:08 -0800639 pgd_t *pgd = pgd_offset(vma->vm_mm, addr);
640 pud_t *pud = pud_offset(pgd, addr);
641 pmd_t *pmd = pmd_offset(pud, addr);
642 struct address_space *mapping;
643 pgoff_t index;
Hugh Dickinsd936cf92009-01-06 14:40:12 -0800644 static unsigned long resume;
645 static unsigned long nr_shown;
646 static unsigned long nr_unshown;
647
648 /*
649 * Allow a burst of 60 reports, then keep quiet for that minute;
650 * or allow a steady drip of one report per second.
651 */
652 if (nr_shown == 60) {
653 if (time_before(jiffies, resume)) {
654 nr_unshown++;
655 return;
656 }
657 if (nr_unshown) {
Hugh Dickins1e9e6362009-01-06 14:40:13 -0800658 printk(KERN_ALERT
659 "BUG: Bad page map: %lu messages suppressed\n",
Hugh Dickinsd936cf92009-01-06 14:40:12 -0800660 nr_unshown);
661 nr_unshown = 0;
662 }
663 nr_shown = 0;
664 }
665 if (nr_shown++ == 0)
666 resume = jiffies + 60 * HZ;
Hugh Dickins3dc14742009-01-06 14:40:08 -0800667
668 mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL;
669 index = linear_page_index(vma, addr);
670
Hugh Dickins1e9e6362009-01-06 14:40:13 -0800671 printk(KERN_ALERT
672 "BUG: Bad page map in process %s pte:%08llx pmd:%08llx\n",
Hugh Dickins3dc14742009-01-06 14:40:08 -0800673 current->comm,
674 (long long)pte_val(pte), (long long)pmd_val(*pmd));
Wu Fengguang718a3822010-03-10 15:20:43 -0800675 if (page)
Dave Hansenf0b791a2014-01-23 15:52:49 -0800676 dump_page(page, "bad pte");
Hugh Dickins1e9e6362009-01-06 14:40:13 -0800677 printk(KERN_ALERT
Hugh Dickins3dc14742009-01-06 14:40:08 -0800678 "addr:%p vm_flags:%08lx anon_vma:%p mapping:%p index:%lx\n",
679 (void *)addr, vma->vm_flags, vma->anon_vma, mapping, index);
680 /*
681 * Choose text because data symbols depend on CONFIG_KALLSYMS_ALL=y
682 */
683 if (vma->vm_ops)
Joe Perches071361d2012-12-12 10:19:12 -0800684 printk(KERN_ALERT "vma->vm_ops->fault: %pSR\n",
685 vma->vm_ops->fault);
Al Viro72c2d532013-09-22 16:27:52 -0400686 if (vma->vm_file)
Joe Perches071361d2012-12-12 10:19:12 -0800687 printk(KERN_ALERT "vma->vm_file->f_op->mmap: %pSR\n",
688 vma->vm_file->f_op->mmap);
Nick Pigginb5810032005-10-29 18:16:12 -0700689 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030690 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Nick Pigginb5810032005-10-29 18:16:12 -0700691}
692
Sagi Grimberg2ec74c32012-10-08 16:33:33 -0700693static inline bool is_cow_mapping(vm_flags_t flags)
Linus Torvalds67121172005-12-11 20:38:17 -0800694{
695 return (flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
696}
697
Nick Pigginb5810032005-10-29 18:16:12 -0700698/*
Nick Piggin7e675132008-04-28 02:13:00 -0700699 * vm_normal_page -- This function gets the "struct page" associated with a pte.
Linus Torvalds6aab3412005-11-28 14:34:23 -0800700 *
Nick Piggin7e675132008-04-28 02:13:00 -0700701 * "Special" mappings do not wish to be associated with a "struct page" (either
702 * it doesn't exist, or it exists but they don't want to touch it). In this
703 * case, NULL is returned here. "Normal" mappings do have a struct page.
Jared Hulbertb379d792008-04-28 02:12:58 -0700704 *
Nick Piggin7e675132008-04-28 02:13:00 -0700705 * There are 2 broad cases. Firstly, an architecture may define a pte_special()
706 * pte bit, in which case this function is trivial. Secondly, an architecture
707 * may not have a spare pte bit, which requires a more complicated scheme,
708 * described below.
709 *
710 * A raw VM_PFNMAP mapping (ie. one that is not COWed) is always considered a
711 * special mapping (even if there are underlying and valid "struct pages").
712 * COWed pages of a VM_PFNMAP are always normal.
Linus Torvalds6aab3412005-11-28 14:34:23 -0800713 *
Jared Hulbertb379d792008-04-28 02:12:58 -0700714 * The way we recognize COWed pages within VM_PFNMAP mappings is through the
715 * rules set up by "remap_pfn_range()": the vma will have the VM_PFNMAP bit
Nick Piggin7e675132008-04-28 02:13:00 -0700716 * set, and the vm_pgoff will point to the first PFN mapped: thus every special
717 * mapping will always honor the rule
Linus Torvalds6aab3412005-11-28 14:34:23 -0800718 *
719 * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
720 *
Nick Piggin7e675132008-04-28 02:13:00 -0700721 * And for normal mappings this is false.
Jared Hulbertb379d792008-04-28 02:12:58 -0700722 *
Nick Piggin7e675132008-04-28 02:13:00 -0700723 * This restricts such mappings to be a linear translation from virtual address
724 * to pfn. To get around this restriction, we allow arbitrary mappings so long
725 * as the vma is not a COW mapping; in that case, we know that all ptes are
726 * special (because none can have been COWed).
Jared Hulbertb379d792008-04-28 02:12:58 -0700727 *
728 *
Nick Piggin7e675132008-04-28 02:13:00 -0700729 * In order to support COW of arbitrary special mappings, we have VM_MIXEDMAP.
730 *
Jared Hulbertb379d792008-04-28 02:12:58 -0700731 * VM_MIXEDMAP mappings can likewise contain memory with or without "struct
732 * page" backing, however the difference is that _all_ pages with a struct
733 * page (that is, those where pfn_valid is true) are refcounted and considered
734 * normal pages by the VM. The disadvantage is that pages are refcounted
735 * (which can be slower and simply not an option for some PFNMAP users). The
736 * advantage is that we don't have to follow the strict linearity rule of
737 * PFNMAP mappings in order to support COWable mappings.
738 *
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800739 */
Nick Piggin7e675132008-04-28 02:13:00 -0700740#ifdef __HAVE_ARCH_PTE_SPECIAL
741# define HAVE_PTE_SPECIAL 1
742#else
743# define HAVE_PTE_SPECIAL 0
744#endif
745struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
746 pte_t pte)
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800747{
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800748 unsigned long pfn = pte_pfn(pte);
Nick Piggin7e675132008-04-28 02:13:00 -0700749
750 if (HAVE_PTE_SPECIAL) {
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800751 if (likely(!pte_special(pte)))
752 goto check_pfn;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -0700753 if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
754 return NULL;
Hugh Dickins62eede62009-09-21 17:03:34 -0700755 if (!is_zero_pfn(pfn))
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800756 print_bad_pte(vma, addr, pte, NULL);
Nick Piggin7e675132008-04-28 02:13:00 -0700757 return NULL;
758 }
759
760 /* !HAVE_PTE_SPECIAL case follows: */
761
Jared Hulbertb379d792008-04-28 02:12:58 -0700762 if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
763 if (vma->vm_flags & VM_MIXEDMAP) {
764 if (!pfn_valid(pfn))
765 return NULL;
766 goto out;
767 } else {
Nick Piggin7e675132008-04-28 02:13:00 -0700768 unsigned long off;
769 off = (addr - vma->vm_start) >> PAGE_SHIFT;
Jared Hulbertb379d792008-04-28 02:12:58 -0700770 if (pfn == vma->vm_pgoff + off)
771 return NULL;
772 if (!is_cow_mapping(vma->vm_flags))
773 return NULL;
774 }
Linus Torvalds6aab3412005-11-28 14:34:23 -0800775 }
776
Hugh Dickins62eede62009-09-21 17:03:34 -0700777 if (is_zero_pfn(pfn))
778 return NULL;
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800779check_pfn:
780 if (unlikely(pfn > highest_memmap_pfn)) {
781 print_bad_pte(vma, addr, pte, NULL);
782 return NULL;
783 }
Linus Torvalds6aab3412005-11-28 14:34:23 -0800784
785 /*
Nick Piggin7e675132008-04-28 02:13:00 -0700786 * NOTE! We still have PageReserved() pages in the page tables.
Nick Piggin7e675132008-04-28 02:13:00 -0700787 * eg. VDSO mappings can cause them to exist.
Linus Torvalds6aab3412005-11-28 14:34:23 -0800788 */
Jared Hulbertb379d792008-04-28 02:12:58 -0700789out:
Linus Torvalds6aab3412005-11-28 14:34:23 -0800790 return pfn_to_page(pfn);
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800791}
792
793/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 * copy one vm_area from one task to the other. Assumes the page tables
795 * already present in the new task to be cleared in the whole range
796 * covered by this vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
798
Hugh Dickins570a335b2009-12-14 17:58:46 -0800799static inline unsigned long
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
Nick Pigginb5810032005-10-29 18:16:12 -0700801 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
Hugh Dickins8c103762005-10-29 18:16:13 -0700802 unsigned long addr, int *rss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Nick Pigginb5810032005-10-29 18:16:12 -0700804 unsigned long vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 pte_t pte = *src_pte;
806 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* pte contains position in swap or file, so copy. */
809 if (unlikely(!pte_present(pte))) {
810 if (!pte_file(pte)) {
Christoph Lameter06972122006-06-23 02:03:35 -0700811 swp_entry_t entry = pte_to_swp_entry(pte);
812
Hugh Dickins570a335b2009-12-14 17:58:46 -0800813 if (swap_duplicate(entry) < 0)
814 return entry.val;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* make sure dst_mm is on swapoff's mmlist. */
817 if (unlikely(list_empty(&dst_mm->mmlist))) {
818 spin_lock(&mmlist_lock);
Hugh Dickinsf412ac02005-10-29 18:16:41 -0700819 if (list_empty(&dst_mm->mmlist))
820 list_add(&dst_mm->mmlist,
821 &src_mm->mmlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 spin_unlock(&mmlist_lock);
823 }
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -0800824 if (likely(!non_swap_entry(entry)))
825 rss[MM_SWAPENTS]++;
Konstantin Khlebnikov9f9f1ac2012-01-20 14:34:24 -0800826 else if (is_migration_entry(entry)) {
827 page = migration_entry_to_page(entry);
828
829 if (PageAnon(page))
830 rss[MM_ANONPAGES]++;
831 else
832 rss[MM_FILEPAGES]++;
833
834 if (is_write_migration_entry(entry) &&
835 is_cow_mapping(vm_flags)) {
836 /*
837 * COW mappings require pages in both
838 * parent and child to be set to read.
839 */
840 make_migration_entry_read(&entry);
841 pte = swp_entry_to_pte(entry);
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700842 if (pte_swp_soft_dirty(*src_pte))
843 pte = pte_swp_mksoft_dirty(pte);
Konstantin Khlebnikov9f9f1ac2012-01-20 14:34:24 -0800844 set_pte_at(src_mm, addr, src_pte, pte);
845 }
Christoph Lameter06972122006-06-23 02:03:35 -0700846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700848 goto out_set_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /*
852 * If it's a COW mapping, write protect it both
853 * in the parent and the child
854 */
Linus Torvalds67121172005-12-11 20:38:17 -0800855 if (is_cow_mapping(vm_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 ptep_set_wrprotect(src_mm, addr, src_pte);
Zachary Amsden3dc90792006-09-30 23:29:30 -0700857 pte = pte_wrprotect(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
860 /*
861 * If it's a shared mapping, mark it clean in
862 * the child
863 */
864 if (vm_flags & VM_SHARED)
865 pte = pte_mkclean(pte);
866 pte = pte_mkold(pte);
Linus Torvalds6aab3412005-11-28 14:34:23 -0800867
868 page = vm_normal_page(vma, addr, pte);
869 if (page) {
870 get_page(page);
Hugh Dickins21333b22009-09-21 17:01:59 -0700871 page_dup_rmap(page);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800872 if (PageAnon(page))
873 rss[MM_ANONPAGES]++;
874 else
875 rss[MM_FILEPAGES]++;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800876 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700877
878out_set_pte:
879 set_pte_at(dst_mm, addr, dst_pte, pte);
Hugh Dickins570a335b2009-12-14 17:58:46 -0800880 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800883int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
884 pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
885 unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Daisuke Nishimurac36987e2009-10-26 16:50:23 -0700887 pte_t *orig_src_pte, *orig_dst_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 pte_t *src_pte, *dst_pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700889 spinlock_t *src_ptl, *dst_ptl;
Hugh Dickinse040f212005-10-29 18:15:53 -0700890 int progress = 0;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800891 int rss[NR_MM_COUNTERS];
Hugh Dickins570a335b2009-12-14 17:58:46 -0800892 swp_entry_t entry = (swp_entry_t){0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894again:
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800895 init_rss_vec(rss);
896
Hugh Dickinsc74df322005-10-29 18:16:23 -0700897 dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (!dst_pte)
899 return -ENOMEM;
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700900 src_pte = pte_offset_map(src_pmd, addr);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700901 src_ptl = pte_lockptr(src_mm, src_pmd);
Ingo Molnarf20dc5f2006-07-03 00:25:08 -0700902 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Daisuke Nishimurac36987e2009-10-26 16:50:23 -0700903 orig_src_pte = src_pte;
904 orig_dst_pte = dst_pte;
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700905 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 do {
908 /*
909 * We are holding two locks at this point - either of them
910 * could generate latencies in another task on another CPU.
911 */
Hugh Dickinse040f212005-10-29 18:15:53 -0700912 if (progress >= 32) {
913 progress = 0;
914 if (need_resched() ||
Nick Piggin95c354f2008-01-30 13:31:20 +0100915 spin_needbreak(src_ptl) || spin_needbreak(dst_ptl))
Hugh Dickinse040f212005-10-29 18:15:53 -0700916 break;
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (pte_none(*src_pte)) {
919 progress++;
920 continue;
921 }
Hugh Dickins570a335b2009-12-14 17:58:46 -0800922 entry.val = copy_one_pte(dst_mm, src_mm, dst_pte, src_pte,
923 vma, addr, rss);
924 if (entry.val)
925 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 progress += 8;
927 } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700929 arch_leave_lazy_mmu_mode();
Hugh Dickinsc74df322005-10-29 18:16:23 -0700930 spin_unlock(src_ptl);
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700931 pte_unmap(orig_src_pte);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800932 add_mm_rss_vec(dst_mm, rss);
Daisuke Nishimurac36987e2009-10-26 16:50:23 -0700933 pte_unmap_unlock(orig_dst_pte, dst_ptl);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700934 cond_resched();
Hugh Dickins570a335b2009-12-14 17:58:46 -0800935
936 if (entry.val) {
937 if (add_swap_count_continuation(entry, GFP_KERNEL) < 0)
938 return -ENOMEM;
939 progress = 0;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (addr != end)
942 goto again;
943 return 0;
944}
945
946static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
947 pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
948 unsigned long addr, unsigned long end)
949{
950 pmd_t *src_pmd, *dst_pmd;
951 unsigned long next;
952
953 dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
954 if (!dst_pmd)
955 return -ENOMEM;
956 src_pmd = pmd_offset(src_pud, addr);
957 do {
958 next = pmd_addr_end(addr, end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800959 if (pmd_trans_huge(*src_pmd)) {
960 int err;
Andrea Arcangeli14d1a552011-01-13 15:47:15 -0800961 VM_BUG_ON(next-addr != HPAGE_PMD_SIZE);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800962 err = copy_huge_pmd(dst_mm, src_mm,
963 dst_pmd, src_pmd, addr, vma);
964 if (err == -ENOMEM)
965 return -ENOMEM;
966 if (!err)
967 continue;
968 /* fall through */
969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (pmd_none_or_clear_bad(src_pmd))
971 continue;
972 if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
973 vma, addr, next))
974 return -ENOMEM;
975 } while (dst_pmd++, src_pmd++, addr = next, addr != end);
976 return 0;
977}
978
979static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
980 pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
981 unsigned long addr, unsigned long end)
982{
983 pud_t *src_pud, *dst_pud;
984 unsigned long next;
985
986 dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
987 if (!dst_pud)
988 return -ENOMEM;
989 src_pud = pud_offset(src_pgd, addr);
990 do {
991 next = pud_addr_end(addr, end);
992 if (pud_none_or_clear_bad(src_pud))
993 continue;
994 if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
995 vma, addr, next))
996 return -ENOMEM;
997 } while (dst_pud++, src_pud++, addr = next, addr != end);
998 return 0;
999}
1000
1001int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1002 struct vm_area_struct *vma)
1003{
1004 pgd_t *src_pgd, *dst_pgd;
1005 unsigned long next;
1006 unsigned long addr = vma->vm_start;
1007 unsigned long end = vma->vm_end;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001008 unsigned long mmun_start; /* For mmu_notifiers */
1009 unsigned long mmun_end; /* For mmu_notifiers */
1010 bool is_cow;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001011 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Nick Piggind9928952005-08-28 16:49:11 +10001013 /*
1014 * Don't copy ptes where a page fault will fill them correctly.
1015 * Fork becomes much lighter when there are big shared or private
1016 * readonly mappings. The tradeoff is that copy_page_range is more
1017 * efficient than faulting.
1018 */
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001019 if (!(vma->vm_flags & (VM_HUGETLB | VM_NONLINEAR |
1020 VM_PFNMAP | VM_MIXEDMAP))) {
Nick Piggind9928952005-08-28 16:49:11 +10001021 if (!vma->anon_vma)
1022 return 0;
1023 }
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (is_vm_hugetlb_page(vma))
1026 return copy_hugetlb_page_range(dst_mm, src_mm, vma);
1027
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001028 if (unlikely(vma->vm_flags & VM_PFNMAP)) {
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001029 /*
1030 * We do not free on error cases below as remove_vma
1031 * gets called on error from higher level routine
1032 */
Suresh Siddha5180da42012-10-08 16:28:29 -07001033 ret = track_pfn_copy(vma);
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001034 if (ret)
1035 return ret;
1036 }
1037
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001038 /*
1039 * We need to invalidate the secondary MMU mappings only when
1040 * there could be a permission downgrade on the ptes of the
1041 * parent mm. And a permission downgrade will only happen if
1042 * is_cow_mapping() returns true.
1043 */
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001044 is_cow = is_cow_mapping(vma->vm_flags);
1045 mmun_start = addr;
1046 mmun_end = end;
1047 if (is_cow)
1048 mmu_notifier_invalidate_range_start(src_mm, mmun_start,
1049 mmun_end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001050
1051 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 dst_pgd = pgd_offset(dst_mm, addr);
1053 src_pgd = pgd_offset(src_mm, addr);
1054 do {
1055 next = pgd_addr_end(addr, end);
1056 if (pgd_none_or_clear_bad(src_pgd))
1057 continue;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001058 if (unlikely(copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
1059 vma, addr, next))) {
1060 ret = -ENOMEM;
1061 break;
1062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 } while (dst_pgd++, src_pgd++, addr = next, addr != end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001064
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001065 if (is_cow)
1066 mmu_notifier_invalidate_range_end(src_mm, mmun_start, mmun_end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001067 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
Robin Holt51c6f662005-11-13 16:06:42 -08001070static unsigned long zap_pte_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -07001071 struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 unsigned long addr, unsigned long end,
Peter Zijlstra97a89412011-05-24 17:12:04 -07001073 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Nick Pigginb5810032005-10-29 18:16:12 -07001075 struct mm_struct *mm = tlb->mm;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001076 int force_flush = 0;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001077 int rss[NR_MM_COUNTERS];
Peter Zijlstra97a89412011-05-24 17:12:04 -07001078 spinlock_t *ptl;
Steven Rostedt5f1a1902011-06-15 15:08:23 -07001079 pte_t *start_pte;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001080 pte_t *pte;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001081
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001082again:
Peter Zijlstrae3032972011-05-24 17:12:01 -07001083 init_rss_vec(rss);
Steven Rostedt5f1a1902011-06-15 15:08:23 -07001084 start_pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
1085 pte = start_pte;
Zachary Amsden6606c3e2006-09-30 23:29:33 -07001086 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 do {
1088 pte_t ptent = *pte;
Robin Holt51c6f662005-11-13 16:06:42 -08001089 if (pte_none(ptent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 continue;
Robin Holt51c6f662005-11-13 16:06:42 -08001091 }
Hugh Dickins6f5e6b92006-03-16 23:04:09 -08001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (pte_present(ptent)) {
Hugh Dickinsee498ed2005-11-21 21:32:18 -08001094 struct page *page;
Robin Holt51c6f662005-11-13 16:06:42 -08001095
Linus Torvalds6aab3412005-11-28 14:34:23 -08001096 page = vm_normal_page(vma, addr, ptent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (unlikely(details) && page) {
1098 /*
1099 * unmap_shared_mapping_pages() wants to
1100 * invalidate cache without truncating:
1101 * unmap shared but keep private pages.
1102 */
1103 if (details->check_mapping &&
1104 details->check_mapping != page->mapping)
1105 continue;
1106 /*
1107 * Each page->index must be checked when
1108 * invalidating or truncating nonlinear.
1109 */
1110 if (details->nonlinear_vma &&
1111 (page->index < details->first_index ||
1112 page->index > details->last_index))
1113 continue;
1114 }
Nick Pigginb5810032005-10-29 18:16:12 -07001115 ptent = ptep_get_and_clear_full(mm, addr, pte,
Zachary Amsdena6003882005-09-03 15:55:04 -07001116 tlb->fullmm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 tlb_remove_tlb_entry(tlb, pte, addr);
1118 if (unlikely(!page))
1119 continue;
1120 if (unlikely(details) && details->nonlinear_vma
1121 && linear_page_index(details->nonlinear_vma,
Cyrill Gorcunov41bb3472013-08-13 16:00:51 -07001122 addr) != page->index) {
1123 pte_t ptfile = pgoff_to_pte(page->index);
1124 if (pte_soft_dirty(ptent))
1125 pte_file_mksoft_dirty(ptfile);
1126 set_pte_at(mm, addr, pte, ptfile);
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (PageAnon(page))
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001129 rss[MM_ANONPAGES]--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -07001130 else {
1131 if (pte_dirty(ptent))
1132 set_page_dirty(page);
Johannes Weiner4917e5d2009-01-06 14:39:17 -08001133 if (pte_young(ptent) &&
Joe Perches64363aa2013-07-08 16:00:18 -07001134 likely(!(vma->vm_flags & VM_SEQ_READ)))
Nick Pigginbf3f3bc2009-01-06 14:38:55 -08001135 mark_page_accessed(page);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001136 rss[MM_FILEPAGES]--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -07001137 }
Hugh Dickinsedc315f2009-01-06 14:40:11 -08001138 page_remove_rmap(page);
Hugh Dickins3dc14742009-01-06 14:40:08 -08001139 if (unlikely(page_mapcount(page) < 0))
1140 print_bad_pte(vma, addr, ptent, page);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001141 force_flush = !__tlb_remove_page(tlb, page);
1142 if (force_flush)
1143 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 continue;
1145 }
1146 /*
1147 * If details->check_mapping, we leave swap entries;
1148 * if details->nonlinear_vma, we leave file entries.
1149 */
1150 if (unlikely(details))
1151 continue;
Hugh Dickins2509ef22009-01-06 14:40:10 -08001152 if (pte_file(ptent)) {
1153 if (unlikely(!(vma->vm_flags & VM_NONLINEAR)))
1154 print_bad_pte(vma, addr, ptent, NULL);
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08001155 } else {
1156 swp_entry_t entry = pte_to_swp_entry(ptent);
1157
1158 if (!non_swap_entry(entry))
1159 rss[MM_SWAPENTS]--;
Konstantin Khlebnikov9f9f1ac2012-01-20 14:34:24 -08001160 else if (is_migration_entry(entry)) {
1161 struct page *page;
1162
1163 page = migration_entry_to_page(entry);
1164
1165 if (PageAnon(page))
1166 rss[MM_ANONPAGES]--;
1167 else
1168 rss[MM_FILEPAGES]--;
1169 }
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08001170 if (unlikely(!free_swap_and_cache(entry)))
1171 print_bad_pte(vma, addr, ptent, NULL);
1172 }
Zachary Amsden9888a1c2006-09-30 23:29:31 -07001173 pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
Peter Zijlstra97a89412011-05-24 17:12:04 -07001174 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickinsae859762005-10-29 18:16:05 -07001175
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001176 add_mm_rss_vec(mm, rss);
Zachary Amsden6606c3e2006-09-30 23:29:33 -07001177 arch_leave_lazy_mmu_mode();
Steven Rostedt5f1a1902011-06-15 15:08:23 -07001178 pte_unmap_unlock(start_pte, ptl);
Robin Holt51c6f662005-11-13 16:06:42 -08001179
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001180 /*
1181 * mmu_gather ran out of room to batch pages, we break out of
1182 * the PTE lock to avoid doing the potential expensive TLB invalidate
1183 * and page-free while holding it.
1184 */
1185 if (force_flush) {
Linus Torvalds2b047252013-08-15 11:42:25 -07001186 unsigned long old_end;
1187
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001188 force_flush = 0;
Alex Shi597e1c32012-06-28 09:02:21 +08001189
Linus Torvalds2b047252013-08-15 11:42:25 -07001190 /*
1191 * Flush the TLB just for the previous segment,
1192 * then update the range to be the remaining
1193 * TLB range.
1194 */
1195 old_end = tlb->end;
Vineet Guptae6c495a2013-07-03 15:03:31 -07001196 tlb->end = addr;
Linus Torvalds2b047252013-08-15 11:42:25 -07001197
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001198 tlb_flush_mmu(tlb);
Linus Torvalds2b047252013-08-15 11:42:25 -07001199
1200 tlb->start = addr;
1201 tlb->end = old_end;
1202
1203 if (addr != end)
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001204 goto again;
1205 }
1206
Robin Holt51c6f662005-11-13 16:06:42 -08001207 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
Robin Holt51c6f662005-11-13 16:06:42 -08001210static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -07001211 struct vm_area_struct *vma, pud_t *pud,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 unsigned long addr, unsigned long end,
Peter Zijlstra97a89412011-05-24 17:12:04 -07001213 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 pmd_t *pmd;
1216 unsigned long next;
1217
1218 pmd = pmd_offset(pud, addr);
1219 do {
1220 next = pmd_addr_end(addr, end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001221 if (pmd_trans_huge(*pmd)) {
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001222 if (next - addr != HPAGE_PMD_SIZE) {
David Rientjese0897d72012-06-20 12:53:00 -07001223#ifdef CONFIG_DEBUG_VM
1224 if (!rwsem_is_locked(&tlb->mm->mmap_sem)) {
1225 pr_err("%s: mmap_sem is unlocked! addr=0x%lx end=0x%lx vma->vm_start=0x%lx vma->vm_end=0x%lx\n",
1226 __func__, addr, end,
1227 vma->vm_start,
1228 vma->vm_end);
1229 BUG();
1230 }
1231#endif
Kirill A. Shutemove1803772012-12-12 13:50:59 -08001232 split_huge_page_pmd(vma, addr, pmd);
Shaohua Lif21760b2012-01-12 17:19:16 -08001233 } else if (zap_huge_pmd(tlb, vma, pmd, addr))
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001234 goto next;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001235 /* fall through */
1236 }
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001237 /*
1238 * Here there can be other concurrent MADV_DONTNEED or
1239 * trans huge page faults running, and if the pmd is
1240 * none or trans huge it can change under us. This is
1241 * because MADV_DONTNEED holds the mmap_sem in read
1242 * mode.
1243 */
1244 if (pmd_none_or_trans_huge_or_clear_bad(pmd))
1245 goto next;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001246 next = zap_pte_range(tlb, vma, pmd, addr, next, details);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001247next:
Peter Zijlstra97a89412011-05-24 17:12:04 -07001248 cond_resched();
1249 } while (pmd++, addr = next, addr != end);
Robin Holt51c6f662005-11-13 16:06:42 -08001250
1251 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Robin Holt51c6f662005-11-13 16:06:42 -08001254static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -07001255 struct vm_area_struct *vma, pgd_t *pgd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 unsigned long addr, unsigned long end,
Peter Zijlstra97a89412011-05-24 17:12:04 -07001257 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
1259 pud_t *pud;
1260 unsigned long next;
1261
1262 pud = pud_offset(pgd, addr);
1263 do {
1264 next = pud_addr_end(addr, end);
Peter Zijlstra97a89412011-05-24 17:12:04 -07001265 if (pud_none_or_clear_bad(pud))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 continue;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001267 next = zap_pmd_range(tlb, vma, pud, addr, next, details);
1268 } while (pud++, addr = next, addr != end);
Robin Holt51c6f662005-11-13 16:06:42 -08001269
1270 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Al Viro038c7aa2012-03-05 13:25:09 -05001273static void unmap_page_range(struct mmu_gather *tlb,
1274 struct vm_area_struct *vma,
1275 unsigned long addr, unsigned long end,
1276 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 pgd_t *pgd;
1279 unsigned long next;
1280
1281 if (details && !details->check_mapping && !details->nonlinear_vma)
1282 details = NULL;
1283
1284 BUG_ON(addr >= end);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08001285 mem_cgroup_uncharge_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 tlb_start_vma(tlb, vma);
1287 pgd = pgd_offset(vma->vm_mm, addr);
1288 do {
1289 next = pgd_addr_end(addr, end);
Peter Zijlstra97a89412011-05-24 17:12:04 -07001290 if (pgd_none_or_clear_bad(pgd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 continue;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001292 next = zap_pud_range(tlb, vma, pgd, addr, next, details);
1293 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 tlb_end_vma(tlb, vma);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -08001295 mem_cgroup_uncharge_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Al Virof5cc4ee2012-03-05 14:14:20 -05001298
1299static void unmap_single_vma(struct mmu_gather *tlb,
1300 struct vm_area_struct *vma, unsigned long start_addr,
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001301 unsigned long end_addr,
Al Virof5cc4ee2012-03-05 14:14:20 -05001302 struct zap_details *details)
1303{
1304 unsigned long start = max(vma->vm_start, start_addr);
1305 unsigned long end;
1306
1307 if (start >= vma->vm_end)
1308 return;
1309 end = min(vma->vm_end, end_addr);
1310 if (end <= vma->vm_start)
1311 return;
1312
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301313 if (vma->vm_file)
1314 uprobe_munmap(vma, start, end);
1315
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001316 if (unlikely(vma->vm_flags & VM_PFNMAP))
Suresh Siddha5180da42012-10-08 16:28:29 -07001317 untrack_pfn(vma, 0, 0);
Al Virof5cc4ee2012-03-05 14:14:20 -05001318
1319 if (start != end) {
1320 if (unlikely(is_vm_hugetlb_page(vma))) {
1321 /*
1322 * It is undesirable to test vma->vm_file as it
1323 * should be non-null for valid hugetlb area.
1324 * However, vm_file will be NULL in the error
1325 * cleanup path of do_mmap_pgoff. When
1326 * hugetlbfs ->mmap method fails,
1327 * do_mmap_pgoff() nullifies vma->vm_file
1328 * before calling this function to clean up.
1329 * Since no pte has actually been setup, it is
1330 * safe to do nothing in this case.
1331 */
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07001332 if (vma->vm_file) {
1333 mutex_lock(&vma->vm_file->f_mapping->i_mmap_mutex);
Mel Gormand8333522012-07-31 16:46:20 -07001334 __unmap_hugepage_range_final(tlb, vma, start, end, NULL);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07001335 mutex_unlock(&vma->vm_file->f_mapping->i_mmap_mutex);
1336 }
Al Virof5cc4ee2012-03-05 14:14:20 -05001337 } else
1338 unmap_page_range(tlb, vma, start, end, details);
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342/**
1343 * unmap_vmas - unmap a range of memory covered by a list of vma's
Randy Dunlap0164f692011-06-15 15:08:09 -07001344 * @tlb: address of the caller's struct mmu_gather
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 * @vma: the starting vma
1346 * @start_addr: virtual address at which to start unmapping
1347 * @end_addr: virtual address at which to end unmapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 *
Hugh Dickins508034a2005-10-29 18:16:30 -07001349 * Unmap all pages in the vma list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 * Only addresses between `start' and `end' will be unmapped.
1352 *
1353 * The VMA list must be sorted in ascending virtual address order.
1354 *
1355 * unmap_vmas() assumes that the caller will flush the whole unmapped address
1356 * range after unmap_vmas() returns. So the only responsibility here is to
1357 * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
1358 * drops the lock and schedules.
1359 */
Al Viro6e8bb012012-03-05 13:41:15 -05001360void unmap_vmas(struct mmu_gather *tlb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 struct vm_area_struct *vma, unsigned long start_addr,
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001362 unsigned long end_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001364 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001366 mmu_notifier_invalidate_range_start(mm, start_addr, end_addr);
Al Virof5cc4ee2012-03-05 14:14:20 -05001367 for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next)
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001368 unmap_single_vma(tlb, vma, start_addr, end_addr, NULL);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001369 mmu_notifier_invalidate_range_end(mm, start_addr, end_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372/**
1373 * zap_page_range - remove user pages in a given range
1374 * @vma: vm_area_struct holding the applicable pages
Randy Dunlapeb4546b2012-06-20 12:53:02 -07001375 * @start: starting address of pages to zap
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 * @size: number of bytes to zap
1377 * @details: details of nonlinear truncation or shared cache invalidation
Al Virof5cc4ee2012-03-05 14:14:20 -05001378 *
1379 * Caller must protect the VMA list
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
Linus Torvalds7e027b12012-05-06 13:43:15 -07001381void zap_page_range(struct vm_area_struct *vma, unsigned long start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 unsigned long size, struct zap_details *details)
1383{
1384 struct mm_struct *mm = vma->vm_mm;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001385 struct mmu_gather tlb;
Linus Torvalds7e027b12012-05-06 13:43:15 -07001386 unsigned long end = start + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07001389 tlb_gather_mmu(&tlb, mm, start, end);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001390 update_hiwater_rss(mm);
Linus Torvalds7e027b12012-05-06 13:43:15 -07001391 mmu_notifier_invalidate_range_start(mm, start, end);
1392 for ( ; vma && vma->vm_start < end; vma = vma->vm_next)
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001393 unmap_single_vma(&tlb, vma, start, end, details);
Linus Torvalds7e027b12012-05-06 13:43:15 -07001394 mmu_notifier_invalidate_range_end(mm, start, end);
1395 tlb_finish_mmu(&tlb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
Jack Steinerc627f9c2008-07-29 22:33:53 -07001398/**
Al Virof5cc4ee2012-03-05 14:14:20 -05001399 * zap_page_range_single - remove user pages in a given range
1400 * @vma: vm_area_struct holding the applicable pages
1401 * @address: starting address of pages to zap
1402 * @size: number of bytes to zap
1403 * @details: details of nonlinear truncation or shared cache invalidation
1404 *
1405 * The range must fit into one VMA.
1406 */
1407static void zap_page_range_single(struct vm_area_struct *vma, unsigned long address,
1408 unsigned long size, struct zap_details *details)
1409{
1410 struct mm_struct *mm = vma->vm_mm;
1411 struct mmu_gather tlb;
1412 unsigned long end = address + size;
Al Virof5cc4ee2012-03-05 14:14:20 -05001413
1414 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07001415 tlb_gather_mmu(&tlb, mm, address, end);
Al Virof5cc4ee2012-03-05 14:14:20 -05001416 update_hiwater_rss(mm);
1417 mmu_notifier_invalidate_range_start(mm, address, end);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001418 unmap_single_vma(&tlb, vma, address, end, details);
Al Virof5cc4ee2012-03-05 14:14:20 -05001419 mmu_notifier_invalidate_range_end(mm, address, end);
1420 tlb_finish_mmu(&tlb, address, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Jack Steinerc627f9c2008-07-29 22:33:53 -07001423/**
1424 * zap_vma_ptes - remove ptes mapping the vma
1425 * @vma: vm_area_struct holding ptes to be zapped
1426 * @address: starting address of pages to zap
1427 * @size: number of bytes to zap
1428 *
1429 * This function only unmaps ptes assigned to VM_PFNMAP vmas.
1430 *
1431 * The entire address range must be fully contained within the vma.
1432 *
1433 * Returns 0 if successful.
1434 */
1435int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
1436 unsigned long size)
1437{
1438 if (address < vma->vm_start || address + size > vma->vm_end ||
1439 !(vma->vm_flags & VM_PFNMAP))
1440 return -1;
Al Virof5cc4ee2012-03-05 14:14:20 -05001441 zap_page_range_single(vma, address, size, NULL);
Jack Steinerc627f9c2008-07-29 22:33:53 -07001442 return 0;
1443}
1444EXPORT_SYMBOL_GPL(zap_vma_ptes);
1445
Johannes Weiner142762b2010-05-24 14:32:39 -07001446/**
Michel Lespinasse240aade2013-02-22 16:35:56 -08001447 * follow_page_mask - look up a page descriptor from a user-virtual address
Johannes Weiner142762b2010-05-24 14:32:39 -07001448 * @vma: vm_area_struct mapping @address
1449 * @address: virtual address to look up
1450 * @flags: flags modifying lookup behaviour
Michel Lespinasse240aade2013-02-22 16:35:56 -08001451 * @page_mask: on output, *page_mask is set according to the size of the page
Johannes Weiner142762b2010-05-24 14:32:39 -07001452 *
1453 * @flags can have FOLL_ flags set, defined in <linux/mm.h>
1454 *
1455 * Returns the mapped (struct page *), %NULL if no mapping exists, or
1456 * an error pointer if there is a mapping to something not represented
1457 * by a page descriptor (see also vm_normal_page()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 */
Michel Lespinasse240aade2013-02-22 16:35:56 -08001459struct page *follow_page_mask(struct vm_area_struct *vma,
1460 unsigned long address, unsigned int flags,
1461 unsigned int *page_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 pgd_t *pgd;
1464 pud_t *pud;
1465 pmd_t *pmd;
1466 pte_t *ptep, pte;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001467 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 struct page *page;
Linus Torvalds6aab3412005-11-28 14:34:23 -08001469 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Michel Lespinasse240aade2013-02-22 16:35:56 -08001471 *page_mask = 0;
1472
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001473 page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
1474 if (!IS_ERR(page)) {
1475 BUG_ON(flags & FOLL_GET);
1476 goto out;
1477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001479 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 pgd = pgd_offset(mm, address);
1481 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001482 goto no_page_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 pud = pud_offset(pgd, address);
Andi Kleenceb86872008-07-23 21:27:50 -07001485 if (pud_none(*pud))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001486 goto no_page_table;
Hugh Dickins8a076512011-01-13 15:46:52 -08001487 if (pud_huge(*pud) && vma->vm_flags & VM_HUGETLB) {
Naoya Horiguchie632a932013-09-11 14:22:04 -07001488 if (flags & FOLL_GET)
1489 goto out;
Andi Kleenceb86872008-07-23 21:27:50 -07001490 page = follow_huge_pud(mm, address, pud, flags & FOLL_WRITE);
1491 goto out;
1492 }
1493 if (unlikely(pud_bad(*pud)))
1494 goto no_page_table;
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 pmd = pmd_offset(pud, address);
Hugh Dickinsaeed5fc2008-05-06 20:49:23 +01001497 if (pmd_none(*pmd))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001498 goto no_page_table;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001499 if (pmd_huge(*pmd) && vma->vm_flags & VM_HUGETLB) {
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001500 page = follow_huge_pmd(mm, address, pmd, flags & FOLL_WRITE);
Naoya Horiguchie632a932013-09-11 14:22:04 -07001501 if (flags & FOLL_GET) {
1502 /*
1503 * Refcount on tail pages are not well-defined and
1504 * shouldn't be taken. The caller should handle a NULL
1505 * return when trying to follow tail pages.
1506 */
1507 if (PageHead(page))
1508 get_page(page);
1509 else {
1510 page = NULL;
1511 goto out;
1512 }
1513 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001514 goto out;
1515 }
Andrea Arcangeli0b9d7052012-10-05 21:36:27 +02001516 if ((flags & FOLL_NUMA) && pmd_numa(*pmd))
1517 goto no_page_table;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001518 if (pmd_trans_huge(*pmd)) {
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001519 if (flags & FOLL_SPLIT) {
Kirill A. Shutemove1803772012-12-12 13:50:59 -08001520 split_huge_page_pmd(vma, address, pmd);
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001521 goto split_fallthrough;
1522 }
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001523 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001524 if (likely(pmd_trans_huge(*pmd))) {
1525 if (unlikely(pmd_trans_splitting(*pmd))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001526 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001527 wait_split_huge_page(vma->anon_vma, pmd);
1528 } else {
David Rientjesb676b292012-10-08 16:34:03 -07001529 page = follow_trans_huge_pmd(vma, address,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001530 pmd, flags);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001531 spin_unlock(ptl);
Michel Lespinasse240aade2013-02-22 16:35:56 -08001532 *page_mask = HPAGE_PMD_NR - 1;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001533 goto out;
1534 }
1535 } else
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001536 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001537 /* fall through */
1538 }
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001539split_fallthrough:
Hugh Dickinsaeed5fc2008-05-06 20:49:23 +01001540 if (unlikely(pmd_bad(*pmd)))
1541 goto no_page_table;
1542
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001543 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 pte = *ptep;
Hugh Dickins5117b3b2013-02-22 16:36:07 -08001546 if (!pte_present(pte)) {
1547 swp_entry_t entry;
1548 /*
1549 * KSM's break_ksm() relies upon recognizing a ksm page
1550 * even while it is being migrated, so for that case we
1551 * need migration_entry_wait().
1552 */
1553 if (likely(!(flags & FOLL_MIGRATION)))
1554 goto no_page;
1555 if (pte_none(pte) || pte_file(pte))
1556 goto no_page;
1557 entry = pte_to_swp_entry(pte);
1558 if (!is_migration_entry(entry))
1559 goto no_page;
1560 pte_unmap_unlock(ptep, ptl);
1561 migration_entry_wait(mm, pmd, address);
1562 goto split_fallthrough;
1563 }
Andrea Arcangeli0b9d7052012-10-05 21:36:27 +02001564 if ((flags & FOLL_NUMA) && pte_numa(pte))
1565 goto no_page;
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001566 if ((flags & FOLL_WRITE) && !pte_write(pte))
1567 goto unlock;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07001568
Linus Torvalds6aab3412005-11-28 14:34:23 -08001569 page = vm_normal_page(vma, address, pte);
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07001570 if (unlikely(!page)) {
1571 if ((flags & FOLL_DUMP) ||
Hugh Dickins62eede62009-09-21 17:03:34 -07001572 !is_zero_pfn(pte_pfn(pte)))
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07001573 goto bad_page;
1574 page = pte_page(pte);
1575 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001576
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001577 if (flags & FOLL_GET)
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001578 get_page_foll(page);
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001579 if (flags & FOLL_TOUCH) {
1580 if ((flags & FOLL_WRITE) &&
1581 !pte_dirty(pte) && !PageDirty(page))
1582 set_page_dirty(page);
KOSAKI Motohirobd775c42009-03-31 15:19:37 -07001583 /*
1584 * pte_mkyoung() would be more correct here, but atomic care
1585 * is needed to avoid losing the dirty bit: it is easier to use
1586 * mark_page_accessed().
1587 */
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001588 mark_page_accessed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Linus Torvaldsa1fde082011-05-04 21:30:28 -07001590 if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
Michel Lespinasse110d74a2011-01-13 15:46:11 -08001591 /*
1592 * The preliminary mapping check is mainly to avoid the
1593 * pointless overhead of lock_page on the ZERO_PAGE
1594 * which might bounce very badly if there is contention.
1595 *
1596 * If the page is already locked, we don't need to
1597 * handle it now - vmscan will handle it later if and
1598 * when it attempts to reclaim the page.
1599 */
1600 if (page->mapping && trylock_page(page)) {
1601 lru_add_drain(); /* push cached pages to LRU */
1602 /*
Hugh Dickinse6c509f2012-10-08 16:33:19 -07001603 * Because we lock page here, and migration is
1604 * blocked by the pte's page reference, and we
1605 * know the page is still mapped, we don't even
1606 * need to check for file-cache page truncation.
Michel Lespinasse110d74a2011-01-13 15:46:11 -08001607 */
Hugh Dickinse6c509f2012-10-08 16:33:19 -07001608 mlock_vma_page(page);
Michel Lespinasse110d74a2011-01-13 15:46:11 -08001609 unlock_page(page);
1610 }
1611 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001612unlock:
1613 pte_unmap_unlock(ptep, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614out:
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001615 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001617bad_page:
1618 pte_unmap_unlock(ptep, ptl);
1619 return ERR_PTR(-EFAULT);
1620
1621no_page:
1622 pte_unmap_unlock(ptep, ptl);
1623 if (!pte_none(pte))
1624 return page;
Hugh Dickins8e4b9a62009-09-21 17:03:26 -07001625
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001626no_page_table:
1627 /*
1628 * When core dumping an enormous anonymous area that nobody
Hugh Dickins8e4b9a62009-09-21 17:03:26 -07001629 * has touched so far, we don't want to allocate unnecessary pages or
1630 * page tables. Return error instead of NULL to skip handle_mm_fault,
1631 * then get_dump_page() will return NULL to leave a hole in the dump.
1632 * But we can only make this optimization where a hole would surely
1633 * be zero-filled if handle_mm_fault() actually did handle it.
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001634 */
Hugh Dickins8e4b9a62009-09-21 17:03:26 -07001635 if ((flags & FOLL_DUMP) &&
1636 (!vma->vm_ops || !vma->vm_ops->fault))
1637 return ERR_PTR(-EFAULT);
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001638 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
Linus Torvalds95042f92011-04-12 14:15:51 -07001641static inline int stack_guard_page(struct vm_area_struct *vma, unsigned long addr)
1642{
Mikulas Patockaa09a79f2011-05-09 13:01:09 +02001643 return stack_guard_page_start(vma, addr) ||
1644 stack_guard_page_end(vma, addr+PAGE_SIZE);
Linus Torvalds95042f92011-04-12 14:15:51 -07001645}
1646
Huang Ying0014bd92011-01-30 11:15:47 +08001647/**
1648 * __get_user_pages() - pin user pages in memory
1649 * @tsk: task_struct of target task
1650 * @mm: mm_struct of target mm
1651 * @start: starting user address
1652 * @nr_pages: number of pages from start to pin
1653 * @gup_flags: flags modifying pin behaviour
1654 * @pages: array that receives pointers to the pages pinned.
1655 * Should be at least nr_pages long. Or NULL, if caller
1656 * only intends to ensure the pages are faulted in.
1657 * @vmas: array of pointers to vmas corresponding to each page.
1658 * Or NULL if the caller does not require them.
1659 * @nonblocking: whether waiting for disk IO or mmap_sem contention
1660 *
1661 * Returns number of pages pinned. This may be fewer than the number
1662 * requested. If nr_pages is 0 or negative, returns 0. If no pages
1663 * were pinned, returns -errno. Each page returned must be released
1664 * with a put_page() call when it is finished with. vmas will only
1665 * remain valid while mmap_sem is held.
1666 *
1667 * Must be called with mmap_sem held for read or write.
1668 *
1669 * __get_user_pages walks a process's page tables and takes a reference to
1670 * each struct page that each user address corresponds to at a given
1671 * instant. That is, it takes the page that would be accessed if a user
1672 * thread accesses the given user virtual address at that instant.
1673 *
1674 * This does not guarantee that the page exists in the user mappings when
1675 * __get_user_pages returns, and there may even be a completely different
1676 * page there in some cases (eg. if mmapped pagecache has been invalidated
1677 * and subsequently re faulted). However it does guarantee that the page
1678 * won't be freed completely. And mostly callers simply care that the page
1679 * contains data that was valid *at some point in time*. Typically, an IO
1680 * or similar operation cannot guarantee anything stronger anyway because
1681 * locks can't be held over the syscall boundary.
1682 *
1683 * If @gup_flags & FOLL_WRITE == 0, the page must not be written to. If
1684 * the page is written to, set_page_dirty (or set_page_dirty_lock, as
1685 * appropriate) must be called after the page is finished with, and
1686 * before put_page is called.
1687 *
1688 * If @nonblocking != NULL, __get_user_pages will not wait for disk IO
1689 * or mmap_sem contention, and if waiting is needed to pin all pages,
1690 * *@nonblocking will be set to 0.
1691 *
1692 * In most cases, get_user_pages or get_user_pages_fast should be used
1693 * instead of __get_user_pages. __get_user_pages should be used only if
1694 * you need some special @gup_flags.
1695 */
Michel Lespinasse28a35712013-02-22 16:35:55 -08001696long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
1697 unsigned long start, unsigned long nr_pages,
1698 unsigned int gup_flags, struct page **pages,
1699 struct vm_area_struct **vmas, int *nonblocking)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Michel Lespinasse28a35712013-02-22 16:35:55 -08001701 long i;
Hugh Dickins58fa8792009-09-21 17:03:31 -07001702 unsigned long vm_flags;
Michel Lespinasse240aade2013-02-22 16:35:56 -08001703 unsigned int page_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Michel Lespinasse28a35712013-02-22 16:35:55 -08001705 if (!nr_pages)
Jonathan Corbet900cf082008-02-11 16:17:33 -07001706 return 0;
Hugh Dickins58fa8792009-09-21 17:03:31 -07001707
1708 VM_BUG_ON(!!pages != !!(gup_flags & FOLL_GET));
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 /*
1711 * Require read or write permissions.
Hugh Dickins58fa8792009-09-21 17:03:31 -07001712 * If FOLL_FORCE is set, we only require the "MAY" flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 */
Hugh Dickins58fa8792009-09-21 17:03:31 -07001714 vm_flags = (gup_flags & FOLL_WRITE) ?
1715 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
1716 vm_flags &= (gup_flags & FOLL_FORCE) ?
1717 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
Andrea Arcangeli0b9d7052012-10-05 21:36:27 +02001718
1719 /*
1720 * If FOLL_FORCE and FOLL_NUMA are both set, handle_mm_fault
1721 * would be called on PROT_NONE ranges. We must never invoke
1722 * handle_mm_fault on PROT_NONE ranges or the NUMA hinting
1723 * page faults would unprotect the PROT_NONE ranges if
1724 * _PAGE_NUMA and _PAGE_PROTNONE are sharing the same pte/pmd
1725 * bitflag. So to avoid that, don't set FOLL_NUMA if
1726 * FOLL_FORCE is set.
1727 */
1728 if (!(gup_flags & FOLL_FORCE))
1729 gup_flags |= FOLL_NUMA;
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 i = 0;
1732
1733 do {
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001734 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 vma = find_extend_vma(mm, start);
Stephen Wilsone7f22e22011-03-13 15:49:18 -04001737 if (!vma && in_gate_area(mm, start)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 unsigned long pg = start & PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 pgd_t *pgd;
1740 pud_t *pud;
1741 pmd_t *pmd;
1742 pte_t *pte;
Nick Pigginb291f002008-10-18 20:26:44 -07001743
1744 /* user gate pages are read-only */
Hugh Dickins58fa8792009-09-21 17:03:31 -07001745 if (gup_flags & FOLL_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 return i ? : -EFAULT;
1747 if (pg > TASK_SIZE)
1748 pgd = pgd_offset_k(pg);
1749 else
1750 pgd = pgd_offset_gate(mm, pg);
1751 BUG_ON(pgd_none(*pgd));
1752 pud = pud_offset(pgd, pg);
1753 BUG_ON(pud_none(*pud));
1754 pmd = pmd_offset(pud, pg);
Hugh Dickins690dbe12005-08-01 21:11:42 -07001755 if (pmd_none(*pmd))
1756 return i ? : -EFAULT;
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08001757 VM_BUG_ON(pmd_trans_huge(*pmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 pte = pte_offset_map(pmd, pg);
Hugh Dickins690dbe12005-08-01 21:11:42 -07001759 if (pte_none(*pte)) {
1760 pte_unmap(pte);
1761 return i ? : -EFAULT;
1762 }
Linus Torvalds95042f92011-04-12 14:15:51 -07001763 vma = get_gate_vma(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (pages) {
Hugh Dickinsde51257a2010-07-30 10:58:26 -07001765 struct page *page;
1766
Linus Torvalds95042f92011-04-12 14:15:51 -07001767 page = vm_normal_page(vma, start, *pte);
Hugh Dickinsde51257a2010-07-30 10:58:26 -07001768 if (!page) {
1769 if (!(gup_flags & FOLL_DUMP) &&
1770 is_zero_pfn(pte_pfn(*pte)))
1771 page = pte_page(*pte);
1772 else {
1773 pte_unmap(pte);
1774 return i ? : -EFAULT;
1775 }
1776 }
Linus Torvalds6aab3412005-11-28 14:34:23 -08001777 pages[i] = page;
Hugh Dickinsde51257a2010-07-30 10:58:26 -07001778 get_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780 pte_unmap(pte);
Michel Lespinasse240aade2013-02-22 16:35:56 -08001781 page_mask = 0;
Linus Torvalds95042f92011-04-12 14:15:51 -07001782 goto next_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784
Nick Pigginb291f002008-10-18 20:26:44 -07001785 if (!vma ||
1786 (vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
Hugh Dickins1c3aff12009-09-21 17:03:24 -07001787 !(vm_flags & vma->vm_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return i ? : -EFAULT;
1789
Hugh Dickins2a15efc2009-09-21 17:03:27 -07001790 if (is_vm_hugetlb_page(vma)) {
1791 i = follow_hugetlb_page(mm, vma, pages, vmas,
Hugh Dickins58fa8792009-09-21 17:03:31 -07001792 &start, &nr_pages, i, gup_flags);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07001793 continue;
1794 }
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 do {
Hugh Dickins08ef4722005-06-21 17:15:10 -07001797 struct page *page;
Hugh Dickins58fa8792009-09-21 17:03:31 -07001798 unsigned int foll_flags = gup_flags;
Michel Lespinasse240aade2013-02-22 16:35:56 -08001799 unsigned int page_increm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Ethan Solomita462e00c2007-07-15 23:38:16 -07001801 /*
Ying Han47792802009-01-06 14:40:18 -08001802 * If we have a pending SIGKILL, don't keep faulting
Hugh Dickins1c3aff12009-09-21 17:03:24 -07001803 * pages and potentially allocating memory.
Ethan Solomita462e00c2007-07-15 23:38:16 -07001804 */
Hugh Dickins1c3aff12009-09-21 17:03:24 -07001805 if (unlikely(fatal_signal_pending(current)))
Ying Han47792802009-01-06 14:40:18 -08001806 return i ? i : -ERESTARTSYS;
Ethan Solomita462e00c2007-07-15 23:38:16 -07001807
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001808 cond_resched();
Michel Lespinasse240aade2013-02-22 16:35:56 -08001809 while (!(page = follow_page_mask(vma, start,
1810 foll_flags, &page_mask))) {
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001811 int ret;
Michel Lespinasse53a77062011-01-13 15:46:14 -08001812 unsigned int fault_flags = 0;
1813
Mikulas Patockaa09a79f2011-05-09 13:01:09 +02001814 /* For mlock, just skip the stack guard page. */
1815 if (foll_flags & FOLL_MLOCK) {
1816 if (stack_guard_page(vma, start))
1817 goto next_page;
1818 }
Michel Lespinasse53a77062011-01-13 15:46:14 -08001819 if (foll_flags & FOLL_WRITE)
1820 fault_flags |= FAULT_FLAG_WRITE;
1821 if (nonblocking)
1822 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
Gleb Natapov318b2752011-03-22 16:30:51 -07001823 if (foll_flags & FOLL_NOWAIT)
1824 fault_flags |= (FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_RETRY_NOWAIT);
Linus Torvaldsd06063c2009-04-10 09:01:23 -07001825
Hugh Dickinsd26ed652009-06-23 13:52:49 +01001826 ret = handle_mm_fault(mm, vma, start,
Michel Lespinasse53a77062011-01-13 15:46:14 -08001827 fault_flags);
Hugh Dickinsd26ed652009-06-23 13:52:49 +01001828
Nick Piggin83c54072007-07-19 01:47:05 -07001829 if (ret & VM_FAULT_ERROR) {
1830 if (ret & VM_FAULT_OOM)
1831 return i ? i : -ENOMEM;
Huang Ying69ebb832011-01-30 11:15:48 +08001832 if (ret & (VM_FAULT_HWPOISON |
1833 VM_FAULT_HWPOISON_LARGE)) {
1834 if (i)
1835 return i;
1836 else if (gup_flags & FOLL_HWPOISON)
1837 return -EHWPOISON;
1838 else
1839 return -EFAULT;
1840 }
1841 if (ret & VM_FAULT_SIGBUS)
Nick Piggin83c54072007-07-19 01:47:05 -07001842 return i ? i : -EFAULT;
1843 BUG();
1844 }
Stephen Wilsone7f22e22011-03-13 15:49:18 -04001845
1846 if (tsk) {
1847 if (ret & VM_FAULT_MAJOR)
1848 tsk->maj_flt++;
1849 else
1850 tsk->min_flt++;
1851 }
Nick Piggin83c54072007-07-19 01:47:05 -07001852
Michel Lespinasse53a77062011-01-13 15:46:14 -08001853 if (ret & VM_FAULT_RETRY) {
Gleb Natapov318b2752011-03-22 16:30:51 -07001854 if (nonblocking)
1855 *nonblocking = 0;
Michel Lespinasse53a77062011-01-13 15:46:14 -08001856 return i;
1857 }
1858
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001859 /*
Nick Piggin83c54072007-07-19 01:47:05 -07001860 * The VM_FAULT_WRITE bit tells us that
1861 * do_wp_page has broken COW when necessary,
1862 * even if maybe_mkwrite decided not to set
1863 * pte_write. We can thus safely do subsequent
Hugh Dickins878b63a2009-01-06 14:39:32 -08001864 * page lookups as if they were reads. But only
1865 * do so when looping for pte_write is futile:
1866 * in some cases userspace may also be wanting
1867 * to write to the gotten user page, which a
1868 * read fault here might prevent (a readonly
1869 * page might get reCOWed by userspace write).
Linus Torvaldsa68d2eb2005-08-03 10:07:09 -07001870 */
Hugh Dickins878b63a2009-01-06 14:39:32 -08001871 if ((ret & VM_FAULT_WRITE) &&
1872 !(vma->vm_flags & VM_WRITE))
Hugh Dickinsdeceb6c2005-10-29 18:16:33 -07001873 foll_flags &= ~FOLL_WRITE;
Nick Piggin83c54072007-07-19 01:47:05 -07001874
Benjamin Herrenschmidt7f7bbbe2006-10-06 00:43:53 -07001875 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001877 if (IS_ERR(page))
1878 return i ? i : PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (pages) {
Hugh Dickins08ef4722005-06-21 17:15:10 -07001880 pages[i] = page;
James Bottomley03beb072006-03-26 01:36:57 -08001881
Russell Kinga6f36be2006-12-30 22:24:19 +00001882 flush_anon_page(vma, page, start);
Hugh Dickins08ef4722005-06-21 17:15:10 -07001883 flush_dcache_page(page);
Michel Lespinasse240aade2013-02-22 16:35:56 -08001884 page_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
Linus Torvalds95042f92011-04-12 14:15:51 -07001886next_page:
Michel Lespinasse240aade2013-02-22 16:35:56 -08001887 if (vmas) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 vmas[i] = vma;
Michel Lespinasse240aade2013-02-22 16:35:56 -08001889 page_mask = 0;
1890 }
1891 page_increm = 1 + (~(start >> PAGE_SHIFT) & page_mask);
1892 if (page_increm > nr_pages)
1893 page_increm = nr_pages;
1894 i += page_increm;
1895 start += page_increm * PAGE_SIZE;
1896 nr_pages -= page_increm;
Peter Zijlstra9d737772009-06-25 11:58:55 +02001897 } while (nr_pages && start < vma->vm_end);
1898 } while (nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return i;
1900}
Huang Ying0014bd92011-01-30 11:15:47 +08001901EXPORT_SYMBOL(__get_user_pages);
Nick Pigginb291f002008-10-18 20:26:44 -07001902
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -07001903/*
1904 * fixup_user_fault() - manually resolve a user page fault
1905 * @tsk: the task_struct to use for page fault accounting, or
1906 * NULL if faults are not to be recorded.
1907 * @mm: mm_struct of target mm
1908 * @address: user address
1909 * @fault_flags:flags to pass down to handle_mm_fault()
1910 *
1911 * This is meant to be called in the specific scenario where for locking reasons
1912 * we try to access user memory in atomic context (within a pagefault_disable()
1913 * section), this returns -EFAULT, and we want to resolve the user fault before
1914 * trying again.
1915 *
1916 * Typically this is meant to be used by the futex code.
1917 *
1918 * The main difference with get_user_pages() is that this function will
1919 * unconditionally call handle_mm_fault() which will in turn perform all the
1920 * necessary SW fixup of the dirty and young bits in the PTE, while
1921 * handle_mm_fault() only guarantees to update these in the struct page.
1922 *
1923 * This is important for some architectures where those bits also gate the
1924 * access permission to the page because they are maintained in software. On
1925 * such architectures, gup() will not be enough to make a subsequent access
1926 * succeed.
1927 *
1928 * This should be called with the mm_sem held for read.
1929 */
1930int fixup_user_fault(struct task_struct *tsk, struct mm_struct *mm,
1931 unsigned long address, unsigned int fault_flags)
1932{
1933 struct vm_area_struct *vma;
Linus Torvaldse83c6672014-04-22 13:49:40 -07001934 vm_flags_t vm_flags;
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -07001935 int ret;
1936
1937 vma = find_extend_vma(mm, address);
1938 if (!vma || address < vma->vm_start)
1939 return -EFAULT;
1940
Linus Torvaldse83c6672014-04-22 13:49:40 -07001941 vm_flags = (fault_flags & FAULT_FLAG_WRITE) ? VM_WRITE : VM_READ;
1942 if (!(vm_flags & vma->vm_flags))
1943 return -EFAULT;
1944
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -07001945 ret = handle_mm_fault(mm, vma, address, fault_flags);
1946 if (ret & VM_FAULT_ERROR) {
1947 if (ret & VM_FAULT_OOM)
1948 return -ENOMEM;
1949 if (ret & (VM_FAULT_HWPOISON | VM_FAULT_HWPOISON_LARGE))
1950 return -EHWPOISON;
1951 if (ret & VM_FAULT_SIGBUS)
1952 return -EFAULT;
1953 BUG();
1954 }
1955 if (tsk) {
1956 if (ret & VM_FAULT_MAJOR)
1957 tsk->maj_flt++;
1958 else
1959 tsk->min_flt++;
1960 }
1961 return 0;
1962}
1963
1964/*
Nick Piggind2bf6be2009-06-16 15:31:39 -07001965 * get_user_pages() - pin user pages in memory
Stephen Wilsone7f22e22011-03-13 15:49:18 -04001966 * @tsk: the task_struct to use for page fault accounting, or
1967 * NULL if faults are not to be recorded.
Nick Piggind2bf6be2009-06-16 15:31:39 -07001968 * @mm: mm_struct of target mm
1969 * @start: starting user address
Peter Zijlstra9d737772009-06-25 11:58:55 +02001970 * @nr_pages: number of pages from start to pin
Nick Piggind2bf6be2009-06-16 15:31:39 -07001971 * @write: whether pages will be written to by the caller
1972 * @force: whether to force write access even if user mapping is
1973 * readonly. This will result in the page being COWed even
1974 * in MAP_SHARED mappings. You do not want this.
1975 * @pages: array that receives pointers to the pages pinned.
1976 * Should be at least nr_pages long. Or NULL, if caller
1977 * only intends to ensure the pages are faulted in.
1978 * @vmas: array of pointers to vmas corresponding to each page.
1979 * Or NULL if the caller does not require them.
1980 *
1981 * Returns number of pages pinned. This may be fewer than the number
Peter Zijlstra9d737772009-06-25 11:58:55 +02001982 * requested. If nr_pages is 0 or negative, returns 0. If no pages
Nick Piggind2bf6be2009-06-16 15:31:39 -07001983 * were pinned, returns -errno. Each page returned must be released
1984 * with a put_page() call when it is finished with. vmas will only
1985 * remain valid while mmap_sem is held.
1986 *
1987 * Must be called with mmap_sem held for read or write.
1988 *
1989 * get_user_pages walks a process's page tables and takes a reference to
1990 * each struct page that each user address corresponds to at a given
1991 * instant. That is, it takes the page that would be accessed if a user
1992 * thread accesses the given user virtual address at that instant.
1993 *
1994 * This does not guarantee that the page exists in the user mappings when
1995 * get_user_pages returns, and there may even be a completely different
1996 * page there in some cases (eg. if mmapped pagecache has been invalidated
1997 * and subsequently re faulted). However it does guarantee that the page
1998 * won't be freed completely. And mostly callers simply care that the page
1999 * contains data that was valid *at some point in time*. Typically, an IO
2000 * or similar operation cannot guarantee anything stronger anyway because
2001 * locks can't be held over the syscall boundary.
2002 *
2003 * If write=0, the page must not be written to. If the page is written to,
2004 * set_page_dirty (or set_page_dirty_lock, as appropriate) must be called
2005 * after the page is finished with, and before put_page is called.
2006 *
2007 * get_user_pages is typically used for fewer-copy IO operations, to get a
2008 * handle on the memory by some means other than accesses via the user virtual
2009 * addresses. The pages may be submitted for DMA to devices or accessed via
2010 * their kernel linear mapping (via the kmap APIs). Care should be taken to
2011 * use the correct cache flushing APIs.
2012 *
2013 * See also get_user_pages_fast, for performance critical applications.
2014 */
Michel Lespinasse28a35712013-02-22 16:35:55 -08002015long get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
2016 unsigned long start, unsigned long nr_pages, int write,
2017 int force, struct page **pages, struct vm_area_struct **vmas)
Nick Pigginb291f002008-10-18 20:26:44 -07002018{
Hugh Dickins58fa8792009-09-21 17:03:31 -07002019 int flags = FOLL_TOUCH;
Nick Pigginb291f002008-10-18 20:26:44 -07002020
Hugh Dickins58fa8792009-09-21 17:03:31 -07002021 if (pages)
2022 flags |= FOLL_GET;
Nick Pigginb291f002008-10-18 20:26:44 -07002023 if (write)
Hugh Dickins58fa8792009-09-21 17:03:31 -07002024 flags |= FOLL_WRITE;
Nick Pigginb291f002008-10-18 20:26:44 -07002025 if (force)
Hugh Dickins58fa8792009-09-21 17:03:31 -07002026 flags |= FOLL_FORCE;
Nick Pigginb291f002008-10-18 20:26:44 -07002027
Michel Lespinasse53a77062011-01-13 15:46:14 -08002028 return __get_user_pages(tsk, mm, start, nr_pages, flags, pages, vmas,
2029 NULL);
Nick Pigginb291f002008-10-18 20:26:44 -07002030}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031EXPORT_SYMBOL(get_user_pages);
2032
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002033/**
2034 * get_dump_page() - pin user page in memory while writing it to core dump
2035 * @addr: user address
2036 *
2037 * Returns struct page pointer of user page pinned for dump,
2038 * to be freed afterwards by page_cache_release() or put_page().
2039 *
2040 * Returns NULL on any kind of failure - a hole must then be inserted into
2041 * the corefile, to preserve alignment with its headers; and also returns
2042 * NULL wherever the ZERO_PAGE, or an anonymous pte_none, has been found -
2043 * allowing a hole to be left in the corefile to save diskspace.
2044 *
2045 * Called without mmap_sem, but after all other threads have been killed.
2046 */
2047#ifdef CONFIG_ELF_CORE
2048struct page *get_dump_page(unsigned long addr)
2049{
2050 struct vm_area_struct *vma;
2051 struct page *page;
2052
2053 if (__get_user_pages(current, current->mm, addr, 1,
Michel Lespinasse53a77062011-01-13 15:46:14 -08002054 FOLL_FORCE | FOLL_DUMP | FOLL_GET, &page, &vma,
2055 NULL) < 1)
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002056 return NULL;
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002057 flush_cache_page(vma, addr, page_to_pfn(page));
2058 return page;
2059}
2060#endif /* CONFIG_ELF_CORE */
2061
Namhyung Kim25ca1d62010-10-26 14:21:59 -07002062pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
Harvey Harrison920c7a52008-02-04 22:29:26 -08002063 spinlock_t **ptl)
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08002064{
2065 pgd_t * pgd = pgd_offset(mm, addr);
2066 pud_t * pud = pud_alloc(mm, pgd, addr);
2067 if (pud) {
Trond Myklebust49c91fb2005-11-29 19:27:22 -05002068 pmd_t * pmd = pmd_alloc(mm, pud, addr);
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08002069 if (pmd) {
2070 VM_BUG_ON(pmd_trans_huge(*pmd));
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08002071 return pte_alloc_map_lock(mm, pmd, addr, ptl);
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08002072 }
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08002073 }
2074 return NULL;
2075}
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077/*
Linus Torvalds238f58d2005-11-29 13:01:56 -08002078 * This is the old fallback for page remapping.
2079 *
2080 * For historical reasons, it only allows reserved pages. Only
2081 * old drivers should use this, and they needed to mark their
2082 * pages reserved for the old functions anyway.
2083 */
Nick Piggin423bad602008-04-28 02:13:01 -07002084static int insert_page(struct vm_area_struct *vma, unsigned long addr,
2085 struct page *page, pgprot_t prot)
Linus Torvalds238f58d2005-11-29 13:01:56 -08002086{
Nick Piggin423bad602008-04-28 02:13:01 -07002087 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds238f58d2005-11-29 13:01:56 -08002088 int retval;
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08002089 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002090 spinlock_t *ptl;
2091
Linus Torvalds238f58d2005-11-29 13:01:56 -08002092 retval = -EINVAL;
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002093 if (PageAnon(page))
KAMEZAWA Hiroyuki5b4e6552008-10-18 20:28:10 -07002094 goto out;
Linus Torvalds238f58d2005-11-29 13:01:56 -08002095 retval = -ENOMEM;
2096 flush_dcache_page(page);
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08002097 pte = get_locked_pte(mm, addr, &ptl);
Linus Torvalds238f58d2005-11-29 13:01:56 -08002098 if (!pte)
KAMEZAWA Hiroyuki5b4e6552008-10-18 20:28:10 -07002099 goto out;
Linus Torvalds238f58d2005-11-29 13:01:56 -08002100 retval = -EBUSY;
2101 if (!pte_none(*pte))
2102 goto out_unlock;
2103
2104 /* Ok, finally just insert the thing.. */
2105 get_page(page);
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002106 inc_mm_counter_fast(mm, MM_FILEPAGES);
Linus Torvalds238f58d2005-11-29 13:01:56 -08002107 page_add_file_rmap(page);
2108 set_pte_at(mm, addr, pte, mk_pte(page, prot));
2109
2110 retval = 0;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002111 pte_unmap_unlock(pte, ptl);
2112 return retval;
Linus Torvalds238f58d2005-11-29 13:01:56 -08002113out_unlock:
2114 pte_unmap_unlock(pte, ptl);
2115out:
2116 return retval;
2117}
2118
Rolf Eike Beerbfa5bf62006-09-25 23:31:22 -07002119/**
2120 * vm_insert_page - insert single page into user vma
2121 * @vma: user vma to map to
2122 * @addr: target user address of this page
2123 * @page: source kernel page
2124 *
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002125 * This allows drivers to insert individual pages they've allocated
2126 * into a user vma.
2127 *
2128 * The page has to be a nice clean _individual_ kernel allocation.
2129 * If you allocate a compound page, you need to have marked it as
2130 * such (__GFP_COMP), or manually just split the page up yourself
Nick Piggin8dfcc9b2006-03-22 00:08:05 -08002131 * (see split_page()).
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002132 *
2133 * NOTE! Traditionally this was done with "remap_pfn_range()" which
2134 * took an arbitrary page protection parameter. This doesn't allow
2135 * that. Your vma protection will have to be set up correctly, which
2136 * means that if you want a shared writable mapping, you'd better
2137 * ask for a shared writable mapping!
2138 *
2139 * The page does not need to be reserved.
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07002140 *
2141 * Usually this function is called from f_op->mmap() handler
2142 * under mm->mmap_sem write-lock, so it can change vma->vm_flags.
2143 * Caller must set VM_MIXEDMAP on vma if it wants to call this
2144 * function from other places, for example from page-fault handler.
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002145 */
Nick Piggin423bad602008-04-28 02:13:01 -07002146int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
2147 struct page *page)
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002148{
2149 if (addr < vma->vm_start || addr >= vma->vm_end)
2150 return -EFAULT;
2151 if (!page_count(page))
2152 return -EINVAL;
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07002153 if (!(vma->vm_flags & VM_MIXEDMAP)) {
2154 BUG_ON(down_read_trylock(&vma->vm_mm->mmap_sem));
2155 BUG_ON(vma->vm_flags & VM_PFNMAP);
2156 vma->vm_flags |= VM_MIXEDMAP;
2157 }
Nick Piggin423bad602008-04-28 02:13:01 -07002158 return insert_page(vma, addr, page, vma->vm_page_prot);
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002159}
Linus Torvaldse3c33742005-12-03 20:48:11 -08002160EXPORT_SYMBOL(vm_insert_page);
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002161
Nick Piggin423bad602008-04-28 02:13:01 -07002162static int insert_pfn(struct vm_area_struct *vma, unsigned long addr,
2163 unsigned long pfn, pgprot_t prot)
2164{
2165 struct mm_struct *mm = vma->vm_mm;
2166 int retval;
2167 pte_t *pte, entry;
2168 spinlock_t *ptl;
2169
2170 retval = -ENOMEM;
2171 pte = get_locked_pte(mm, addr, &ptl);
2172 if (!pte)
2173 goto out;
2174 retval = -EBUSY;
2175 if (!pte_none(*pte))
2176 goto out_unlock;
2177
2178 /* Ok, finally just insert the thing.. */
2179 entry = pte_mkspecial(pfn_pte(pfn, prot));
2180 set_pte_at(mm, addr, pte, entry);
Russell King4b3073e2009-12-18 16:40:18 +00002181 update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
Nick Piggin423bad602008-04-28 02:13:01 -07002182
2183 retval = 0;
2184out_unlock:
2185 pte_unmap_unlock(pte, ptl);
2186out:
2187 return retval;
2188}
2189
Nick Piggine0dc0d82007-02-12 00:51:36 -08002190/**
2191 * vm_insert_pfn - insert single pfn into user vma
2192 * @vma: user vma to map to
2193 * @addr: target user address of this page
2194 * @pfn: source kernel pfn
2195 *
Robert P. J. Dayc462f172012-10-08 16:33:43 -07002196 * Similar to vm_insert_page, this allows drivers to insert individual pages
Nick Piggine0dc0d82007-02-12 00:51:36 -08002197 * they've allocated into a user vma. Same comments apply.
2198 *
2199 * This function should only be called from a vm_ops->fault handler, and
2200 * in that case the handler should return NULL.
Nick Piggin0d71d10a2008-07-23 21:27:05 -07002201 *
2202 * vma cannot be a COW mapping.
2203 *
2204 * As this is called only for pages that do not currently exist, we
2205 * do not need to flush old virtual caches or the TLB.
Nick Piggine0dc0d82007-02-12 00:51:36 -08002206 */
2207int vm_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
Nick Piggin423bad602008-04-28 02:13:01 -07002208 unsigned long pfn)
Nick Piggine0dc0d82007-02-12 00:51:36 -08002209{
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08002210 int ret;
venkatesh.pallipadi@intel.come4b866e2009-01-09 16:13:11 -08002211 pgprot_t pgprot = vma->vm_page_prot;
Nick Piggin7e675132008-04-28 02:13:00 -07002212 /*
2213 * Technically, architectures with pte_special can avoid all these
2214 * restrictions (same for remap_pfn_range). However we would like
2215 * consistency in testing and feature parity among all, so we should
2216 * try to keep these invariants in place for everybody.
2217 */
Jared Hulbertb379d792008-04-28 02:12:58 -07002218 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
2219 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
2220 (VM_PFNMAP|VM_MIXEDMAP));
2221 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
2222 BUG_ON((vma->vm_flags & VM_MIXEDMAP) && pfn_valid(pfn));
Nick Piggine0dc0d82007-02-12 00:51:36 -08002223
Nick Piggin423bad602008-04-28 02:13:01 -07002224 if (addr < vma->vm_start || addr >= vma->vm_end)
2225 return -EFAULT;
Suresh Siddha5180da42012-10-08 16:28:29 -07002226 if (track_pfn_insert(vma, &pgprot, pfn))
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08002227 return -EINVAL;
2228
venkatesh.pallipadi@intel.come4b866e2009-01-09 16:13:11 -08002229 ret = insert_pfn(vma, addr, pfn, pgprot);
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08002230
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08002231 return ret;
Nick Piggine0dc0d82007-02-12 00:51:36 -08002232}
2233EXPORT_SYMBOL(vm_insert_pfn);
2234
Nick Piggin423bad602008-04-28 02:13:01 -07002235int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
2236 unsigned long pfn)
2237{
2238 BUG_ON(!(vma->vm_flags & VM_MIXEDMAP));
2239
2240 if (addr < vma->vm_start || addr >= vma->vm_end)
2241 return -EFAULT;
2242
2243 /*
2244 * If we don't have pte special, then we have to use the pfn_valid()
2245 * based VM_MIXEDMAP scheme (see vm_normal_page), and thus we *must*
2246 * refcount the page if pfn_valid is true (hence insert_page rather
Hugh Dickins62eede62009-09-21 17:03:34 -07002247 * than insert_pfn). If a zero_pfn were inserted into a VM_MIXEDMAP
2248 * without pte special, it would there be refcounted as a normal page.
Nick Piggin423bad602008-04-28 02:13:01 -07002249 */
2250 if (!HAVE_PTE_SPECIAL && pfn_valid(pfn)) {
2251 struct page *page;
2252
2253 page = pfn_to_page(pfn);
2254 return insert_page(vma, addr, page, vma->vm_page_prot);
2255 }
2256 return insert_pfn(vma, addr, pfn, vma->vm_page_prot);
2257}
2258EXPORT_SYMBOL(vm_insert_mixed);
2259
Linus Torvaldsa145dd42005-11-30 09:35:19 -08002260/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 * maps a range of physical memory into the requested pages. the old
2262 * mappings are removed. any references to nonexistent pages results
2263 * in null mappings (currently treated as "copy-on-access")
2264 */
2265static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
2266 unsigned long addr, unsigned long end,
2267 unsigned long pfn, pgprot_t prot)
2268{
2269 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -07002270 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Hugh Dickinsc74df322005-10-29 18:16:23 -07002272 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (!pte)
2274 return -ENOMEM;
Zachary Amsden6606c3e2006-09-30 23:29:33 -07002275 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 do {
2277 BUG_ON(!pte_none(*pte));
Nick Piggin7e675132008-04-28 02:13:00 -07002278 set_pte_at(mm, addr, pte, pte_mkspecial(pfn_pte(pfn, prot)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 pfn++;
2280 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -07002281 arch_leave_lazy_mmu_mode();
Hugh Dickinsc74df322005-10-29 18:16:23 -07002282 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return 0;
2284}
2285
2286static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
2287 unsigned long addr, unsigned long end,
2288 unsigned long pfn, pgprot_t prot)
2289{
2290 pmd_t *pmd;
2291 unsigned long next;
2292
2293 pfn -= addr >> PAGE_SHIFT;
2294 pmd = pmd_alloc(mm, pud, addr);
2295 if (!pmd)
2296 return -ENOMEM;
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08002297 VM_BUG_ON(pmd_trans_huge(*pmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 do {
2299 next = pmd_addr_end(addr, end);
2300 if (remap_pte_range(mm, pmd, addr, next,
2301 pfn + (addr >> PAGE_SHIFT), prot))
2302 return -ENOMEM;
2303 } while (pmd++, addr = next, addr != end);
2304 return 0;
2305}
2306
2307static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
2308 unsigned long addr, unsigned long end,
2309 unsigned long pfn, pgprot_t prot)
2310{
2311 pud_t *pud;
2312 unsigned long next;
2313
2314 pfn -= addr >> PAGE_SHIFT;
2315 pud = pud_alloc(mm, pgd, addr);
2316 if (!pud)
2317 return -ENOMEM;
2318 do {
2319 next = pud_addr_end(addr, end);
2320 if (remap_pmd_range(mm, pud, addr, next,
2321 pfn + (addr >> PAGE_SHIFT), prot))
2322 return -ENOMEM;
2323 } while (pud++, addr = next, addr != end);
2324 return 0;
2325}
2326
Rolf Eike Beerbfa5bf62006-09-25 23:31:22 -07002327/**
2328 * remap_pfn_range - remap kernel memory to userspace
2329 * @vma: user vma to map to
2330 * @addr: target user address to start at
2331 * @pfn: physical address of kernel memory
2332 * @size: size of map area
2333 * @prot: page protection flags for this mapping
2334 *
2335 * Note: this is only safe if the mm semaphore is held when called.
2336 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
2338 unsigned long pfn, unsigned long size, pgprot_t prot)
2339{
2340 pgd_t *pgd;
2341 unsigned long next;
Hugh Dickins2d15cab2005-06-25 14:54:33 -07002342 unsigned long end = addr + PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 struct mm_struct *mm = vma->vm_mm;
2344 int err;
2345
2346 /*
2347 * Physically remapped pages are special. Tell the
2348 * rest of the world about it:
2349 * VM_IO tells people not to look at these pages
2350 * (accesses can have side effects).
Linus Torvalds6aab3412005-11-28 14:34:23 -08002351 * VM_PFNMAP tells the core MM that the base pages are just
2352 * raw PFN mappings, and do not have a "struct page" associated
2353 * with them.
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07002354 * VM_DONTEXPAND
2355 * Disable vma merging and expanding with mremap().
2356 * VM_DONTDUMP
2357 * Omit vma from core dump, even when VM_IO turned off.
Linus Torvaldsfb155c12005-12-11 19:46:02 -08002358 *
2359 * There's a horrible special case to handle copy-on-write
2360 * behaviour that some programs depend on. We mark the "original"
2361 * un-COW'ed pages by matching them up with "vma->vm_pgoff".
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07002362 * See vm_normal_page() for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 */
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07002364 if (is_cow_mapping(vma->vm_flags)) {
2365 if (addr != vma->vm_start || end != vma->vm_end)
2366 return -EINVAL;
Linus Torvaldsfb155c12005-12-11 19:46:02 -08002367 vma->vm_pgoff = pfn;
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07002368 }
2369
2370 err = track_pfn_remap(vma, &prot, pfn, addr, PAGE_ALIGN(size));
2371 if (err)
venkatesh.pallipadi@intel.com3c8bb732008-12-18 11:41:27 -08002372 return -EINVAL;
Linus Torvaldsfb155c12005-12-11 19:46:02 -08002373
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07002374 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376 BUG_ON(addr >= end);
2377 pfn -= addr >> PAGE_SHIFT;
2378 pgd = pgd_offset(mm, addr);
2379 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 do {
2381 next = pgd_addr_end(addr, end);
2382 err = remap_pud_range(mm, pgd, addr, next,
2383 pfn + (addr >> PAGE_SHIFT), prot);
2384 if (err)
2385 break;
2386 } while (pgd++, addr = next, addr != end);
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08002387
2388 if (err)
Suresh Siddha5180da42012-10-08 16:28:29 -07002389 untrack_pfn(vma, pfn, PAGE_ALIGN(size));
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 return err;
2392}
2393EXPORT_SYMBOL(remap_pfn_range);
2394
Linus Torvaldsb4cbb192013-04-16 13:45:37 -07002395/**
2396 * vm_iomap_memory - remap memory to userspace
2397 * @vma: user vma to map to
2398 * @start: start of area
2399 * @len: size of area
2400 *
2401 * This is a simplified io_remap_pfn_range() for common driver use. The
2402 * driver just needs to give us the physical memory range to be mapped,
2403 * we'll figure out the rest from the vma information.
2404 *
2405 * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get
2406 * whatever write-combining details or similar.
2407 */
2408int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
2409{
2410 unsigned long vm_len, pfn, pages;
2411
2412 /* Check that the physical memory area passed in looks valid */
2413 if (start + len < start)
2414 return -EINVAL;
2415 /*
2416 * You *really* shouldn't map things that aren't page-aligned,
2417 * but we've historically allowed it because IO memory might
2418 * just have smaller alignment.
2419 */
2420 len += start & ~PAGE_MASK;
2421 pfn = start >> PAGE_SHIFT;
2422 pages = (len + ~PAGE_MASK) >> PAGE_SHIFT;
2423 if (pfn + pages < pfn)
2424 return -EINVAL;
2425
2426 /* We start the mapping 'vm_pgoff' pages into the area */
2427 if (vma->vm_pgoff > pages)
2428 return -EINVAL;
2429 pfn += vma->vm_pgoff;
2430 pages -= vma->vm_pgoff;
2431
2432 /* Can we fit all of the mapping? */
2433 vm_len = vma->vm_end - vma->vm_start;
2434 if (vm_len >> PAGE_SHIFT > pages)
2435 return -EINVAL;
2436
2437 /* Ok, let it rip */
2438 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
2439}
2440EXPORT_SYMBOL(vm_iomap_memory);
2441
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002442static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd,
2443 unsigned long addr, unsigned long end,
2444 pte_fn_t fn, void *data)
2445{
2446 pte_t *pte;
2447 int err;
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08002448 pgtable_t token;
Borislav Petkov94909912007-05-06 14:49:17 -07002449 spinlock_t *uninitialized_var(ptl);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002450
2451 pte = (mm == &init_mm) ?
2452 pte_alloc_kernel(pmd, addr) :
2453 pte_alloc_map_lock(mm, pmd, addr, &ptl);
2454 if (!pte)
2455 return -ENOMEM;
2456
2457 BUG_ON(pmd_huge(*pmd));
2458
Jeremy Fitzhardinge38e0edb2009-01-06 14:39:21 -08002459 arch_enter_lazy_mmu_mode();
2460
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08002461 token = pmd_pgtable(*pmd);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002462
2463 do {
Daisuke Nishimurac36987e2009-10-26 16:50:23 -07002464 err = fn(pte++, token, addr, data);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002465 if (err)
2466 break;
Daisuke Nishimurac36987e2009-10-26 16:50:23 -07002467 } while (addr += PAGE_SIZE, addr != end);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002468
Jeremy Fitzhardinge38e0edb2009-01-06 14:39:21 -08002469 arch_leave_lazy_mmu_mode();
2470
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002471 if (mm != &init_mm)
2472 pte_unmap_unlock(pte-1, ptl);
2473 return err;
2474}
2475
2476static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
2477 unsigned long addr, unsigned long end,
2478 pte_fn_t fn, void *data)
2479{
2480 pmd_t *pmd;
2481 unsigned long next;
2482 int err;
2483
Andi Kleenceb86872008-07-23 21:27:50 -07002484 BUG_ON(pud_huge(*pud));
2485
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002486 pmd = pmd_alloc(mm, pud, addr);
2487 if (!pmd)
2488 return -ENOMEM;
2489 do {
2490 next = pmd_addr_end(addr, end);
2491 err = apply_to_pte_range(mm, pmd, addr, next, fn, data);
2492 if (err)
2493 break;
2494 } while (pmd++, addr = next, addr != end);
2495 return err;
2496}
2497
2498static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
2499 unsigned long addr, unsigned long end,
2500 pte_fn_t fn, void *data)
2501{
2502 pud_t *pud;
2503 unsigned long next;
2504 int err;
2505
2506 pud = pud_alloc(mm, pgd, addr);
2507 if (!pud)
2508 return -ENOMEM;
2509 do {
2510 next = pud_addr_end(addr, end);
2511 err = apply_to_pmd_range(mm, pud, addr, next, fn, data);
2512 if (err)
2513 break;
2514 } while (pud++, addr = next, addr != end);
2515 return err;
2516}
2517
2518/*
2519 * Scan a region of virtual memory, filling in page tables as necessary
2520 * and calling a provided function on each leaf page table.
2521 */
2522int apply_to_page_range(struct mm_struct *mm, unsigned long addr,
2523 unsigned long size, pte_fn_t fn, void *data)
2524{
2525 pgd_t *pgd;
2526 unsigned long next;
Jeremy Fitzhardinge57250a52010-08-09 17:19:52 -07002527 unsigned long end = addr + size;
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002528 int err;
2529
2530 BUG_ON(addr >= end);
2531 pgd = pgd_offset(mm, addr);
2532 do {
2533 next = pgd_addr_end(addr, end);
2534 err = apply_to_pud_range(mm, pgd, addr, next, fn, data);
2535 if (err)
2536 break;
2537 } while (pgd++, addr = next, addr != end);
Jeremy Fitzhardinge57250a52010-08-09 17:19:52 -07002538
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07002539 return err;
2540}
2541EXPORT_SYMBOL_GPL(apply_to_page_range);
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002544 * handle_pte_fault chooses page fault handler according to an entry
2545 * which was read non-atomically. Before making any commitment, on
2546 * those architectures or configurations (e.g. i386 with PAE) which
Ryota Ozakia335b2e2011-02-10 13:56:28 +09002547 * might give a mix of unmatched parts, do_swap_page and do_nonlinear_fault
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002548 * must check under lock before unmapping the pte and proceeding
2549 * (but do_wp_page is only called after already making such a check;
Ryota Ozakia335b2e2011-02-10 13:56:28 +09002550 * and do_anonymous_page can safely check later on).
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002551 */
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002552static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002553 pte_t *page_table, pte_t orig_pte)
2554{
2555 int same = 1;
2556#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
2557 if (sizeof(pte_t) > sizeof(unsigned long)) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002558 spinlock_t *ptl = pte_lockptr(mm, pmd);
2559 spin_lock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002560 same = pte_same(*page_table, orig_pte);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002561 spin_unlock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002562 }
2563#endif
2564 pte_unmap(page_table);
2565 return same;
2566}
2567
Atsushi Nemoto9de455b2006-12-12 17:14:55 +00002568static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va, struct vm_area_struct *vma)
Linus Torvalds6aab3412005-11-28 14:34:23 -08002569{
Dan Williams0abdd7a2014-01-21 15:48:12 -08002570 debug_dma_assert_idle(src);
2571
Linus Torvalds6aab3412005-11-28 14:34:23 -08002572 /*
2573 * If the source page was a PFN mapping, we don't have
2574 * a "struct page" for it. We do a best-effort copy by
2575 * just copying from the original user address. If that
2576 * fails, we just zero-fill it. Live with it.
2577 */
2578 if (unlikely(!src)) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08002579 void *kaddr = kmap_atomic(dst);
Linus Torvalds5d2a2dbbc2005-11-29 14:07:55 -08002580 void __user *uaddr = (void __user *)(va & PAGE_MASK);
2581
2582 /*
2583 * This really shouldn't fail, because the page is there
2584 * in the page tables. But it might just be unreadable,
2585 * in which case we just give up and fill the result with
2586 * zeroes.
2587 */
2588 if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE))
Jan Beulich3ecb01d2010-10-26 14:22:27 -07002589 clear_page(kaddr);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002590 kunmap_atomic(kaddr);
Dmitriy Monakhovc4ec7b02006-10-19 23:29:08 -07002591 flush_dcache_page(dst);
Nick Piggin0ed361d2008-02-04 22:29:34 -08002592 } else
2593 copy_user_highpage(dst, src, va, vma);
Linus Torvalds6aab3412005-11-28 14:34:23 -08002594}
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 * This routine handles present pages, when users try to write
2598 * to a shared page. It is done by copying the page to a new address
2599 * and decrementing the shared-page counter for the old page.
2600 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 * Note that this routine assumes that the protection checks have been
2602 * done by the caller (the low-level page fault routine in most cases).
2603 * Thus we can safely just mark it writable once we've done any necessary
2604 * COW.
2605 *
2606 * We also mark the page dirty at this point even though the page will
2607 * change only once the write actually happens. This avoids a few races,
2608 * and potentially makes it more efficient.
2609 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002610 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2611 * but allow concurrent faults), with pte both mapped and locked.
2612 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002614static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
2615 unsigned long address, pte_t *page_table, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002616 spinlock_t *ptl, pte_t orig_pte)
Namhyung Kime6219ec2010-10-26 14:22:00 -07002617 __releases(ptl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002619 struct page *old_page, *new_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 pte_t entry;
Michel Lespinasseb009c022011-01-13 15:46:07 -08002621 int ret = 0;
Peter Zijlstraa200ee12007-10-08 18:54:37 +02002622 int page_mkwrite = 0;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002623 struct page *dirty_page = NULL;
David Rientjes17569542012-11-16 14:14:48 -08002624 unsigned long mmun_start = 0; /* For mmu_notifiers */
2625 unsigned long mmun_end = 0; /* For mmu_notifiers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Linus Torvalds6aab3412005-11-28 14:34:23 -08002627 old_page = vm_normal_page(vma, address, orig_pte);
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002628 if (!old_page) {
2629 /*
2630 * VM_MIXEDMAP !pfn_valid() case
2631 *
2632 * We should not cow pages in a shared writeable mapping.
2633 * Just mark the pages writable as we can't do any dirty
2634 * accounting on raw pfn maps.
2635 */
2636 if ((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
2637 (VM_WRITE|VM_SHARED))
2638 goto reuse;
Linus Torvalds6aab3412005-11-28 14:34:23 -08002639 goto gotten;
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002642 /*
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002643 * Take out anonymous pages first, anonymous shared vmas are
2644 * not dirty accountable.
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002645 */
Hugh Dickins9a840892009-09-21 17:02:01 -07002646 if (PageAnon(old_page) && !PageKsm(old_page)) {
Hugh Dickinsab967d82009-01-06 14:39:33 -08002647 if (!trylock_page(old_page)) {
2648 page_cache_get(old_page);
2649 pte_unmap_unlock(page_table, ptl);
2650 lock_page(old_page);
2651 page_table = pte_offset_map_lock(mm, pmd, address,
2652 &ptl);
2653 if (!pte_same(*page_table, orig_pte)) {
2654 unlock_page(old_page);
Hugh Dickinsab967d82009-01-06 14:39:33 -08002655 goto unlock;
2656 }
2657 page_cache_release(old_page);
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002658 }
Michel Lespinasseb009c022011-01-13 15:46:07 -08002659 if (reuse_swap_page(old_page)) {
Rik van Rielc44b6742010-03-05 13:42:09 -08002660 /*
2661 * The page is all ours. Move it to our anon_vma so
2662 * the rmap code will not search our parent or siblings.
2663 * Protected against the rmap code by the page lock.
2664 */
2665 page_move_anon_rmap(old_page, vma, address);
Michel Lespinasseb009c022011-01-13 15:46:07 -08002666 unlock_page(old_page);
2667 goto reuse;
2668 }
Hugh Dickinsab967d82009-01-06 14:39:33 -08002669 unlock_page(old_page);
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002670 } else if (unlikely((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002671 (VM_WRITE|VM_SHARED))) {
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002672 /*
2673 * Only catch write-faults on shared writable pages,
2674 * read-only shared pages can get COWed by
2675 * get_user_pages(.write=1, .force=1).
2676 */
David Howells9637a5e2006-06-23 02:03:43 -07002677 if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07002678 struct vm_fault vmf;
2679 int tmp;
2680
2681 vmf.virtual_address = (void __user *)(address &
2682 PAGE_MASK);
2683 vmf.pgoff = old_page->index;
2684 vmf.flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE;
2685 vmf.page = old_page;
2686
David Howells9637a5e2006-06-23 02:03:43 -07002687 /*
2688 * Notify the address space that the page is about to
2689 * become writable so that it can prohibit this or wait
2690 * for the page to get into an appropriate state.
2691 *
2692 * We do this without the lock held, so that it can
2693 * sleep if it needs to.
2694 */
2695 page_cache_get(old_page);
2696 pte_unmap_unlock(page_table, ptl);
2697
Nick Pigginc2ec1752009-03-31 15:23:21 -07002698 tmp = vma->vm_ops->page_mkwrite(vma, &vmf);
2699 if (unlikely(tmp &
2700 (VM_FAULT_ERROR | VM_FAULT_NOPAGE))) {
2701 ret = tmp;
David Howells9637a5e2006-06-23 02:03:43 -07002702 goto unwritable_page;
Nick Pigginc2ec1752009-03-31 15:23:21 -07002703 }
Nick Pigginb827e492009-04-30 15:08:16 -07002704 if (unlikely(!(tmp & VM_FAULT_LOCKED))) {
2705 lock_page(old_page);
2706 if (!old_page->mapping) {
2707 ret = 0; /* retry the fault */
2708 unlock_page(old_page);
2709 goto unwritable_page;
2710 }
2711 } else
Sasha Levin309381fea2014-01-23 15:52:54 -08002712 VM_BUG_ON_PAGE(!PageLocked(old_page), old_page);
David Howells9637a5e2006-06-23 02:03:43 -07002713
David Howells9637a5e2006-06-23 02:03:43 -07002714 /*
2715 * Since we dropped the lock we need to revalidate
2716 * the PTE as someone else may have changed it. If
2717 * they did, we just return, as we can count on the
2718 * MMU to tell us if they didn't also make it writable.
2719 */
2720 page_table = pte_offset_map_lock(mm, pmd, address,
2721 &ptl);
Nick Pigginb827e492009-04-30 15:08:16 -07002722 if (!pte_same(*page_table, orig_pte)) {
2723 unlock_page(old_page);
David Howells9637a5e2006-06-23 02:03:43 -07002724 goto unlock;
Nick Pigginb827e492009-04-30 15:08:16 -07002725 }
Peter Zijlstraa200ee12007-10-08 18:54:37 +02002726
2727 page_mkwrite = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002729 dirty_page = old_page;
2730 get_page(dirty_page);
David Howells9637a5e2006-06-23 02:03:43 -07002731
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002732reuse:
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002733 /*
2734 * Clear the pages cpupid information as the existing
2735 * information potentially belongs to a now completely
2736 * unrelated process.
2737 */
2738 if (old_page)
2739 page_cpupid_xchg_last(old_page, (1 << LAST_CPUPID_SHIFT) - 1);
2740
David Howells9637a5e2006-06-23 02:03:43 -07002741 flush_cache_page(vma, address, pte_pfn(orig_pte));
2742 entry = pte_mkyoung(orig_pte);
2743 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
KAMEZAWA Hiroyuki954ffcb2007-10-16 01:25:44 -07002744 if (ptep_set_access_flags(vma, address, page_table, entry,1))
Russell King4b3073e2009-12-18 16:40:18 +00002745 update_mmu_cache(vma, address, page_table);
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002746 pte_unmap_unlock(page_table, ptl);
David Howells9637a5e2006-06-23 02:03:43 -07002747 ret |= VM_FAULT_WRITE;
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002748
2749 if (!dirty_page)
2750 return ret;
2751
2752 /*
2753 * Yes, Virginia, this is actually required to prevent a race
2754 * with clear_page_dirty_for_io() from clearing the page dirty
2755 * bit after it clear all dirty ptes, but before a racing
2756 * do_wp_page installs a dirty pte.
2757 *
Ryota Ozakia335b2e2011-02-10 13:56:28 +09002758 * __do_fault is protected similarly.
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002759 */
2760 if (!page_mkwrite) {
2761 wait_on_page_locked(dirty_page);
2762 set_page_dirty_balance(dirty_page, page_mkwrite);
Jan Kara41c4d252012-06-12 16:20:28 +02002763 /* file_update_time outside page_lock */
2764 if (vma->vm_file)
2765 file_update_time(vma->vm_file);
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002766 }
2767 put_page(dirty_page);
2768 if (page_mkwrite) {
2769 struct address_space *mapping = dirty_page->mapping;
2770
2771 set_page_dirty(dirty_page);
2772 unlock_page(dirty_page);
2773 page_cache_release(dirty_page);
2774 if (mapping) {
2775 /*
2776 * Some device drivers do not set page.mapping
2777 * but still dirty their pages
2778 */
2779 balance_dirty_pages_ratelimited(mapping);
2780 }
2781 }
2782
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002783 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 /*
2787 * Ok, we need to copy. Oh, well..
2788 */
Nick Pigginb5810032005-10-29 18:16:12 -07002789 page_cache_get(old_page);
Hugh Dickins920fc352005-11-21 21:32:17 -08002790gotten:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002791 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
2793 if (unlikely(anon_vma_prepare(vma)))
Hugh Dickins65500d22005-10-29 18:15:59 -07002794 goto oom;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07002795
Hugh Dickins62eede62009-09-21 17:03:34 -07002796 if (is_zero_pfn(pte_pfn(orig_pte))) {
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07002797 new_page = alloc_zeroed_user_highpage_movable(vma, address);
2798 if (!new_page)
2799 goto oom;
2800 } else {
2801 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
2802 if (!new_page)
2803 goto oom;
2804 cow_user_page(new_page, old_page, address, vma);
2805 }
2806 __SetPageUptodate(new_page);
2807
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08002808 if (mem_cgroup_newpage_charge(new_page, mm, GFP_KERNEL))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002809 goto oom_free_new;
2810
Haggai Eran6bdb9132012-10-08 16:33:35 -07002811 mmun_start = address & PAGE_MASK;
David Rientjes17569542012-11-16 14:14:48 -08002812 mmun_end = mmun_start + PAGE_SIZE;
Haggai Eran6bdb9132012-10-08 16:33:35 -07002813 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 /*
2816 * Re-check the pte - we dropped the lock
2817 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002818 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins65500d22005-10-29 18:15:59 -07002819 if (likely(pte_same(*page_table, orig_pte))) {
Hugh Dickins920fc352005-11-21 21:32:17 -08002820 if (old_page) {
Hugh Dickins920fc352005-11-21 21:32:17 -08002821 if (!PageAnon(old_page)) {
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002822 dec_mm_counter_fast(mm, MM_FILEPAGES);
2823 inc_mm_counter_fast(mm, MM_ANONPAGES);
Hugh Dickins920fc352005-11-21 21:32:17 -08002824 }
2825 } else
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002826 inc_mm_counter_fast(mm, MM_ANONPAGES);
Ben Collinseca35132005-11-29 11:45:26 -08002827 flush_cache_page(vma, address, pte_pfn(orig_pte));
Hugh Dickins65500d22005-10-29 18:15:59 -07002828 entry = mk_pte(new_page, vma->vm_page_prot);
2829 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Siddha, Suresh B4ce072f2006-09-29 01:58:42 -07002830 /*
2831 * Clear the pte entry and flush it first, before updating the
2832 * pte with the new entry. This will avoid a race condition
2833 * seen in the presence of one thread doing SMC and another
2834 * thread doing COW.
2835 */
Izik Eidus828502d2009-09-21 17:01:51 -07002836 ptep_clear_flush(vma, address, page_table);
Nick Piggin9617d952006-01-06 00:11:12 -08002837 page_add_new_anon_rmap(new_page, vma, address);
Izik Eidus828502d2009-09-21 17:01:51 -07002838 /*
2839 * We call the notify macro here because, when using secondary
2840 * mmu page tables (such as kvm shadow page tables), we want the
2841 * new page to be mapped directly into the secondary page table.
2842 */
2843 set_pte_at_notify(mm, address, page_table, entry);
Russell King4b3073e2009-12-18 16:40:18 +00002844 update_mmu_cache(vma, address, page_table);
Nick Piggin945754a2008-06-23 14:30:30 +02002845 if (old_page) {
2846 /*
2847 * Only after switching the pte to the new page may
2848 * we remove the mapcount here. Otherwise another
2849 * process may come and find the rmap count decremented
2850 * before the pte is switched to the new page, and
2851 * "reuse" the old page writing into it while our pte
2852 * here still points into it and can be read by other
2853 * threads.
2854 *
2855 * The critical issue is to order this
2856 * page_remove_rmap with the ptp_clear_flush above.
2857 * Those stores are ordered by (if nothing else,)
2858 * the barrier present in the atomic_add_negative
2859 * in page_remove_rmap.
2860 *
2861 * Then the TLB flush in ptep_clear_flush ensures that
2862 * no process can access the old page before the
2863 * decremented mapcount is visible. And the old page
2864 * cannot be reused until after the decremented
2865 * mapcount is visible. So transitively, TLBs to
2866 * old page will be flushed before it can be reused.
2867 */
Hugh Dickinsedc315f2009-01-06 14:40:11 -08002868 page_remove_rmap(old_page);
Nick Piggin945754a2008-06-23 14:30:30 +02002869 }
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 /* Free the old page.. */
2872 new_page = old_page;
Nick Pigginf33ea7f2005-08-03 20:24:01 +10002873 ret |= VM_FAULT_WRITE;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002874 } else
2875 mem_cgroup_uncharge_page(new_page);
2876
Haggai Eran6bdb9132012-10-08 16:33:35 -07002877 if (new_page)
2878 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002879unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002880 pte_unmap_unlock(page_table, ptl);
David Rientjes17569542012-11-16 14:14:48 -08002881 if (mmun_end > mmun_start)
Haggai Eran6bdb9132012-10-08 16:33:35 -07002882 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Michel Lespinassee15f8c02011-02-10 15:01:32 -08002883 if (old_page) {
2884 /*
2885 * Don't let another task, with possibly unlocked vma,
2886 * keep the mlocked page.
2887 */
2888 if ((ret & VM_FAULT_WRITE) && (vma->vm_flags & VM_LOCKED)) {
2889 lock_page(old_page); /* LRU manipulation */
2890 munlock_vma_page(old_page);
2891 unlock_page(old_page);
2892 }
2893 page_cache_release(old_page);
2894 }
Nick Pigginf33ea7f2005-08-03 20:24:01 +10002895 return ret;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002896oom_free_new:
Hugh Dickins6dbf6d32008-03-04 14:29:04 -08002897 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002898oom:
Dominik Dingel66521d52012-12-12 13:52:37 -08002899 if (old_page)
Hugh Dickins920fc352005-11-21 21:32:17 -08002900 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 return VM_FAULT_OOM;
David Howells9637a5e2006-06-23 02:03:43 -07002902
2903unwritable_page:
2904 page_cache_release(old_page);
Nick Pigginc2ec1752009-03-31 15:23:21 -07002905 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906}
2907
Peter Zijlstra97a89412011-05-24 17:12:04 -07002908static void unmap_mapping_range_vma(struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 unsigned long start_addr, unsigned long end_addr,
2910 struct zap_details *details)
2911{
Al Virof5cc4ee2012-03-05 14:14:20 -05002912 zap_page_range_single(vma, start_addr, end_addr - start_addr, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913}
2914
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002915static inline void unmap_mapping_range_tree(struct rb_root *root,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 struct zap_details *details)
2917{
2918 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 pgoff_t vba, vea, zba, zea;
2920
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002921 vma_interval_tree_foreach(vma, root,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 details->first_index, details->last_index) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924 vba = vma->vm_pgoff;
Libind6e93212013-07-03 15:01:26 -07002925 vea = vba + vma_pages(vma) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
2927 zba = details->first_index;
2928 if (zba < vba)
2929 zba = vba;
2930 zea = details->last_index;
2931 if (zea > vea)
2932 zea = vea;
2933
Peter Zijlstra97a89412011-05-24 17:12:04 -07002934 unmap_mapping_range_vma(vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
2936 ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
Peter Zijlstra97a89412011-05-24 17:12:04 -07002937 details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
2939}
2940
2941static inline void unmap_mapping_range_list(struct list_head *head,
2942 struct zap_details *details)
2943{
2944 struct vm_area_struct *vma;
2945
2946 /*
2947 * In nonlinear VMAs there is no correspondence between virtual address
2948 * offset and file offset. So we must perform an exhaustive search
2949 * across *all* the pages in each nonlinear VMA, not just the pages
2950 * whose virtual address lies outside the file truncation point.
2951 */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002952 list_for_each_entry(vma, head, shared.nonlinear) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 details->nonlinear_vma = vma;
Peter Zijlstra97a89412011-05-24 17:12:04 -07002954 unmap_mapping_range_vma(vma, vma->vm_start, vma->vm_end, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
2956}
2957
2958/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002959 * unmap_mapping_range - unmap the portion of all mmaps in the specified address_space corresponding to the specified page range in the underlying file.
Martin Waitz3d410882005-06-23 22:05:21 -07002960 * @mapping: the address space containing mmaps to be unmapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 * @holebegin: byte in first page to unmap, relative to the start of
2962 * the underlying file. This will be rounded down to a PAGE_SIZE
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +10002963 * boundary. Note that this is different from truncate_pagecache(), which
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 * must keep the partial page. In contrast, we must get rid of
2965 * partial pages.
2966 * @holelen: size of prospective hole in bytes. This will be rounded
2967 * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
2968 * end of the file.
2969 * @even_cows: 1 when truncating a file, unmap even private COWed pages;
2970 * but 0 when invalidating pagecache, don't throw away private data.
2971 */
2972void unmap_mapping_range(struct address_space *mapping,
2973 loff_t const holebegin, loff_t const holelen, int even_cows)
2974{
2975 struct zap_details details;
2976 pgoff_t hba = holebegin >> PAGE_SHIFT;
2977 pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
2978
2979 /* Check for overflow. */
2980 if (sizeof(holelen) > sizeof(hlen)) {
2981 long long holeend =
2982 (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
2983 if (holeend & ~(long long)ULONG_MAX)
2984 hlen = ULONG_MAX - hba + 1;
2985 }
2986
2987 details.check_mapping = even_cows? NULL: mapping;
2988 details.nonlinear_vma = NULL;
2989 details.first_index = hba;
2990 details.last_index = hba + hlen - 1;
2991 if (details.last_index < details.first_index)
2992 details.last_index = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Peter Zijlstra97a89412011-05-24 17:12:04 -07002994
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07002995 mutex_lock(&mapping->i_mmap_mutex);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002996 if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 unmap_mapping_range_tree(&mapping->i_mmap, &details);
2998 if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
2999 unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07003000 mutex_unlock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001}
3002EXPORT_SYMBOL(unmap_mapping_range);
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003005 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3006 * but allow concurrent faults), and pte mapped but not yet locked.
3007 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
Hugh Dickins65500d22005-10-29 18:15:59 -07003009static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
3010 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003011 unsigned int flags, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003013 spinlock_t *ptl;
Hugh Dickins56f31802013-02-22 16:36:10 -08003014 struct page *page, *swapcache;
Hugh Dickins65500d22005-10-29 18:15:59 -07003015 swp_entry_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 pte_t pte;
Michel Lespinassed065bd82010-10-26 14:21:57 -07003017 int locked;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -07003018 struct mem_cgroup *ptr;
Rik van Rielad8c2ee2010-08-09 17:19:48 -07003019 int exclusive = 0;
Nick Piggin83c54072007-07-19 01:47:05 -07003020 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07003022 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003023 goto out;
Hugh Dickins65500d22005-10-29 18:15:59 -07003024
3025 entry = pte_to_swp_entry(orig_pte);
Andi Kleend1737fd2009-09-16 11:50:06 +02003026 if (unlikely(non_swap_entry(entry))) {
3027 if (is_migration_entry(entry)) {
3028 migration_entry_wait(mm, pmd, address);
3029 } else if (is_hwpoison_entry(entry)) {
3030 ret = VM_FAULT_HWPOISON;
3031 } else {
3032 print_bad_pte(vma, address, orig_pte, NULL);
Hugh Dickinsd99be1a2009-12-14 17:59:04 -08003033 ret = VM_FAULT_SIGBUS;
Andi Kleend1737fd2009-09-16 11:50:06 +02003034 }
Christoph Lameter06972122006-06-23 02:03:35 -07003035 goto out;
3036 }
Shailabh Nagar0ff92242006-07-14 00:24:37 -07003037 delayacct_set_flag(DELAYACCT_PF_SWAPIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 page = lookup_swap_cache(entry);
3039 if (!page) {
Hugh Dickins02098fe2008-02-04 22:28:42 -08003040 page = swapin_readahead(entry,
3041 GFP_HIGHUSER_MOVABLE, vma, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (!page) {
3043 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003044 * Back out if somebody else faulted in this pte
3045 * while we released the pte lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003047 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 if (likely(pte_same(*page_table, orig_pte)))
3049 ret = VM_FAULT_OOM;
Shailabh Nagar0ff92242006-07-14 00:24:37 -07003050 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
Hugh Dickins65500d22005-10-29 18:15:59 -07003051 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
3053
3054 /* Had to read the page from swap area: Major fault */
3055 ret = VM_FAULT_MAJOR;
Christoph Lameterf8891e52006-06-30 01:55:45 -07003056 count_vm_event(PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07003057 mem_cgroup_count_vm_event(mm, PGMAJFAULT);
Andi Kleend1737fd2009-09-16 11:50:06 +02003058 } else if (PageHWPoison(page)) {
Wu Fengguang71f72522009-12-16 12:19:58 +01003059 /*
3060 * hwpoisoned dirty swapcache pages are kept for killing
3061 * owner processes (which may be unknown at hwpoison time)
3062 */
Andi Kleend1737fd2009-09-16 11:50:06 +02003063 ret = VM_FAULT_HWPOISON;
3064 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
Hugh Dickins56f31802013-02-22 16:36:10 -08003065 swapcache = page;
Andi Kleen4779cb32009-10-14 01:51:41 +02003066 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 }
3068
Hugh Dickins56f31802013-02-22 16:36:10 -08003069 swapcache = page;
Michel Lespinassed065bd82010-10-26 14:21:57 -07003070 locked = lock_page_or_retry(page, mm, flags);
Rik van Riele709ffd2012-05-29 15:06:18 -07003071
Balbir Singh20a10222007-11-14 17:00:33 -08003072 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
Michel Lespinassed065bd82010-10-26 14:21:57 -07003073 if (!locked) {
3074 ret |= VM_FAULT_RETRY;
3075 goto out_release;
3076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Andrea Arcangeli4969c112010-09-09 16:37:52 -07003078 /*
Hugh Dickins31c4a3d2010-09-19 19:40:22 -07003079 * Make sure try_to_free_swap or reuse_swap_page or swapoff did not
3080 * release the swapcache from under us. The page pin, and pte_same
3081 * test below, are not enough to exclude that. Even if it is still
3082 * swapcache, we need to check that the page's swap has not changed.
Andrea Arcangeli4969c112010-09-09 16:37:52 -07003083 */
Hugh Dickins31c4a3d2010-09-19 19:40:22 -07003084 if (unlikely(!PageSwapCache(page) || page_private(page) != entry.val))
Andrea Arcangeli4969c112010-09-09 16:37:52 -07003085 goto out_page;
3086
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08003087 page = ksm_might_need_to_copy(page, vma, address);
3088 if (unlikely(!page)) {
3089 ret = VM_FAULT_OOM;
3090 page = swapcache;
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08003091 goto out_page;
Hugh Dickins5ad64682009-12-14 17:59:24 -08003092 }
3093
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08003094 if (mem_cgroup_try_charge_swapin(mm, page, GFP_KERNEL, &ptr)) {
KAMEZAWA Hiroyuki073e5872008-10-18 20:28:08 -07003095 ret = VM_FAULT_OOM;
Johannes Weinerbc43f752009-04-30 15:08:08 -07003096 goto out_page;
KAMEZAWA Hiroyuki073e5872008-10-18 20:28:08 -07003097 }
3098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003100 * Back out if somebody else already faulted in this pte.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003102 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins9e9bef02005-10-29 18:16:15 -07003103 if (unlikely(!pte_same(*page_table, orig_pte)))
Kirill Korotaevb8107482005-05-16 21:53:50 -07003104 goto out_nomap;
Kirill Korotaevb8107482005-05-16 21:53:50 -07003105
3106 if (unlikely(!PageUptodate(page))) {
3107 ret = VM_FAULT_SIGBUS;
3108 goto out_nomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 }
3110
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003111 /*
3112 * The page isn't present yet, go ahead with the fault.
3113 *
3114 * Be careful about the sequence of operations here.
3115 * To get its accounting right, reuse_swap_page() must be called
3116 * while the page is counted on swap but not yet in mapcount i.e.
3117 * before page_add_anon_rmap() and swap_free(); try_to_free_swap()
3118 * must be called after the swap_free(), or it will never succeed.
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003119 * Because delete_from_swap_page() may be called by reuse_swap_page(),
3120 * mem_cgroup_commit_charge_swapin() may not be able to find swp_entry
3121 * in page->private. In this case, a record in swap_cgroup is silently
3122 * discarded at swap_free().
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08003125 inc_mm_counter_fast(mm, MM_ANONPAGES);
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08003126 dec_mm_counter_fast(mm, MM_SWAPENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 pte = mk_pte(page, vma->vm_page_prot);
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003128 if ((flags & FAULT_FLAG_WRITE) && reuse_swap_page(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 pte = maybe_mkwrite(pte_mkdirty(pte), vma);
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003130 flags &= ~FAULT_FLAG_WRITE;
Andrea Arcangeli9a5b4892010-08-09 17:19:49 -07003131 ret |= VM_FAULT_WRITE;
Rik van Rielad8c2ee2010-08-09 17:19:48 -07003132 exclusive = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 flush_icache_page(vma, page);
Cyrill Gorcunov179ef712013-08-13 16:00:49 -07003135 if (pte_swp_soft_dirty(orig_pte))
3136 pte = pte_mksoft_dirty(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 set_pte_at(mm, address, page_table, pte);
Hugh Dickins56f31802013-02-22 16:36:10 -08003138 if (page == swapcache)
Johannes Weineraf347702013-02-22 16:32:20 -08003139 do_page_add_anon_rmap(page, vma, address, exclusive);
Hugh Dickins56f31802013-02-22 16:36:10 -08003140 else /* ksm created a completely new copy */
3141 page_add_new_anon_rmap(page, vma, address);
KAMEZAWA Hiroyuki03f3c432009-01-07 18:08:31 -08003142 /* It's better to call commit-charge after rmap is established */
3143 mem_cgroup_commit_charge_swapin(page, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07003145 swap_free(entry);
Nick Pigginb291f002008-10-18 20:26:44 -07003146 if (vm_swap_full() || (vma->vm_flags & VM_LOCKED) || PageMlocked(page))
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08003147 try_to_free_swap(page);
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07003148 unlock_page(page);
Hugh Dickins56f31802013-02-22 16:36:10 -08003149 if (page != swapcache) {
Andrea Arcangeli4969c112010-09-09 16:37:52 -07003150 /*
3151 * Hold the lock to avoid the swap entry to be reused
3152 * until we take the PT lock for the pte_same() check
3153 * (to avoid false positives from pte_same). For
3154 * further safety release the lock after the swap_free
3155 * so that the swap count won't change under a
3156 * parallel locked swapcache.
3157 */
3158 unlock_page(swapcache);
3159 page_cache_release(swapcache);
3160 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07003161
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003162 if (flags & FAULT_FLAG_WRITE) {
Hugh Dickins61469f12008-03-04 14:29:04 -08003163 ret |= do_wp_page(mm, vma, address, page_table, pmd, ptl, pte);
3164 if (ret & VM_FAULT_ERROR)
3165 ret &= VM_FAULT_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 goto out;
3167 }
3168
3169 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +00003170 update_mmu_cache(vma, address, page_table);
Hugh Dickins65500d22005-10-29 18:15:59 -07003171unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003172 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173out:
3174 return ret;
Kirill Korotaevb8107482005-05-16 21:53:50 -07003175out_nomap:
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08003176 mem_cgroup_cancel_charge_swapin(ptr);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003177 pte_unmap_unlock(page_table, ptl);
Johannes Weinerbc43f752009-04-30 15:08:08 -07003178out_page:
Kirill Korotaevb8107482005-05-16 21:53:50 -07003179 unlock_page(page);
Andi Kleen4779cb32009-10-14 01:51:41 +02003180out_release:
Kirill Korotaevb8107482005-05-16 21:53:50 -07003181 page_cache_release(page);
Hugh Dickins56f31802013-02-22 16:36:10 -08003182 if (page != swapcache) {
Andrea Arcangeli4969c112010-09-09 16:37:52 -07003183 unlock_page(swapcache);
3184 page_cache_release(swapcache);
3185 }
Hugh Dickins65500d22005-10-29 18:15:59 -07003186 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187}
3188
3189/*
Luck, Tony8ca3eb02010-08-24 11:44:18 -07003190 * This is like a special single-page "expand_{down|up}wards()",
3191 * except we must first make sure that 'address{-|+}PAGE_SIZE'
Linus Torvalds320b2b82010-08-12 17:54:33 -07003192 * doesn't hit another vma.
Linus Torvalds320b2b82010-08-12 17:54:33 -07003193 */
3194static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address)
3195{
3196 address &= PAGE_MASK;
3197 if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) {
Linus Torvalds0e8e50e2010-08-20 16:49:40 -07003198 struct vm_area_struct *prev = vma->vm_prev;
Linus Torvalds320b2b82010-08-12 17:54:33 -07003199
Linus Torvalds0e8e50e2010-08-20 16:49:40 -07003200 /*
3201 * Is there a mapping abutting this one below?
3202 *
3203 * That's only ok if it's the same stack mapping
3204 * that has gotten split..
3205 */
3206 if (prev && prev->vm_end == address)
3207 return prev->vm_flags & VM_GROWSDOWN ? 0 : -ENOMEM;
3208
Michal Hockod05f3162011-05-24 17:11:44 -07003209 expand_downwards(vma, address - PAGE_SIZE);
Linus Torvalds320b2b82010-08-12 17:54:33 -07003210 }
Luck, Tony8ca3eb02010-08-24 11:44:18 -07003211 if ((vma->vm_flags & VM_GROWSUP) && address + PAGE_SIZE == vma->vm_end) {
3212 struct vm_area_struct *next = vma->vm_next;
3213
3214 /* As VM_GROWSDOWN but s/below/above/ */
3215 if (next && next->vm_start == address + PAGE_SIZE)
3216 return next->vm_flags & VM_GROWSUP ? 0 : -ENOMEM;
3217
3218 expand_upwards(vma, address + PAGE_SIZE);
3219 }
Linus Torvalds320b2b82010-08-12 17:54:33 -07003220 return 0;
3221}
3222
3223/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003224 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3225 * but allow concurrent faults), and pte mapped but not yet locked.
3226 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 */
Hugh Dickins65500d22005-10-29 18:15:59 -07003228static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
3229 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003230 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003232 struct page *page;
3233 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 pte_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Linus Torvalds11ac5522010-08-14 11:44:56 -07003236 pte_unmap(page_table);
Linus Torvalds320b2b82010-08-12 17:54:33 -07003237
Linus Torvalds11ac5522010-08-14 11:44:56 -07003238 /* Check if we need to add a guard page to the stack */
3239 if (check_stack_guard_page(vma, address) < 0)
3240 return VM_FAULT_SIGBUS;
3241
3242 /* Use the zero-page for reads */
Hugh Dickins62eede62009-09-21 17:03:34 -07003243 if (!(flags & FAULT_FLAG_WRITE)) {
3244 entry = pte_mkspecial(pfn_pte(my_zero_pfn(address),
3245 vma->vm_page_prot));
Linus Torvalds11ac5522010-08-14 11:44:56 -07003246 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07003247 if (!pte_none(*page_table))
3248 goto unlock;
3249 goto setpte;
3250 }
3251
Nick Piggin557ed1f2007-10-16 01:24:40 -07003252 /* Allocate our own private page. */
Nick Piggin557ed1f2007-10-16 01:24:40 -07003253 if (unlikely(anon_vma_prepare(vma)))
3254 goto oom;
3255 page = alloc_zeroed_user_highpage_movable(vma, address);
3256 if (!page)
3257 goto oom;
Minchan Kim52f37622013-04-29 15:08:15 -07003258 /*
3259 * The memory barrier inside __SetPageUptodate makes sure that
3260 * preceeding stores to the page contents become visible before
3261 * the set_pte_at() write.
3262 */
Nick Piggin0ed361d2008-02-04 22:29:34 -08003263 __SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08003265 if (mem_cgroup_newpage_charge(page, mm, GFP_KERNEL))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003266 goto oom_free_page;
3267
Nick Piggin557ed1f2007-10-16 01:24:40 -07003268 entry = mk_pte(page, vma->vm_page_prot);
Hugh Dickins1ac0cb52009-09-21 17:03:29 -07003269 if (vma->vm_flags & VM_WRITE)
3270 entry = pte_mkwrite(pte_mkdirty(entry));
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003271
Nick Piggin557ed1f2007-10-16 01:24:40 -07003272 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07003273 if (!pte_none(*page_table))
Nick Piggin557ed1f2007-10-16 01:24:40 -07003274 goto release;
Hugh Dickins9ba69292009-09-21 17:02:20 -07003275
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08003276 inc_mm_counter_fast(mm, MM_ANONPAGES);
Nick Piggin557ed1f2007-10-16 01:24:40 -07003277 page_add_new_anon_rmap(page, vma, address);
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07003278setpte:
Hugh Dickins65500d22005-10-29 18:15:59 -07003279 set_pte_at(mm, address, page_table, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +00003282 update_mmu_cache(vma, address, page_table);
Hugh Dickins65500d22005-10-29 18:15:59 -07003283unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003284 pte_unmap_unlock(page_table, ptl);
Nick Piggin83c54072007-07-19 01:47:05 -07003285 return 0;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003286release:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003287 mem_cgroup_uncharge_page(page);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003288 page_cache_release(page);
3289 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08003290oom_free_page:
Hugh Dickins6dbf6d32008-03-04 14:29:04 -08003291 page_cache_release(page);
Hugh Dickins65500d22005-10-29 18:15:59 -07003292oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 return VM_FAULT_OOM;
3294}
3295
3296/*
Nick Piggin54cb8822007-07-19 01:46:59 -07003297 * __do_fault() tries to create a new page mapping. It aggressively
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 * tries to share with existing pages, but makes a separate copy if
Nick Piggin54cb8822007-07-19 01:46:59 -07003299 * the FAULT_FLAG_WRITE is set in the flags parameter in order to avoid
3300 * the next page fault.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 *
3302 * As this is called only for pages that do not currently exist, we
3303 * do not need to flush old virtual caches or the TLB.
3304 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003305 * We enter with non-exclusive mmap_sem (to exclude vma changes,
Hugh Dickins16abfa02007-10-04 16:56:06 +01003306 * but allow concurrent faults), and pte neither mapped nor locked.
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003307 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 */
Nick Piggin54cb8822007-07-19 01:46:59 -07003309static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins16abfa02007-10-04 16:56:06 +01003310 unsigned long address, pmd_t *pmd,
Nick Piggin54cb8822007-07-19 01:46:59 -07003311 pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312{
Hugh Dickins16abfa02007-10-04 16:56:06 +01003313 pte_t *page_table;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003314 spinlock_t *ptl;
Nick Piggind0217ac2007-07-19 01:47:03 -07003315 struct page *page;
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003316 struct page *cow_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 pte_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 int anon = 0;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07003319 struct page *dirty_page = NULL;
Nick Piggind0217ac2007-07-19 01:47:03 -07003320 struct vm_fault vmf;
3321 int ret;
Peter Zijlstraa200ee12007-10-08 18:54:37 +02003322 int page_mkwrite = 0;
Nick Piggin54cb8822007-07-19 01:46:59 -07003323
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003324 /*
3325 * If we do COW later, allocate page befor taking lock_page()
3326 * on the file cache page. This will reduce lock holding time.
3327 */
3328 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
3329
3330 if (unlikely(anon_vma_prepare(vma)))
3331 return VM_FAULT_OOM;
3332
3333 cow_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
3334 if (!cow_page)
3335 return VM_FAULT_OOM;
3336
3337 if (mem_cgroup_newpage_charge(cow_page, mm, GFP_KERNEL)) {
3338 page_cache_release(cow_page);
3339 return VM_FAULT_OOM;
3340 }
3341 } else
3342 cow_page = NULL;
3343
Nick Piggind0217ac2007-07-19 01:47:03 -07003344 vmf.virtual_address = (void __user *)(address & PAGE_MASK);
3345 vmf.pgoff = pgoff;
3346 vmf.flags = flags;
3347 vmf.page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Nick Piggin3c18ddd2008-04-28 02:12:10 -07003349 ret = vma->vm_ops->fault(vma, &vmf);
Michel Lespinassed065bd82010-10-26 14:21:57 -07003350 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE |
3351 VM_FAULT_RETRY)))
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003352 goto uncharge_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Andi Kleena3b947e2009-09-16 11:50:08 +02003354 if (unlikely(PageHWPoison(vmf.page))) {
3355 if (ret & VM_FAULT_LOCKED)
3356 unlock_page(vmf.page);
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003357 ret = VM_FAULT_HWPOISON;
Kirill A. Shutemov33b6c772014-02-25 15:01:39 -08003358 page_cache_release(vmf.page);
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003359 goto uncharge_out;
Andi Kleena3b947e2009-09-16 11:50:08 +02003360 }
3361
Nick Piggind00806b2007-07-19 01:46:57 -07003362 /*
Nick Piggind0217ac2007-07-19 01:47:03 -07003363 * For consistency in subsequent calls, make the faulted page always
Nick Piggind00806b2007-07-19 01:46:57 -07003364 * locked.
3365 */
Nick Piggin83c54072007-07-19 01:47:05 -07003366 if (unlikely(!(ret & VM_FAULT_LOCKED)))
Nick Piggind0217ac2007-07-19 01:47:03 -07003367 lock_page(vmf.page);
Nick Piggin54cb8822007-07-19 01:46:59 -07003368 else
Sasha Levin309381fea2014-01-23 15:52:54 -08003369 VM_BUG_ON_PAGE(!PageLocked(vmf.page), vmf.page);
Nick Piggind00806b2007-07-19 01:46:57 -07003370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 /*
3372 * Should we do an early C-O-W break?
3373 */
Nick Piggind0217ac2007-07-19 01:47:03 -07003374 page = vmf.page;
Nick Piggin54cb8822007-07-19 01:46:59 -07003375 if (flags & FAULT_FLAG_WRITE) {
David Howells9637a5e2006-06-23 02:03:43 -07003376 if (!(vma->vm_flags & VM_SHARED)) {
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003377 page = cow_page;
Nick Piggin54cb8822007-07-19 01:46:59 -07003378 anon = 1;
Nick Piggind0217ac2007-07-19 01:47:03 -07003379 copy_user_highpage(page, vmf.page, address, vma);
Nick Piggin0ed361d2008-02-04 22:29:34 -08003380 __SetPageUptodate(page);
David Howells9637a5e2006-06-23 02:03:43 -07003381 } else {
Nick Piggin54cb8822007-07-19 01:46:59 -07003382 /*
3383 * If the page will be shareable, see if the backing
David Howells9637a5e2006-06-23 02:03:43 -07003384 * address space wants to know that the page is about
Nick Piggin54cb8822007-07-19 01:46:59 -07003385 * to become writable
3386 */
Mark Fasheh69676142007-07-19 01:47:00 -07003387 if (vma->vm_ops->page_mkwrite) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07003388 int tmp;
3389
Mark Fasheh69676142007-07-19 01:47:00 -07003390 unlock_page(page);
Nick Pigginb827e492009-04-30 15:08:16 -07003391 vmf.flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE;
Nick Pigginc2ec1752009-03-31 15:23:21 -07003392 tmp = vma->vm_ops->page_mkwrite(vma, &vmf);
3393 if (unlikely(tmp &
3394 (VM_FAULT_ERROR | VM_FAULT_NOPAGE))) {
3395 ret = tmp;
Nick Pigginb827e492009-04-30 15:08:16 -07003396 goto unwritable_page;
Mark Fasheh69676142007-07-19 01:47:00 -07003397 }
Nick Pigginb827e492009-04-30 15:08:16 -07003398 if (unlikely(!(tmp & VM_FAULT_LOCKED))) {
3399 lock_page(page);
3400 if (!page->mapping) {
3401 ret = 0; /* retry the fault */
3402 unlock_page(page);
3403 goto unwritable_page;
3404 }
3405 } else
Sasha Levin309381fea2014-01-23 15:52:54 -08003406 VM_BUG_ON_PAGE(!PageLocked(page), page);
Peter Zijlstraa200ee12007-10-08 18:54:37 +02003407 page_mkwrite = 1;
David Howells9637a5e2006-06-23 02:03:43 -07003408 }
3409 }
Nick Piggin54cb8822007-07-19 01:46:59 -07003410
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 }
3412
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003413 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
3415 /*
3416 * This silly early PAGE_DIRTY setting removes a race
3417 * due to the bad i386 page protection. But it's valid
3418 * for other architectures too.
3419 *
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003420 * Note that if FAULT_FLAG_WRITE is set, we either now have
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 * an exclusive copy of the page, or this is a shared mapping,
3422 * so we can make it writable and dirty to avoid having to
3423 * handle that later.
3424 */
3425 /* Only go through if we didn't race with anybody else... */
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07003426 if (likely(pte_same(*page_table, orig_pte))) {
Nick Piggind00806b2007-07-19 01:46:57 -07003427 flush_icache_page(vma, page);
3428 entry = mk_pte(page, vma->vm_page_prot);
Nick Piggin54cb8822007-07-19 01:46:59 -07003429 if (flags & FAULT_FLAG_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Cyrill Gorcunov41bb3472013-08-13 16:00:51 -07003431 else if (pte_file(orig_pte) && pte_file_soft_dirty(orig_pte))
3432 pte_mksoft_dirty(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 if (anon) {
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08003434 inc_mm_counter_fast(mm, MM_ANONPAGES);
Lee Schermerhorn64d65192008-10-18 20:26:52 -07003435 page_add_new_anon_rmap(page, vma, address);
Hugh Dickinsf57e88a2005-11-21 21:32:19 -08003436 } else {
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08003437 inc_mm_counter_fast(mm, MM_FILEPAGES);
Nick Piggind00806b2007-07-19 01:46:57 -07003438 page_add_file_rmap(page);
Nick Piggin54cb8822007-07-19 01:46:59 -07003439 if (flags & FAULT_FLAG_WRITE) {
Nick Piggind00806b2007-07-19 01:46:57 -07003440 dirty_page = page;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07003441 get_page(dirty_page);
3442 }
Hugh Dickins42946212005-10-29 18:16:05 -07003443 }
Lee Schermerhorn64d65192008-10-18 20:26:52 -07003444 set_pte_at(mm, address, page_table, entry);
Nick Piggind00806b2007-07-19 01:46:57 -07003445
3446 /* no need to invalidate: a not-present page won't be cached */
Russell King4b3073e2009-12-18 16:40:18 +00003447 update_mmu_cache(vma, address, page_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 } else {
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003449 if (cow_page)
3450 mem_cgroup_uncharge_page(cow_page);
Nick Piggind00806b2007-07-19 01:46:57 -07003451 if (anon)
3452 page_cache_release(page);
3453 else
Nick Piggin54cb8822007-07-19 01:46:59 -07003454 anon = 1; /* no anon but release faulted_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 }
3456
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003457 pte_unmap_unlock(page_table, ptl);
Nick Piggind00806b2007-07-19 01:46:57 -07003458
Nick Pigginb827e492009-04-30 15:08:16 -07003459 if (dirty_page) {
3460 struct address_space *mapping = page->mapping;
Jan Kara41c4d252012-06-12 16:20:28 +02003461 int dirtied = 0;
Nick Pigginb827e492009-04-30 15:08:16 -07003462
3463 if (set_page_dirty(dirty_page))
Jan Kara41c4d252012-06-12 16:20:28 +02003464 dirtied = 1;
Nick Pigginb827e492009-04-30 15:08:16 -07003465 unlock_page(dirty_page);
3466 put_page(dirty_page);
Jan Kara41c4d252012-06-12 16:20:28 +02003467 if ((dirtied || page_mkwrite) && mapping) {
Nick Pigginb827e492009-04-30 15:08:16 -07003468 /*
3469 * Some device drivers do not set page.mapping but still
3470 * dirty their pages
3471 */
3472 balance_dirty_pages_ratelimited(mapping);
3473 }
3474
3475 /* file_update_time outside page_lock */
Jan Kara41c4d252012-06-12 16:20:28 +02003476 if (vma->vm_file && !page_mkwrite)
Anton Salikhmetov8f7b3d12008-01-23 02:21:18 +03003477 file_update_time(vma->vm_file);
Nick Pigginb827e492009-04-30 15:08:16 -07003478 } else {
3479 unlock_page(vmf.page);
3480 if (anon)
3481 page_cache_release(vmf.page);
Peter Zijlstrad08b3852006-09-25 23:30:57 -07003482 }
Nick Piggind00806b2007-07-19 01:46:57 -07003483
Nick Piggin83c54072007-07-19 01:47:05 -07003484 return ret;
Nick Pigginb827e492009-04-30 15:08:16 -07003485
3486unwritable_page:
3487 page_cache_release(page);
3488 return ret;
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003489uncharge_out:
3490 /* fs's fault handler get error */
3491 if (cow_page) {
3492 mem_cgroup_uncharge_page(cow_page);
3493 page_cache_release(cow_page);
3494 }
3495 return ret;
Nick Piggin54cb8822007-07-19 01:46:59 -07003496}
Nick Piggind00806b2007-07-19 01:46:57 -07003497
Nick Piggin54cb8822007-07-19 01:46:59 -07003498static int do_linear_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3499 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003500 unsigned int flags, pte_t orig_pte)
Nick Piggin54cb8822007-07-19 01:46:59 -07003501{
3502 pgoff_t pgoff = (((address & PAGE_MASK)
Dean Nelson0da7e012007-10-16 01:24:45 -07003503 - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Nick Piggin54cb8822007-07-19 01:46:59 -07003504
Hugh Dickins16abfa02007-10-04 16:56:06 +01003505 pte_unmap(page_table);
3506 return __do_fault(mm, vma, address, pmd, pgoff, flags, orig_pte);
Nick Piggin54cb8822007-07-19 01:46:59 -07003507}
3508
Jes Sorensenf4b81802006-09-27 01:50:10 -07003509/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 * Fault of a previously existing named mapping. Repopulate the pte
3511 * from the encoded file_pte if possible. This enables swappable
3512 * nonlinear vmas.
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003513 *
3514 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3515 * but allow concurrent faults), and pte mapped but not yet locked.
3516 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 */
Nick Piggind0217ac2007-07-19 01:47:03 -07003518static int do_nonlinear_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins65500d22005-10-29 18:15:59 -07003519 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003520 unsigned int flags, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521{
Hugh Dickins65500d22005-10-29 18:15:59 -07003522 pgoff_t pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003524 flags |= FAULT_FLAG_NONLINEAR;
3525
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07003526 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Nick Piggin83c54072007-07-19 01:47:05 -07003527 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Hugh Dickins2509ef22009-01-06 14:40:10 -08003529 if (unlikely(!(vma->vm_flags & VM_NONLINEAR))) {
Hugh Dickins65500d22005-10-29 18:15:59 -07003530 /*
3531 * Page table corrupted: show pte and kill process.
3532 */
Hugh Dickins3dc14742009-01-06 14:40:08 -08003533 print_bad_pte(vma, address, orig_pte, NULL);
Hugh Dickinsd99be1a2009-12-14 17:59:04 -08003534 return VM_FAULT_SIGBUS;
Hugh Dickins65500d22005-10-29 18:15:59 -07003535 }
Hugh Dickins65500d22005-10-29 18:15:59 -07003536
3537 pgoff = pte_to_pgoff(orig_pte);
Hugh Dickins16abfa02007-10-04 16:56:06 +01003538 return __do_fault(mm, vma, address, pmd, pgoff, flags, orig_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539}
3540
Mel Gorman9532fec2012-11-15 01:24:32 +00003541int numa_migrate_prep(struct page *page, struct vm_area_struct *vma,
Rik van Riel04bb2f92013-10-07 11:29:36 +01003542 unsigned long addr, int page_nid,
3543 int *flags)
Mel Gorman9532fec2012-11-15 01:24:32 +00003544{
3545 get_page(page);
3546
3547 count_vm_numa_event(NUMA_HINT_FAULTS);
Rik van Riel04bb2f92013-10-07 11:29:36 +01003548 if (page_nid == numa_node_id()) {
Mel Gorman9532fec2012-11-15 01:24:32 +00003549 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
Rik van Riel04bb2f92013-10-07 11:29:36 +01003550 *flags |= TNF_FAULT_LOCAL;
3551 }
Mel Gorman9532fec2012-11-15 01:24:32 +00003552
3553 return mpol_misplaced(page, vma, addr);
3554}
3555
Mel Gormand10e63f2012-10-25 14:16:31 +02003556int do_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
3557 unsigned long addr, pte_t pte, pte_t *ptep, pmd_t *pmd)
3558{
Mel Gorman4daae3b2012-11-02 11:33:45 +00003559 struct page *page = NULL;
Mel Gormand10e63f2012-10-25 14:16:31 +02003560 spinlock_t *ptl;
Mel Gorman8191acb2013-10-07 11:28:45 +01003561 int page_nid = -1;
Peter Zijlstra90572892013-10-07 11:29:20 +01003562 int last_cpupid;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02003563 int target_nid;
Mel Gormanb8593bf2012-11-21 01:18:23 +00003564 bool migrated = false;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003565 int flags = 0;
Mel Gormand10e63f2012-10-25 14:16:31 +02003566
3567 /*
3568 * The "pte" at this point cannot be used safely without
3569 * validation through pte_unmap_same(). It's of NUMA type but
3570 * the pfn may be screwed if the read is non atomic.
3571 *
3572 * ptep_modify_prot_start is not called as this is clearing
3573 * the _PAGE_NUMA bit and it is not really expected that there
3574 * would be concurrent hardware modifications to the PTE.
3575 */
3576 ptl = pte_lockptr(mm, pmd);
3577 spin_lock(ptl);
Mel Gorman4daae3b2012-11-02 11:33:45 +00003578 if (unlikely(!pte_same(*ptep, pte))) {
3579 pte_unmap_unlock(ptep, ptl);
3580 goto out;
3581 }
3582
Mel Gormand10e63f2012-10-25 14:16:31 +02003583 pte = pte_mknonnuma(pte);
3584 set_pte_at(mm, addr, ptep, pte);
3585 update_mmu_cache(vma, addr, ptep);
3586
3587 page = vm_normal_page(vma, addr, pte);
3588 if (!page) {
3589 pte_unmap_unlock(ptep, ptl);
3590 return 0;
3591 }
Mel Gormana1a46182013-10-07 11:28:50 +01003592 BUG_ON(is_zero_pfn(page_to_pfn(page)));
Mel Gormand10e63f2012-10-25 14:16:31 +02003593
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003594 /*
3595 * Avoid grouping on DSO/COW pages in specific and RO pages
3596 * in general, RO pages shouldn't hurt as much anyway since
3597 * they can be in shared cache state.
3598 */
3599 if (!pte_write(pte))
3600 flags |= TNF_NO_GROUP;
3601
Rik van Rieldabe1d92013-10-07 11:29:34 +01003602 /*
3603 * Flag if the page is shared between multiple address spaces. This
3604 * is later used when determining whether to group tasks together
3605 */
3606 if (page_mapcount(page) > 1 && (vma->vm_flags & VM_SHARED))
3607 flags |= TNF_SHARED;
3608
Peter Zijlstra90572892013-10-07 11:29:20 +01003609 last_cpupid = page_cpupid_last(page);
Mel Gorman8191acb2013-10-07 11:28:45 +01003610 page_nid = page_to_nid(page);
Rik van Riel04bb2f92013-10-07 11:29:36 +01003611 target_nid = numa_migrate_prep(page, vma, addr, page_nid, &flags);
Mel Gormand10e63f2012-10-25 14:16:31 +02003612 pte_unmap_unlock(ptep, ptl);
Mel Gorman4daae3b2012-11-02 11:33:45 +00003613 if (target_nid == -1) {
Mel Gorman4daae3b2012-11-02 11:33:45 +00003614 put_page(page);
3615 goto out;
3616 }
3617
3618 /* Migrate to the requested node */
Mel Gorman1bc115d2013-10-07 11:29:05 +01003619 migrated = migrate_misplaced_page(page, vma, target_nid);
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003620 if (migrated) {
Mel Gorman8191acb2013-10-07 11:28:45 +01003621 page_nid = target_nid;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003622 flags |= TNF_MIGRATED;
3623 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00003624
3625out:
Mel Gorman8191acb2013-10-07 11:28:45 +01003626 if (page_nid != -1)
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003627 task_numa_fault(last_cpupid, page_nid, 1, flags);
Mel Gormand10e63f2012-10-25 14:16:31 +02003628 return 0;
3629}
3630
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631/*
3632 * These routines also need to handle stuff like marking pages dirty
3633 * and/or accessed for architectures that don't do it in hardware (most
3634 * RISC architectures). The early dirtying is also good on the i386.
3635 *
3636 * There is also a hook called "update_mmu_cache()" that architectures
3637 * with external mmu caches can use to update those (ie the Sparc or
3638 * PowerPC hashed page tables that act as extended TLBs).
3639 *
Hugh Dickinsc74df322005-10-29 18:16:23 -07003640 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3641 * but allow concurrent faults), and pte mapped but not yet locked.
3642 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 */
Kirill A. Shutemovc0292552013-09-12 15:14:05 -07003644static int handle_pte_fault(struct mm_struct *mm,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003645 struct vm_area_struct *vma, unsigned long address,
3646 pte_t *pte, pmd_t *pmd, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647{
3648 pte_t entry;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003649 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07003651 entry = *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 if (!pte_present(entry)) {
Hugh Dickins65500d22005-10-29 18:15:59 -07003653 if (pte_none(entry)) {
Jes Sorensenf4b81802006-09-27 01:50:10 -07003654 if (vma->vm_ops) {
Nick Piggin3c18ddd2008-04-28 02:12:10 -07003655 if (likely(vma->vm_ops->fault))
Nick Piggin54cb8822007-07-19 01:46:59 -07003656 return do_linear_fault(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003657 pte, pmd, flags, entry);
Jes Sorensenf4b81802006-09-27 01:50:10 -07003658 }
3659 return do_anonymous_page(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003660 pte, pmd, flags);
Hugh Dickins65500d22005-10-29 18:15:59 -07003661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 if (pte_file(entry))
Nick Piggind0217ac2007-07-19 01:47:03 -07003663 return do_nonlinear_fault(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003664 pte, pmd, flags, entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07003665 return do_swap_page(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003666 pte, pmd, flags, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
3668
Mel Gormand10e63f2012-10-25 14:16:31 +02003669 if (pte_numa(entry))
3670 return do_numa_page(mm, vma, address, entry, pte, pmd);
3671
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07003672 ptl = pte_lockptr(mm, pmd);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003673 spin_lock(ptl);
3674 if (unlikely(!pte_same(*pte, entry)))
3675 goto unlock;
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003676 if (flags & FAULT_FLAG_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 if (!pte_write(entry))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003678 return do_wp_page(mm, vma, address,
3679 pte, pmd, ptl, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 entry = pte_mkdirty(entry);
3681 }
3682 entry = pte_mkyoung(entry);
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003683 if (ptep_set_access_flags(vma, address, pte, entry, flags & FAULT_FLAG_WRITE)) {
Russell King4b3073e2009-12-18 16:40:18 +00003684 update_mmu_cache(vma, address, pte);
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07003685 } else {
3686 /*
3687 * This is needed only for protection faults but the arch code
3688 * is not yet telling us if this is a protection fault or not.
3689 * This still avoids useless tlb flushes for .text page faults
3690 * with threads.
3691 */
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003692 if (flags & FAULT_FLAG_WRITE)
Shaohua Li61c77322010-08-16 09:16:55 +08003693 flush_tlb_fix_spurious_fault(vma, address);
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07003694 }
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003695unlock:
3696 pte_unmap_unlock(pte, ptl);
Nick Piggin83c54072007-07-19 01:47:05 -07003697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698}
3699
3700/*
3701 * By the time we get here, we already hold the mm semaphore
3702 */
Johannes Weiner519e5242013-09-12 15:13:42 -07003703static int __handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3704 unsigned long address, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705{
3706 pgd_t *pgd;
3707 pud_t *pud;
3708 pmd_t *pmd;
3709 pte_t *pte;
3710
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01003711 if (unlikely(is_vm_hugetlb_page(vma)))
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003712 return hugetlb_fault(mm, vma, address, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 pgd = pgd_offset(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 pud = pud_alloc(mm, pgd, address);
3716 if (!pud)
Hugh Dickinsc74df322005-10-29 18:16:23 -07003717 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 pmd = pmd_alloc(mm, pud, address);
3719 if (!pmd)
Hugh Dickinsc74df322005-10-29 18:16:23 -07003720 return VM_FAULT_OOM;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003721 if (pmd_none(*pmd) && transparent_hugepage_enabled(vma)) {
Kirill A. Shutemovc0292552013-09-12 15:14:05 -07003722 int ret = VM_FAULT_FALLBACK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003723 if (!vma->vm_ops)
Kirill A. Shutemovc0292552013-09-12 15:14:05 -07003724 ret = do_huge_pmd_anonymous_page(mm, vma, address,
3725 pmd, flags);
3726 if (!(ret & VM_FAULT_FALLBACK))
3727 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003728 } else {
3729 pmd_t orig_pmd = *pmd;
David Rientjes1f1d06c2012-05-29 15:06:23 -07003730 int ret;
3731
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003732 barrier();
3733 if (pmd_trans_huge(orig_pmd)) {
Will Deacona1dd4502012-12-11 16:01:27 -08003734 unsigned int dirty = flags & FAULT_FLAG_WRITE;
3735
Linus Torvaldse53289c2013-01-09 08:36:54 -08003736 /*
3737 * If the pmd is splitting, return and retry the
3738 * the fault. Alternative: wait until the split
3739 * is done, and goto retry.
3740 */
3741 if (pmd_trans_splitting(orig_pmd))
3742 return 0;
3743
Linus Torvalds3d59eeb2012-12-16 14:33:25 -08003744 if (pmd_numa(orig_pmd))
Mel Gorman4daae3b2012-11-02 11:33:45 +00003745 return do_huge_pmd_numa_page(mm, vma, address,
Mel Gormand10e63f2012-10-25 14:16:31 +02003746 orig_pmd, pmd);
3747
Linus Torvalds3d59eeb2012-12-16 14:33:25 -08003748 if (dirty && !pmd_write(orig_pmd)) {
David Rientjes1f1d06c2012-05-29 15:06:23 -07003749 ret = do_huge_pmd_wp_page(mm, vma, address, pmd,
3750 orig_pmd);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08003751 if (!(ret & VM_FAULT_FALLBACK))
3752 return ret;
Will Deacona1dd4502012-12-11 16:01:27 -08003753 } else {
3754 huge_pmd_set_accessed(mm, vma, address, pmd,
3755 orig_pmd, dirty);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08003756 return 0;
David Rientjes1f1d06c2012-05-29 15:06:23 -07003757 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003758 }
3759 }
3760
3761 /*
3762 * Use __pte_alloc instead of pte_alloc_map, because we can't
3763 * run pte_offset_map on the pmd, if an huge pmd could
3764 * materialize from under us from a different thread.
3765 */
Mel Gorman4fd01772011-10-12 21:06:51 +02003766 if (unlikely(pmd_none(*pmd)) &&
3767 unlikely(__pte_alloc(mm, vma, pmd, address)))
Hugh Dickinsc74df322005-10-29 18:16:23 -07003768 return VM_FAULT_OOM;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003769 /* if an huge pmd materialized from under us just retry later */
3770 if (unlikely(pmd_trans_huge(*pmd)))
3771 return 0;
3772 /*
3773 * A regular pmd is established and it can't morph into a huge pmd
3774 * from under us anymore at this point because we hold the mmap_sem
3775 * read mode and khugepaged takes it in write mode. So now it's
3776 * safe to run pte_offset_map().
3777 */
3778 pte = pte_offset_map(pmd, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003780 return handle_pte_fault(mm, vma, address, pte, pmd, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782
Johannes Weiner519e5242013-09-12 15:13:42 -07003783int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3784 unsigned long address, unsigned int flags)
3785{
3786 int ret;
3787
3788 __set_current_state(TASK_RUNNING);
3789
3790 count_vm_event(PGFAULT);
3791 mem_cgroup_count_vm_event(mm, PGFAULT);
3792
3793 /* do counter updates before entering really critical section. */
3794 check_sync_rss_stat(current);
3795
3796 /*
3797 * Enable the memcg OOM handling for faults triggered in user
3798 * space. Kernel faults are handled more gracefully.
3799 */
3800 if (flags & FAULT_FLAG_USER)
Johannes Weiner49426422013-10-16 13:46:59 -07003801 mem_cgroup_oom_enable();
Johannes Weiner519e5242013-09-12 15:13:42 -07003802
3803 ret = __handle_mm_fault(mm, vma, address, flags);
3804
Johannes Weiner49426422013-10-16 13:46:59 -07003805 if (flags & FAULT_FLAG_USER) {
3806 mem_cgroup_oom_disable();
3807 /*
3808 * The task may have entered a memcg OOM situation but
3809 * if the allocation error was handled gracefully (no
3810 * VM_FAULT_OOM), there is no need to kill anything.
3811 * Just clean up the OOM state peacefully.
3812 */
3813 if (task_in_memcg_oom(current) && !(ret & VM_FAULT_OOM))
3814 mem_cgroup_oom_synchronize(false);
3815 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07003816
Johannes Weiner519e5242013-09-12 15:13:42 -07003817 return ret;
3818}
3819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820#ifndef __PAGETABLE_PUD_FOLDED
3821/*
3822 * Allocate page upper directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07003823 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07003825int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826{
Hugh Dickinsc74df322005-10-29 18:16:23 -07003827 pud_t *new = pud_alloc_one(mm, address);
3828 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07003829 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Nick Piggin362a61a2008-05-14 06:37:36 +02003831 smp_wmb(); /* See comment in __pte_alloc */
3832
Hugh Dickins872fec12005-10-29 18:16:21 -07003833 spin_lock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003834 if (pgd_present(*pgd)) /* Another has populated it */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -08003835 pud_free(mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003836 else
3837 pgd_populate(mm, pgd, new);
Hugh Dickinsc74df322005-10-29 18:16:23 -07003838 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840}
3841#endif /* __PAGETABLE_PUD_FOLDED */
3842
3843#ifndef __PAGETABLE_PMD_FOLDED
3844/*
3845 * Allocate page middle directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07003846 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07003848int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849{
Hugh Dickinsc74df322005-10-29 18:16:23 -07003850 pmd_t *new = pmd_alloc_one(mm, address);
3851 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07003852 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Nick Piggin362a61a2008-05-14 06:37:36 +02003854 smp_wmb(); /* See comment in __pte_alloc */
3855
Hugh Dickins872fec12005-10-29 18:16:21 -07003856 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857#ifndef __ARCH_HAS_4LEVEL_HACK
Hugh Dickins1bb36302005-10-29 18:16:22 -07003858 if (pud_present(*pud)) /* Another has populated it */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -08003859 pmd_free(mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003860 else
3861 pud_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862#else
Hugh Dickins1bb36302005-10-29 18:16:22 -07003863 if (pgd_present(*pud)) /* Another has populated it */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -08003864 pmd_free(mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003865 else
3866 pgd_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867#endif /* __ARCH_HAS_4LEVEL_HACK */
Hugh Dickinsc74df322005-10-29 18:16:23 -07003868 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003869 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870}
3871#endif /* __PAGETABLE_PMD_FOLDED */
3872
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873#if !defined(__HAVE_ARCH_GATE_AREA)
3874
3875#if defined(AT_SYSINFO_EHDR)
Adrian Bunk5ce78522005-09-10 00:26:28 -07003876static struct vm_area_struct gate_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
3878static int __init gate_vma_init(void)
3879{
3880 gate_vma.vm_mm = NULL;
3881 gate_vma.vm_start = FIXADDR_USER_START;
3882 gate_vma.vm_end = FIXADDR_USER_END;
Roland McGrathb6558c42007-01-26 00:56:47 -08003883 gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC;
3884 gate_vma.vm_page_prot = __P101;
Jason Baron909af762012-03-23 15:02:51 -07003885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 return 0;
3887}
3888__initcall(gate_vma_init);
3889#endif
3890
Stephen Wilson31db58b2011-03-13 15:49:15 -04003891struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892{
3893#ifdef AT_SYSINFO_EHDR
3894 return &gate_vma;
3895#else
3896 return NULL;
3897#endif
3898}
3899
Stephen Wilsoncae5d392011-03-13 15:49:17 -04003900int in_gate_area_no_mm(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
3902#ifdef AT_SYSINFO_EHDR
3903 if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
3904 return 1;
3905#endif
3906 return 0;
3907}
3908
3909#endif /* __HAVE_ARCH_GATE_AREA */
David Howells0ec76a12006-09-27 01:50:15 -07003910
Namhyung Kim1b36ba82010-10-26 14:22:00 -07003911static int __follow_pte(struct mm_struct *mm, unsigned long address,
Johannes Weinerf8ad0f492009-06-16 15:32:33 -07003912 pte_t **ptepp, spinlock_t **ptlp)
3913{
3914 pgd_t *pgd;
3915 pud_t *pud;
3916 pmd_t *pmd;
3917 pte_t *ptep;
3918
3919 pgd = pgd_offset(mm, address);
3920 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
3921 goto out;
3922
3923 pud = pud_offset(pgd, address);
3924 if (pud_none(*pud) || unlikely(pud_bad(*pud)))
3925 goto out;
3926
3927 pmd = pmd_offset(pud, address);
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08003928 VM_BUG_ON(pmd_trans_huge(*pmd));
Johannes Weinerf8ad0f492009-06-16 15:32:33 -07003929 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
3930 goto out;
3931
3932 /* We cannot handle huge page PFN maps. Luckily they don't exist. */
3933 if (pmd_huge(*pmd))
3934 goto out;
3935
3936 ptep = pte_offset_map_lock(mm, pmd, address, ptlp);
3937 if (!ptep)
3938 goto out;
3939 if (!pte_present(*ptep))
3940 goto unlock;
3941 *ptepp = ptep;
3942 return 0;
3943unlock:
3944 pte_unmap_unlock(ptep, *ptlp);
3945out:
3946 return -EINVAL;
3947}
3948
Namhyung Kim1b36ba82010-10-26 14:22:00 -07003949static inline int follow_pte(struct mm_struct *mm, unsigned long address,
3950 pte_t **ptepp, spinlock_t **ptlp)
3951{
3952 int res;
3953
3954 /* (void) is needed to make gcc happy */
3955 (void) __cond_lock(*ptlp,
3956 !(res = __follow_pte(mm, address, ptepp, ptlp)));
3957 return res;
3958}
3959
Johannes Weiner3b6748e2009-06-16 15:32:35 -07003960/**
3961 * follow_pfn - look up PFN at a user virtual address
3962 * @vma: memory mapping
3963 * @address: user virtual address
3964 * @pfn: location to store found PFN
3965 *
3966 * Only IO mappings and raw PFN mappings are allowed.
3967 *
3968 * Returns zero and the pfn at @pfn on success, -ve otherwise.
3969 */
3970int follow_pfn(struct vm_area_struct *vma, unsigned long address,
3971 unsigned long *pfn)
3972{
3973 int ret = -EINVAL;
3974 spinlock_t *ptl;
3975 pte_t *ptep;
3976
3977 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
3978 return ret;
3979
3980 ret = follow_pte(vma->vm_mm, address, &ptep, &ptl);
3981 if (ret)
3982 return ret;
3983 *pfn = pte_pfn(*ptep);
3984 pte_unmap_unlock(ptep, ptl);
3985 return 0;
3986}
3987EXPORT_SYMBOL(follow_pfn);
3988
Rik van Riel28b2ee22008-07-23 21:27:05 -07003989#ifdef CONFIG_HAVE_IOREMAP_PROT
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003990int follow_phys(struct vm_area_struct *vma,
3991 unsigned long address, unsigned int flags,
3992 unsigned long *prot, resource_size_t *phys)
Rik van Riel28b2ee22008-07-23 21:27:05 -07003993{
Johannes Weiner03668a42009-06-16 15:32:34 -07003994 int ret = -EINVAL;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003995 pte_t *ptep, pte;
3996 spinlock_t *ptl;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003997
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003998 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
3999 goto out;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004000
Johannes Weiner03668a42009-06-16 15:32:34 -07004001 if (follow_pte(vma->vm_mm, address, &ptep, &ptl))
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08004002 goto out;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004003 pte = *ptep;
Johannes Weiner03668a42009-06-16 15:32:34 -07004004
Rik van Riel28b2ee22008-07-23 21:27:05 -07004005 if ((flags & FOLL_WRITE) && !pte_write(pte))
4006 goto unlock;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004007
4008 *prot = pgprot_val(pte_pgprot(pte));
Johannes Weiner03668a42009-06-16 15:32:34 -07004009 *phys = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004010
Johannes Weiner03668a42009-06-16 15:32:34 -07004011 ret = 0;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004012unlock:
4013 pte_unmap_unlock(ptep, ptl);
4014out:
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08004015 return ret;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004016}
4017
4018int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
4019 void *buf, int len, int write)
4020{
4021 resource_size_t phys_addr;
4022 unsigned long prot = 0;
KOSAKI Motohiro2bc72732009-01-06 14:39:43 -08004023 void __iomem *maddr;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004024 int offset = addr & (PAGE_SIZE-1);
4025
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08004026 if (follow_phys(vma, addr, write, &prot, &phys_addr))
Rik van Riel28b2ee22008-07-23 21:27:05 -07004027 return -EINVAL;
4028
4029 maddr = ioremap_prot(phys_addr, PAGE_SIZE, prot);
4030 if (write)
4031 memcpy_toio(maddr + offset, buf, len);
4032 else
4033 memcpy_fromio(buf, maddr + offset, len);
4034 iounmap(maddr);
4035
4036 return len;
4037}
Uwe Kleine-König5a736332013-08-07 13:02:52 +02004038EXPORT_SYMBOL_GPL(generic_access_phys);
Rik van Riel28b2ee22008-07-23 21:27:05 -07004039#endif
4040
David Howells0ec76a12006-09-27 01:50:15 -07004041/*
Stephen Wilson206cb632011-03-13 15:49:19 -04004042 * Access another process' address space as given in mm. If non-NULL, use the
4043 * given task for page fault accounting.
David Howells0ec76a12006-09-27 01:50:15 -07004044 */
Stephen Wilson206cb632011-03-13 15:49:19 -04004045static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
4046 unsigned long addr, void *buf, int len, int write)
David Howells0ec76a12006-09-27 01:50:15 -07004047{
David Howells0ec76a12006-09-27 01:50:15 -07004048 struct vm_area_struct *vma;
David Howells0ec76a12006-09-27 01:50:15 -07004049 void *old_buf = buf;
4050
David Howells0ec76a12006-09-27 01:50:15 -07004051 down_read(&mm->mmap_sem);
Simon Arlott183ff222007-10-20 01:27:18 +02004052 /* ignore errors, just check how much was successfully transferred */
David Howells0ec76a12006-09-27 01:50:15 -07004053 while (len) {
4054 int bytes, ret, offset;
4055 void *maddr;
Rik van Riel28b2ee22008-07-23 21:27:05 -07004056 struct page *page = NULL;
David Howells0ec76a12006-09-27 01:50:15 -07004057
4058 ret = get_user_pages(tsk, mm, addr, 1,
4059 write, 1, &page, &vma);
Rik van Riel28b2ee22008-07-23 21:27:05 -07004060 if (ret <= 0) {
4061 /*
4062 * Check if this is a VM_IO | VM_PFNMAP VMA, which
4063 * we can access using slightly different code.
4064 */
4065#ifdef CONFIG_HAVE_IOREMAP_PROT
4066 vma = find_vma(mm, addr);
Michael Ellermanfe936df2011-04-14 15:22:10 -07004067 if (!vma || vma->vm_start > addr)
Rik van Riel28b2ee22008-07-23 21:27:05 -07004068 break;
4069 if (vma->vm_ops && vma->vm_ops->access)
4070 ret = vma->vm_ops->access(vma, addr, buf,
4071 len, write);
4072 if (ret <= 0)
4073#endif
4074 break;
4075 bytes = ret;
David Howells0ec76a12006-09-27 01:50:15 -07004076 } else {
Rik van Riel28b2ee22008-07-23 21:27:05 -07004077 bytes = len;
4078 offset = addr & (PAGE_SIZE-1);
4079 if (bytes > PAGE_SIZE-offset)
4080 bytes = PAGE_SIZE-offset;
4081
4082 maddr = kmap(page);
4083 if (write) {
4084 copy_to_user_page(vma, page, addr,
4085 maddr + offset, buf, bytes);
4086 set_page_dirty_lock(page);
4087 } else {
4088 copy_from_user_page(vma, page, addr,
4089 buf, maddr + offset, bytes);
4090 }
4091 kunmap(page);
4092 page_cache_release(page);
David Howells0ec76a12006-09-27 01:50:15 -07004093 }
David Howells0ec76a12006-09-27 01:50:15 -07004094 len -= bytes;
4095 buf += bytes;
4096 addr += bytes;
4097 }
4098 up_read(&mm->mmap_sem);
David Howells0ec76a12006-09-27 01:50:15 -07004099
4100 return buf - old_buf;
4101}
Andi Kleen03252912008-01-30 13:33:18 +01004102
Stephen Wilson5ddd36b2011-03-13 15:49:20 -04004103/**
Randy Dunlapae91dbf2011-03-26 13:27:01 -07004104 * access_remote_vm - access another process' address space
Stephen Wilson5ddd36b2011-03-13 15:49:20 -04004105 * @mm: the mm_struct of the target address space
4106 * @addr: start address to access
4107 * @buf: source or destination buffer
4108 * @len: number of bytes to transfer
4109 * @write: whether the access is a write
4110 *
4111 * The caller must hold a reference on @mm.
4112 */
4113int access_remote_vm(struct mm_struct *mm, unsigned long addr,
4114 void *buf, int len, int write)
4115{
4116 return __access_remote_vm(NULL, mm, addr, buf, len, write);
4117}
4118
Andi Kleen03252912008-01-30 13:33:18 +01004119/*
Stephen Wilson206cb632011-03-13 15:49:19 -04004120 * Access another process' address space.
4121 * Source/target buffer must be kernel space,
4122 * Do not walk the page table directly, use get_user_pages
4123 */
4124int access_process_vm(struct task_struct *tsk, unsigned long addr,
4125 void *buf, int len, int write)
4126{
4127 struct mm_struct *mm;
4128 int ret;
4129
4130 mm = get_task_mm(tsk);
4131 if (!mm)
4132 return 0;
4133
4134 ret = __access_remote_vm(tsk, mm, addr, buf, len, write);
4135 mmput(mm);
4136
4137 return ret;
4138}
4139
Andi Kleen03252912008-01-30 13:33:18 +01004140/*
4141 * Print the name of a VMA.
4142 */
4143void print_vma_addr(char *prefix, unsigned long ip)
4144{
4145 struct mm_struct *mm = current->mm;
4146 struct vm_area_struct *vma;
4147
Ingo Molnare8bff742008-02-13 20:21:06 +01004148 /*
4149 * Do not print if we are in atomic
4150 * contexts (in exception stacks, etc.):
4151 */
4152 if (preempt_count())
4153 return;
4154
Andi Kleen03252912008-01-30 13:33:18 +01004155 down_read(&mm->mmap_sem);
4156 vma = find_vma(mm, ip);
4157 if (vma && vma->vm_file) {
4158 struct file *f = vma->vm_file;
4159 char *buf = (char *)__get_free_page(GFP_KERNEL);
4160 if (buf) {
Andy Shevchenko2fbc57c2012-12-17 16:01:23 -08004161 char *p;
Andi Kleen03252912008-01-30 13:33:18 +01004162
Jan Blunckcf28b482008-02-14 19:38:44 -08004163 p = d_path(&f->f_path, buf, PAGE_SIZE);
Andi Kleen03252912008-01-30 13:33:18 +01004164 if (IS_ERR(p))
4165 p = "?";
Andy Shevchenko2fbc57c2012-12-17 16:01:23 -08004166 printk("%s%s[%lx+%lx]", prefix, kbasename(p),
Andi Kleen03252912008-01-30 13:33:18 +01004167 vma->vm_start,
4168 vma->vm_end - vma->vm_start);
4169 free_page((unsigned long)buf);
4170 }
4171 }
Jeff Liu51a07e52012-07-31 16:43:18 -07004172 up_read(&mm->mmap_sem);
Andi Kleen03252912008-01-30 13:33:18 +01004173}
Nick Piggin3ee1afa2008-09-10 13:37:17 +02004174
Michael S. Tsirkin662bbcb2013-05-26 17:32:23 +03004175#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)
Nick Piggin3ee1afa2008-09-10 13:37:17 +02004176void might_fault(void)
4177{
Peter Zijlstra95156f02009-01-12 13:02:11 +01004178 /*
4179 * Some code (nfs/sunrpc) uses socket ops on kernel memory while
4180 * holding the mmap_sem, this is safe because kernel memory doesn't
4181 * get paged out, therefore we'll never actually fault, and the
4182 * below annotations will generate false positives.
4183 */
4184 if (segment_eq(get_fs(), KERNEL_DS))
4185 return;
4186
Nick Piggin3ee1afa2008-09-10 13:37:17 +02004187 /*
4188 * it would be nicer only to annotate paths which are not under
4189 * pagefault_disable, however that requires a larger audit and
4190 * providing helpers like get_user_atomic.
4191 */
Michael S. Tsirkin662bbcb2013-05-26 17:32:23 +03004192 if (in_atomic())
4193 return;
4194
4195 __might_sleep(__FILE__, __LINE__, 0);
4196
4197 if (current->mm)
Nick Piggin3ee1afa2008-09-10 13:37:17 +02004198 might_lock_read(&current->mm->mmap_sem);
4199}
4200EXPORT_SYMBOL(might_fault);
4201#endif
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08004202
4203#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS)
4204static void clear_gigantic_page(struct page *page,
4205 unsigned long addr,
4206 unsigned int pages_per_huge_page)
4207{
4208 int i;
4209 struct page *p = page;
4210
4211 might_sleep();
4212 for (i = 0; i < pages_per_huge_page;
4213 i++, p = mem_map_next(p, page, i)) {
4214 cond_resched();
4215 clear_user_highpage(p, addr + i * PAGE_SIZE);
4216 }
4217}
4218void clear_huge_page(struct page *page,
4219 unsigned long addr, unsigned int pages_per_huge_page)
4220{
4221 int i;
4222
4223 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
4224 clear_gigantic_page(page, addr, pages_per_huge_page);
4225 return;
4226 }
4227
4228 might_sleep();
4229 for (i = 0; i < pages_per_huge_page; i++) {
4230 cond_resched();
4231 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
4232 }
4233}
4234
4235static void copy_user_gigantic_page(struct page *dst, struct page *src,
4236 unsigned long addr,
4237 struct vm_area_struct *vma,
4238 unsigned int pages_per_huge_page)
4239{
4240 int i;
4241 struct page *dst_base = dst;
4242 struct page *src_base = src;
4243
4244 for (i = 0; i < pages_per_huge_page; ) {
4245 cond_resched();
4246 copy_user_highpage(dst, src, addr + i*PAGE_SIZE, vma);
4247
4248 i++;
4249 dst = mem_map_next(dst, dst_base, i);
4250 src = mem_map_next(src, src_base, i);
4251 }
4252}
4253
4254void copy_user_huge_page(struct page *dst, struct page *src,
4255 unsigned long addr, struct vm_area_struct *vma,
4256 unsigned int pages_per_huge_page)
4257{
4258 int i;
4259
4260 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
4261 copy_user_gigantic_page(dst, src, addr, vma,
4262 pages_per_huge_page);
4263 return;
4264 }
4265
4266 might_sleep();
4267 for (i = 0; i < pages_per_huge_page; i++) {
4268 cond_resched();
4269 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
4270 }
4271}
4272#endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08004273
Olof Johansson40b64ac2013-12-20 14:28:05 -08004274#if USE_SPLIT_PTE_PTLOCKS && ALLOC_SPLIT_PTLOCKS
Kirill A. Shutemovb35f1812014-01-21 15:49:07 -08004275
4276static struct kmem_cache *page_ptl_cachep;
4277
4278void __init ptlock_cache_init(void)
4279{
4280 page_ptl_cachep = kmem_cache_create("page->ptl", sizeof(spinlock_t), 0,
4281 SLAB_PANIC, NULL);
4282}
4283
Peter Zijlstra539edb52013-11-14 14:31:52 -08004284bool ptlock_alloc(struct page *page)
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08004285{
4286 spinlock_t *ptl;
4287
Kirill A. Shutemovb35f1812014-01-21 15:49:07 -08004288 ptl = kmem_cache_alloc(page_ptl_cachep, GFP_KERNEL);
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08004289 if (!ptl)
4290 return false;
Peter Zijlstra539edb52013-11-14 14:31:52 -08004291 page->ptl = ptl;
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08004292 return true;
4293}
4294
Peter Zijlstra539edb52013-11-14 14:31:52 -08004295void ptlock_free(struct page *page)
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08004296{
Kirill A. Shutemovb35f1812014-01-21 15:49:07 -08004297 kmem_cache_free(page_ptl_cachep, page->ptl);
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08004298}
4299#endif