blob: c71edae9ba4473b44c83ba6f5b779601ace6c792 [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>
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -070063#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Alexey Dobriyan6952b612009-09-18 23:55:55 +040065#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <asm/pgalloc.h>
67#include <asm/uaccess.h>
68#include <asm/tlb.h>
69#include <asm/tlbflush.h>
70#include <asm/pgtable.h>
71
Jan Beulich42b77722008-07-23 21:27:10 -070072#include "internal.h"
73
Peter Zijlstra90572892013-10-07 11:29:20 +010074#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
75#warning Unfortunate NUMA and NUMA Balancing config, growing page-frame for last_cpupid.
Peter Zijlstra75980e92013-02-22 16:34:32 -080076#endif
77
Andy Whitcroftd41dee32005-06-23 00:07:54 -070078#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* use the per-pgdat data instead for discontigmem - mbligh */
80unsigned long max_mapnr;
81struct page *mem_map;
82
83EXPORT_SYMBOL(max_mapnr);
84EXPORT_SYMBOL(mem_map);
85#endif
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * A number of key systems in x86 including ioremap() rely on the assumption
89 * that high_memory defines the upper bound on direct map memory, then end
90 * of ZONE_NORMAL. Under CONFIG_DISCONTIG this means that max_low_pfn and
91 * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
92 * and ZONE_HIGHMEM.
93 */
94void * high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096EXPORT_SYMBOL(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Ingo Molnar32a93232008-02-06 22:39:44 +010098/*
99 * Randomize the address space (stacks, mmaps, brk, etc.).
100 *
101 * ( When CONFIG_COMPAT_BRK=y we exclude brk from randomization,
102 * as ancient (libc5 based) binaries can segfault. )
103 */
104int randomize_va_space __read_mostly =
105#ifdef CONFIG_COMPAT_BRK
106 1;
107#else
108 2;
109#endif
Andi Kleena62eaf12006-02-16 23:41:58 +0100110
111static int __init disable_randmaps(char *s)
112{
113 randomize_va_space = 0;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800114 return 1;
Andi Kleena62eaf12006-02-16 23:41:58 +0100115}
116__setup("norandmaps", disable_randmaps);
117
Hugh Dickins62eede62009-09-21 17:03:34 -0700118unsigned long zero_pfn __read_mostly;
Hugh Dickins03f64622009-09-21 17:03:35 -0700119unsigned long highest_memmap_pfn __read_mostly;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -0700120
Ard Biesheuvel0b700682014-09-12 22:17:23 +0200121EXPORT_SYMBOL(zero_pfn);
122
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -0700123/*
124 * CONFIG_MMU architectures set up ZERO_PAGE in their paging_init()
125 */
126static int __init init_zero_pfn(void)
127{
128 zero_pfn = page_to_pfn(ZERO_PAGE(0));
129 return 0;
130}
131core_initcall(init_zero_pfn);
Andi Kleena62eaf12006-02-16 23:41:58 +0100132
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800133
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800134#if defined(SPLIT_RSS_COUNTING)
135
David Rientjesea48cf72012-03-21 16:34:13 -0700136void sync_mm_rss(struct mm_struct *mm)
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800137{
138 int i;
139
140 for (i = 0; i < NR_MM_COUNTERS; i++) {
David Rientjes05af2e12012-03-21 16:34:13 -0700141 if (current->rss_stat.count[i]) {
142 add_mm_counter(mm, i, current->rss_stat.count[i]);
143 current->rss_stat.count[i] = 0;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800144 }
145 }
David Rientjes05af2e12012-03-21 16:34:13 -0700146 current->rss_stat.events = 0;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800147}
148
149static void add_mm_counter_fast(struct mm_struct *mm, int member, int val)
150{
151 struct task_struct *task = current;
152
153 if (likely(task->mm == mm))
154 task->rss_stat.count[member] += val;
155 else
156 add_mm_counter(mm, member, val);
157}
158#define inc_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, 1)
159#define dec_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, -1)
160
161/* sync counter once per 64 page faults */
162#define TASK_RSS_EVENTS_THRESH (64)
163static void check_sync_rss_stat(struct task_struct *task)
164{
165 if (unlikely(task != current))
166 return;
167 if (unlikely(task->rss_stat.events++ > TASK_RSS_EVENTS_THRESH))
David Rientjesea48cf72012-03-21 16:34:13 -0700168 sync_mm_rss(task->mm);
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800169}
Peter Zijlstra9547d012011-05-24 17:12:14 -0700170#else /* SPLIT_RSS_COUNTING */
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800171
172#define inc_mm_counter_fast(mm, member) inc_mm_counter(mm, member)
173#define dec_mm_counter_fast(mm, member) dec_mm_counter(mm, member)
174
175static void check_sync_rss_stat(struct task_struct *task)
176{
177}
178
Peter Zijlstra9547d012011-05-24 17:12:14 -0700179#endif /* SPLIT_RSS_COUNTING */
180
181#ifdef HAVE_GENERIC_MMU_GATHER
182
183static int tlb_next_batch(struct mmu_gather *tlb)
184{
185 struct mmu_gather_batch *batch;
186
187 batch = tlb->active;
188 if (batch->next) {
189 tlb->active = batch->next;
190 return 1;
191 }
192
Michal Hocko53a59fc2013-01-04 15:35:12 -0800193 if (tlb->batch_count == MAX_GATHER_BATCH_COUNT)
194 return 0;
195
Peter Zijlstra9547d012011-05-24 17:12:14 -0700196 batch = (void *)__get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
197 if (!batch)
198 return 0;
199
Michal Hocko53a59fc2013-01-04 15:35:12 -0800200 tlb->batch_count++;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700201 batch->next = NULL;
202 batch->nr = 0;
203 batch->max = MAX_GATHER_BATCH;
204
205 tlb->active->next = batch;
206 tlb->active = batch;
207
208 return 1;
209}
210
211/* tlb_gather_mmu
212 * Called to initialize an (on-stack) mmu_gather structure for page-table
213 * tear-down from @mm. The @fullmm argument is used when @mm is without
214 * users and we're going to destroy the full address space (exit/execve).
215 */
Linus Torvalds2b047252013-08-15 11:42:25 -0700216void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned long start, unsigned long end)
Peter Zijlstra9547d012011-05-24 17:12:14 -0700217{
218 tlb->mm = mm;
219
Linus Torvalds2b047252013-08-15 11:42:25 -0700220 /* Is it from 0 to ~0? */
221 tlb->fullmm = !(start | (end+1));
Dave Hansen1de14c32013-04-12 16:23:54 -0700222 tlb->need_flush_all = 0;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700223 tlb->local.next = NULL;
224 tlb->local.nr = 0;
225 tlb->local.max = ARRAY_SIZE(tlb->__pages);
226 tlb->active = &tlb->local;
Michal Hocko53a59fc2013-01-04 15:35:12 -0800227 tlb->batch_count = 0;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700228
229#ifdef CONFIG_HAVE_RCU_TABLE_FREE
230 tlb->batch = NULL;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800231#endif
Will Deaconfb7332a2014-10-29 10:03:09 +0000232
233 __tlb_reset_range(tlb);
Peter Zijlstra9547d012011-05-24 17:12:14 -0700234}
235
Linus Torvalds1cf35d42014-04-25 16:05:40 -0700236static void tlb_flush_mmu_tlbonly(struct mmu_gather *tlb)
Peter Zijlstra9547d012011-05-24 17:12:14 -0700237{
Will Deaconfb7332a2014-10-29 10:03:09 +0000238 if (!tlb->end)
239 return;
240
Peter Zijlstra9547d012011-05-24 17:12:14 -0700241 tlb_flush(tlb);
242#ifdef CONFIG_HAVE_RCU_TABLE_FREE
243 tlb_table_flush(tlb);
244#endif
Will Deaconfb7332a2014-10-29 10:03:09 +0000245 __tlb_reset_range(tlb);
Linus Torvalds1cf35d42014-04-25 16:05:40 -0700246}
247
248static void tlb_flush_mmu_free(struct mmu_gather *tlb)
249{
250 struct mmu_gather_batch *batch;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700251
Peter Zijlstra9547d012011-05-24 17:12:14 -0700252 for (batch = &tlb->local; batch; batch = batch->next) {
253 free_pages_and_swap_cache(batch->pages, batch->nr);
254 batch->nr = 0;
255 }
256 tlb->active = &tlb->local;
257}
258
Linus Torvalds1cf35d42014-04-25 16:05:40 -0700259void tlb_flush_mmu(struct mmu_gather *tlb)
260{
Linus Torvalds1cf35d42014-04-25 16:05:40 -0700261 tlb_flush_mmu_tlbonly(tlb);
262 tlb_flush_mmu_free(tlb);
263}
264
Peter Zijlstra9547d012011-05-24 17:12:14 -0700265/* tlb_finish_mmu
266 * Called at the end of the shootdown operation to free up any resources
267 * that were required.
268 */
269void tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
270{
271 struct mmu_gather_batch *batch, *next;
272
273 tlb_flush_mmu(tlb);
274
275 /* keep the page table cache within bounds */
276 check_pgt_cache();
277
278 for (batch = tlb->local.next; batch; batch = next) {
279 next = batch->next;
280 free_pages((unsigned long)batch, 0);
281 }
282 tlb->local.next = NULL;
283}
284
285/* __tlb_remove_page
286 * Must perform the equivalent to __free_pte(pte_get_and_clear(ptep)), while
287 * handling the additional races in SMP caused by other CPUs caching valid
288 * mappings in their TLBs. Returns the number of free page slots left.
289 * When out of page slots we must call tlb_flush_mmu().
290 */
291int __tlb_remove_page(struct mmu_gather *tlb, struct page *page)
292{
293 struct mmu_gather_batch *batch;
294
Will Deaconfb7332a2014-10-29 10:03:09 +0000295 VM_BUG_ON(!tlb->end);
Peter Zijlstra9547d012011-05-24 17:12:14 -0700296
Peter Zijlstra9547d012011-05-24 17:12:14 -0700297 batch = tlb->active;
298 batch->pages[batch->nr++] = page;
299 if (batch->nr == batch->max) {
300 if (!tlb_next_batch(tlb))
301 return 0;
Shaohua Li0b43c3a2011-07-08 15:39:41 -0700302 batch = tlb->active;
Peter Zijlstra9547d012011-05-24 17:12:14 -0700303 }
Sasha Levin309381fea2014-01-23 15:52:54 -0800304 VM_BUG_ON_PAGE(batch->nr > batch->max, page);
Peter Zijlstra9547d012011-05-24 17:12:14 -0700305
306 return batch->max - batch->nr;
307}
308
309#endif /* HAVE_GENERIC_MMU_GATHER */
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800310
Peter Zijlstra26723912011-05-24 17:12:00 -0700311#ifdef CONFIG_HAVE_RCU_TABLE_FREE
312
313/*
314 * See the comment near struct mmu_table_batch.
315 */
316
317static void tlb_remove_table_smp_sync(void *arg)
318{
319 /* Simply deliver the interrupt */
320}
321
322static void tlb_remove_table_one(void *table)
323{
324 /*
325 * This isn't an RCU grace period and hence the page-tables cannot be
326 * assumed to be actually RCU-freed.
327 *
328 * It is however sufficient for software page-table walkers that rely on
329 * IRQ disabling. See the comment near struct mmu_table_batch.
330 */
331 smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
332 __tlb_remove_table(table);
333}
334
335static void tlb_remove_table_rcu(struct rcu_head *head)
336{
337 struct mmu_table_batch *batch;
338 int i;
339
340 batch = container_of(head, struct mmu_table_batch, rcu);
341
342 for (i = 0; i < batch->nr; i++)
343 __tlb_remove_table(batch->tables[i]);
344
345 free_page((unsigned long)batch);
346}
347
348void tlb_table_flush(struct mmu_gather *tlb)
349{
350 struct mmu_table_batch **batch = &tlb->batch;
351
352 if (*batch) {
353 call_rcu_sched(&(*batch)->rcu, tlb_remove_table_rcu);
354 *batch = NULL;
355 }
356}
357
358void tlb_remove_table(struct mmu_gather *tlb, void *table)
359{
360 struct mmu_table_batch **batch = &tlb->batch;
361
Peter Zijlstra26723912011-05-24 17:12:00 -0700362 /*
363 * When there's less then two users of this mm there cannot be a
364 * concurrent page-table walk.
365 */
366 if (atomic_read(&tlb->mm->mm_users) < 2) {
367 __tlb_remove_table(table);
368 return;
369 }
370
371 if (*batch == NULL) {
372 *batch = (struct mmu_table_batch *)__get_free_page(GFP_NOWAIT | __GFP_NOWARN);
373 if (*batch == NULL) {
374 tlb_remove_table_one(table);
375 return;
376 }
377 (*batch)->nr = 0;
378 }
379 (*batch)->tables[(*batch)->nr++] = table;
380 if ((*batch)->nr == MAX_TABLE_BATCH)
381 tlb_table_flush(tlb);
382}
383
Peter Zijlstra9547d012011-05-24 17:12:14 -0700384#endif /* CONFIG_HAVE_RCU_TABLE_FREE */
Peter Zijlstra26723912011-05-24 17:12:00 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * Note: this doesn't free the actual pages themselves. That
388 * has been handled earlier when unmapping all the memory regions.
389 */
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000390static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd,
391 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800393 pgtable_t token = pmd_pgtable(*pmd);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700394 pmd_clear(pmd);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000395 pte_free_tlb(tlb, token, addr);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800396 atomic_long_dec(&tlb->mm->nr_ptes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Hugh Dickinse0da3822005-04-19 13:29:15 -0700399static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
400 unsigned long addr, unsigned long end,
401 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 pmd_t *pmd;
404 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700405 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Hugh Dickinse0da3822005-04-19 13:29:15 -0700407 start = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 pmd = pmd_offset(pud, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 do {
410 next = pmd_addr_end(addr, end);
411 if (pmd_none_or_clear_bad(pmd))
412 continue;
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000413 free_pte_range(tlb, pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } while (pmd++, addr = next, addr != end);
415
Hugh Dickinse0da3822005-04-19 13:29:15 -0700416 start &= PUD_MASK;
417 if (start < floor)
418 return;
419 if (ceiling) {
420 ceiling &= PUD_MASK;
421 if (!ceiling)
422 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700424 if (end - 1 > ceiling - 1)
425 return;
426
427 pmd = pmd_offset(pud, start);
428 pud_clear(pud);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000429 pmd_free_tlb(tlb, pmd, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Hugh Dickinse0da3822005-04-19 13:29:15 -0700432static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
433 unsigned long addr, unsigned long end,
434 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 pud_t *pud;
437 unsigned long next;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700438 unsigned long start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Hugh Dickinse0da3822005-04-19 13:29:15 -0700440 start = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 pud = pud_offset(pgd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 do {
443 next = pud_addr_end(addr, end);
444 if (pud_none_or_clear_bad(pud))
445 continue;
Hugh Dickinse0da3822005-04-19 13:29:15 -0700446 free_pmd_range(tlb, pud, addr, next, floor, ceiling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 } while (pud++, addr = next, addr != end);
448
Hugh Dickinse0da3822005-04-19 13:29:15 -0700449 start &= PGDIR_MASK;
450 if (start < floor)
451 return;
452 if (ceiling) {
453 ceiling &= PGDIR_MASK;
454 if (!ceiling)
455 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700457 if (end - 1 > ceiling - 1)
458 return;
459
460 pud = pud_offset(pgd, start);
461 pgd_clear(pgd);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000462 pud_free_tlb(tlb, pud, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465/*
Hugh Dickinse0da3822005-04-19 13:29:15 -0700466 * This function frees user-level page tables of a process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 */
Jan Beulich42b77722008-07-23 21:27:10 -0700468void free_pgd_range(struct mmu_gather *tlb,
Hugh Dickinse0da3822005-04-19 13:29:15 -0700469 unsigned long addr, unsigned long end,
470 unsigned long floor, unsigned long ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 pgd_t *pgd;
473 unsigned long next;
474
Hugh Dickinse0da3822005-04-19 13:29:15 -0700475 /*
476 * The next few lines have given us lots of grief...
477 *
478 * Why are we testing PMD* at this top level? Because often
479 * there will be no work to do at all, and we'd prefer not to
480 * go all the way down to the bottom just to discover that.
481 *
482 * Why all these "- 1"s? Because 0 represents both the bottom
483 * of the address space and the top of it (using -1 for the
484 * top wouldn't help much: the masks would do the wrong thing).
485 * The rule is that addr 0 and floor 0 refer to the bottom of
486 * the address space, but end 0 and ceiling 0 refer to the top
487 * Comparisons need to use "end - 1" and "ceiling - 1" (though
488 * that end 0 case should be mythical).
489 *
490 * Wherever addr is brought up or ceiling brought down, we must
491 * be careful to reject "the opposite 0" before it confuses the
492 * subsequent tests. But what about where end is brought down
493 * by PMD_SIZE below? no, end can't go down to 0 there.
494 *
495 * Whereas we round start (addr) and ceiling down, by different
496 * masks at different levels, in order to test whether a table
497 * now has no other vmas using it, so can be freed, we don't
498 * bother to round floor or end up - the tests don't need that.
499 */
500
501 addr &= PMD_MASK;
502 if (addr < floor) {
503 addr += PMD_SIZE;
504 if (!addr)
505 return;
506 }
507 if (ceiling) {
508 ceiling &= PMD_MASK;
509 if (!ceiling)
510 return;
511 }
512 if (end - 1 > ceiling - 1)
513 end -= PMD_SIZE;
514 if (addr > end - 1)
515 return;
516
Jan Beulich42b77722008-07-23 21:27:10 -0700517 pgd = pgd_offset(tlb->mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 do {
519 next = pgd_addr_end(addr, end);
520 if (pgd_none_or_clear_bad(pgd))
521 continue;
Jan Beulich42b77722008-07-23 21:27:10 -0700522 free_pud_range(tlb, pgd, addr, next, floor, ceiling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 } while (pgd++, addr = next, addr != end);
Hugh Dickinse0da3822005-04-19 13:29:15 -0700524}
525
Jan Beulich42b77722008-07-23 21:27:10 -0700526void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *vma,
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700527 unsigned long floor, unsigned long ceiling)
Hugh Dickinse0da3822005-04-19 13:29:15 -0700528{
529 while (vma) {
530 struct vm_area_struct *next = vma->vm_next;
531 unsigned long addr = vma->vm_start;
532
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700533 /*
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000534 * Hide vma from rmap and truncate_pagecache before freeing
535 * pgtables
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700536 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800537 unlink_anon_vmas(vma);
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700538 unlink_file_vma(vma);
539
David Gibson9da61ae2006-03-22 00:08:57 -0800540 if (is_vm_hugetlb_page(vma)) {
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700541 hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
Hugh Dickinse0da3822005-04-19 13:29:15 -0700542 floor, next? next->vm_start: ceiling);
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700543 } else {
544 /*
545 * Optimization: gather nearby vmas into one call down
546 */
547 while (next && next->vm_start <= vma->vm_end + PMD_SIZE
David Gibson48669202006-03-22 00:08:58 -0800548 && !is_vm_hugetlb_page(next)) {
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700549 vma = next;
550 next = vma->vm_next;
Rik van Riel5beb4932010-03-05 13:42:07 -0800551 unlink_anon_vmas(vma);
Hugh Dickins8f4f8c12005-10-29 18:16:29 -0700552 unlink_file_vma(vma);
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700553 }
554 free_pgd_range(tlb, addr, vma->vm_end,
555 floor, next? next->vm_start: ceiling);
556 }
Hugh Dickinse0da3822005-04-19 13:29:15 -0700557 vma = next;
558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800561int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
562 pmd_t *pmd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800564 spinlock_t *ptl;
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800565 pgtable_t new = pte_alloc_one(mm, address);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800566 int wait_split_huge_page;
Hugh Dickins1bb36302005-10-29 18:16:22 -0700567 if (!new)
568 return -ENOMEM;
569
Nick Piggin362a61a2008-05-14 06:37:36 +0200570 /*
571 * Ensure all pte setup (eg. pte page lock and page clearing) are
572 * visible before the pte is made visible to other CPUs by being
573 * put into page tables.
574 *
575 * The other side of the story is the pointer chasing in the page
576 * table walking code (when walking the page table without locking;
577 * ie. most of the time). Fortunately, these data accesses consist
578 * of a chain of data-dependent loads, meaning most CPUs (alpha
579 * being the notable exception) will already guarantee loads are
580 * seen in-order. See the alpha page table accessors for the
581 * smp_read_barrier_depends() barriers in page table walking code.
582 */
583 smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */
584
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800585 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800586 wait_split_huge_page = 0;
587 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800588 atomic_long_inc(&mm->nr_ptes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 pmd_populate(mm, pmd, new);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800590 new = NULL;
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800591 } else if (unlikely(pmd_trans_splitting(*pmd)))
592 wait_split_huge_page = 1;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800593 spin_unlock(ptl);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800594 if (new)
595 pte_free(mm, new);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800596 if (wait_split_huge_page)
597 wait_split_huge_page(vma->anon_vma, pmd);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Hugh Dickins1bb36302005-10-29 18:16:22 -0700601int __pte_alloc_kernel(pmd_t *pmd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Hugh Dickins1bb36302005-10-29 18:16:22 -0700603 pte_t *new = pte_alloc_one_kernel(&init_mm, address);
604 if (!new)
605 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Nick Piggin362a61a2008-05-14 06:37:36 +0200607 smp_wmb(); /* See comment in __pte_alloc */
608
Hugh Dickins1bb36302005-10-29 18:16:22 -0700609 spin_lock(&init_mm.page_table_lock);
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800610 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
Hugh Dickins1bb36302005-10-29 18:16:22 -0700611 pmd_populate_kernel(&init_mm, pmd, new);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800612 new = NULL;
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -0800613 } else
614 VM_BUG_ON(pmd_trans_splitting(*pmd));
Hugh Dickins1bb36302005-10-29 18:16:22 -0700615 spin_unlock(&init_mm.page_table_lock);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800616 if (new)
617 pte_free_kernel(&init_mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -0700618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800621static inline void init_rss_vec(int *rss)
Hugh Dickinsae859762005-10-29 18:16:05 -0700622{
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800623 memset(rss, 0, sizeof(int) * NR_MM_COUNTERS);
624}
625
626static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss)
627{
628 int i;
629
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800630 if (current->mm == mm)
David Rientjes05af2e12012-03-21 16:34:13 -0700631 sync_mm_rss(mm);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800632 for (i = 0; i < NR_MM_COUNTERS; i++)
633 if (rss[i])
634 add_mm_counter(mm, i, rss[i]);
Hugh Dickinsae859762005-10-29 18:16:05 -0700635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/*
Linus Torvalds6aab3412005-11-28 14:34:23 -0800638 * This function is called to print an error when a bad pte
639 * is found. For example, we might have a PFN-mapped pte in
640 * a region that doesn't allow it.
Nick Pigginb5810032005-10-29 18:16:12 -0700641 *
642 * The calling function must still handle the error.
643 */
Hugh Dickins3dc14742009-01-06 14:40:08 -0800644static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
645 pte_t pte, struct page *page)
Nick Pigginb5810032005-10-29 18:16:12 -0700646{
Hugh Dickins3dc14742009-01-06 14:40:08 -0800647 pgd_t *pgd = pgd_offset(vma->vm_mm, addr);
648 pud_t *pud = pud_offset(pgd, addr);
649 pmd_t *pmd = pmd_offset(pud, addr);
650 struct address_space *mapping;
651 pgoff_t index;
Hugh Dickinsd936cf92009-01-06 14:40:12 -0800652 static unsigned long resume;
653 static unsigned long nr_shown;
654 static unsigned long nr_unshown;
655
656 /*
657 * Allow a burst of 60 reports, then keep quiet for that minute;
658 * or allow a steady drip of one report per second.
659 */
660 if (nr_shown == 60) {
661 if (time_before(jiffies, resume)) {
662 nr_unshown++;
663 return;
664 }
665 if (nr_unshown) {
Hugh Dickins1e9e6362009-01-06 14:40:13 -0800666 printk(KERN_ALERT
667 "BUG: Bad page map: %lu messages suppressed\n",
Hugh Dickinsd936cf92009-01-06 14:40:12 -0800668 nr_unshown);
669 nr_unshown = 0;
670 }
671 nr_shown = 0;
672 }
673 if (nr_shown++ == 0)
674 resume = jiffies + 60 * HZ;
Hugh Dickins3dc14742009-01-06 14:40:08 -0800675
676 mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL;
677 index = linear_page_index(vma, addr);
678
Hugh Dickins1e9e6362009-01-06 14:40:13 -0800679 printk(KERN_ALERT
680 "BUG: Bad page map in process %s pte:%08llx pmd:%08llx\n",
Hugh Dickins3dc14742009-01-06 14:40:08 -0800681 current->comm,
682 (long long)pte_val(pte), (long long)pmd_val(*pmd));
Wu Fengguang718a3822010-03-10 15:20:43 -0800683 if (page)
Dave Hansenf0b791a2014-01-23 15:52:49 -0800684 dump_page(page, "bad pte");
Hugh Dickins1e9e6362009-01-06 14:40:13 -0800685 printk(KERN_ALERT
Hugh Dickins3dc14742009-01-06 14:40:08 -0800686 "addr:%p vm_flags:%08lx anon_vma:%p mapping:%p index:%lx\n",
687 (void *)addr, vma->vm_flags, vma->anon_vma, mapping, index);
688 /*
689 * Choose text because data symbols depend on CONFIG_KALLSYMS_ALL=y
690 */
691 if (vma->vm_ops)
Joe Perches071361d2012-12-12 10:19:12 -0800692 printk(KERN_ALERT "vma->vm_ops->fault: %pSR\n",
693 vma->vm_ops->fault);
Al Viro72c2d532013-09-22 16:27:52 -0400694 if (vma->vm_file)
Joe Perches071361d2012-12-12 10:19:12 -0800695 printk(KERN_ALERT "vma->vm_file->f_op->mmap: %pSR\n",
696 vma->vm_file->f_op->mmap);
Nick Pigginb5810032005-10-29 18:16:12 -0700697 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030698 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Nick Pigginb5810032005-10-29 18:16:12 -0700699}
700
701/*
Nick Piggin7e675132008-04-28 02:13:00 -0700702 * vm_normal_page -- This function gets the "struct page" associated with a pte.
Linus Torvalds6aab3412005-11-28 14:34:23 -0800703 *
Nick Piggin7e675132008-04-28 02:13:00 -0700704 * "Special" mappings do not wish to be associated with a "struct page" (either
705 * it doesn't exist, or it exists but they don't want to touch it). In this
706 * case, NULL is returned here. "Normal" mappings do have a struct page.
Jared Hulbertb379d792008-04-28 02:12:58 -0700707 *
Nick Piggin7e675132008-04-28 02:13:00 -0700708 * There are 2 broad cases. Firstly, an architecture may define a pte_special()
709 * pte bit, in which case this function is trivial. Secondly, an architecture
710 * may not have a spare pte bit, which requires a more complicated scheme,
711 * described below.
712 *
713 * A raw VM_PFNMAP mapping (ie. one that is not COWed) is always considered a
714 * special mapping (even if there are underlying and valid "struct pages").
715 * COWed pages of a VM_PFNMAP are always normal.
Linus Torvalds6aab3412005-11-28 14:34:23 -0800716 *
Jared Hulbertb379d792008-04-28 02:12:58 -0700717 * The way we recognize COWed pages within VM_PFNMAP mappings is through the
718 * rules set up by "remap_pfn_range()": the vma will have the VM_PFNMAP bit
Nick Piggin7e675132008-04-28 02:13:00 -0700719 * set, and the vm_pgoff will point to the first PFN mapped: thus every special
720 * mapping will always honor the rule
Linus Torvalds6aab3412005-11-28 14:34:23 -0800721 *
722 * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
723 *
Nick Piggin7e675132008-04-28 02:13:00 -0700724 * And for normal mappings this is false.
Jared Hulbertb379d792008-04-28 02:12:58 -0700725 *
Nick Piggin7e675132008-04-28 02:13:00 -0700726 * This restricts such mappings to be a linear translation from virtual address
727 * to pfn. To get around this restriction, we allow arbitrary mappings so long
728 * as the vma is not a COW mapping; in that case, we know that all ptes are
729 * special (because none can have been COWed).
Jared Hulbertb379d792008-04-28 02:12:58 -0700730 *
731 *
Nick Piggin7e675132008-04-28 02:13:00 -0700732 * In order to support COW of arbitrary special mappings, we have VM_MIXEDMAP.
733 *
Jared Hulbertb379d792008-04-28 02:12:58 -0700734 * VM_MIXEDMAP mappings can likewise contain memory with or without "struct
735 * page" backing, however the difference is that _all_ pages with a struct
736 * page (that is, those where pfn_valid is true) are refcounted and considered
737 * normal pages by the VM. The disadvantage is that pages are refcounted
738 * (which can be slower and simply not an option for some PFNMAP users). The
739 * advantage is that we don't have to follow the strict linearity rule of
740 * PFNMAP mappings in order to support COWable mappings.
741 *
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800742 */
Nick Piggin7e675132008-04-28 02:13:00 -0700743#ifdef __HAVE_ARCH_PTE_SPECIAL
744# define HAVE_PTE_SPECIAL 1
745#else
746# define HAVE_PTE_SPECIAL 0
747#endif
748struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
749 pte_t pte)
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800750{
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800751 unsigned long pfn = pte_pfn(pte);
Nick Piggin7e675132008-04-28 02:13:00 -0700752
753 if (HAVE_PTE_SPECIAL) {
Hugh Dickinsb38af472014-08-29 15:18:44 -0700754 if (likely(!pte_special(pte)))
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800755 goto check_pfn;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -0700756 if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
757 return NULL;
Hugh Dickins62eede62009-09-21 17:03:34 -0700758 if (!is_zero_pfn(pfn))
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800759 print_bad_pte(vma, addr, pte, NULL);
Nick Piggin7e675132008-04-28 02:13:00 -0700760 return NULL;
761 }
762
763 /* !HAVE_PTE_SPECIAL case follows: */
764
Jared Hulbertb379d792008-04-28 02:12:58 -0700765 if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
766 if (vma->vm_flags & VM_MIXEDMAP) {
767 if (!pfn_valid(pfn))
768 return NULL;
769 goto out;
770 } else {
Nick Piggin7e675132008-04-28 02:13:00 -0700771 unsigned long off;
772 off = (addr - vma->vm_start) >> PAGE_SHIFT;
Jared Hulbertb379d792008-04-28 02:12:58 -0700773 if (pfn == vma->vm_pgoff + off)
774 return NULL;
775 if (!is_cow_mapping(vma->vm_flags))
776 return NULL;
777 }
Linus Torvalds6aab3412005-11-28 14:34:23 -0800778 }
779
Hugh Dickinsb38af472014-08-29 15:18:44 -0700780 if (is_zero_pfn(pfn))
781 return NULL;
Hugh Dickins22b31ee2009-01-06 14:40:09 -0800782check_pfn:
783 if (unlikely(pfn > highest_memmap_pfn)) {
784 print_bad_pte(vma, addr, pte, NULL);
785 return NULL;
786 }
Linus Torvalds6aab3412005-11-28 14:34:23 -0800787
788 /*
Nick Piggin7e675132008-04-28 02:13:00 -0700789 * NOTE! We still have PageReserved() pages in the page tables.
Nick Piggin7e675132008-04-28 02:13:00 -0700790 * eg. VDSO mappings can cause them to exist.
Linus Torvalds6aab3412005-11-28 14:34:23 -0800791 */
Jared Hulbertb379d792008-04-28 02:12:58 -0700792out:
Linus Torvalds6aab3412005-11-28 14:34:23 -0800793 return pfn_to_page(pfn);
Hugh Dickinsee498ed2005-11-21 21:32:18 -0800794}
795
796/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * copy one vm_area from one task to the other. Assumes the page tables
798 * already present in the new task to be cleared in the whole range
799 * covered by this vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
801
Hugh Dickins570a335b2009-12-14 17:58:46 -0800802static inline unsigned long
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
Nick Pigginb5810032005-10-29 18:16:12 -0700804 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
Hugh Dickins8c103762005-10-29 18:16:13 -0700805 unsigned long addr, int *rss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Nick Pigginb5810032005-10-29 18:16:12 -0700807 unsigned long vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 pte_t pte = *src_pte;
809 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /* pte contains position in swap or file, so copy. */
812 if (unlikely(!pte_present(pte))) {
813 if (!pte_file(pte)) {
Christoph Lameter06972122006-06-23 02:03:35 -0700814 swp_entry_t entry = pte_to_swp_entry(pte);
815
Hugh Dickins570a335b2009-12-14 17:58:46 -0800816 if (swap_duplicate(entry) < 0)
817 return entry.val;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* make sure dst_mm is on swapoff's mmlist. */
820 if (unlikely(list_empty(&dst_mm->mmlist))) {
821 spin_lock(&mmlist_lock);
Hugh Dickinsf412ac02005-10-29 18:16:41 -0700822 if (list_empty(&dst_mm->mmlist))
823 list_add(&dst_mm->mmlist,
824 &src_mm->mmlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 spin_unlock(&mmlist_lock);
826 }
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -0800827 if (likely(!non_swap_entry(entry)))
828 rss[MM_SWAPENTS]++;
Konstantin Khlebnikov9f9f1ac2012-01-20 14:34:24 -0800829 else if (is_migration_entry(entry)) {
830 page = migration_entry_to_page(entry);
831
832 if (PageAnon(page))
833 rss[MM_ANONPAGES]++;
834 else
835 rss[MM_FILEPAGES]++;
836
837 if (is_write_migration_entry(entry) &&
838 is_cow_mapping(vm_flags)) {
839 /*
840 * COW mappings require pages in both
841 * parent and child to be set to read.
842 */
843 make_migration_entry_read(&entry);
844 pte = swp_entry_to_pte(entry);
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700845 if (pte_swp_soft_dirty(*src_pte))
846 pte = pte_swp_mksoft_dirty(pte);
Konstantin Khlebnikov9f9f1ac2012-01-20 14:34:24 -0800847 set_pte_at(src_mm, addr, src_pte, pte);
848 }
Christoph Lameter06972122006-06-23 02:03:35 -0700849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700851 goto out_set_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /*
855 * If it's a COW mapping, write protect it both
856 * in the parent and the child
857 */
Linus Torvalds67121172005-12-11 20:38:17 -0800858 if (is_cow_mapping(vm_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 ptep_set_wrprotect(src_mm, addr, src_pte);
Zachary Amsden3dc90792006-09-30 23:29:30 -0700860 pte = pte_wrprotect(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
863 /*
864 * If it's a shared mapping, mark it clean in
865 * the child
866 */
867 if (vm_flags & VM_SHARED)
868 pte = pte_mkclean(pte);
869 pte = pte_mkold(pte);
Linus Torvalds6aab3412005-11-28 14:34:23 -0800870
871 page = vm_normal_page(vma, addr, pte);
872 if (page) {
873 get_page(page);
Hugh Dickins21333b22009-09-21 17:01:59 -0700874 page_dup_rmap(page);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800875 if (PageAnon(page))
876 rss[MM_ANONPAGES]++;
877 else
878 rss[MM_FILEPAGES]++;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800879 }
Hugh Dickinsae859762005-10-29 18:16:05 -0700880
881out_set_pte:
882 set_pte_at(dst_mm, addr, dst_pte, pte);
Hugh Dickins570a335b2009-12-14 17:58:46 -0800883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Jerome Marchand21bda262014-08-06 16:06:56 -0700886static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800887 pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
888 unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Daisuke Nishimurac36987e2009-10-26 16:50:23 -0700890 pte_t *orig_src_pte, *orig_dst_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 pte_t *src_pte, *dst_pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700892 spinlock_t *src_ptl, *dst_ptl;
Hugh Dickinse040f212005-10-29 18:15:53 -0700893 int progress = 0;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800894 int rss[NR_MM_COUNTERS];
Hugh Dickins570a335b2009-12-14 17:58:46 -0800895 swp_entry_t entry = (swp_entry_t){0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897again:
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800898 init_rss_vec(rss);
899
Hugh Dickinsc74df322005-10-29 18:16:23 -0700900 dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (!dst_pte)
902 return -ENOMEM;
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700903 src_pte = pte_offset_map(src_pmd, addr);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700904 src_ptl = pte_lockptr(src_mm, src_pmd);
Ingo Molnarf20dc5f2006-07-03 00:25:08 -0700905 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Daisuke Nishimurac36987e2009-10-26 16:50:23 -0700906 orig_src_pte = src_pte;
907 orig_dst_pte = dst_pte;
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700908 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 do {
911 /*
912 * We are holding two locks at this point - either of them
913 * could generate latencies in another task on another CPU.
914 */
Hugh Dickinse040f212005-10-29 18:15:53 -0700915 if (progress >= 32) {
916 progress = 0;
917 if (need_resched() ||
Nick Piggin95c354f2008-01-30 13:31:20 +0100918 spin_needbreak(src_ptl) || spin_needbreak(dst_ptl))
Hugh Dickinse040f212005-10-29 18:15:53 -0700919 break;
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (pte_none(*src_pte)) {
922 progress++;
923 continue;
924 }
Hugh Dickins570a335b2009-12-14 17:58:46 -0800925 entry.val = copy_one_pte(dst_mm, src_mm, dst_pte, src_pte,
926 vma, addr, rss);
927 if (entry.val)
928 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 progress += 8;
930 } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700932 arch_leave_lazy_mmu_mode();
Hugh Dickinsc74df322005-10-29 18:16:23 -0700933 spin_unlock(src_ptl);
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700934 pte_unmap(orig_src_pte);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800935 add_mm_rss_vec(dst_mm, rss);
Daisuke Nishimurac36987e2009-10-26 16:50:23 -0700936 pte_unmap_unlock(orig_dst_pte, dst_ptl);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700937 cond_resched();
Hugh Dickins570a335b2009-12-14 17:58:46 -0800938
939 if (entry.val) {
940 if (add_swap_count_continuation(entry, GFP_KERNEL) < 0)
941 return -ENOMEM;
942 progress = 0;
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (addr != end)
945 goto again;
946 return 0;
947}
948
949static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
950 pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
951 unsigned long addr, unsigned long end)
952{
953 pmd_t *src_pmd, *dst_pmd;
954 unsigned long next;
955
956 dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
957 if (!dst_pmd)
958 return -ENOMEM;
959 src_pmd = pmd_offset(src_pud, addr);
960 do {
961 next = pmd_addr_end(addr, end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800962 if (pmd_trans_huge(*src_pmd)) {
963 int err;
Andrea Arcangeli14d1a552011-01-13 15:47:15 -0800964 VM_BUG_ON(next-addr != HPAGE_PMD_SIZE);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800965 err = copy_huge_pmd(dst_mm, src_mm,
966 dst_pmd, src_pmd, addr, vma);
967 if (err == -ENOMEM)
968 return -ENOMEM;
969 if (!err)
970 continue;
971 /* fall through */
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (pmd_none_or_clear_bad(src_pmd))
974 continue;
975 if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
976 vma, addr, next))
977 return -ENOMEM;
978 } while (dst_pmd++, src_pmd++, addr = next, addr != end);
979 return 0;
980}
981
982static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
983 pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
984 unsigned long addr, unsigned long end)
985{
986 pud_t *src_pud, *dst_pud;
987 unsigned long next;
988
989 dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
990 if (!dst_pud)
991 return -ENOMEM;
992 src_pud = pud_offset(src_pgd, addr);
993 do {
994 next = pud_addr_end(addr, end);
995 if (pud_none_or_clear_bad(src_pud))
996 continue;
997 if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
998 vma, addr, next))
999 return -ENOMEM;
1000 } while (dst_pud++, src_pud++, addr = next, addr != end);
1001 return 0;
1002}
1003
1004int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1005 struct vm_area_struct *vma)
1006{
1007 pgd_t *src_pgd, *dst_pgd;
1008 unsigned long next;
1009 unsigned long addr = vma->vm_start;
1010 unsigned long end = vma->vm_end;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001011 unsigned long mmun_start; /* For mmu_notifiers */
1012 unsigned long mmun_end; /* For mmu_notifiers */
1013 bool is_cow;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001014 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Nick Piggind9928952005-08-28 16:49:11 +10001016 /*
1017 * Don't copy ptes where a page fault will fill them correctly.
1018 * Fork becomes much lighter when there are big shared or private
1019 * readonly mappings. The tradeoff is that copy_page_range is more
1020 * efficient than faulting.
1021 */
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001022 if (!(vma->vm_flags & (VM_HUGETLB | VM_NONLINEAR |
1023 VM_PFNMAP | VM_MIXEDMAP))) {
Nick Piggind9928952005-08-28 16:49:11 +10001024 if (!vma->anon_vma)
1025 return 0;
1026 }
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (is_vm_hugetlb_page(vma))
1029 return copy_hugetlb_page_range(dst_mm, src_mm, vma);
1030
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001031 if (unlikely(vma->vm_flags & VM_PFNMAP)) {
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001032 /*
1033 * We do not free on error cases below as remove_vma
1034 * gets called on error from higher level routine
1035 */
Suresh Siddha5180da42012-10-08 16:28:29 -07001036 ret = track_pfn_copy(vma);
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001037 if (ret)
1038 return ret;
1039 }
1040
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001041 /*
1042 * We need to invalidate the secondary MMU mappings only when
1043 * there could be a permission downgrade on the ptes of the
1044 * parent mm. And a permission downgrade will only happen if
1045 * is_cow_mapping() returns true.
1046 */
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001047 is_cow = is_cow_mapping(vma->vm_flags);
1048 mmun_start = addr;
1049 mmun_end = end;
1050 if (is_cow)
1051 mmu_notifier_invalidate_range_start(src_mm, mmun_start,
1052 mmun_end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001053
1054 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 dst_pgd = pgd_offset(dst_mm, addr);
1056 src_pgd = pgd_offset(src_mm, addr);
1057 do {
1058 next = pgd_addr_end(addr, end);
1059 if (pgd_none_or_clear_bad(src_pgd))
1060 continue;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001061 if (unlikely(copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
1062 vma, addr, next))) {
1063 ret = -ENOMEM;
1064 break;
1065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 } while (dst_pgd++, src_pgd++, addr = next, addr != end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001067
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001068 if (is_cow)
1069 mmu_notifier_invalidate_range_end(src_mm, mmun_start, mmun_end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001070 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
Robin Holt51c6f662005-11-13 16:06:42 -08001073static unsigned long zap_pte_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -07001074 struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 unsigned long addr, unsigned long end,
Peter Zijlstra97a89412011-05-24 17:12:04 -07001076 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Nick Pigginb5810032005-10-29 18:16:12 -07001078 struct mm_struct *mm = tlb->mm;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001079 int force_flush = 0;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001080 int rss[NR_MM_COUNTERS];
Peter Zijlstra97a89412011-05-24 17:12:04 -07001081 spinlock_t *ptl;
Steven Rostedt5f1a1902011-06-15 15:08:23 -07001082 pte_t *start_pte;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001083 pte_t *pte;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001084
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001085again:
Peter Zijlstrae3032972011-05-24 17:12:01 -07001086 init_rss_vec(rss);
Steven Rostedt5f1a1902011-06-15 15:08:23 -07001087 start_pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
1088 pte = start_pte;
Zachary Amsden6606c3e2006-09-30 23:29:33 -07001089 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 do {
1091 pte_t ptent = *pte;
Robin Holt51c6f662005-11-13 16:06:42 -08001092 if (pte_none(ptent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 continue;
Robin Holt51c6f662005-11-13 16:06:42 -08001094 }
Hugh Dickins6f5e6b92006-03-16 23:04:09 -08001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (pte_present(ptent)) {
Hugh Dickinsee498ed2005-11-21 21:32:18 -08001097 struct page *page;
Robin Holt51c6f662005-11-13 16:06:42 -08001098
Linus Torvalds6aab3412005-11-28 14:34:23 -08001099 page = vm_normal_page(vma, addr, ptent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (unlikely(details) && page) {
1101 /*
1102 * unmap_shared_mapping_pages() wants to
1103 * invalidate cache without truncating:
1104 * unmap shared but keep private pages.
1105 */
1106 if (details->check_mapping &&
1107 details->check_mapping != page->mapping)
1108 continue;
1109 /*
1110 * Each page->index must be checked when
1111 * invalidating or truncating nonlinear.
1112 */
1113 if (details->nonlinear_vma &&
1114 (page->index < details->first_index ||
1115 page->index > details->last_index))
1116 continue;
1117 }
Nick Pigginb5810032005-10-29 18:16:12 -07001118 ptent = ptep_get_and_clear_full(mm, addr, pte,
Zachary Amsdena6003882005-09-03 15:55:04 -07001119 tlb->fullmm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 tlb_remove_tlb_entry(tlb, pte, addr);
1121 if (unlikely(!page))
1122 continue;
1123 if (unlikely(details) && details->nonlinear_vma
1124 && linear_page_index(details->nonlinear_vma,
Cyrill Gorcunov41bb3472013-08-13 16:00:51 -07001125 addr) != page->index) {
1126 pte_t ptfile = pgoff_to_pte(page->index);
1127 if (pte_soft_dirty(ptent))
Peter Feinerdbab31a2014-09-25 16:05:29 -07001128 ptfile = pte_file_mksoft_dirty(ptfile);
Cyrill Gorcunov41bb3472013-08-13 16:00:51 -07001129 set_pte_at(mm, addr, pte, ptfile);
1130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (PageAnon(page))
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001132 rss[MM_ANONPAGES]--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -07001133 else {
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001134 if (pte_dirty(ptent)) {
1135 force_flush = 1;
Hugh Dickins6237bcd2005-10-29 18:15:54 -07001136 set_page_dirty(page);
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001137 }
Johannes Weiner4917e5d2009-01-06 14:39:17 -08001138 if (pte_young(ptent) &&
Joe Perches64363aa2013-07-08 16:00:18 -07001139 likely(!(vma->vm_flags & VM_SEQ_READ)))
Nick Pigginbf3f3bc2009-01-06 14:38:55 -08001140 mark_page_accessed(page);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001141 rss[MM_FILEPAGES]--;
Hugh Dickins6237bcd2005-10-29 18:15:54 -07001142 }
Hugh Dickinsedc315f2009-01-06 14:40:11 -08001143 page_remove_rmap(page);
Hugh Dickins3dc14742009-01-06 14:40:08 -08001144 if (unlikely(page_mapcount(page) < 0))
1145 print_bad_pte(vma, addr, ptent, page);
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001146 if (unlikely(!__tlb_remove_page(tlb, page))) {
1147 force_flush = 1;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001148 break;
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 continue;
1151 }
1152 /*
1153 * If details->check_mapping, we leave swap entries;
1154 * if details->nonlinear_vma, we leave file entries.
1155 */
1156 if (unlikely(details))
1157 continue;
Hugh Dickins2509ef22009-01-06 14:40:10 -08001158 if (pte_file(ptent)) {
1159 if (unlikely(!(vma->vm_flags & VM_NONLINEAR)))
1160 print_bad_pte(vma, addr, ptent, NULL);
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08001161 } else {
1162 swp_entry_t entry = pte_to_swp_entry(ptent);
1163
1164 if (!non_swap_entry(entry))
1165 rss[MM_SWAPENTS]--;
Konstantin Khlebnikov9f9f1ac2012-01-20 14:34:24 -08001166 else if (is_migration_entry(entry)) {
1167 struct page *page;
1168
1169 page = migration_entry_to_page(entry);
1170
1171 if (PageAnon(page))
1172 rss[MM_ANONPAGES]--;
1173 else
1174 rss[MM_FILEPAGES]--;
1175 }
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08001176 if (unlikely(!free_swap_and_cache(entry)))
1177 print_bad_pte(vma, addr, ptent, NULL);
1178 }
Zachary Amsden9888a1c2006-09-30 23:29:31 -07001179 pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
Peter Zijlstra97a89412011-05-24 17:12:04 -07001180 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickinsae859762005-10-29 18:16:05 -07001181
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001182 add_mm_rss_vec(mm, rss);
Zachary Amsden6606c3e2006-09-30 23:29:33 -07001183 arch_leave_lazy_mmu_mode();
Robin Holt51c6f662005-11-13 16:06:42 -08001184
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001185 /* Do the actual TLB flush before dropping ptl */
Will Deaconfb7332a2014-10-29 10:03:09 +00001186 if (force_flush)
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001187 tlb_flush_mmu_tlbonly(tlb);
Linus Torvalds1cf35d42014-04-25 16:05:40 -07001188 pte_unmap_unlock(start_pte, ptl);
1189
1190 /*
1191 * If we forced a TLB flush (either due to running out of
1192 * batch buffers or because we needed to flush dirty TLB
1193 * entries before releasing the ptl), free the batched
1194 * memory too. Restart if we didn't do everything.
1195 */
1196 if (force_flush) {
1197 force_flush = 0;
1198 tlb_flush_mmu_free(tlb);
Linus Torvalds2b047252013-08-15 11:42:25 -07001199
1200 if (addr != end)
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001201 goto again;
1202 }
1203
Robin Holt51c6f662005-11-13 16:06:42 -08001204 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Robin Holt51c6f662005-11-13 16:06:42 -08001207static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -07001208 struct vm_area_struct *vma, pud_t *pud,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 unsigned long addr, unsigned long end,
Peter Zijlstra97a89412011-05-24 17:12:04 -07001210 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 pmd_t *pmd;
1213 unsigned long next;
1214
1215 pmd = pmd_offset(pud, addr);
1216 do {
1217 next = pmd_addr_end(addr, end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001218 if (pmd_trans_huge(*pmd)) {
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001219 if (next - addr != HPAGE_PMD_SIZE) {
David Rientjese0897d72012-06-20 12:53:00 -07001220#ifdef CONFIG_DEBUG_VM
1221 if (!rwsem_is_locked(&tlb->mm->mmap_sem)) {
1222 pr_err("%s: mmap_sem is unlocked! addr=0x%lx end=0x%lx vma->vm_start=0x%lx vma->vm_end=0x%lx\n",
1223 __func__, addr, end,
1224 vma->vm_start,
1225 vma->vm_end);
1226 BUG();
1227 }
1228#endif
Kirill A. Shutemove1803772012-12-12 13:50:59 -08001229 split_huge_page_pmd(vma, addr, pmd);
Shaohua Lif21760b2012-01-12 17:19:16 -08001230 } else if (zap_huge_pmd(tlb, vma, pmd, addr))
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001231 goto next;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001232 /* fall through */
1233 }
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001234 /*
1235 * Here there can be other concurrent MADV_DONTNEED or
1236 * trans huge page faults running, and if the pmd is
1237 * none or trans huge it can change under us. This is
1238 * because MADV_DONTNEED holds the mmap_sem in read
1239 * mode.
1240 */
1241 if (pmd_none_or_trans_huge_or_clear_bad(pmd))
1242 goto next;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001243 next = zap_pte_range(tlb, vma, pmd, addr, next, details);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001244next:
Peter Zijlstra97a89412011-05-24 17:12:04 -07001245 cond_resched();
1246 } while (pmd++, addr = next, addr != end);
Robin Holt51c6f662005-11-13 16:06:42 -08001247
1248 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
Robin Holt51c6f662005-11-13 16:06:42 -08001251static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
Nick Pigginb5810032005-10-29 18:16:12 -07001252 struct vm_area_struct *vma, pgd_t *pgd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 unsigned long addr, unsigned long end,
Peter Zijlstra97a89412011-05-24 17:12:04 -07001254 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 pud_t *pud;
1257 unsigned long next;
1258
1259 pud = pud_offset(pgd, addr);
1260 do {
1261 next = pud_addr_end(addr, end);
Peter Zijlstra97a89412011-05-24 17:12:04 -07001262 if (pud_none_or_clear_bad(pud))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 continue;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001264 next = zap_pmd_range(tlb, vma, pud, addr, next, details);
1265 } while (pud++, addr = next, addr != end);
Robin Holt51c6f662005-11-13 16:06:42 -08001266
1267 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
Al Viro038c7aa2012-03-05 13:25:09 -05001270static void unmap_page_range(struct mmu_gather *tlb,
1271 struct vm_area_struct *vma,
1272 unsigned long addr, unsigned long end,
1273 struct zap_details *details)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 pgd_t *pgd;
1276 unsigned long next;
1277
1278 if (details && !details->check_mapping && !details->nonlinear_vma)
1279 details = NULL;
1280
1281 BUG_ON(addr >= end);
1282 tlb_start_vma(tlb, vma);
1283 pgd = pgd_offset(vma->vm_mm, addr);
1284 do {
1285 next = pgd_addr_end(addr, end);
Peter Zijlstra97a89412011-05-24 17:12:04 -07001286 if (pgd_none_or_clear_bad(pgd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 continue;
Peter Zijlstra97a89412011-05-24 17:12:04 -07001288 next = zap_pud_range(tlb, vma, pgd, addr, next, details);
1289 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 tlb_end_vma(tlb, vma);
1291}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Al Virof5cc4ee2012-03-05 14:14:20 -05001293
1294static void unmap_single_vma(struct mmu_gather *tlb,
1295 struct vm_area_struct *vma, unsigned long start_addr,
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001296 unsigned long end_addr,
Al Virof5cc4ee2012-03-05 14:14:20 -05001297 struct zap_details *details)
1298{
1299 unsigned long start = max(vma->vm_start, start_addr);
1300 unsigned long end;
1301
1302 if (start >= vma->vm_end)
1303 return;
1304 end = min(vma->vm_end, end_addr);
1305 if (end <= vma->vm_start)
1306 return;
1307
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301308 if (vma->vm_file)
1309 uprobe_munmap(vma, start, end);
1310
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001311 if (unlikely(vma->vm_flags & VM_PFNMAP))
Suresh Siddha5180da42012-10-08 16:28:29 -07001312 untrack_pfn(vma, 0, 0);
Al Virof5cc4ee2012-03-05 14:14:20 -05001313
1314 if (start != end) {
1315 if (unlikely(is_vm_hugetlb_page(vma))) {
1316 /*
1317 * It is undesirable to test vma->vm_file as it
1318 * should be non-null for valid hugetlb area.
1319 * However, vm_file will be NULL in the error
Davidlohr Bueso7aa6b4a2014-04-07 15:37:01 -07001320 * cleanup path of mmap_region. When
Al Virof5cc4ee2012-03-05 14:14:20 -05001321 * hugetlbfs ->mmap method fails,
Davidlohr Bueso7aa6b4a2014-04-07 15:37:01 -07001322 * mmap_region() nullifies vma->vm_file
Al Virof5cc4ee2012-03-05 14:14:20 -05001323 * before calling this function to clean up.
1324 * Since no pte has actually been setup, it is
1325 * safe to do nothing in this case.
1326 */
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07001327 if (vma->vm_file) {
1328 mutex_lock(&vma->vm_file->f_mapping->i_mmap_mutex);
Mel Gormand8333522012-07-31 16:46:20 -07001329 __unmap_hugepage_range_final(tlb, vma, start, end, NULL);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07001330 mutex_unlock(&vma->vm_file->f_mapping->i_mmap_mutex);
1331 }
Al Virof5cc4ee2012-03-05 14:14:20 -05001332 } else
1333 unmap_page_range(tlb, vma, start, end, details);
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337/**
1338 * unmap_vmas - unmap a range of memory covered by a list of vma's
Randy Dunlap0164f692011-06-15 15:08:09 -07001339 * @tlb: address of the caller's struct mmu_gather
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 * @vma: the starting vma
1341 * @start_addr: virtual address at which to start unmapping
1342 * @end_addr: virtual address at which to end unmapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 *
Hugh Dickins508034a2005-10-29 18:16:30 -07001344 * Unmap all pages in the vma list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 * Only addresses between `start' and `end' will be unmapped.
1347 *
1348 * The VMA list must be sorted in ascending virtual address order.
1349 *
1350 * unmap_vmas() assumes that the caller will flush the whole unmapped address
1351 * range after unmap_vmas() returns. So the only responsibility here is to
1352 * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
1353 * drops the lock and schedules.
1354 */
Al Viro6e8bb012012-03-05 13:41:15 -05001355void unmap_vmas(struct mmu_gather *tlb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 struct vm_area_struct *vma, unsigned long start_addr,
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001357 unsigned long end_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001359 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001361 mmu_notifier_invalidate_range_start(mm, start_addr, end_addr);
Al Virof5cc4ee2012-03-05 14:14:20 -05001362 for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next)
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001363 unmap_single_vma(tlb, vma, start_addr, end_addr, NULL);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001364 mmu_notifier_invalidate_range_end(mm, start_addr, end_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
1367/**
1368 * zap_page_range - remove user pages in a given range
1369 * @vma: vm_area_struct holding the applicable pages
Randy Dunlapeb4546b2012-06-20 12:53:02 -07001370 * @start: starting address of pages to zap
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 * @size: number of bytes to zap
1372 * @details: details of nonlinear truncation or shared cache invalidation
Al Virof5cc4ee2012-03-05 14:14:20 -05001373 *
1374 * Caller must protect the VMA list
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 */
Linus Torvalds7e027b12012-05-06 13:43:15 -07001376void zap_page_range(struct vm_area_struct *vma, unsigned long start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 unsigned long size, struct zap_details *details)
1378{
1379 struct mm_struct *mm = vma->vm_mm;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07001380 struct mmu_gather tlb;
Linus Torvalds7e027b12012-05-06 13:43:15 -07001381 unsigned long end = start + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07001384 tlb_gather_mmu(&tlb, mm, start, end);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001385 update_hiwater_rss(mm);
Linus Torvalds7e027b12012-05-06 13:43:15 -07001386 mmu_notifier_invalidate_range_start(mm, start, end);
1387 for ( ; vma && vma->vm_start < end; vma = vma->vm_next)
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001388 unmap_single_vma(&tlb, vma, start, end, details);
Linus Torvalds7e027b12012-05-06 13:43:15 -07001389 mmu_notifier_invalidate_range_end(mm, start, end);
1390 tlb_finish_mmu(&tlb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Jack Steinerc627f9c2008-07-29 22:33:53 -07001393/**
Al Virof5cc4ee2012-03-05 14:14:20 -05001394 * zap_page_range_single - remove user pages in a given range
1395 * @vma: vm_area_struct holding the applicable pages
1396 * @address: starting address of pages to zap
1397 * @size: number of bytes to zap
1398 * @details: details of nonlinear truncation or shared cache invalidation
1399 *
1400 * The range must fit into one VMA.
1401 */
1402static void zap_page_range_single(struct vm_area_struct *vma, unsigned long address,
1403 unsigned long size, struct zap_details *details)
1404{
1405 struct mm_struct *mm = vma->vm_mm;
1406 struct mmu_gather tlb;
1407 unsigned long end = address + size;
Al Virof5cc4ee2012-03-05 14:14:20 -05001408
1409 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07001410 tlb_gather_mmu(&tlb, mm, address, end);
Al Virof5cc4ee2012-03-05 14:14:20 -05001411 update_hiwater_rss(mm);
1412 mmu_notifier_invalidate_range_start(mm, address, end);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07001413 unmap_single_vma(&tlb, vma, address, end, details);
Al Virof5cc4ee2012-03-05 14:14:20 -05001414 mmu_notifier_invalidate_range_end(mm, address, end);
1415 tlb_finish_mmu(&tlb, address, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
Jack Steinerc627f9c2008-07-29 22:33:53 -07001418/**
1419 * zap_vma_ptes - remove ptes mapping the vma
1420 * @vma: vm_area_struct holding ptes to be zapped
1421 * @address: starting address of pages to zap
1422 * @size: number of bytes to zap
1423 *
1424 * This function only unmaps ptes assigned to VM_PFNMAP vmas.
1425 *
1426 * The entire address range must be fully contained within the vma.
1427 *
1428 * Returns 0 if successful.
1429 */
1430int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
1431 unsigned long size)
1432{
1433 if (address < vma->vm_start || address + size > vma->vm_end ||
1434 !(vma->vm_flags & VM_PFNMAP))
1435 return -1;
Al Virof5cc4ee2012-03-05 14:14:20 -05001436 zap_page_range_single(vma, address, size, NULL);
Jack Steinerc627f9c2008-07-29 22:33:53 -07001437 return 0;
1438}
1439EXPORT_SYMBOL_GPL(zap_vma_ptes);
1440
Namhyung Kim25ca1d62010-10-26 14:21:59 -07001441pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
Harvey Harrison920c7a52008-02-04 22:29:26 -08001442 spinlock_t **ptl)
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001443{
1444 pgd_t * pgd = pgd_offset(mm, addr);
1445 pud_t * pud = pud_alloc(mm, pgd, addr);
1446 if (pud) {
Trond Myklebust49c91fb2005-11-29 19:27:22 -05001447 pmd_t * pmd = pmd_alloc(mm, pud, addr);
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08001448 if (pmd) {
1449 VM_BUG_ON(pmd_trans_huge(*pmd));
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001450 return pte_alloc_map_lock(mm, pmd, addr, ptl);
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08001451 }
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001452 }
1453 return NULL;
1454}
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456/*
Linus Torvalds238f58d2005-11-29 13:01:56 -08001457 * This is the old fallback for page remapping.
1458 *
1459 * For historical reasons, it only allows reserved pages. Only
1460 * old drivers should use this, and they needed to mark their
1461 * pages reserved for the old functions anyway.
1462 */
Nick Piggin423bad62008-04-28 02:13:01 -07001463static int insert_page(struct vm_area_struct *vma, unsigned long addr,
1464 struct page *page, pgprot_t prot)
Linus Torvalds238f58d2005-11-29 13:01:56 -08001465{
Nick Piggin423bad62008-04-28 02:13:01 -07001466 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds238f58d2005-11-29 13:01:56 -08001467 int retval;
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001468 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001469 spinlock_t *ptl;
1470
Linus Torvalds238f58d2005-11-29 13:01:56 -08001471 retval = -EINVAL;
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001472 if (PageAnon(page))
KAMEZAWA Hiroyuki5b4e6552008-10-18 20:28:10 -07001473 goto out;
Linus Torvalds238f58d2005-11-29 13:01:56 -08001474 retval = -ENOMEM;
1475 flush_dcache_page(page);
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -08001476 pte = get_locked_pte(mm, addr, &ptl);
Linus Torvalds238f58d2005-11-29 13:01:56 -08001477 if (!pte)
KAMEZAWA Hiroyuki5b4e6552008-10-18 20:28:10 -07001478 goto out;
Linus Torvalds238f58d2005-11-29 13:01:56 -08001479 retval = -EBUSY;
1480 if (!pte_none(*pte))
1481 goto out_unlock;
1482
1483 /* Ok, finally just insert the thing.. */
1484 get_page(page);
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08001485 inc_mm_counter_fast(mm, MM_FILEPAGES);
Linus Torvalds238f58d2005-11-29 13:01:56 -08001486 page_add_file_rmap(page);
1487 set_pte_at(mm, addr, pte, mk_pte(page, prot));
1488
1489 retval = 0;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001490 pte_unmap_unlock(pte, ptl);
1491 return retval;
Linus Torvalds238f58d2005-11-29 13:01:56 -08001492out_unlock:
1493 pte_unmap_unlock(pte, ptl);
1494out:
1495 return retval;
1496}
1497
Rolf Eike Beerbfa5bf62006-09-25 23:31:22 -07001498/**
1499 * vm_insert_page - insert single page into user vma
1500 * @vma: user vma to map to
1501 * @addr: target user address of this page
1502 * @page: source kernel page
1503 *
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001504 * This allows drivers to insert individual pages they've allocated
1505 * into a user vma.
1506 *
1507 * The page has to be a nice clean _individual_ kernel allocation.
1508 * If you allocate a compound page, you need to have marked it as
1509 * such (__GFP_COMP), or manually just split the page up yourself
Nick Piggin8dfcc9b2006-03-22 00:08:05 -08001510 * (see split_page()).
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001511 *
1512 * NOTE! Traditionally this was done with "remap_pfn_range()" which
1513 * took an arbitrary page protection parameter. This doesn't allow
1514 * that. Your vma protection will have to be set up correctly, which
1515 * means that if you want a shared writable mapping, you'd better
1516 * ask for a shared writable mapping!
1517 *
1518 * The page does not need to be reserved.
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001519 *
1520 * Usually this function is called from f_op->mmap() handler
1521 * under mm->mmap_sem write-lock, so it can change vma->vm_flags.
1522 * Caller must set VM_MIXEDMAP on vma if it wants to call this
1523 * function from other places, for example from page-fault handler.
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001524 */
Nick Piggin423bad62008-04-28 02:13:01 -07001525int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
1526 struct page *page)
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001527{
1528 if (addr < vma->vm_start || addr >= vma->vm_end)
1529 return -EFAULT;
1530 if (!page_count(page))
1531 return -EINVAL;
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001532 if (!(vma->vm_flags & VM_MIXEDMAP)) {
1533 BUG_ON(down_read_trylock(&vma->vm_mm->mmap_sem));
1534 BUG_ON(vma->vm_flags & VM_PFNMAP);
1535 vma->vm_flags |= VM_MIXEDMAP;
1536 }
Nick Piggin423bad62008-04-28 02:13:01 -07001537 return insert_page(vma, addr, page, vma->vm_page_prot);
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001538}
Linus Torvaldse3c33742005-12-03 20:48:11 -08001539EXPORT_SYMBOL(vm_insert_page);
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001540
Nick Piggin423bad62008-04-28 02:13:01 -07001541static int insert_pfn(struct vm_area_struct *vma, unsigned long addr,
1542 unsigned long pfn, pgprot_t prot)
1543{
1544 struct mm_struct *mm = vma->vm_mm;
1545 int retval;
1546 pte_t *pte, entry;
1547 spinlock_t *ptl;
1548
1549 retval = -ENOMEM;
1550 pte = get_locked_pte(mm, addr, &ptl);
1551 if (!pte)
1552 goto out;
1553 retval = -EBUSY;
1554 if (!pte_none(*pte))
1555 goto out_unlock;
1556
1557 /* Ok, finally just insert the thing.. */
1558 entry = pte_mkspecial(pfn_pte(pfn, prot));
1559 set_pte_at(mm, addr, pte, entry);
Russell King4b3073e2009-12-18 16:40:18 +00001560 update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
Nick Piggin423bad62008-04-28 02:13:01 -07001561
1562 retval = 0;
1563out_unlock:
1564 pte_unmap_unlock(pte, ptl);
1565out:
1566 return retval;
1567}
1568
Nick Piggine0dc0d82007-02-12 00:51:36 -08001569/**
1570 * vm_insert_pfn - insert single pfn into user vma
1571 * @vma: user vma to map to
1572 * @addr: target user address of this page
1573 * @pfn: source kernel pfn
1574 *
Robert P. J. Dayc462f172012-10-08 16:33:43 -07001575 * Similar to vm_insert_page, this allows drivers to insert individual pages
Nick Piggine0dc0d82007-02-12 00:51:36 -08001576 * they've allocated into a user vma. Same comments apply.
1577 *
1578 * This function should only be called from a vm_ops->fault handler, and
1579 * in that case the handler should return NULL.
Nick Piggin0d71d10a2008-07-23 21:27:05 -07001580 *
1581 * vma cannot be a COW mapping.
1582 *
1583 * As this is called only for pages that do not currently exist, we
1584 * do not need to flush old virtual caches or the TLB.
Nick Piggine0dc0d82007-02-12 00:51:36 -08001585 */
1586int vm_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
Nick Piggin423bad62008-04-28 02:13:01 -07001587 unsigned long pfn)
Nick Piggine0dc0d82007-02-12 00:51:36 -08001588{
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001589 int ret;
venkatesh.pallipadi@intel.come4b866e2009-01-09 16:13:11 -08001590 pgprot_t pgprot = vma->vm_page_prot;
Nick Piggin7e675132008-04-28 02:13:00 -07001591 /*
1592 * Technically, architectures with pte_special can avoid all these
1593 * restrictions (same for remap_pfn_range). However we would like
1594 * consistency in testing and feature parity among all, so we should
1595 * try to keep these invariants in place for everybody.
1596 */
Jared Hulbertb379d792008-04-28 02:12:58 -07001597 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
1598 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
1599 (VM_PFNMAP|VM_MIXEDMAP));
1600 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
1601 BUG_ON((vma->vm_flags & VM_MIXEDMAP) && pfn_valid(pfn));
Nick Piggine0dc0d82007-02-12 00:51:36 -08001602
Nick Piggin423bad62008-04-28 02:13:01 -07001603 if (addr < vma->vm_start || addr >= vma->vm_end)
1604 return -EFAULT;
Suresh Siddha5180da42012-10-08 16:28:29 -07001605 if (track_pfn_insert(vma, &pgprot, pfn))
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001606 return -EINVAL;
1607
venkatesh.pallipadi@intel.come4b866e2009-01-09 16:13:11 -08001608 ret = insert_pfn(vma, addr, pfn, pgprot);
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001609
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001610 return ret;
Nick Piggine0dc0d82007-02-12 00:51:36 -08001611}
1612EXPORT_SYMBOL(vm_insert_pfn);
1613
Nick Piggin423bad62008-04-28 02:13:01 -07001614int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
1615 unsigned long pfn)
1616{
1617 BUG_ON(!(vma->vm_flags & VM_MIXEDMAP));
1618
1619 if (addr < vma->vm_start || addr >= vma->vm_end)
1620 return -EFAULT;
1621
1622 /*
1623 * If we don't have pte special, then we have to use the pfn_valid()
1624 * based VM_MIXEDMAP scheme (see vm_normal_page), and thus we *must*
1625 * refcount the page if pfn_valid is true (hence insert_page rather
Hugh Dickins62eede62009-09-21 17:03:34 -07001626 * than insert_pfn). If a zero_pfn were inserted into a VM_MIXEDMAP
1627 * without pte special, it would there be refcounted as a normal page.
Nick Piggin423bad62008-04-28 02:13:01 -07001628 */
1629 if (!HAVE_PTE_SPECIAL && pfn_valid(pfn)) {
1630 struct page *page;
1631
1632 page = pfn_to_page(pfn);
1633 return insert_page(vma, addr, page, vma->vm_page_prot);
1634 }
1635 return insert_pfn(vma, addr, pfn, vma->vm_page_prot);
1636}
1637EXPORT_SYMBOL(vm_insert_mixed);
1638
Linus Torvaldsa145dd42005-11-30 09:35:19 -08001639/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 * maps a range of physical memory into the requested pages. the old
1641 * mappings are removed. any references to nonexistent pages results
1642 * in null mappings (currently treated as "copy-on-access")
1643 */
1644static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1645 unsigned long addr, unsigned long end,
1646 unsigned long pfn, pgprot_t prot)
1647{
1648 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -07001649 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Hugh Dickinsc74df322005-10-29 18:16:23 -07001651 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (!pte)
1653 return -ENOMEM;
Zachary Amsden6606c3e2006-09-30 23:29:33 -07001654 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 do {
1656 BUG_ON(!pte_none(*pte));
Nick Piggin7e675132008-04-28 02:13:00 -07001657 set_pte_at(mm, addr, pte, pte_mkspecial(pfn_pte(pfn, prot)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 pfn++;
1659 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -07001660 arch_leave_lazy_mmu_mode();
Hugh Dickinsc74df322005-10-29 18:16:23 -07001661 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return 0;
1663}
1664
1665static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
1666 unsigned long addr, unsigned long end,
1667 unsigned long pfn, pgprot_t prot)
1668{
1669 pmd_t *pmd;
1670 unsigned long next;
1671
1672 pfn -= addr >> PAGE_SHIFT;
1673 pmd = pmd_alloc(mm, pud, addr);
1674 if (!pmd)
1675 return -ENOMEM;
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08001676 VM_BUG_ON(pmd_trans_huge(*pmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 do {
1678 next = pmd_addr_end(addr, end);
1679 if (remap_pte_range(mm, pmd, addr, next,
1680 pfn + (addr >> PAGE_SHIFT), prot))
1681 return -ENOMEM;
1682 } while (pmd++, addr = next, addr != end);
1683 return 0;
1684}
1685
1686static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1687 unsigned long addr, unsigned long end,
1688 unsigned long pfn, pgprot_t prot)
1689{
1690 pud_t *pud;
1691 unsigned long next;
1692
1693 pfn -= addr >> PAGE_SHIFT;
1694 pud = pud_alloc(mm, pgd, addr);
1695 if (!pud)
1696 return -ENOMEM;
1697 do {
1698 next = pud_addr_end(addr, end);
1699 if (remap_pmd_range(mm, pud, addr, next,
1700 pfn + (addr >> PAGE_SHIFT), prot))
1701 return -ENOMEM;
1702 } while (pud++, addr = next, addr != end);
1703 return 0;
1704}
1705
Rolf Eike Beerbfa5bf62006-09-25 23:31:22 -07001706/**
1707 * remap_pfn_range - remap kernel memory to userspace
1708 * @vma: user vma to map to
1709 * @addr: target user address to start at
1710 * @pfn: physical address of kernel memory
1711 * @size: size of map area
1712 * @prot: page protection flags for this mapping
1713 *
1714 * Note: this is only safe if the mm semaphore is held when called.
1715 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1717 unsigned long pfn, unsigned long size, pgprot_t prot)
1718{
1719 pgd_t *pgd;
1720 unsigned long next;
Hugh Dickins2d15cab2005-06-25 14:54:33 -07001721 unsigned long end = addr + PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 struct mm_struct *mm = vma->vm_mm;
1723 int err;
1724
1725 /*
1726 * Physically remapped pages are special. Tell the
1727 * rest of the world about it:
1728 * VM_IO tells people not to look at these pages
1729 * (accesses can have side effects).
Linus Torvalds6aab3412005-11-28 14:34:23 -08001730 * VM_PFNMAP tells the core MM that the base pages are just
1731 * raw PFN mappings, and do not have a "struct page" associated
1732 * with them.
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001733 * VM_DONTEXPAND
1734 * Disable vma merging and expanding with mremap().
1735 * VM_DONTDUMP
1736 * Omit vma from core dump, even when VM_IO turned off.
Linus Torvaldsfb155c12005-12-11 19:46:02 -08001737 *
1738 * There's a horrible special case to handle copy-on-write
1739 * behaviour that some programs depend on. We mark the "original"
1740 * un-COW'ed pages by matching them up with "vma->vm_pgoff".
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001741 * See vm_normal_page() for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001743 if (is_cow_mapping(vma->vm_flags)) {
1744 if (addr != vma->vm_start || end != vma->vm_end)
1745 return -EINVAL;
Linus Torvaldsfb155c12005-12-11 19:46:02 -08001746 vma->vm_pgoff = pfn;
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001747 }
1748
1749 err = track_pfn_remap(vma, &prot, pfn, addr, PAGE_ALIGN(size));
1750 if (err)
venkatesh.pallipadi@intel.com3c8bb732008-12-18 11:41:27 -08001751 return -EINVAL;
Linus Torvaldsfb155c12005-12-11 19:46:02 -08001752
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001753 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 BUG_ON(addr >= end);
1756 pfn -= addr >> PAGE_SHIFT;
1757 pgd = pgd_offset(mm, addr);
1758 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 do {
1760 next = pgd_addr_end(addr, end);
1761 err = remap_pud_range(mm, pgd, addr, next,
1762 pfn + (addr >> PAGE_SHIFT), prot);
1763 if (err)
1764 break;
1765 } while (pgd++, addr = next, addr != end);
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001766
1767 if (err)
Suresh Siddha5180da42012-10-08 16:28:29 -07001768 untrack_pfn(vma, pfn, PAGE_ALIGN(size));
venkatesh.pallipadi@intel.com2ab64032008-12-18 11:41:29 -08001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return err;
1771}
1772EXPORT_SYMBOL(remap_pfn_range);
1773
Linus Torvaldsb4cbb192013-04-16 13:45:37 -07001774/**
1775 * vm_iomap_memory - remap memory to userspace
1776 * @vma: user vma to map to
1777 * @start: start of area
1778 * @len: size of area
1779 *
1780 * This is a simplified io_remap_pfn_range() for common driver use. The
1781 * driver just needs to give us the physical memory range to be mapped,
1782 * we'll figure out the rest from the vma information.
1783 *
1784 * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get
1785 * whatever write-combining details or similar.
1786 */
1787int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1788{
1789 unsigned long vm_len, pfn, pages;
1790
1791 /* Check that the physical memory area passed in looks valid */
1792 if (start + len < start)
1793 return -EINVAL;
1794 /*
1795 * You *really* shouldn't map things that aren't page-aligned,
1796 * but we've historically allowed it because IO memory might
1797 * just have smaller alignment.
1798 */
1799 len += start & ~PAGE_MASK;
1800 pfn = start >> PAGE_SHIFT;
1801 pages = (len + ~PAGE_MASK) >> PAGE_SHIFT;
1802 if (pfn + pages < pfn)
1803 return -EINVAL;
1804
1805 /* We start the mapping 'vm_pgoff' pages into the area */
1806 if (vma->vm_pgoff > pages)
1807 return -EINVAL;
1808 pfn += vma->vm_pgoff;
1809 pages -= vma->vm_pgoff;
1810
1811 /* Can we fit all of the mapping? */
1812 vm_len = vma->vm_end - vma->vm_start;
1813 if (vm_len >> PAGE_SHIFT > pages)
1814 return -EINVAL;
1815
1816 /* Ok, let it rip */
1817 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1818}
1819EXPORT_SYMBOL(vm_iomap_memory);
1820
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001821static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd,
1822 unsigned long addr, unsigned long end,
1823 pte_fn_t fn, void *data)
1824{
1825 pte_t *pte;
1826 int err;
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08001827 pgtable_t token;
Borislav Petkov94909912007-05-06 14:49:17 -07001828 spinlock_t *uninitialized_var(ptl);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001829
1830 pte = (mm == &init_mm) ?
1831 pte_alloc_kernel(pmd, addr) :
1832 pte_alloc_map_lock(mm, pmd, addr, &ptl);
1833 if (!pte)
1834 return -ENOMEM;
1835
1836 BUG_ON(pmd_huge(*pmd));
1837
Jeremy Fitzhardinge38e0edb2009-01-06 14:39:21 -08001838 arch_enter_lazy_mmu_mode();
1839
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08001840 token = pmd_pgtable(*pmd);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001841
1842 do {
Daisuke Nishimurac36987e2009-10-26 16:50:23 -07001843 err = fn(pte++, token, addr, data);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001844 if (err)
1845 break;
Daisuke Nishimurac36987e2009-10-26 16:50:23 -07001846 } while (addr += PAGE_SIZE, addr != end);
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001847
Jeremy Fitzhardinge38e0edb2009-01-06 14:39:21 -08001848 arch_leave_lazy_mmu_mode();
1849
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001850 if (mm != &init_mm)
1851 pte_unmap_unlock(pte-1, ptl);
1852 return err;
1853}
1854
1855static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
1856 unsigned long addr, unsigned long end,
1857 pte_fn_t fn, void *data)
1858{
1859 pmd_t *pmd;
1860 unsigned long next;
1861 int err;
1862
Andi Kleenceb86872008-07-23 21:27:50 -07001863 BUG_ON(pud_huge(*pud));
1864
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001865 pmd = pmd_alloc(mm, pud, addr);
1866 if (!pmd)
1867 return -ENOMEM;
1868 do {
1869 next = pmd_addr_end(addr, end);
1870 err = apply_to_pte_range(mm, pmd, addr, next, fn, data);
1871 if (err)
1872 break;
1873 } while (pmd++, addr = next, addr != end);
1874 return err;
1875}
1876
1877static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
1878 unsigned long addr, unsigned long end,
1879 pte_fn_t fn, void *data)
1880{
1881 pud_t *pud;
1882 unsigned long next;
1883 int err;
1884
1885 pud = pud_alloc(mm, pgd, addr);
1886 if (!pud)
1887 return -ENOMEM;
1888 do {
1889 next = pud_addr_end(addr, end);
1890 err = apply_to_pmd_range(mm, pud, addr, next, fn, data);
1891 if (err)
1892 break;
1893 } while (pud++, addr = next, addr != end);
1894 return err;
1895}
1896
1897/*
1898 * Scan a region of virtual memory, filling in page tables as necessary
1899 * and calling a provided function on each leaf page table.
1900 */
1901int apply_to_page_range(struct mm_struct *mm, unsigned long addr,
1902 unsigned long size, pte_fn_t fn, void *data)
1903{
1904 pgd_t *pgd;
1905 unsigned long next;
Jeremy Fitzhardinge57250a52010-08-09 17:19:52 -07001906 unsigned long end = addr + size;
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001907 int err;
1908
1909 BUG_ON(addr >= end);
1910 pgd = pgd_offset(mm, addr);
1911 do {
1912 next = pgd_addr_end(addr, end);
1913 err = apply_to_pud_range(mm, pgd, addr, next, fn, data);
1914 if (err)
1915 break;
1916 } while (pgd++, addr = next, addr != end);
Jeremy Fitzhardinge57250a52010-08-09 17:19:52 -07001917
Jeremy Fitzhardingeaee16b32007-05-06 14:48:54 -07001918 return err;
1919}
1920EXPORT_SYMBOL_GPL(apply_to_page_range);
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001923 * handle_pte_fault chooses page fault handler according to an entry
1924 * which was read non-atomically. Before making any commitment, on
1925 * those architectures or configurations (e.g. i386 with PAE) which
Ryota Ozakia335b2e2011-02-10 13:56:28 +09001926 * might give a mix of unmatched parts, do_swap_page and do_nonlinear_fault
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001927 * must check under lock before unmapping the pte and proceeding
1928 * (but do_wp_page is only called after already making such a check;
Ryota Ozakia335b2e2011-02-10 13:56:28 +09001929 * and do_anonymous_page can safely check later on).
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001930 */
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001931static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001932 pte_t *page_table, pte_t orig_pte)
1933{
1934 int same = 1;
1935#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
1936 if (sizeof(pte_t) > sizeof(unsigned long)) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001937 spinlock_t *ptl = pte_lockptr(mm, pmd);
1938 spin_lock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001939 same = pte_same(*page_table, orig_pte);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001940 spin_unlock(ptl);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07001941 }
1942#endif
1943 pte_unmap(page_table);
1944 return same;
1945}
1946
Atsushi Nemoto9de455b2006-12-12 17:14:55 +00001947static 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 -08001948{
Dan Williams0abdd7a2014-01-21 15:48:12 -08001949 debug_dma_assert_idle(src);
1950
Linus Torvalds6aab3412005-11-28 14:34:23 -08001951 /*
1952 * If the source page was a PFN mapping, we don't have
1953 * a "struct page" for it. We do a best-effort copy by
1954 * just copying from the original user address. If that
1955 * fails, we just zero-fill it. Live with it.
1956 */
1957 if (unlikely(!src)) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08001958 void *kaddr = kmap_atomic(dst);
Linus Torvalds5d2a2dbbc2005-11-29 14:07:55 -08001959 void __user *uaddr = (void __user *)(va & PAGE_MASK);
1960
1961 /*
1962 * This really shouldn't fail, because the page is there
1963 * in the page tables. But it might just be unreadable,
1964 * in which case we just give up and fill the result with
1965 * zeroes.
1966 */
1967 if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE))
Jan Beulich3ecb01d2010-10-26 14:22:27 -07001968 clear_page(kaddr);
Cong Wang9b04c5f2011-11-25 23:14:39 +08001969 kunmap_atomic(kaddr);
Dmitriy Monakhovc4ec7b02006-10-19 23:29:08 -07001970 flush_dcache_page(dst);
Nick Piggin0ed361d2008-02-04 22:29:34 -08001971 } else
1972 copy_user_highpage(dst, src, va, vma);
Linus Torvalds6aab3412005-11-28 14:34:23 -08001973}
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975/*
Kirill A. Shutemovfb09a462014-04-03 14:48:15 -07001976 * Notify the address space that the page is about to become writable so that
1977 * it can prohibit this or wait for the page to get into an appropriate state.
1978 *
1979 * We do this without the lock held, so that it can sleep if it needs to.
1980 */
1981static int do_page_mkwrite(struct vm_area_struct *vma, struct page *page,
1982 unsigned long address)
1983{
1984 struct vm_fault vmf;
1985 int ret;
1986
1987 vmf.virtual_address = (void __user *)(address & PAGE_MASK);
1988 vmf.pgoff = page->index;
1989 vmf.flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE;
1990 vmf.page = page;
1991
1992 ret = vma->vm_ops->page_mkwrite(vma, &vmf);
1993 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))
1994 return ret;
1995 if (unlikely(!(ret & VM_FAULT_LOCKED))) {
1996 lock_page(page);
1997 if (!page->mapping) {
1998 unlock_page(page);
1999 return 0; /* retry */
2000 }
2001 ret |= VM_FAULT_LOCKED;
2002 } else
2003 VM_BUG_ON_PAGE(!PageLocked(page), page);
2004 return ret;
2005}
2006
2007/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 * This routine handles present pages, when users try to write
2009 * to a shared page. It is done by copying the page to a new address
2010 * and decrementing the shared-page counter for the old page.
2011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 * Note that this routine assumes that the protection checks have been
2013 * done by the caller (the low-level page fault routine in most cases).
2014 * Thus we can safely just mark it writable once we've done any necessary
2015 * COW.
2016 *
2017 * We also mark the page dirty at this point even though the page will
2018 * change only once the write actually happens. This avoids a few races,
2019 * and potentially makes it more efficient.
2020 *
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002021 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2022 * but allow concurrent faults), with pte both mapped and locked.
2023 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002025static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
2026 unsigned long address, pte_t *page_table, pmd_t *pmd,
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002027 spinlock_t *ptl, pte_t orig_pte)
Namhyung Kime6219ec2010-10-26 14:22:00 -07002028 __releases(ptl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002030 struct page *old_page, *new_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 pte_t entry;
Michel Lespinasseb009c022011-01-13 15:46:07 -08002032 int ret = 0;
Peter Zijlstraa200ee12007-10-08 18:54:37 +02002033 int page_mkwrite = 0;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002034 struct page *dirty_page = NULL;
David Rientjes17569542012-11-16 14:14:48 -08002035 unsigned long mmun_start = 0; /* For mmu_notifiers */
2036 unsigned long mmun_end = 0; /* For mmu_notifiers */
Johannes Weiner00501b52014-08-08 14:19:20 -07002037 struct mem_cgroup *memcg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Linus Torvalds6aab3412005-11-28 14:34:23 -08002039 old_page = vm_normal_page(vma, address, orig_pte);
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002040 if (!old_page) {
2041 /*
Peter Feiner64e45502014-10-13 15:55:46 -07002042 * VM_MIXEDMAP !pfn_valid() case, or VM_SOFTDIRTY clear on a
2043 * VM_PFNMAP VMA.
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002044 *
2045 * We should not cow pages in a shared writeable mapping.
2046 * Just mark the pages writable as we can't do any dirty
2047 * accounting on raw pfn maps.
2048 */
2049 if ((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
2050 (VM_WRITE|VM_SHARED))
2051 goto reuse;
Linus Torvalds6aab3412005-11-28 14:34:23 -08002052 goto gotten;
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002055 /*
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002056 * Take out anonymous pages first, anonymous shared vmas are
2057 * not dirty accountable.
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002058 */
Hugh Dickins9a840892009-09-21 17:02:01 -07002059 if (PageAnon(old_page) && !PageKsm(old_page)) {
Hugh Dickinsab967d82009-01-06 14:39:33 -08002060 if (!trylock_page(old_page)) {
2061 page_cache_get(old_page);
2062 pte_unmap_unlock(page_table, ptl);
2063 lock_page(old_page);
2064 page_table = pte_offset_map_lock(mm, pmd, address,
2065 &ptl);
2066 if (!pte_same(*page_table, orig_pte)) {
2067 unlock_page(old_page);
Hugh Dickinsab967d82009-01-06 14:39:33 -08002068 goto unlock;
2069 }
2070 page_cache_release(old_page);
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002071 }
Michel Lespinasseb009c022011-01-13 15:46:07 -08002072 if (reuse_swap_page(old_page)) {
Rik van Rielc44b6742010-03-05 13:42:09 -08002073 /*
2074 * The page is all ours. Move it to our anon_vma so
2075 * the rmap code will not search our parent or siblings.
2076 * Protected against the rmap code by the page lock.
2077 */
2078 page_move_anon_rmap(old_page, vma, address);
Michel Lespinasseb009c022011-01-13 15:46:07 -08002079 unlock_page(old_page);
2080 goto reuse;
2081 }
Hugh Dickinsab967d82009-01-06 14:39:33 -08002082 unlock_page(old_page);
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002083 } else if (unlikely((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002084 (VM_WRITE|VM_SHARED))) {
Peter Zijlstraee6a6452006-09-25 23:31:00 -07002085 /*
2086 * Only catch write-faults on shared writable pages,
2087 * read-only shared pages can get COWed by
2088 * get_user_pages(.write=1, .force=1).
2089 */
David Howells9637a5e2006-06-23 02:03:43 -07002090 if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07002091 int tmp;
David Howells9637a5e2006-06-23 02:03:43 -07002092 page_cache_get(old_page);
2093 pte_unmap_unlock(page_table, ptl);
Kirill A. Shutemovfb09a462014-04-03 14:48:15 -07002094 tmp = do_page_mkwrite(vma, old_page, address);
2095 if (unlikely(!tmp || (tmp &
2096 (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
2097 page_cache_release(old_page);
2098 return tmp;
Nick Pigginc2ec1752009-03-31 15:23:21 -07002099 }
David Howells9637a5e2006-06-23 02:03:43 -07002100 /*
2101 * Since we dropped the lock we need to revalidate
2102 * the PTE as someone else may have changed it. If
2103 * they did, we just return, as we can count on the
2104 * MMU to tell us if they didn't also make it writable.
2105 */
2106 page_table = pte_offset_map_lock(mm, pmd, address,
2107 &ptl);
Nick Pigginb827e492009-04-30 15:08:16 -07002108 if (!pte_same(*page_table, orig_pte)) {
2109 unlock_page(old_page);
David Howells9637a5e2006-06-23 02:03:43 -07002110 goto unlock;
Nick Pigginb827e492009-04-30 15:08:16 -07002111 }
Peter Zijlstraa200ee12007-10-08 18:54:37 +02002112
2113 page_mkwrite = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002115 dirty_page = old_page;
2116 get_page(dirty_page);
David Howells9637a5e2006-06-23 02:03:43 -07002117
Peter Zijlstra251b97f2008-07-04 09:59:24 -07002118reuse:
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002119 /*
2120 * Clear the pages cpupid information as the existing
2121 * information potentially belongs to a now completely
2122 * unrelated process.
2123 */
2124 if (old_page)
2125 page_cpupid_xchg_last(old_page, (1 << LAST_CPUPID_SHIFT) - 1);
2126
David Howells9637a5e2006-06-23 02:03:43 -07002127 flush_cache_page(vma, address, pte_pfn(orig_pte));
2128 entry = pte_mkyoung(orig_pte);
2129 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
KAMEZAWA Hiroyuki954ffcb2007-10-16 01:25:44 -07002130 if (ptep_set_access_flags(vma, address, page_table, entry,1))
Russell King4b3073e2009-12-18 16:40:18 +00002131 update_mmu_cache(vma, address, page_table);
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002132 pte_unmap_unlock(page_table, ptl);
David Howells9637a5e2006-06-23 02:03:43 -07002133 ret |= VM_FAULT_WRITE;
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002134
2135 if (!dirty_page)
2136 return ret;
2137
2138 /*
2139 * Yes, Virginia, this is actually required to prevent a race
2140 * with clear_page_dirty_for_io() from clearing the page dirty
2141 * bit after it clear all dirty ptes, but before a racing
2142 * do_wp_page installs a dirty pte.
2143 *
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002144 * do_shared_fault is protected similarly.
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002145 */
2146 if (!page_mkwrite) {
2147 wait_on_page_locked(dirty_page);
Miklos Szeredied6d7c82014-04-07 15:37:51 -07002148 set_page_dirty_balance(dirty_page);
Jan Kara41c4d252012-06-12 16:20:28 +02002149 /* file_update_time outside page_lock */
2150 if (vma->vm_file)
2151 file_update_time(vma->vm_file);
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002152 }
2153 put_page(dirty_page);
2154 if (page_mkwrite) {
2155 struct address_space *mapping = dirty_page->mapping;
2156
2157 set_page_dirty(dirty_page);
2158 unlock_page(dirty_page);
2159 page_cache_release(dirty_page);
2160 if (mapping) {
2161 /*
2162 * Some device drivers do not set page.mapping
2163 * but still dirty their pages
2164 */
2165 balance_dirty_pages_ratelimited(mapping);
2166 }
2167 }
2168
Michel Lespinasse72ddc8f2011-01-13 15:46:08 -08002169 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172 /*
2173 * Ok, we need to copy. Oh, well..
2174 */
Nick Pigginb5810032005-10-29 18:16:12 -07002175 page_cache_get(old_page);
Hugh Dickins920fc352005-11-21 21:32:17 -08002176gotten:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002177 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 if (unlikely(anon_vma_prepare(vma)))
Hugh Dickins65500d22005-10-29 18:15:59 -07002180 goto oom;
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07002181
Hugh Dickins62eede62009-09-21 17:03:34 -07002182 if (is_zero_pfn(pte_pfn(orig_pte))) {
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07002183 new_page = alloc_zeroed_user_highpage_movable(vma, address);
2184 if (!new_page)
2185 goto oom;
2186 } else {
2187 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
2188 if (!new_page)
2189 goto oom;
2190 cow_user_page(new_page, old_page, address, vma);
2191 }
2192 __SetPageUptodate(new_page);
2193
Johannes Weiner00501b52014-08-08 14:19:20 -07002194 if (mem_cgroup_try_charge(new_page, mm, GFP_KERNEL, &memcg))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002195 goto oom_free_new;
2196
Haggai Eran6bdb9132012-10-08 16:33:35 -07002197 mmun_start = address & PAGE_MASK;
David Rientjes17569542012-11-16 14:14:48 -08002198 mmun_end = mmun_start + PAGE_SIZE;
Haggai Eran6bdb9132012-10-08 16:33:35 -07002199 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /*
2202 * Re-check the pte - we dropped the lock
2203 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002204 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins65500d22005-10-29 18:15:59 -07002205 if (likely(pte_same(*page_table, orig_pte))) {
Hugh Dickins920fc352005-11-21 21:32:17 -08002206 if (old_page) {
Hugh Dickins920fc352005-11-21 21:32:17 -08002207 if (!PageAnon(old_page)) {
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002208 dec_mm_counter_fast(mm, MM_FILEPAGES);
2209 inc_mm_counter_fast(mm, MM_ANONPAGES);
Hugh Dickins920fc352005-11-21 21:32:17 -08002210 }
2211 } else
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002212 inc_mm_counter_fast(mm, MM_ANONPAGES);
Ben Collinseca35132005-11-29 11:45:26 -08002213 flush_cache_page(vma, address, pte_pfn(orig_pte));
Hugh Dickins65500d22005-10-29 18:15:59 -07002214 entry = mk_pte(new_page, vma->vm_page_prot);
2215 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Siddha, Suresh B4ce072f2006-09-29 01:58:42 -07002216 /*
2217 * Clear the pte entry and flush it first, before updating the
2218 * pte with the new entry. This will avoid a race condition
2219 * seen in the presence of one thread doing SMC and another
2220 * thread doing COW.
2221 */
Izik Eidus828502d2009-09-21 17:01:51 -07002222 ptep_clear_flush(vma, address, page_table);
Nick Piggin9617d952006-01-06 00:11:12 -08002223 page_add_new_anon_rmap(new_page, vma, address);
Johannes Weiner00501b52014-08-08 14:19:20 -07002224 mem_cgroup_commit_charge(new_page, memcg, false);
2225 lru_cache_add_active_or_unevictable(new_page, vma);
Izik Eidus828502d2009-09-21 17:01:51 -07002226 /*
2227 * We call the notify macro here because, when using secondary
2228 * mmu page tables (such as kvm shadow page tables), we want the
2229 * new page to be mapped directly into the secondary page table.
2230 */
2231 set_pte_at_notify(mm, address, page_table, entry);
Russell King4b3073e2009-12-18 16:40:18 +00002232 update_mmu_cache(vma, address, page_table);
Nick Piggin945754a2008-06-23 14:30:30 +02002233 if (old_page) {
2234 /*
2235 * Only after switching the pte to the new page may
2236 * we remove the mapcount here. Otherwise another
2237 * process may come and find the rmap count decremented
2238 * before the pte is switched to the new page, and
2239 * "reuse" the old page writing into it while our pte
2240 * here still points into it and can be read by other
2241 * threads.
2242 *
2243 * The critical issue is to order this
2244 * page_remove_rmap with the ptp_clear_flush above.
2245 * Those stores are ordered by (if nothing else,)
2246 * the barrier present in the atomic_add_negative
2247 * in page_remove_rmap.
2248 *
2249 * Then the TLB flush in ptep_clear_flush ensures that
2250 * no process can access the old page before the
2251 * decremented mapcount is visible. And the old page
2252 * cannot be reused until after the decremented
2253 * mapcount is visible. So transitively, TLBs to
2254 * old page will be flushed before it can be reused.
2255 */
Hugh Dickinsedc315f2009-01-06 14:40:11 -08002256 page_remove_rmap(old_page);
Nick Piggin945754a2008-06-23 14:30:30 +02002257 }
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 /* Free the old page.. */
2260 new_page = old_page;
Nick Pigginf33ea7f2005-08-03 20:24:01 +10002261 ret |= VM_FAULT_WRITE;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002262 } else
Johannes Weiner00501b52014-08-08 14:19:20 -07002263 mem_cgroup_cancel_charge(new_page, memcg);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002264
Haggai Eran6bdb9132012-10-08 16:33:35 -07002265 if (new_page)
2266 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002267unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002268 pte_unmap_unlock(page_table, ptl);
David Rientjes17569542012-11-16 14:14:48 -08002269 if (mmun_end > mmun_start)
Haggai Eran6bdb9132012-10-08 16:33:35 -07002270 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Michel Lespinassee15f8c02011-02-10 15:01:32 -08002271 if (old_page) {
2272 /*
2273 * Don't let another task, with possibly unlocked vma,
2274 * keep the mlocked page.
2275 */
2276 if ((ret & VM_FAULT_WRITE) && (vma->vm_flags & VM_LOCKED)) {
2277 lock_page(old_page); /* LRU manipulation */
2278 munlock_vma_page(old_page);
2279 unlock_page(old_page);
2280 }
2281 page_cache_release(old_page);
2282 }
Nick Pigginf33ea7f2005-08-03 20:24:01 +10002283 return ret;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002284oom_free_new:
Hugh Dickins6dbf6d32008-03-04 14:29:04 -08002285 page_cache_release(new_page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002286oom:
Dominik Dingel66521d52012-12-12 13:52:37 -08002287 if (old_page)
Hugh Dickins920fc352005-11-21 21:32:17 -08002288 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return VM_FAULT_OOM;
2290}
2291
Peter Zijlstra97a89412011-05-24 17:12:04 -07002292static void unmap_mapping_range_vma(struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 unsigned long start_addr, unsigned long end_addr,
2294 struct zap_details *details)
2295{
Al Virof5cc4ee2012-03-05 14:14:20 -05002296 zap_page_range_single(vma, start_addr, end_addr - start_addr, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
2298
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002299static inline void unmap_mapping_range_tree(struct rb_root *root,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 struct zap_details *details)
2301{
2302 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 pgoff_t vba, vea, zba, zea;
2304
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002305 vma_interval_tree_foreach(vma, root,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 details->first_index, details->last_index) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 vba = vma->vm_pgoff;
Libind6e93212013-07-03 15:01:26 -07002309 vea = vba + vma_pages(vma) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
2311 zba = details->first_index;
2312 if (zba < vba)
2313 zba = vba;
2314 zea = details->last_index;
2315 if (zea > vea)
2316 zea = vea;
2317
Peter Zijlstra97a89412011-05-24 17:12:04 -07002318 unmap_mapping_range_vma(vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
2320 ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
Peter Zijlstra97a89412011-05-24 17:12:04 -07002321 details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
2323}
2324
2325static inline void unmap_mapping_range_list(struct list_head *head,
2326 struct zap_details *details)
2327{
2328 struct vm_area_struct *vma;
2329
2330 /*
2331 * In nonlinear VMAs there is no correspondence between virtual address
2332 * offset and file offset. So we must perform an exhaustive search
2333 * across *all* the pages in each nonlinear VMA, not just the pages
2334 * whose virtual address lies outside the file truncation point.
2335 */
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002336 list_for_each_entry(vma, head, shared.nonlinear) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 details->nonlinear_vma = vma;
Peter Zijlstra97a89412011-05-24 17:12:04 -07002338 unmap_mapping_range_vma(vma, vma->vm_start, vma->vm_end, details);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340}
2341
2342/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002343 * 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 -07002344 * @mapping: the address space containing mmaps to be unmapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 * @holebegin: byte in first page to unmap, relative to the start of
2346 * the underlying file. This will be rounded down to a PAGE_SIZE
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +10002347 * boundary. Note that this is different from truncate_pagecache(), which
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 * must keep the partial page. In contrast, we must get rid of
2349 * partial pages.
2350 * @holelen: size of prospective hole in bytes. This will be rounded
2351 * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
2352 * end of the file.
2353 * @even_cows: 1 when truncating a file, unmap even private COWed pages;
2354 * but 0 when invalidating pagecache, don't throw away private data.
2355 */
2356void unmap_mapping_range(struct address_space *mapping,
2357 loff_t const holebegin, loff_t const holelen, int even_cows)
2358{
2359 struct zap_details details;
2360 pgoff_t hba = holebegin >> PAGE_SHIFT;
2361 pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
2362
2363 /* Check for overflow. */
2364 if (sizeof(holelen) > sizeof(hlen)) {
2365 long long holeend =
2366 (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
2367 if (holeend & ~(long long)ULONG_MAX)
2368 hlen = ULONG_MAX - hba + 1;
2369 }
2370
2371 details.check_mapping = even_cows? NULL: mapping;
2372 details.nonlinear_vma = NULL;
2373 details.first_index = hba;
2374 details.last_index = hba + hlen - 1;
2375 if (details.last_index < details.first_index)
2376 details.last_index = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Peter Zijlstra97a89412011-05-24 17:12:04 -07002378
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07002379 mutex_lock(&mapping->i_mmap_mutex);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07002380 if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 unmap_mapping_range_tree(&mapping->i_mmap, &details);
2382 if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
2383 unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
Peter Zijlstra3d48ae42011-05-24 17:12:06 -07002384 mutex_unlock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386EXPORT_SYMBOL(unmap_mapping_range);
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002389 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2390 * but allow concurrent faults), and pte mapped but not yet locked.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07002391 * We return with pte unmapped and unlocked.
2392 *
2393 * We return with the mmap_sem locked or unlocked in the same cases
2394 * as does filemap_fault().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002396static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
2397 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07002398 unsigned int flags, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002400 spinlock_t *ptl;
Hugh Dickins56f31802013-02-22 16:36:10 -08002401 struct page *page, *swapcache;
Johannes Weiner00501b52014-08-08 14:19:20 -07002402 struct mem_cgroup *memcg;
Hugh Dickins65500d22005-10-29 18:15:59 -07002403 swp_entry_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 pte_t pte;
Michel Lespinassed065bd82010-10-26 14:21:57 -07002405 int locked;
Rik van Rielad8c2ee2010-08-09 17:19:48 -07002406 int exclusive = 0;
Nick Piggin83c54072007-07-19 01:47:05 -07002407 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07002409 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002410 goto out;
Hugh Dickins65500d22005-10-29 18:15:59 -07002411
2412 entry = pte_to_swp_entry(orig_pte);
Andi Kleend1737fd2009-09-16 11:50:06 +02002413 if (unlikely(non_swap_entry(entry))) {
2414 if (is_migration_entry(entry)) {
2415 migration_entry_wait(mm, pmd, address);
2416 } else if (is_hwpoison_entry(entry)) {
2417 ret = VM_FAULT_HWPOISON;
2418 } else {
2419 print_bad_pte(vma, address, orig_pte, NULL);
Hugh Dickinsd99be1a2009-12-14 17:59:04 -08002420 ret = VM_FAULT_SIGBUS;
Andi Kleend1737fd2009-09-16 11:50:06 +02002421 }
Christoph Lameter06972122006-06-23 02:03:35 -07002422 goto out;
2423 }
Shailabh Nagar0ff92242006-07-14 00:24:37 -07002424 delayacct_set_flag(DELAYACCT_PF_SWAPIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 page = lookup_swap_cache(entry);
2426 if (!page) {
Hugh Dickins02098fe2008-02-04 22:28:42 -08002427 page = swapin_readahead(entry,
2428 GFP_HIGHUSER_MOVABLE, vma, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (!page) {
2430 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002431 * Back out if somebody else faulted in this pte
2432 * while we released the pte lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002434 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (likely(pte_same(*page_table, orig_pte)))
2436 ret = VM_FAULT_OOM;
Shailabh Nagar0ff92242006-07-14 00:24:37 -07002437 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
Hugh Dickins65500d22005-10-29 18:15:59 -07002438 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440
2441 /* Had to read the page from swap area: Major fault */
2442 ret = VM_FAULT_MAJOR;
Christoph Lameterf8891e52006-06-30 01:55:45 -07002443 count_vm_event(PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07002444 mem_cgroup_count_vm_event(mm, PGMAJFAULT);
Andi Kleend1737fd2009-09-16 11:50:06 +02002445 } else if (PageHWPoison(page)) {
Wu Fengguang71f72522009-12-16 12:19:58 +01002446 /*
2447 * hwpoisoned dirty swapcache pages are kept for killing
2448 * owner processes (which may be unknown at hwpoison time)
2449 */
Andi Kleend1737fd2009-09-16 11:50:06 +02002450 ret = VM_FAULT_HWPOISON;
2451 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
Hugh Dickins56f31802013-02-22 16:36:10 -08002452 swapcache = page;
Andi Kleen4779cb32009-10-14 01:51:41 +02002453 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455
Hugh Dickins56f31802013-02-22 16:36:10 -08002456 swapcache = page;
Michel Lespinassed065bd82010-10-26 14:21:57 -07002457 locked = lock_page_or_retry(page, mm, flags);
Rik van Riele709ffd2012-05-29 15:06:18 -07002458
Balbir Singh20a10222007-11-14 17:00:33 -08002459 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
Michel Lespinassed065bd82010-10-26 14:21:57 -07002460 if (!locked) {
2461 ret |= VM_FAULT_RETRY;
2462 goto out_release;
2463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Andrea Arcangeli4969c112010-09-09 16:37:52 -07002465 /*
Hugh Dickins31c4a3d2010-09-19 19:40:22 -07002466 * Make sure try_to_free_swap or reuse_swap_page or swapoff did not
2467 * release the swapcache from under us. The page pin, and pte_same
2468 * test below, are not enough to exclude that. Even if it is still
2469 * swapcache, we need to check that the page's swap has not changed.
Andrea Arcangeli4969c112010-09-09 16:37:52 -07002470 */
Hugh Dickins31c4a3d2010-09-19 19:40:22 -07002471 if (unlikely(!PageSwapCache(page) || page_private(page) != entry.val))
Andrea Arcangeli4969c112010-09-09 16:37:52 -07002472 goto out_page;
2473
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002474 page = ksm_might_need_to_copy(page, vma, address);
2475 if (unlikely(!page)) {
2476 ret = VM_FAULT_OOM;
2477 page = swapcache;
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002478 goto out_page;
Hugh Dickins5ad64682009-12-14 17:59:24 -08002479 }
2480
Johannes Weiner00501b52014-08-08 14:19:20 -07002481 if (mem_cgroup_try_charge(page, mm, GFP_KERNEL, &memcg)) {
KAMEZAWA Hiroyuki073e5872008-10-18 20:28:08 -07002482 ret = VM_FAULT_OOM;
Johannes Weinerbc43f752009-04-30 15:08:08 -07002483 goto out_page;
KAMEZAWA Hiroyuki073e5872008-10-18 20:28:08 -07002484 }
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 /*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002487 * Back out if somebody else already faulted in this pte.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 */
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002489 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickins9e9bef02005-10-29 18:16:15 -07002490 if (unlikely(!pte_same(*page_table, orig_pte)))
Kirill Korotaevb8107482005-05-16 21:53:50 -07002491 goto out_nomap;
Kirill Korotaevb8107482005-05-16 21:53:50 -07002492
2493 if (unlikely(!PageUptodate(page))) {
2494 ret = VM_FAULT_SIGBUS;
2495 goto out_nomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 }
2497
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002498 /*
2499 * The page isn't present yet, go ahead with the fault.
2500 *
2501 * Be careful about the sequence of operations here.
2502 * To get its accounting right, reuse_swap_page() must be called
2503 * while the page is counted on swap but not yet in mapcount i.e.
2504 * before page_add_anon_rmap() and swap_free(); try_to_free_swap()
2505 * must be called after the swap_free(), or it will never succeed.
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08002506 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002508 inc_mm_counter_fast(mm, MM_ANONPAGES);
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08002509 dec_mm_counter_fast(mm, MM_SWAPENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 pte = mk_pte(page, vma->vm_page_prot);
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07002511 if ((flags & FAULT_FLAG_WRITE) && reuse_swap_page(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 pte = maybe_mkwrite(pte_mkdirty(pte), vma);
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07002513 flags &= ~FAULT_FLAG_WRITE;
Andrea Arcangeli9a5b4892010-08-09 17:19:49 -07002514 ret |= VM_FAULT_WRITE;
Rik van Rielad8c2ee2010-08-09 17:19:48 -07002515 exclusive = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 flush_icache_page(vma, page);
Cyrill Gorcunov179ef712013-08-13 16:00:49 -07002518 if (pte_swp_soft_dirty(orig_pte))
2519 pte = pte_mksoft_dirty(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 set_pte_at(mm, address, page_table, pte);
Johannes Weiner00501b52014-08-08 14:19:20 -07002521 if (page == swapcache) {
Johannes Weineraf347702013-02-22 16:32:20 -08002522 do_page_add_anon_rmap(page, vma, address, exclusive);
Johannes Weiner00501b52014-08-08 14:19:20 -07002523 mem_cgroup_commit_charge(page, memcg, true);
2524 } else { /* ksm created a completely new copy */
Hugh Dickins56f31802013-02-22 16:36:10 -08002525 page_add_new_anon_rmap(page, vma, address);
Johannes Weiner00501b52014-08-08 14:19:20 -07002526 mem_cgroup_commit_charge(page, memcg, false);
2527 lru_cache_add_active_or_unevictable(page, vma);
2528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07002530 swap_free(entry);
Nick Pigginb291f002008-10-18 20:26:44 -07002531 if (vm_swap_full() || (vma->vm_flags & VM_LOCKED) || PageMlocked(page))
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08002532 try_to_free_swap(page);
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07002533 unlock_page(page);
Hugh Dickins56f31802013-02-22 16:36:10 -08002534 if (page != swapcache) {
Andrea Arcangeli4969c112010-09-09 16:37:52 -07002535 /*
2536 * Hold the lock to avoid the swap entry to be reused
2537 * until we take the PT lock for the pte_same() check
2538 * (to avoid false positives from pte_same). For
2539 * further safety release the lock after the swap_free
2540 * so that the swap count won't change under a
2541 * parallel locked swapcache.
2542 */
2543 unlock_page(swapcache);
2544 page_cache_release(swapcache);
2545 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07002546
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07002547 if (flags & FAULT_FLAG_WRITE) {
Hugh Dickins61469f12008-03-04 14:29:04 -08002548 ret |= do_wp_page(mm, vma, address, page_table, pmd, ptl, pte);
2549 if (ret & VM_FAULT_ERROR)
2550 ret &= VM_FAULT_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 goto out;
2552 }
2553
2554 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +00002555 update_mmu_cache(vma, address, page_table);
Hugh Dickins65500d22005-10-29 18:15:59 -07002556unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002557 pte_unmap_unlock(page_table, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558out:
2559 return ret;
Kirill Korotaevb8107482005-05-16 21:53:50 -07002560out_nomap:
Johannes Weiner00501b52014-08-08 14:19:20 -07002561 mem_cgroup_cancel_charge(page, memcg);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002562 pte_unmap_unlock(page_table, ptl);
Johannes Weinerbc43f752009-04-30 15:08:08 -07002563out_page:
Kirill Korotaevb8107482005-05-16 21:53:50 -07002564 unlock_page(page);
Andi Kleen4779cb32009-10-14 01:51:41 +02002565out_release:
Kirill Korotaevb8107482005-05-16 21:53:50 -07002566 page_cache_release(page);
Hugh Dickins56f31802013-02-22 16:36:10 -08002567 if (page != swapcache) {
Andrea Arcangeli4969c112010-09-09 16:37:52 -07002568 unlock_page(swapcache);
2569 page_cache_release(swapcache);
2570 }
Hugh Dickins65500d22005-10-29 18:15:59 -07002571 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572}
2573
2574/*
Luck, Tony8ca3eb02010-08-24 11:44:18 -07002575 * This is like a special single-page "expand_{down|up}wards()",
2576 * except we must first make sure that 'address{-|+}PAGE_SIZE'
Linus Torvalds320b2b82010-08-12 17:54:33 -07002577 * doesn't hit another vma.
Linus Torvalds320b2b82010-08-12 17:54:33 -07002578 */
2579static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address)
2580{
2581 address &= PAGE_MASK;
2582 if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) {
Linus Torvalds0e8e50e2010-08-20 16:49:40 -07002583 struct vm_area_struct *prev = vma->vm_prev;
Linus Torvalds320b2b82010-08-12 17:54:33 -07002584
Linus Torvalds0e8e50e2010-08-20 16:49:40 -07002585 /*
2586 * Is there a mapping abutting this one below?
2587 *
2588 * That's only ok if it's the same stack mapping
2589 * that has gotten split..
2590 */
2591 if (prev && prev->vm_end == address)
2592 return prev->vm_flags & VM_GROWSDOWN ? 0 : -ENOMEM;
2593
Michal Hockod05f3162011-05-24 17:11:44 -07002594 expand_downwards(vma, address - PAGE_SIZE);
Linus Torvalds320b2b82010-08-12 17:54:33 -07002595 }
Luck, Tony8ca3eb02010-08-24 11:44:18 -07002596 if ((vma->vm_flags & VM_GROWSUP) && address + PAGE_SIZE == vma->vm_end) {
2597 struct vm_area_struct *next = vma->vm_next;
2598
2599 /* As VM_GROWSDOWN but s/below/above/ */
2600 if (next && next->vm_start == address + PAGE_SIZE)
2601 return next->vm_flags & VM_GROWSUP ? 0 : -ENOMEM;
2602
2603 expand_upwards(vma, address + PAGE_SIZE);
2604 }
Linus Torvalds320b2b82010-08-12 17:54:33 -07002605 return 0;
2606}
2607
2608/*
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002609 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2610 * but allow concurrent faults), and pte mapped but not yet locked.
2611 * We return with mmap_sem still held, but pte unmapped and unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 */
Hugh Dickins65500d22005-10-29 18:15:59 -07002613static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
2614 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07002615 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Johannes Weiner00501b52014-08-08 14:19:20 -07002617 struct mem_cgroup *memcg;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002618 struct page *page;
2619 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 pte_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Linus Torvalds11ac5522010-08-14 11:44:56 -07002622 pte_unmap(page_table);
Linus Torvalds320b2b82010-08-12 17:54:33 -07002623
Linus Torvalds11ac5522010-08-14 11:44:56 -07002624 /* Check if we need to add a guard page to the stack */
2625 if (check_stack_guard_page(vma, address) < 0)
2626 return VM_FAULT_SIGBUS;
2627
2628 /* Use the zero-page for reads */
Hugh Dickins62eede62009-09-21 17:03:34 -07002629 if (!(flags & FAULT_FLAG_WRITE)) {
2630 entry = pte_mkspecial(pfn_pte(my_zero_pfn(address),
2631 vma->vm_page_prot));
Linus Torvalds11ac5522010-08-14 11:44:56 -07002632 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07002633 if (!pte_none(*page_table))
2634 goto unlock;
2635 goto setpte;
2636 }
2637
Nick Piggin557ed1f2007-10-16 01:24:40 -07002638 /* Allocate our own private page. */
Nick Piggin557ed1f2007-10-16 01:24:40 -07002639 if (unlikely(anon_vma_prepare(vma)))
2640 goto oom;
2641 page = alloc_zeroed_user_highpage_movable(vma, address);
2642 if (!page)
2643 goto oom;
Minchan Kim52f37622013-04-29 15:08:15 -07002644 /*
2645 * The memory barrier inside __SetPageUptodate makes sure that
2646 * preceeding stores to the page contents become visible before
2647 * the set_pte_at() write.
2648 */
Nick Piggin0ed361d2008-02-04 22:29:34 -08002649 __SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Johannes Weiner00501b52014-08-08 14:19:20 -07002651 if (mem_cgroup_try_charge(page, mm, GFP_KERNEL, &memcg))
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002652 goto oom_free_page;
2653
Nick Piggin557ed1f2007-10-16 01:24:40 -07002654 entry = mk_pte(page, vma->vm_page_prot);
Hugh Dickins1ac0cb52009-09-21 17:03:29 -07002655 if (vma->vm_flags & VM_WRITE)
2656 entry = pte_mkwrite(pte_mkdirty(entry));
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002657
Nick Piggin557ed1f2007-10-16 01:24:40 -07002658 page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07002659 if (!pte_none(*page_table))
Nick Piggin557ed1f2007-10-16 01:24:40 -07002660 goto release;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002661
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -08002662 inc_mm_counter_fast(mm, MM_ANONPAGES);
Nick Piggin557ed1f2007-10-16 01:24:40 -07002663 page_add_new_anon_rmap(page, vma, address);
Johannes Weiner00501b52014-08-08 14:19:20 -07002664 mem_cgroup_commit_charge(page, memcg, false);
2665 lru_cache_add_active_or_unevictable(page, vma);
Hugh Dickinsa13ea5b2009-09-21 17:03:30 -07002666setpte:
Hugh Dickins65500d22005-10-29 18:15:59 -07002667 set_pte_at(mm, address, page_table, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
2669 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +00002670 update_mmu_cache(vma, address, page_table);
Hugh Dickins65500d22005-10-29 18:15:59 -07002671unlock:
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002672 pte_unmap_unlock(page_table, ptl);
Nick Piggin83c54072007-07-19 01:47:05 -07002673 return 0;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002674release:
Johannes Weiner00501b52014-08-08 14:19:20 -07002675 mem_cgroup_cancel_charge(page, memcg);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002676 page_cache_release(page);
2677 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002678oom_free_page:
Hugh Dickins6dbf6d32008-03-04 14:29:04 -08002679 page_cache_release(page);
Hugh Dickins65500d22005-10-29 18:15:59 -07002680oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 return VM_FAULT_OOM;
2682}
2683
Paul Cassella9a95f3c2014-08-06 16:07:24 -07002684/*
2685 * The mmap_sem must have been held on entry, and may have been
2686 * released depending on flags and vma->vm_ops->fault() return value.
2687 * See filemap_fault() and __lock_page_retry().
2688 */
Kirill A. Shutemov7eae74a2014-04-03 14:48:10 -07002689static int __do_fault(struct vm_area_struct *vma, unsigned long address,
2690 pgoff_t pgoff, unsigned int flags, struct page **page)
2691{
2692 struct vm_fault vmf;
2693 int ret;
2694
2695 vmf.virtual_address = (void __user *)(address & PAGE_MASK);
2696 vmf.pgoff = pgoff;
2697 vmf.flags = flags;
2698 vmf.page = NULL;
2699
2700 ret = vma->vm_ops->fault(vma, &vmf);
2701 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
2702 return ret;
2703
2704 if (unlikely(PageHWPoison(vmf.page))) {
2705 if (ret & VM_FAULT_LOCKED)
2706 unlock_page(vmf.page);
2707 page_cache_release(vmf.page);
2708 return VM_FAULT_HWPOISON;
2709 }
2710
2711 if (unlikely(!(ret & VM_FAULT_LOCKED)))
2712 lock_page(vmf.page);
2713 else
2714 VM_BUG_ON_PAGE(!PageLocked(vmf.page), vmf.page);
2715
2716 *page = vmf.page;
2717 return ret;
2718}
2719
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002720/**
2721 * do_set_pte - setup new PTE entry for given page and add reverse page mapping.
2722 *
2723 * @vma: virtual memory area
2724 * @address: user virtual address
2725 * @page: page to map
2726 * @pte: pointer to target page table entry
2727 * @write: true, if new entry is writable
2728 * @anon: true, if it's anonymous page
2729 *
2730 * Caller must hold page table lock relevant for @pte.
2731 *
2732 * Target users are page handler itself and implementations of
2733 * vm_ops->map_pages.
2734 */
2735void do_set_pte(struct vm_area_struct *vma, unsigned long address,
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002736 struct page *page, pte_t *pte, bool write, bool anon)
2737{
2738 pte_t entry;
2739
2740 flush_icache_page(vma, page);
2741 entry = mk_pte(page, vma->vm_page_prot);
2742 if (write)
2743 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
2744 else if (pte_file(*pte) && pte_file_soft_dirty(*pte))
Cyrill Gorcunov9aed8612014-08-06 16:07:05 -07002745 entry = pte_mksoft_dirty(entry);
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002746 if (anon) {
2747 inc_mm_counter_fast(vma->vm_mm, MM_ANONPAGES);
2748 page_add_new_anon_rmap(page, vma, address);
2749 } else {
2750 inc_mm_counter_fast(vma->vm_mm, MM_FILEPAGES);
2751 page_add_file_rmap(page);
2752 }
2753 set_pte_at(vma->vm_mm, address, pte, entry);
2754
2755 /* no need to invalidate: a not-present page won't be cached */
2756 update_mmu_cache(vma, address, pte);
2757}
2758
Kirill A. Shutemov3a910532014-08-06 16:08:07 -07002759static unsigned long fault_around_bytes __read_mostly =
2760 rounddown_pow_of_two(65536);
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002761
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002762#ifdef CONFIG_DEBUG_FS
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002763static int fault_around_bytes_get(void *data, u64 *val)
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002764{
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002765 *val = fault_around_bytes;
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002766 return 0;
2767}
2768
Andrey Ryabininb4903d62014-07-30 16:08:35 -07002769/*
2770 * fault_around_pages() and fault_around_mask() expects fault_around_bytes
2771 * rounded down to nearest page order. It's what do_fault_around() expects to
2772 * see.
2773 */
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002774static int fault_around_bytes_set(void *data, u64 val)
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002775{
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002776 if (val / PAGE_SIZE > PTRS_PER_PTE)
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002777 return -EINVAL;
Andrey Ryabininb4903d62014-07-30 16:08:35 -07002778 if (val > PAGE_SIZE)
2779 fault_around_bytes = rounddown_pow_of_two(val);
2780 else
2781 fault_around_bytes = PAGE_SIZE; /* rounddown_pow_of_two(0) is undefined */
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002782 return 0;
2783}
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002784DEFINE_SIMPLE_ATTRIBUTE(fault_around_bytes_fops,
2785 fault_around_bytes_get, fault_around_bytes_set, "%llu\n");
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002786
2787static int __init fault_around_debugfs(void)
2788{
2789 void *ret;
2790
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002791 ret = debugfs_create_file("fault_around_bytes", 0644, NULL, NULL,
2792 &fault_around_bytes_fops);
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002793 if (!ret)
Kirill A. Shutemova9b0f862014-06-04 16:10:54 -07002794 pr_warn("Failed to create fault_around_bytes in debugfs");
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002795 return 0;
2796}
2797late_initcall(fault_around_debugfs);
Kirill A. Shutemov1592eef2014-04-07 15:37:22 -07002798#endif
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002799
Kirill A. Shutemov1fdb4122014-06-04 16:10:55 -07002800/*
2801 * do_fault_around() tries to map few pages around the fault address. The hope
2802 * is that the pages will be needed soon and this will lower the number of
2803 * faults to handle.
2804 *
2805 * It uses vm_ops->map_pages() to map the pages, which skips the page if it's
2806 * not ready to be mapped: not up-to-date, locked, etc.
2807 *
2808 * This function is called with the page table lock taken. In the split ptlock
2809 * case the page table lock only protects only those entries which belong to
2810 * the page table corresponding to the fault address.
2811 *
2812 * This function doesn't cross the VMA boundaries, in order to call map_pages()
2813 * only once.
2814 *
2815 * fault_around_pages() defines how many pages we'll try to map.
2816 * do_fault_around() expects it to return a power of two less than or equal to
2817 * PTRS_PER_PTE.
2818 *
2819 * The virtual address of the area that we map is naturally aligned to the
2820 * fault_around_pages() value (and therefore to page order). This way it's
2821 * easier to guarantee that we don't cross page table boundaries.
2822 */
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002823static void do_fault_around(struct vm_area_struct *vma, unsigned long address,
2824 pte_t *pte, pgoff_t pgoff, unsigned int flags)
2825{
Kirill A. Shutemovaecd6f42014-08-06 16:08:05 -07002826 unsigned long start_addr, nr_pages, mask;
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002827 pgoff_t max_pgoff;
2828 struct vm_fault vmf;
2829 int off;
2830
Kirill A. Shutemovaecd6f42014-08-06 16:08:05 -07002831 nr_pages = ACCESS_ONCE(fault_around_bytes) >> PAGE_SHIFT;
2832 mask = ~(nr_pages * PAGE_SIZE - 1) & PAGE_MASK;
2833
2834 start_addr = max(address & mask, vma->vm_start);
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002835 off = ((address - start_addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
2836 pte -= off;
2837 pgoff -= off;
2838
2839 /*
2840 * max_pgoff is either end of page table or end of vma
Kirill A. Shutemov850e9c62014-06-04 16:10:45 -07002841 * or fault_around_pages() from pgoff, depending what is nearest.
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002842 */
2843 max_pgoff = pgoff - ((start_addr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) +
2844 PTRS_PER_PTE - 1;
2845 max_pgoff = min3(max_pgoff, vma_pages(vma) + vma->vm_pgoff - 1,
Kirill A. Shutemovaecd6f42014-08-06 16:08:05 -07002846 pgoff + nr_pages - 1);
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002847
2848 /* Check if it makes any sense to call ->map_pages */
2849 while (!pte_none(*pte)) {
2850 if (++pgoff > max_pgoff)
2851 return;
2852 start_addr += PAGE_SIZE;
2853 if (start_addr >= vma->vm_end)
2854 return;
2855 pte++;
2856 }
2857
2858 vmf.virtual_address = (void __user *) start_addr;
2859 vmf.pte = pte;
2860 vmf.pgoff = pgoff;
2861 vmf.max_pgoff = max_pgoff;
2862 vmf.flags = flags;
2863 vma->vm_ops->map_pages(vma, &vmf);
2864}
2865
Kirill A. Shutemove655fb22014-04-03 14:48:11 -07002866static int do_read_fault(struct mm_struct *mm, struct vm_area_struct *vma,
2867 unsigned long address, pmd_t *pmd,
2868 pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
2869{
2870 struct page *fault_page;
2871 spinlock_t *ptl;
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002872 pte_t *pte;
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002873 int ret = 0;
2874
2875 /*
2876 * Let's call ->map_pages() first and use ->fault() as fallback
2877 * if page by the offset is not ready to be mapped (cold cache or
2878 * something).
2879 */
Konstantin Khlebnikovc1186782014-07-23 14:00:08 -07002880 if (vma->vm_ops->map_pages && !(flags & FAULT_FLAG_NONLINEAR) &&
Kirill A. Shutemovaecd6f42014-08-06 16:08:05 -07002881 fault_around_bytes >> PAGE_SHIFT > 1) {
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002882 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
2883 do_fault_around(vma, address, pte, pgoff, flags);
2884 if (!pte_same(*pte, orig_pte))
2885 goto unlock_out;
2886 pte_unmap_unlock(pte, ptl);
2887 }
Kirill A. Shutemove655fb22014-04-03 14:48:11 -07002888
2889 ret = __do_fault(vma, address, pgoff, flags, &fault_page);
2890 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
2891 return ret;
2892
2893 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
2894 if (unlikely(!pte_same(*pte, orig_pte))) {
2895 pte_unmap_unlock(pte, ptl);
2896 unlock_page(fault_page);
2897 page_cache_release(fault_page);
2898 return ret;
2899 }
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002900 do_set_pte(vma, address, fault_page, pte, false, false);
Kirill A. Shutemove655fb22014-04-03 14:48:11 -07002901 unlock_page(fault_page);
Kirill A. Shutemov8c6e50b2014-04-07 15:37:18 -07002902unlock_out:
2903 pte_unmap_unlock(pte, ptl);
Kirill A. Shutemove655fb22014-04-03 14:48:11 -07002904 return ret;
2905}
2906
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07002907static int do_cow_fault(struct mm_struct *mm, struct vm_area_struct *vma,
2908 unsigned long address, pmd_t *pmd,
2909 pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
2910{
2911 struct page *fault_page, *new_page;
Johannes Weiner00501b52014-08-08 14:19:20 -07002912 struct mem_cgroup *memcg;
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07002913 spinlock_t *ptl;
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002914 pte_t *pte;
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07002915 int ret;
2916
2917 if (unlikely(anon_vma_prepare(vma)))
2918 return VM_FAULT_OOM;
2919
2920 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
2921 if (!new_page)
2922 return VM_FAULT_OOM;
2923
Johannes Weiner00501b52014-08-08 14:19:20 -07002924 if (mem_cgroup_try_charge(new_page, mm, GFP_KERNEL, &memcg)) {
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07002925 page_cache_release(new_page);
2926 return VM_FAULT_OOM;
2927 }
2928
2929 ret = __do_fault(vma, address, pgoff, flags, &fault_page);
2930 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
2931 goto uncharge_out;
2932
2933 copy_user_highpage(new_page, fault_page, address, vma);
2934 __SetPageUptodate(new_page);
2935
2936 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
2937 if (unlikely(!pte_same(*pte, orig_pte))) {
2938 pte_unmap_unlock(pte, ptl);
2939 unlock_page(fault_page);
2940 page_cache_release(fault_page);
2941 goto uncharge_out;
2942 }
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002943 do_set_pte(vma, address, new_page, pte, true, true);
Johannes Weiner00501b52014-08-08 14:19:20 -07002944 mem_cgroup_commit_charge(new_page, memcg, false);
2945 lru_cache_add_active_or_unevictable(new_page, vma);
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07002946 pte_unmap_unlock(pte, ptl);
2947 unlock_page(fault_page);
2948 page_cache_release(fault_page);
2949 return ret;
2950uncharge_out:
Johannes Weiner00501b52014-08-08 14:19:20 -07002951 mem_cgroup_cancel_charge(new_page, memcg);
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07002952 page_cache_release(new_page);
2953 return ret;
2954}
2955
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002956static int do_shared_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins16abfa02007-10-04 16:56:06 +01002957 unsigned long address, pmd_t *pmd,
Nick Piggin54cb8822007-07-19 01:46:59 -07002958 pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959{
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002960 struct page *fault_page;
2961 struct address_space *mapping;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07002962 spinlock_t *ptl;
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002963 pte_t *pte;
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002964 int dirtied = 0;
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002965 int ret, tmp;
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07002966
Kirill A. Shutemov7eae74a2014-04-03 14:48:10 -07002967 ret = __do_fault(vma, address, pgoff, flags, &fault_page);
2968 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002969 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
2971 /*
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002972 * Check if the backing address space wants to know that the page is
2973 * about to become writable
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 */
Kirill A. Shutemovfb09a462014-04-03 14:48:15 -07002975 if (vma->vm_ops->page_mkwrite) {
2976 unlock_page(fault_page);
2977 tmp = do_page_mkwrite(vma, fault_page, address);
2978 if (unlikely(!tmp ||
2979 (tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
2980 page_cache_release(fault_page);
2981 return tmp;
2982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002985 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
2986 if (unlikely(!pte_same(*pte, orig_pte))) {
2987 pte_unmap_unlock(pte, ptl);
2988 unlock_page(fault_page);
2989 page_cache_release(fault_page);
2990 return ret;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07002991 }
Kirill A. Shutemov3bb97792014-04-03 14:48:16 -07002992 do_set_pte(vma, address, fault_page, pte, true, false);
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07002993 pte_unmap_unlock(pte, ptl);
2994
2995 if (set_page_dirty(fault_page))
2996 dirtied = 1;
2997 mapping = fault_page->mapping;
2998 unlock_page(fault_page);
2999 if ((dirtied || vma->vm_ops->page_mkwrite) && mapping) {
3000 /*
3001 * Some device drivers do not set page.mapping but still
3002 * dirty their pages
3003 */
3004 balance_dirty_pages_ratelimited(mapping);
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003005 }
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07003006
3007 /* file_update_time outside page_lock */
3008 if (vma->vm_file && !vma->vm_ops->page_mkwrite)
3009 file_update_time(vma->vm_file);
3010
KAMEZAWA Hiroyuki1d65f862011-07-25 17:12:27 -07003011 return ret;
Nick Piggin54cb8822007-07-19 01:46:59 -07003012}
Nick Piggind00806b2007-07-19 01:46:57 -07003013
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003014/*
3015 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3016 * but allow concurrent faults).
3017 * The mmap_sem may have been released depending on flags and our
3018 * return value. See filemap_fault() and __lock_page_or_retry().
3019 */
Nick Piggin54cb8822007-07-19 01:46:59 -07003020static int do_linear_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3021 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003022 unsigned int flags, pte_t orig_pte)
Nick Piggin54cb8822007-07-19 01:46:59 -07003023{
3024 pgoff_t pgoff = (((address & PAGE_MASK)
Dean Nelson0da7e012007-10-16 01:24:45 -07003025 - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Nick Piggin54cb8822007-07-19 01:46:59 -07003026
Hugh Dickins16abfa02007-10-04 16:56:06 +01003027 pte_unmap(page_table);
Kirill A. Shutemove655fb22014-04-03 14:48:11 -07003028 if (!(flags & FAULT_FLAG_WRITE))
3029 return do_read_fault(mm, vma, address, pmd, pgoff, flags,
3030 orig_pte);
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07003031 if (!(vma->vm_flags & VM_SHARED))
3032 return do_cow_fault(mm, vma, address, pmd, pgoff, flags,
3033 orig_pte);
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07003034 return do_shared_fault(mm, vma, address, pmd, pgoff, flags, orig_pte);
Nick Piggin54cb8822007-07-19 01:46:59 -07003035}
3036
Jes Sorensenf4b81802006-09-27 01:50:10 -07003037/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 * Fault of a previously existing named mapping. Repopulate the pte
3039 * from the encoded file_pte if possible. This enables swappable
3040 * nonlinear vmas.
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003041 *
3042 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3043 * but allow concurrent faults), and pte mapped but not yet locked.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003044 * We return with pte unmapped and unlocked.
3045 * The mmap_sem may have been released depending on flags and our
3046 * return value. See filemap_fault() and __lock_page_or_retry().
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 */
Nick Piggind0217ac2007-07-19 01:47:03 -07003048static int do_nonlinear_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins65500d22005-10-29 18:15:59 -07003049 unsigned long address, pte_t *page_table, pmd_t *pmd,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003050 unsigned int flags, pte_t orig_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
Hugh Dickins65500d22005-10-29 18:15:59 -07003052 pgoff_t pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003054 flags |= FAULT_FLAG_NONLINEAR;
3055
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07003056 if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
Nick Piggin83c54072007-07-19 01:47:05 -07003057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Hugh Dickins2509ef22009-01-06 14:40:10 -08003059 if (unlikely(!(vma->vm_flags & VM_NONLINEAR))) {
Hugh Dickins65500d22005-10-29 18:15:59 -07003060 /*
3061 * Page table corrupted: show pte and kill process.
3062 */
Hugh Dickins3dc14742009-01-06 14:40:08 -08003063 print_bad_pte(vma, address, orig_pte, NULL);
Hugh Dickinsd99be1a2009-12-14 17:59:04 -08003064 return VM_FAULT_SIGBUS;
Hugh Dickins65500d22005-10-29 18:15:59 -07003065 }
Hugh Dickins65500d22005-10-29 18:15:59 -07003066
3067 pgoff = pte_to_pgoff(orig_pte);
Kirill A. Shutemove655fb22014-04-03 14:48:11 -07003068 if (!(flags & FAULT_FLAG_WRITE))
3069 return do_read_fault(mm, vma, address, pmd, pgoff, flags,
3070 orig_pte);
Kirill A. Shutemovec47c3b2014-04-03 14:48:12 -07003071 if (!(vma->vm_flags & VM_SHARED))
3072 return do_cow_fault(mm, vma, address, pmd, pgoff, flags,
3073 orig_pte);
Kirill A. Shutemovf0c6d4d2014-04-03 14:48:13 -07003074 return do_shared_fault(mm, vma, address, pmd, pgoff, flags, orig_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075}
3076
Rashika Kheriab19a9932014-04-03 14:48:02 -07003077static int numa_migrate_prep(struct page *page, struct vm_area_struct *vma,
Rik van Riel04bb2f92013-10-07 11:29:36 +01003078 unsigned long addr, int page_nid,
3079 int *flags)
Mel Gorman9532fec2012-11-15 01:24:32 +00003080{
3081 get_page(page);
3082
3083 count_vm_numa_event(NUMA_HINT_FAULTS);
Rik van Riel04bb2f92013-10-07 11:29:36 +01003084 if (page_nid == numa_node_id()) {
Mel Gorman9532fec2012-11-15 01:24:32 +00003085 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
Rik van Riel04bb2f92013-10-07 11:29:36 +01003086 *flags |= TNF_FAULT_LOCAL;
3087 }
Mel Gorman9532fec2012-11-15 01:24:32 +00003088
3089 return mpol_misplaced(page, vma, addr);
3090}
3091
Rashika Kheriab19a9932014-04-03 14:48:02 -07003092static int do_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
Mel Gormand10e63f2012-10-25 14:16:31 +02003093 unsigned long addr, pte_t pte, pte_t *ptep, pmd_t *pmd)
3094{
Mel Gorman4daae3b2012-11-02 11:33:45 +00003095 struct page *page = NULL;
Mel Gormand10e63f2012-10-25 14:16:31 +02003096 spinlock_t *ptl;
Mel Gorman8191acb2013-10-07 11:28:45 +01003097 int page_nid = -1;
Peter Zijlstra90572892013-10-07 11:29:20 +01003098 int last_cpupid;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02003099 int target_nid;
Mel Gormanb8593bf2012-11-21 01:18:23 +00003100 bool migrated = false;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003101 int flags = 0;
Mel Gormand10e63f2012-10-25 14:16:31 +02003102
3103 /*
3104 * The "pte" at this point cannot be used safely without
3105 * validation through pte_unmap_same(). It's of NUMA type but
3106 * the pfn may be screwed if the read is non atomic.
3107 *
3108 * ptep_modify_prot_start is not called as this is clearing
3109 * the _PAGE_NUMA bit and it is not really expected that there
3110 * would be concurrent hardware modifications to the PTE.
3111 */
3112 ptl = pte_lockptr(mm, pmd);
3113 spin_lock(ptl);
Mel Gorman4daae3b2012-11-02 11:33:45 +00003114 if (unlikely(!pte_same(*ptep, pte))) {
3115 pte_unmap_unlock(ptep, ptl);
3116 goto out;
3117 }
3118
Mel Gormand10e63f2012-10-25 14:16:31 +02003119 pte = pte_mknonnuma(pte);
3120 set_pte_at(mm, addr, ptep, pte);
3121 update_mmu_cache(vma, addr, ptep);
3122
3123 page = vm_normal_page(vma, addr, pte);
3124 if (!page) {
3125 pte_unmap_unlock(ptep, ptl);
3126 return 0;
3127 }
Mel Gormana1a46182013-10-07 11:28:50 +01003128 BUG_ON(is_zero_pfn(page_to_pfn(page)));
Mel Gormand10e63f2012-10-25 14:16:31 +02003129
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003130 /*
3131 * Avoid grouping on DSO/COW pages in specific and RO pages
3132 * in general, RO pages shouldn't hurt as much anyway since
3133 * they can be in shared cache state.
3134 */
3135 if (!pte_write(pte))
3136 flags |= TNF_NO_GROUP;
3137
Rik van Rieldabe1d92013-10-07 11:29:34 +01003138 /*
3139 * Flag if the page is shared between multiple address spaces. This
3140 * is later used when determining whether to group tasks together
3141 */
3142 if (page_mapcount(page) > 1 && (vma->vm_flags & VM_SHARED))
3143 flags |= TNF_SHARED;
3144
Peter Zijlstra90572892013-10-07 11:29:20 +01003145 last_cpupid = page_cpupid_last(page);
Mel Gorman8191acb2013-10-07 11:28:45 +01003146 page_nid = page_to_nid(page);
Rik van Riel04bb2f92013-10-07 11:29:36 +01003147 target_nid = numa_migrate_prep(page, vma, addr, page_nid, &flags);
Mel Gormand10e63f2012-10-25 14:16:31 +02003148 pte_unmap_unlock(ptep, ptl);
Mel Gorman4daae3b2012-11-02 11:33:45 +00003149 if (target_nid == -1) {
Mel Gorman4daae3b2012-11-02 11:33:45 +00003150 put_page(page);
3151 goto out;
3152 }
3153
3154 /* Migrate to the requested node */
Mel Gorman1bc115d2013-10-07 11:29:05 +01003155 migrated = migrate_misplaced_page(page, vma, target_nid);
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003156 if (migrated) {
Mel Gorman8191acb2013-10-07 11:28:45 +01003157 page_nid = target_nid;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003158 flags |= TNF_MIGRATED;
3159 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00003160
3161out:
Mel Gorman8191acb2013-10-07 11:28:45 +01003162 if (page_nid != -1)
Peter Zijlstra6688cc02013-10-07 11:29:24 +01003163 task_numa_fault(last_cpupid, page_nid, 1, flags);
Mel Gormand10e63f2012-10-25 14:16:31 +02003164 return 0;
3165}
3166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167/*
3168 * These routines also need to handle stuff like marking pages dirty
3169 * and/or accessed for architectures that don't do it in hardware (most
3170 * RISC architectures). The early dirtying is also good on the i386.
3171 *
3172 * There is also a hook called "update_mmu_cache()" that architectures
3173 * with external mmu caches can use to update those (ie the Sparc or
3174 * PowerPC hashed page tables that act as extended TLBs).
3175 *
Hugh Dickinsc74df322005-10-29 18:16:23 -07003176 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3177 * but allow concurrent faults), and pte mapped but not yet locked.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003178 * We return with pte unmapped and unlocked.
3179 *
3180 * The mmap_sem may have been released depending on flags and our
3181 * return value. See filemap_fault() and __lock_page_or_retry().
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 */
Kirill A. Shutemovc0292552013-09-12 15:14:05 -07003183static int handle_pte_fault(struct mm_struct *mm,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003184 struct vm_area_struct *vma, unsigned long address,
3185 pte_t *pte, pmd_t *pmd, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
3187 pte_t entry;
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003188 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Hugh Dickinsc0d73262014-08-06 16:05:08 -07003190 entry = ACCESS_ONCE(*pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (!pte_present(entry)) {
Hugh Dickins65500d22005-10-29 18:15:59 -07003192 if (pte_none(entry)) {
Jes Sorensenf4b81802006-09-27 01:50:10 -07003193 if (vma->vm_ops) {
Nick Piggin3c18ddd2008-04-28 02:12:10 -07003194 if (likely(vma->vm_ops->fault))
Nick Piggin54cb8822007-07-19 01:46:59 -07003195 return do_linear_fault(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003196 pte, pmd, flags, entry);
Jes Sorensenf4b81802006-09-27 01:50:10 -07003197 }
3198 return do_anonymous_page(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003199 pte, pmd, flags);
Hugh Dickins65500d22005-10-29 18:15:59 -07003200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 if (pte_file(entry))
Nick Piggind0217ac2007-07-19 01:47:03 -07003202 return do_nonlinear_fault(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003203 pte, pmd, flags, entry);
Hugh Dickins65500d22005-10-29 18:15:59 -07003204 return do_swap_page(mm, vma, address,
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003205 pte, pmd, flags, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 }
3207
Mel Gormand10e63f2012-10-25 14:16:31 +02003208 if (pte_numa(entry))
3209 return do_numa_page(mm, vma, address, entry, pte, pmd);
3210
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07003211 ptl = pte_lockptr(mm, pmd);
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003212 spin_lock(ptl);
3213 if (unlikely(!pte_same(*pte, entry)))
3214 goto unlock;
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003215 if (flags & FAULT_FLAG_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 if (!pte_write(entry))
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003217 return do_wp_page(mm, vma, address,
3218 pte, pmd, ptl, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 entry = pte_mkdirty(entry);
3220 }
3221 entry = pte_mkyoung(entry);
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003222 if (ptep_set_access_flags(vma, address, pte, entry, flags & FAULT_FLAG_WRITE)) {
Russell King4b3073e2009-12-18 16:40:18 +00003223 update_mmu_cache(vma, address, pte);
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07003224 } else {
3225 /*
3226 * This is needed only for protection faults but the arch code
3227 * is not yet telling us if this is a protection fault or not.
3228 * This still avoids useless tlb flushes for .text page faults
3229 * with threads.
3230 */
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003231 if (flags & FAULT_FLAG_WRITE)
Shaohua Li61c77322010-08-16 09:16:55 +08003232 flush_tlb_fix_spurious_fault(vma, address);
Andrea Arcangeli1a44e142005-10-29 18:16:48 -07003233 }
Hugh Dickins8f4e2102005-10-29 18:16:26 -07003234unlock:
3235 pte_unmap_unlock(pte, ptl);
Nick Piggin83c54072007-07-19 01:47:05 -07003236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237}
3238
3239/*
3240 * By the time we get here, we already hold the mm semaphore
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003241 *
3242 * The mmap_sem may have been released depending on flags and our
3243 * return value. See filemap_fault() and __lock_page_or_retry().
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 */
Johannes Weiner519e5242013-09-12 15:13:42 -07003245static int __handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3246 unsigned long address, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
3248 pgd_t *pgd;
3249 pud_t *pud;
3250 pmd_t *pmd;
3251 pte_t *pte;
3252
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01003253 if (unlikely(is_vm_hugetlb_page(vma)))
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003254 return hugetlb_fault(mm, vma, address, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 pgd = pgd_offset(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 pud = pud_alloc(mm, pgd, address);
3258 if (!pud)
Hugh Dickinsc74df322005-10-29 18:16:23 -07003259 return VM_FAULT_OOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 pmd = pmd_alloc(mm, pud, address);
3261 if (!pmd)
Hugh Dickinsc74df322005-10-29 18:16:23 -07003262 return VM_FAULT_OOM;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003263 if (pmd_none(*pmd) && transparent_hugepage_enabled(vma)) {
Kirill A. Shutemovc0292552013-09-12 15:14:05 -07003264 int ret = VM_FAULT_FALLBACK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003265 if (!vma->vm_ops)
Kirill A. Shutemovc0292552013-09-12 15:14:05 -07003266 ret = do_huge_pmd_anonymous_page(mm, vma, address,
3267 pmd, flags);
3268 if (!(ret & VM_FAULT_FALLBACK))
3269 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003270 } else {
3271 pmd_t orig_pmd = *pmd;
David Rientjes1f1d06c2012-05-29 15:06:23 -07003272 int ret;
3273
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003274 barrier();
3275 if (pmd_trans_huge(orig_pmd)) {
Will Deacona1dd4502012-12-11 16:01:27 -08003276 unsigned int dirty = flags & FAULT_FLAG_WRITE;
3277
Linus Torvaldse53289c2013-01-09 08:36:54 -08003278 /*
3279 * If the pmd is splitting, return and retry the
3280 * the fault. Alternative: wait until the split
3281 * is done, and goto retry.
3282 */
3283 if (pmd_trans_splitting(orig_pmd))
3284 return 0;
3285
Linus Torvalds3d59eeb2012-12-16 14:33:25 -08003286 if (pmd_numa(orig_pmd))
Mel Gorman4daae3b2012-11-02 11:33:45 +00003287 return do_huge_pmd_numa_page(mm, vma, address,
Mel Gormand10e63f2012-10-25 14:16:31 +02003288 orig_pmd, pmd);
3289
Linus Torvalds3d59eeb2012-12-16 14:33:25 -08003290 if (dirty && !pmd_write(orig_pmd)) {
David Rientjes1f1d06c2012-05-29 15:06:23 -07003291 ret = do_huge_pmd_wp_page(mm, vma, address, pmd,
3292 orig_pmd);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08003293 if (!(ret & VM_FAULT_FALLBACK))
3294 return ret;
Will Deacona1dd4502012-12-11 16:01:27 -08003295 } else {
3296 huge_pmd_set_accessed(mm, vma, address, pmd,
3297 orig_pmd, dirty);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08003298 return 0;
David Rientjes1f1d06c2012-05-29 15:06:23 -07003299 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003300 }
3301 }
3302
3303 /*
3304 * Use __pte_alloc instead of pte_alloc_map, because we can't
3305 * run pte_offset_map on the pmd, if an huge pmd could
3306 * materialize from under us from a different thread.
3307 */
Mel Gorman4fd01772011-10-12 21:06:51 +02003308 if (unlikely(pmd_none(*pmd)) &&
3309 unlikely(__pte_alloc(mm, vma, pmd, address)))
Hugh Dickinsc74df322005-10-29 18:16:23 -07003310 return VM_FAULT_OOM;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08003311 /* if an huge pmd materialized from under us just retry later */
3312 if (unlikely(pmd_trans_huge(*pmd)))
3313 return 0;
3314 /*
3315 * A regular pmd is established and it can't morph into a huge pmd
3316 * from under us anymore at this point because we hold the mmap_sem
3317 * read mode and khugepaged takes it in write mode. So now it's
3318 * safe to run pte_offset_map().
3319 */
3320 pte = pte_offset_map(pmd, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Linus Torvalds30c9f3a2009-04-10 08:43:11 -07003322 return handle_pte_fault(mm, vma, address, pte, pmd, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003325/*
3326 * By the time we get here, we already hold the mm semaphore
3327 *
3328 * The mmap_sem may have been released depending on flags and our
3329 * return value. See filemap_fault() and __lock_page_or_retry().
3330 */
Johannes Weiner519e5242013-09-12 15:13:42 -07003331int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3332 unsigned long address, unsigned int flags)
3333{
3334 int ret;
3335
3336 __set_current_state(TASK_RUNNING);
3337
3338 count_vm_event(PGFAULT);
3339 mem_cgroup_count_vm_event(mm, PGFAULT);
3340
3341 /* do counter updates before entering really critical section. */
3342 check_sync_rss_stat(current);
3343
3344 /*
3345 * Enable the memcg OOM handling for faults triggered in user
3346 * space. Kernel faults are handled more gracefully.
3347 */
3348 if (flags & FAULT_FLAG_USER)
Johannes Weiner49426422013-10-16 13:46:59 -07003349 mem_cgroup_oom_enable();
Johannes Weiner519e5242013-09-12 15:13:42 -07003350
3351 ret = __handle_mm_fault(mm, vma, address, flags);
3352
Johannes Weiner49426422013-10-16 13:46:59 -07003353 if (flags & FAULT_FLAG_USER) {
3354 mem_cgroup_oom_disable();
3355 /*
3356 * The task may have entered a memcg OOM situation but
3357 * if the allocation error was handled gracefully (no
3358 * VM_FAULT_OOM), there is no need to kill anything.
3359 * Just clean up the OOM state peacefully.
3360 */
3361 if (task_in_memcg_oom(current) && !(ret & VM_FAULT_OOM))
3362 mem_cgroup_oom_synchronize(false);
3363 }
Johannes Weiner3812c8c2013-09-12 15:13:44 -07003364
Johannes Weiner519e5242013-09-12 15:13:42 -07003365 return ret;
3366}
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368#ifndef __PAGETABLE_PUD_FOLDED
3369/*
3370 * Allocate page upper directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07003371 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07003373int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374{
Hugh Dickinsc74df322005-10-29 18:16:23 -07003375 pud_t *new = pud_alloc_one(mm, address);
3376 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07003377 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
Nick Piggin362a61a2008-05-14 06:37:36 +02003379 smp_wmb(); /* See comment in __pte_alloc */
3380
Hugh Dickins872fec12005-10-29 18:16:21 -07003381 spin_lock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003382 if (pgd_present(*pgd)) /* Another has populated it */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -08003383 pud_free(mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003384 else
3385 pgd_populate(mm, pgd, new);
Hugh Dickinsc74df322005-10-29 18:16:23 -07003386 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388}
3389#endif /* __PAGETABLE_PUD_FOLDED */
3390
3391#ifndef __PAGETABLE_PMD_FOLDED
3392/*
3393 * Allocate page middle directory.
Hugh Dickins872fec12005-10-29 18:16:21 -07003394 * We've already handled the fast-path in-line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 */
Hugh Dickins1bb36302005-10-29 18:16:22 -07003396int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397{
Hugh Dickinsc74df322005-10-29 18:16:23 -07003398 pmd_t *new = pmd_alloc_one(mm, address);
3399 if (!new)
Hugh Dickins1bb36302005-10-29 18:16:22 -07003400 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Nick Piggin362a61a2008-05-14 06:37:36 +02003402 smp_wmb(); /* See comment in __pte_alloc */
3403
Hugh Dickins872fec12005-10-29 18:16:21 -07003404 spin_lock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405#ifndef __ARCH_HAS_4LEVEL_HACK
Hugh Dickins1bb36302005-10-29 18:16:22 -07003406 if (pud_present(*pud)) /* Another has populated it */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -08003407 pmd_free(mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003408 else
3409 pud_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410#else
Hugh Dickins1bb36302005-10-29 18:16:22 -07003411 if (pgd_present(*pud)) /* Another has populated it */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -08003412 pmd_free(mm, new);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003413 else
3414 pgd_populate(mm, pud, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415#endif /* __ARCH_HAS_4LEVEL_HACK */
Hugh Dickinsc74df322005-10-29 18:16:23 -07003416 spin_unlock(&mm->page_table_lock);
Hugh Dickins1bb36302005-10-29 18:16:22 -07003417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418}
3419#endif /* __PAGETABLE_PMD_FOLDED */
3420
Namhyung Kim1b36ba82010-10-26 14:22:00 -07003421static int __follow_pte(struct mm_struct *mm, unsigned long address,
Johannes Weinerf8ad0f492009-06-16 15:32:33 -07003422 pte_t **ptepp, spinlock_t **ptlp)
3423{
3424 pgd_t *pgd;
3425 pud_t *pud;
3426 pmd_t *pmd;
3427 pte_t *ptep;
3428
3429 pgd = pgd_offset(mm, address);
3430 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
3431 goto out;
3432
3433 pud = pud_offset(pgd, address);
3434 if (pud_none(*pud) || unlikely(pud_bad(*pud)))
3435 goto out;
3436
3437 pmd = pmd_offset(pud, address);
Andrea Arcangelif66055ab2011-01-13 15:46:54 -08003438 VM_BUG_ON(pmd_trans_huge(*pmd));
Johannes Weinerf8ad0f492009-06-16 15:32:33 -07003439 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
3440 goto out;
3441
3442 /* We cannot handle huge page PFN maps. Luckily they don't exist. */
3443 if (pmd_huge(*pmd))
3444 goto out;
3445
3446 ptep = pte_offset_map_lock(mm, pmd, address, ptlp);
3447 if (!ptep)
3448 goto out;
3449 if (!pte_present(*ptep))
3450 goto unlock;
3451 *ptepp = ptep;
3452 return 0;
3453unlock:
3454 pte_unmap_unlock(ptep, *ptlp);
3455out:
3456 return -EINVAL;
3457}
3458
Namhyung Kim1b36ba82010-10-26 14:22:00 -07003459static inline int follow_pte(struct mm_struct *mm, unsigned long address,
3460 pte_t **ptepp, spinlock_t **ptlp)
3461{
3462 int res;
3463
3464 /* (void) is needed to make gcc happy */
3465 (void) __cond_lock(*ptlp,
3466 !(res = __follow_pte(mm, address, ptepp, ptlp)));
3467 return res;
3468}
3469
Johannes Weiner3b6748e2009-06-16 15:32:35 -07003470/**
3471 * follow_pfn - look up PFN at a user virtual address
3472 * @vma: memory mapping
3473 * @address: user virtual address
3474 * @pfn: location to store found PFN
3475 *
3476 * Only IO mappings and raw PFN mappings are allowed.
3477 *
3478 * Returns zero and the pfn at @pfn on success, -ve otherwise.
3479 */
3480int follow_pfn(struct vm_area_struct *vma, unsigned long address,
3481 unsigned long *pfn)
3482{
3483 int ret = -EINVAL;
3484 spinlock_t *ptl;
3485 pte_t *ptep;
3486
3487 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
3488 return ret;
3489
3490 ret = follow_pte(vma->vm_mm, address, &ptep, &ptl);
3491 if (ret)
3492 return ret;
3493 *pfn = pte_pfn(*ptep);
3494 pte_unmap_unlock(ptep, ptl);
3495 return 0;
3496}
3497EXPORT_SYMBOL(follow_pfn);
3498
Rik van Riel28b2ee22008-07-23 21:27:05 -07003499#ifdef CONFIG_HAVE_IOREMAP_PROT
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003500int follow_phys(struct vm_area_struct *vma,
3501 unsigned long address, unsigned int flags,
3502 unsigned long *prot, resource_size_t *phys)
Rik van Riel28b2ee22008-07-23 21:27:05 -07003503{
Johannes Weiner03668a42009-06-16 15:32:34 -07003504 int ret = -EINVAL;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003505 pte_t *ptep, pte;
3506 spinlock_t *ptl;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003507
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003508 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
3509 goto out;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003510
Johannes Weiner03668a42009-06-16 15:32:34 -07003511 if (follow_pte(vma->vm_mm, address, &ptep, &ptl))
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003512 goto out;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003513 pte = *ptep;
Johannes Weiner03668a42009-06-16 15:32:34 -07003514
Rik van Riel28b2ee22008-07-23 21:27:05 -07003515 if ((flags & FOLL_WRITE) && !pte_write(pte))
3516 goto unlock;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003517
3518 *prot = pgprot_val(pte_pgprot(pte));
Johannes Weiner03668a42009-06-16 15:32:34 -07003519 *phys = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003520
Johannes Weiner03668a42009-06-16 15:32:34 -07003521 ret = 0;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003522unlock:
3523 pte_unmap_unlock(ptep, ptl);
3524out:
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003525 return ret;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003526}
3527
3528int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
3529 void *buf, int len, int write)
3530{
3531 resource_size_t phys_addr;
3532 unsigned long prot = 0;
KOSAKI Motohiro2bc72732009-01-06 14:39:43 -08003533 void __iomem *maddr;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003534 int offset = addr & (PAGE_SIZE-1);
3535
venkatesh.pallipadi@intel.comd87fe662008-12-19 13:47:27 -08003536 if (follow_phys(vma, addr, write, &prot, &phys_addr))
Rik van Riel28b2ee22008-07-23 21:27:05 -07003537 return -EINVAL;
3538
3539 maddr = ioremap_prot(phys_addr, PAGE_SIZE, prot);
3540 if (write)
3541 memcpy_toio(maddr + offset, buf, len);
3542 else
3543 memcpy_fromio(buf, maddr + offset, len);
3544 iounmap(maddr);
3545
3546 return len;
3547}
Uwe Kleine-König5a736332013-08-07 13:02:52 +02003548EXPORT_SYMBOL_GPL(generic_access_phys);
Rik van Riel28b2ee22008-07-23 21:27:05 -07003549#endif
3550
David Howells0ec76a12006-09-27 01:50:15 -07003551/*
Stephen Wilson206cb632011-03-13 15:49:19 -04003552 * Access another process' address space as given in mm. If non-NULL, use the
3553 * given task for page fault accounting.
David Howells0ec76a12006-09-27 01:50:15 -07003554 */
Stephen Wilson206cb632011-03-13 15:49:19 -04003555static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
3556 unsigned long addr, void *buf, int len, int write)
David Howells0ec76a12006-09-27 01:50:15 -07003557{
David Howells0ec76a12006-09-27 01:50:15 -07003558 struct vm_area_struct *vma;
David Howells0ec76a12006-09-27 01:50:15 -07003559 void *old_buf = buf;
3560
David Howells0ec76a12006-09-27 01:50:15 -07003561 down_read(&mm->mmap_sem);
Simon Arlott183ff222007-10-20 01:27:18 +02003562 /* ignore errors, just check how much was successfully transferred */
David Howells0ec76a12006-09-27 01:50:15 -07003563 while (len) {
3564 int bytes, ret, offset;
3565 void *maddr;
Rik van Riel28b2ee22008-07-23 21:27:05 -07003566 struct page *page = NULL;
David Howells0ec76a12006-09-27 01:50:15 -07003567
3568 ret = get_user_pages(tsk, mm, addr, 1,
3569 write, 1, &page, &vma);
Rik van Riel28b2ee22008-07-23 21:27:05 -07003570 if (ret <= 0) {
Rik van Rieldbffcd02014-08-06 16:08:12 -07003571#ifndef CONFIG_HAVE_IOREMAP_PROT
3572 break;
3573#else
Rik van Riel28b2ee22008-07-23 21:27:05 -07003574 /*
3575 * Check if this is a VM_IO | VM_PFNMAP VMA, which
3576 * we can access using slightly different code.
3577 */
Rik van Riel28b2ee22008-07-23 21:27:05 -07003578 vma = find_vma(mm, addr);
Michael Ellermanfe936df2011-04-14 15:22:10 -07003579 if (!vma || vma->vm_start > addr)
Rik van Riel28b2ee22008-07-23 21:27:05 -07003580 break;
3581 if (vma->vm_ops && vma->vm_ops->access)
3582 ret = vma->vm_ops->access(vma, addr, buf,
3583 len, write);
3584 if (ret <= 0)
Rik van Riel28b2ee22008-07-23 21:27:05 -07003585 break;
3586 bytes = ret;
Rik van Rieldbffcd02014-08-06 16:08:12 -07003587#endif
David Howells0ec76a12006-09-27 01:50:15 -07003588 } else {
Rik van Riel28b2ee22008-07-23 21:27:05 -07003589 bytes = len;
3590 offset = addr & (PAGE_SIZE-1);
3591 if (bytes > PAGE_SIZE-offset)
3592 bytes = PAGE_SIZE-offset;
3593
3594 maddr = kmap(page);
3595 if (write) {
3596 copy_to_user_page(vma, page, addr,
3597 maddr + offset, buf, bytes);
3598 set_page_dirty_lock(page);
3599 } else {
3600 copy_from_user_page(vma, page, addr,
3601 buf, maddr + offset, bytes);
3602 }
3603 kunmap(page);
3604 page_cache_release(page);
David Howells0ec76a12006-09-27 01:50:15 -07003605 }
David Howells0ec76a12006-09-27 01:50:15 -07003606 len -= bytes;
3607 buf += bytes;
3608 addr += bytes;
3609 }
3610 up_read(&mm->mmap_sem);
David Howells0ec76a12006-09-27 01:50:15 -07003611
3612 return buf - old_buf;
3613}
Andi Kleen03252912008-01-30 13:33:18 +01003614
Stephen Wilson5ddd36b2011-03-13 15:49:20 -04003615/**
Randy Dunlapae91dbf2011-03-26 13:27:01 -07003616 * access_remote_vm - access another process' address space
Stephen Wilson5ddd36b2011-03-13 15:49:20 -04003617 * @mm: the mm_struct of the target address space
3618 * @addr: start address to access
3619 * @buf: source or destination buffer
3620 * @len: number of bytes to transfer
3621 * @write: whether the access is a write
3622 *
3623 * The caller must hold a reference on @mm.
3624 */
3625int access_remote_vm(struct mm_struct *mm, unsigned long addr,
3626 void *buf, int len, int write)
3627{
3628 return __access_remote_vm(NULL, mm, addr, buf, len, write);
3629}
3630
Andi Kleen03252912008-01-30 13:33:18 +01003631/*
Stephen Wilson206cb632011-03-13 15:49:19 -04003632 * Access another process' address space.
3633 * Source/target buffer must be kernel space,
3634 * Do not walk the page table directly, use get_user_pages
3635 */
3636int access_process_vm(struct task_struct *tsk, unsigned long addr,
3637 void *buf, int len, int write)
3638{
3639 struct mm_struct *mm;
3640 int ret;
3641
3642 mm = get_task_mm(tsk);
3643 if (!mm)
3644 return 0;
3645
3646 ret = __access_remote_vm(tsk, mm, addr, buf, len, write);
3647 mmput(mm);
3648
3649 return ret;
3650}
3651
Andi Kleen03252912008-01-30 13:33:18 +01003652/*
3653 * Print the name of a VMA.
3654 */
3655void print_vma_addr(char *prefix, unsigned long ip)
3656{
3657 struct mm_struct *mm = current->mm;
3658 struct vm_area_struct *vma;
3659
Ingo Molnare8bff742008-02-13 20:21:06 +01003660 /*
3661 * Do not print if we are in atomic
3662 * contexts (in exception stacks, etc.):
3663 */
3664 if (preempt_count())
3665 return;
3666
Andi Kleen03252912008-01-30 13:33:18 +01003667 down_read(&mm->mmap_sem);
3668 vma = find_vma(mm, ip);
3669 if (vma && vma->vm_file) {
3670 struct file *f = vma->vm_file;
3671 char *buf = (char *)__get_free_page(GFP_KERNEL);
3672 if (buf) {
Andy Shevchenko2fbc57c2012-12-17 16:01:23 -08003673 char *p;
Andi Kleen03252912008-01-30 13:33:18 +01003674
Jan Blunckcf28b482008-02-14 19:38:44 -08003675 p = d_path(&f->f_path, buf, PAGE_SIZE);
Andi Kleen03252912008-01-30 13:33:18 +01003676 if (IS_ERR(p))
3677 p = "?";
Andy Shevchenko2fbc57c2012-12-17 16:01:23 -08003678 printk("%s%s[%lx+%lx]", prefix, kbasename(p),
Andi Kleen03252912008-01-30 13:33:18 +01003679 vma->vm_start,
3680 vma->vm_end - vma->vm_start);
3681 free_page((unsigned long)buf);
3682 }
3683 }
Jeff Liu51a07e52012-07-31 16:43:18 -07003684 up_read(&mm->mmap_sem);
Andi Kleen03252912008-01-30 13:33:18 +01003685}
Nick Piggin3ee1afa2008-09-10 13:37:17 +02003686
Michael S. Tsirkin662bbcb2013-05-26 17:32:23 +03003687#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)
Nick Piggin3ee1afa2008-09-10 13:37:17 +02003688void might_fault(void)
3689{
Peter Zijlstra95156f02009-01-12 13:02:11 +01003690 /*
3691 * Some code (nfs/sunrpc) uses socket ops on kernel memory while
3692 * holding the mmap_sem, this is safe because kernel memory doesn't
3693 * get paged out, therefore we'll never actually fault, and the
3694 * below annotations will generate false positives.
3695 */
3696 if (segment_eq(get_fs(), KERNEL_DS))
3697 return;
3698
Nick Piggin3ee1afa2008-09-10 13:37:17 +02003699 /*
3700 * it would be nicer only to annotate paths which are not under
3701 * pagefault_disable, however that requires a larger audit and
3702 * providing helpers like get_user_atomic.
3703 */
Michael S. Tsirkin662bbcb2013-05-26 17:32:23 +03003704 if (in_atomic())
3705 return;
3706
3707 __might_sleep(__FILE__, __LINE__, 0);
3708
3709 if (current->mm)
Nick Piggin3ee1afa2008-09-10 13:37:17 +02003710 might_lock_read(&current->mm->mmap_sem);
3711}
3712EXPORT_SYMBOL(might_fault);
3713#endif
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08003714
3715#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS)
3716static void clear_gigantic_page(struct page *page,
3717 unsigned long addr,
3718 unsigned int pages_per_huge_page)
3719{
3720 int i;
3721 struct page *p = page;
3722
3723 might_sleep();
3724 for (i = 0; i < pages_per_huge_page;
3725 i++, p = mem_map_next(p, page, i)) {
3726 cond_resched();
3727 clear_user_highpage(p, addr + i * PAGE_SIZE);
3728 }
3729}
3730void clear_huge_page(struct page *page,
3731 unsigned long addr, unsigned int pages_per_huge_page)
3732{
3733 int i;
3734
3735 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
3736 clear_gigantic_page(page, addr, pages_per_huge_page);
3737 return;
3738 }
3739
3740 might_sleep();
3741 for (i = 0; i < pages_per_huge_page; i++) {
3742 cond_resched();
3743 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
3744 }
3745}
3746
3747static void copy_user_gigantic_page(struct page *dst, struct page *src,
3748 unsigned long addr,
3749 struct vm_area_struct *vma,
3750 unsigned int pages_per_huge_page)
3751{
3752 int i;
3753 struct page *dst_base = dst;
3754 struct page *src_base = src;
3755
3756 for (i = 0; i < pages_per_huge_page; ) {
3757 cond_resched();
3758 copy_user_highpage(dst, src, addr + i*PAGE_SIZE, vma);
3759
3760 i++;
3761 dst = mem_map_next(dst, dst_base, i);
3762 src = mem_map_next(src, src_base, i);
3763 }
3764}
3765
3766void copy_user_huge_page(struct page *dst, struct page *src,
3767 unsigned long addr, struct vm_area_struct *vma,
3768 unsigned int pages_per_huge_page)
3769{
3770 int i;
3771
3772 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
3773 copy_user_gigantic_page(dst, src, addr, vma,
3774 pages_per_huge_page);
3775 return;
3776 }
3777
3778 might_sleep();
3779 for (i = 0; i < pages_per_huge_page; i++) {
3780 cond_resched();
3781 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
3782 }
3783}
3784#endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08003785
Olof Johansson40b64ac2013-12-20 14:28:05 -08003786#if USE_SPLIT_PTE_PTLOCKS && ALLOC_SPLIT_PTLOCKS
Kirill A. Shutemovb35f1812014-01-21 15:49:07 -08003787
3788static struct kmem_cache *page_ptl_cachep;
3789
3790void __init ptlock_cache_init(void)
3791{
3792 page_ptl_cachep = kmem_cache_create("page->ptl", sizeof(spinlock_t), 0,
3793 SLAB_PANIC, NULL);
3794}
3795
Peter Zijlstra539edb52013-11-14 14:31:52 -08003796bool ptlock_alloc(struct page *page)
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08003797{
3798 spinlock_t *ptl;
3799
Kirill A. Shutemovb35f1812014-01-21 15:49:07 -08003800 ptl = kmem_cache_alloc(page_ptl_cachep, GFP_KERNEL);
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08003801 if (!ptl)
3802 return false;
Peter Zijlstra539edb52013-11-14 14:31:52 -08003803 page->ptl = ptl;
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08003804 return true;
3805}
3806
Peter Zijlstra539edb52013-11-14 14:31:52 -08003807void ptlock_free(struct page *page)
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08003808{
Kirill A. Shutemovb35f1812014-01-21 15:49:07 -08003809 kmem_cache_free(page_ptl_cachep, page->ptl);
Kirill A. Shutemov49076ec2013-11-14 14:31:51 -08003810}
3811#endif