autofs: sanity check status reported with AUTOFS_DEV_IOCTL_FAIL
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / fs / dax.c
CommitLineData
d475c634
MW
1/*
2 * fs/dax.c - Direct Access filesystem code
3 * Copyright (c) 2013-2014 Intel Corporation
4 * Author: Matthew Wilcox <matthew.r.wilcox@intel.com>
5 * Author: Ross Zwisler <ross.zwisler@linux.intel.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 */
16
17#include <linux/atomic.h>
18#include <linux/blkdev.h>
19#include <linux/buffer_head.h>
d77e92e2 20#include <linux/dax.h>
d475c634
MW
21#include <linux/fs.h>
22#include <linux/genhd.h>
f7ca90b1
MW
23#include <linux/highmem.h>
24#include <linux/memcontrol.h>
25#include <linux/mm.h>
d475c634 26#include <linux/mutex.h>
9973c98e 27#include <linux/pagevec.h>
2765cfbb 28#include <linux/pmem.h>
289c6aed 29#include <linux/sched.h>
f361bf4a 30#include <linux/sched/signal.h>
d475c634 31#include <linux/uio.h>
f7ca90b1 32#include <linux/vmstat.h>
34c0fd54 33#include <linux/pfn_t.h>
0e749e54 34#include <linux/sizes.h>
4b4bb46d 35#include <linux/mmu_notifier.h>
a254e568
CH
36#include <linux/iomap.h>
37#include "internal.h"
d475c634 38
282a8e03
RZ
39#define CREATE_TRACE_POINTS
40#include <trace/events/fs_dax.h>
41
ac401cc7
JK
42/* We choose 4096 entries - same as per-zone page wait tables */
43#define DAX_WAIT_TABLE_BITS 12
44#define DAX_WAIT_TABLE_ENTRIES (1 << DAX_WAIT_TABLE_BITS)
45
ce95ab0f 46static wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
ac401cc7
JK
47
48static int __init init_dax_wait_table(void)
49{
50 int i;
51
52 for (i = 0; i < DAX_WAIT_TABLE_ENTRIES; i++)
53 init_waitqueue_head(wait_table + i);
54 return 0;
55}
56fs_initcall(init_dax_wait_table);
57
642261ac 58static int dax_is_pmd_entry(void *entry)
d1a5f2b4 59{
642261ac 60 return (unsigned long)entry & RADIX_DAX_PMD;
d1a5f2b4
DW
61}
62
642261ac 63static int dax_is_pte_entry(void *entry)
d475c634 64{
642261ac 65 return !((unsigned long)entry & RADIX_DAX_PMD);
d475c634
MW
66}
67
642261ac 68static int dax_is_zero_entry(void *entry)
d475c634 69{
642261ac 70 return (unsigned long)entry & RADIX_DAX_HZP;
d475c634
MW
71}
72
642261ac 73static int dax_is_empty_entry(void *entry)
b2e0d162 74{
642261ac 75 return (unsigned long)entry & RADIX_DAX_EMPTY;
b2e0d162
DW
76}
77
ac401cc7
JK
78/*
79 * DAX radix tree locking
80 */
81struct exceptional_entry_key {
82 struct address_space *mapping;
63e95b5c 83 pgoff_t entry_start;
ac401cc7
JK
84};
85
86struct wait_exceptional_entry_queue {
87 wait_queue_t wait;
88 struct exceptional_entry_key key;
89};
90
63e95b5c
RZ
91static wait_queue_head_t *dax_entry_waitqueue(struct address_space *mapping,
92 pgoff_t index, void *entry, struct exceptional_entry_key *key)
93{
94 unsigned long hash;
95
96 /*
97 * If 'entry' is a PMD, align the 'index' that we use for the wait
98 * queue to the start of that PMD. This ensures that all offsets in
99 * the range covered by the PMD map to the same bit lock.
100 */
642261ac 101 if (dax_is_pmd_entry(entry))
63e95b5c
RZ
102 index &= ~((1UL << (PMD_SHIFT - PAGE_SHIFT)) - 1);
103
104 key->mapping = mapping;
105 key->entry_start = index;
106
107 hash = hash_long((unsigned long)mapping ^ index, DAX_WAIT_TABLE_BITS);
108 return wait_table + hash;
109}
110
ac401cc7
JK
111static int wake_exceptional_entry_func(wait_queue_t *wait, unsigned int mode,
112 int sync, void *keyp)
113{
114 struct exceptional_entry_key *key = keyp;
115 struct wait_exceptional_entry_queue *ewait =
116 container_of(wait, struct wait_exceptional_entry_queue, wait);
117
118 if (key->mapping != ewait->key.mapping ||
63e95b5c 119 key->entry_start != ewait->key.entry_start)
ac401cc7
JK
120 return 0;
121 return autoremove_wake_function(wait, mode, sync, NULL);
122}
123
124/*
125 * Check whether the given slot is locked. The function must be called with
126 * mapping->tree_lock held
127 */
128static inline int slot_locked(struct address_space *mapping, void **slot)
129{
130 unsigned long entry = (unsigned long)
131 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
132 return entry & RADIX_DAX_ENTRY_LOCK;
133}
134
135/*
136 * Mark the given slot is locked. The function must be called with
137 * mapping->tree_lock held
138 */
139static inline void *lock_slot(struct address_space *mapping, void **slot)
140{
141 unsigned long entry = (unsigned long)
142 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
143
144 entry |= RADIX_DAX_ENTRY_LOCK;
6d75f366 145 radix_tree_replace_slot(&mapping->page_tree, slot, (void *)entry);
ac401cc7
JK
146 return (void *)entry;
147}
148
149/*
150 * Mark the given slot is unlocked. The function must be called with
151 * mapping->tree_lock held
152 */
153static inline void *unlock_slot(struct address_space *mapping, void **slot)
154{
155 unsigned long entry = (unsigned long)
156 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
157
158 entry &= ~(unsigned long)RADIX_DAX_ENTRY_LOCK;
6d75f366 159 radix_tree_replace_slot(&mapping->page_tree, slot, (void *)entry);
ac401cc7
JK
160 return (void *)entry;
161}
162
163/*
164 * Lookup entry in radix tree, wait for it to become unlocked if it is
165 * exceptional entry and return it. The caller must call
166 * put_unlocked_mapping_entry() when he decided not to lock the entry or
167 * put_locked_mapping_entry() when he locked the entry and now wants to
168 * unlock it.
169 *
170 * The function must be called with mapping->tree_lock held.
171 */
172static void *get_unlocked_mapping_entry(struct address_space *mapping,
173 pgoff_t index, void ***slotp)
174{
e3ad61c6 175 void *entry, **slot;
ac401cc7 176 struct wait_exceptional_entry_queue ewait;
63e95b5c 177 wait_queue_head_t *wq;
ac401cc7
JK
178
179 init_wait(&ewait.wait);
180 ewait.wait.func = wake_exceptional_entry_func;
ac401cc7
JK
181
182 for (;;) {
e3ad61c6 183 entry = __radix_tree_lookup(&mapping->page_tree, index, NULL,
ac401cc7 184 &slot);
e3ad61c6 185 if (!entry || !radix_tree_exceptional_entry(entry) ||
ac401cc7
JK
186 !slot_locked(mapping, slot)) {
187 if (slotp)
188 *slotp = slot;
e3ad61c6 189 return entry;
ac401cc7 190 }
63e95b5c
RZ
191
192 wq = dax_entry_waitqueue(mapping, index, entry, &ewait.key);
ac401cc7
JK
193 prepare_to_wait_exclusive(wq, &ewait.wait,
194 TASK_UNINTERRUPTIBLE);
195 spin_unlock_irq(&mapping->tree_lock);
196 schedule();
197 finish_wait(wq, &ewait.wait);
198 spin_lock_irq(&mapping->tree_lock);
199 }
200}
201
b1aa812b
JK
202static void dax_unlock_mapping_entry(struct address_space *mapping,
203 pgoff_t index)
204{
205 void *entry, **slot;
206
207 spin_lock_irq(&mapping->tree_lock);
208 entry = __radix_tree_lookup(&mapping->page_tree, index, NULL, &slot);
209 if (WARN_ON_ONCE(!entry || !radix_tree_exceptional_entry(entry) ||
210 !slot_locked(mapping, slot))) {
211 spin_unlock_irq(&mapping->tree_lock);
212 return;
213 }
214 unlock_slot(mapping, slot);
215 spin_unlock_irq(&mapping->tree_lock);
216 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
217}
218
422476c4
RZ
219static void put_locked_mapping_entry(struct address_space *mapping,
220 pgoff_t index, void *entry)
221{
222 if (!radix_tree_exceptional_entry(entry)) {
223 unlock_page(entry);
224 put_page(entry);
225 } else {
226 dax_unlock_mapping_entry(mapping, index);
227 }
228}
229
230/*
231 * Called when we are done with radix tree entry we looked up via
232 * get_unlocked_mapping_entry() and which we didn't lock in the end.
233 */
234static void put_unlocked_mapping_entry(struct address_space *mapping,
235 pgoff_t index, void *entry)
236{
237 if (!radix_tree_exceptional_entry(entry))
238 return;
239
240 /* We have to wake up next waiter for the radix tree entry lock */
241 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
242}
243
ac401cc7
JK
244/*
245 * Find radix tree entry at given index. If it points to a page, return with
246 * the page locked. If it points to the exceptional entry, return with the
247 * radix tree entry locked. If the radix tree doesn't contain given index,
248 * create empty exceptional entry for the index and return with it locked.
249 *
642261ac
RZ
250 * When requesting an entry with size RADIX_DAX_PMD, grab_mapping_entry() will
251 * either return that locked entry or will return an error. This error will
252 * happen if there are any 4k entries (either zero pages or DAX entries)
253 * within the 2MiB range that we are requesting.
254 *
255 * We always favor 4k entries over 2MiB entries. There isn't a flow where we
256 * evict 4k entries in order to 'upgrade' them to a 2MiB entry. A 2MiB
257 * insertion will fail if it finds any 4k entries already in the tree, and a
258 * 4k insertion will cause an existing 2MiB entry to be unmapped and
259 * downgraded to 4k entries. This happens for both 2MiB huge zero pages as
260 * well as 2MiB empty entries.
261 *
262 * The exception to this downgrade path is for 2MiB DAX PMD entries that have
263 * real storage backing them. We will leave these real 2MiB DAX entries in
264 * the tree, and PTE writes will simply dirty the entire 2MiB DAX entry.
265 *
ac401cc7
JK
266 * Note: Unlike filemap_fault() we don't honor FAULT_FLAG_RETRY flags. For
267 * persistent memory the benefit is doubtful. We can add that later if we can
268 * show it helps.
269 */
642261ac
RZ
270static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index,
271 unsigned long size_flag)
ac401cc7 272{
642261ac 273 bool pmd_downgrade = false; /* splitting 2MiB entry into 4k entries? */
e3ad61c6 274 void *entry, **slot;
ac401cc7
JK
275
276restart:
277 spin_lock_irq(&mapping->tree_lock);
e3ad61c6 278 entry = get_unlocked_mapping_entry(mapping, index, &slot);
642261ac
RZ
279
280 if (entry) {
281 if (size_flag & RADIX_DAX_PMD) {
282 if (!radix_tree_exceptional_entry(entry) ||
283 dax_is_pte_entry(entry)) {
284 put_unlocked_mapping_entry(mapping, index,
285 entry);
286 entry = ERR_PTR(-EEXIST);
287 goto out_unlock;
288 }
289 } else { /* trying to grab a PTE entry */
290 if (radix_tree_exceptional_entry(entry) &&
291 dax_is_pmd_entry(entry) &&
292 (dax_is_zero_entry(entry) ||
293 dax_is_empty_entry(entry))) {
294 pmd_downgrade = true;
295 }
296 }
297 }
298
ac401cc7 299 /* No entry for given index? Make sure radix tree is big enough. */
642261ac 300 if (!entry || pmd_downgrade) {
ac401cc7
JK
301 int err;
302
642261ac
RZ
303 if (pmd_downgrade) {
304 /*
305 * Make sure 'entry' remains valid while we drop
306 * mapping->tree_lock.
307 */
308 entry = lock_slot(mapping, slot);
309 }
310
ac401cc7 311 spin_unlock_irq(&mapping->tree_lock);
642261ac
RZ
312 /*
313 * Besides huge zero pages the only other thing that gets
314 * downgraded are empty entries which don't need to be
315 * unmapped.
316 */
317 if (pmd_downgrade && dax_is_zero_entry(entry))
318 unmap_mapping_range(mapping,
319 (index << PAGE_SHIFT) & PMD_MASK, PMD_SIZE, 0);
320
ac401cc7
JK
321 err = radix_tree_preload(
322 mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
0cb80b48
JK
323 if (err) {
324 if (pmd_downgrade)
325 put_locked_mapping_entry(mapping, index, entry);
ac401cc7 326 return ERR_PTR(err);
0cb80b48 327 }
ac401cc7 328 spin_lock_irq(&mapping->tree_lock);
642261ac 329
e11f8b7b
RZ
330 if (!entry) {
331 /*
332 * We needed to drop the page_tree lock while calling
333 * radix_tree_preload() and we didn't have an entry to
334 * lock. See if another thread inserted an entry at
335 * our index during this time.
336 */
337 entry = __radix_tree_lookup(&mapping->page_tree, index,
338 NULL, &slot);
339 if (entry) {
340 radix_tree_preload_end();
341 spin_unlock_irq(&mapping->tree_lock);
342 goto restart;
343 }
344 }
345
642261ac
RZ
346 if (pmd_downgrade) {
347 radix_tree_delete(&mapping->page_tree, index);
348 mapping->nrexceptional--;
349 dax_wake_mapping_entry_waiter(mapping, index, entry,
350 true);
351 }
352
353 entry = dax_radix_locked_entry(0, size_flag | RADIX_DAX_EMPTY);
354
355 err = __radix_tree_insert(&mapping->page_tree, index,
356 dax_radix_order(entry), entry);
ac401cc7
JK
357 radix_tree_preload_end();
358 if (err) {
359 spin_unlock_irq(&mapping->tree_lock);
642261ac 360 /*
e11f8b7b
RZ
361 * Our insertion of a DAX entry failed, most likely
362 * because we were inserting a PMD entry and it
363 * collided with a PTE sized entry at a different
364 * index in the PMD range. We haven't inserted
365 * anything into the radix tree and have no waiters to
366 * wake.
642261ac 367 */
ac401cc7
JK
368 return ERR_PTR(err);
369 }
370 /* Good, we have inserted empty locked entry into the tree. */
371 mapping->nrexceptional++;
372 spin_unlock_irq(&mapping->tree_lock);
e3ad61c6 373 return entry;
ac401cc7
JK
374 }
375 /* Normal page in radix tree? */
e3ad61c6
RZ
376 if (!radix_tree_exceptional_entry(entry)) {
377 struct page *page = entry;
ac401cc7
JK
378
379 get_page(page);
380 spin_unlock_irq(&mapping->tree_lock);
381 lock_page(page);
382 /* Page got truncated? Retry... */
383 if (unlikely(page->mapping != mapping)) {
384 unlock_page(page);
385 put_page(page);
386 goto restart;
387 }
388 return page;
389 }
e3ad61c6 390 entry = lock_slot(mapping, slot);
642261ac 391 out_unlock:
ac401cc7 392 spin_unlock_irq(&mapping->tree_lock);
e3ad61c6 393 return entry;
ac401cc7
JK
394}
395
63e95b5c
RZ
396/*
397 * We do not necessarily hold the mapping->tree_lock when we call this
398 * function so it is possible that 'entry' is no longer a valid item in the
642261ac
RZ
399 * radix tree. This is okay because all we really need to do is to find the
400 * correct waitqueue where tasks might be waiting for that old 'entry' and
401 * wake them.
63e95b5c 402 */
ac401cc7 403void dax_wake_mapping_entry_waiter(struct address_space *mapping,
63e95b5c 404 pgoff_t index, void *entry, bool wake_all)
ac401cc7 405{
63e95b5c
RZ
406 struct exceptional_entry_key key;
407 wait_queue_head_t *wq;
408
409 wq = dax_entry_waitqueue(mapping, index, entry, &key);
ac401cc7
JK
410
411 /*
412 * Checking for locked entry and prepare_to_wait_exclusive() happens
413 * under mapping->tree_lock, ditto for entry handling in our callers.
414 * So at this point all tasks that could have seen our entry locked
415 * must be in the waitqueue and the following check will see them.
416 */
63e95b5c 417 if (waitqueue_active(wq))
ac401cc7 418 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key);
ac401cc7
JK
419}
420
c6dcf52c
JK
421static int __dax_invalidate_mapping_entry(struct address_space *mapping,
422 pgoff_t index, bool trunc)
423{
424 int ret = 0;
425 void *entry;
426 struct radix_tree_root *page_tree = &mapping->page_tree;
427
428 spin_lock_irq(&mapping->tree_lock);
429 entry = get_unlocked_mapping_entry(mapping, index, NULL);
430 if (!entry || !radix_tree_exceptional_entry(entry))
431 goto out;
432 if (!trunc &&
433 (radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_DIRTY) ||
434 radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE)))
435 goto out;
436 radix_tree_delete(page_tree, index);
437 mapping->nrexceptional--;
438 ret = 1;
439out:
440 put_unlocked_mapping_entry(mapping, index, entry);
441 spin_unlock_irq(&mapping->tree_lock);
442 return ret;
443}
ac401cc7
JK
444/*
445 * Delete exceptional DAX entry at @index from @mapping. Wait for radix tree
446 * entry to get unlocked before deleting it.
447 */
448int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index)
449{
c6dcf52c 450 int ret = __dax_invalidate_mapping_entry(mapping, index, true);
ac401cc7 451
ac401cc7
JK
452 /*
453 * This gets called from truncate / punch_hole path. As such, the caller
454 * must hold locks protecting against concurrent modifications of the
455 * radix tree (usually fs-private i_mmap_sem for writing). Since the
456 * caller has seen exceptional entry for this index, we better find it
457 * at that index as well...
458 */
c6dcf52c
JK
459 WARN_ON_ONCE(!ret);
460 return ret;
461}
462
c6dcf52c
JK
463/*
464 * Invalidate exceptional DAX entry if it is clean.
465 */
466int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
467 pgoff_t index)
468{
469 return __dax_invalidate_mapping_entry(mapping, index, false);
ac401cc7
JK
470}
471
f7ca90b1
MW
472/*
473 * The user has performed a load from a hole in the file. Allocating
474 * a new page in the file would cause excessive storage usage for
475 * workloads with sparse files. We allocate a page cache page instead.
476 * We'll kick it out of the page cache if it's ever written to,
477 * otherwise it will simply fall out of the page cache under memory
478 * pressure without ever having been dirtied.
479 */
f449b936 480static int dax_load_hole(struct address_space *mapping, void **entry,
ac401cc7 481 struct vm_fault *vmf)
f7ca90b1 482{
678c9fd0 483 struct inode *inode = mapping->host;
ac401cc7 484 struct page *page;
f449b936 485 int ret;
f7ca90b1 486
ac401cc7 487 /* Hole page already exists? Return it... */
f449b936
JK
488 if (!radix_tree_exceptional_entry(*entry)) {
489 page = *entry;
678c9fd0 490 goto finish_fault;
ac401cc7 491 }
f7ca90b1 492
ac401cc7
JK
493 /* This will replace locked radix tree entry with a hole page */
494 page = find_or_create_page(mapping, vmf->pgoff,
495 vmf->gfp_mask | __GFP_ZERO);
678c9fd0
RZ
496 if (!page) {
497 ret = VM_FAULT_OOM;
498 goto out;
499 }
500
501finish_fault:
f7ca90b1 502 vmf->page = page;
f449b936
JK
503 ret = finish_fault(vmf);
504 vmf->page = NULL;
505 *entry = page;
506 if (!ret) {
507 /* Grab reference for PTE that is now referencing the page */
508 get_page(page);
678c9fd0 509 ret = VM_FAULT_NOPAGE;
f449b936 510 }
678c9fd0
RZ
511out:
512 trace_dax_load_hole(inode, vmf, ret);
f449b936 513 return ret;
f7ca90b1
MW
514}
515
cccbce67
DW
516static int copy_user_dax(struct block_device *bdev, struct dax_device *dax_dev,
517 sector_t sector, size_t size, struct page *to,
518 unsigned long vaddr)
f7ca90b1 519{
cccbce67
DW
520 void *vto, *kaddr;
521 pgoff_t pgoff;
522 pfn_t pfn;
523 long rc;
524 int id;
525
526 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
527 if (rc)
528 return rc;
529
530 id = dax_read_lock();
531 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
532 if (rc < 0) {
533 dax_read_unlock(id);
534 return rc;
535 }
f7ca90b1 536 vto = kmap_atomic(to);
cccbce67 537 copy_user_page(vto, (void __force *)kaddr, vaddr, to);
f7ca90b1 538 kunmap_atomic(vto);
cccbce67 539 dax_read_unlock(id);
f7ca90b1
MW
540 return 0;
541}
542
642261ac
RZ
543/*
544 * By this point grab_mapping_entry() has ensured that we have a locked entry
545 * of the appropriate size so we don't have to worry about downgrading PMDs to
546 * PTEs. If we happen to be trying to insert a PTE and there is a PMD
547 * already in the tree, we will skip the insertion and just dirty the PMD as
548 * appropriate.
549 */
ac401cc7
JK
550static void *dax_insert_mapping_entry(struct address_space *mapping,
551 struct vm_fault *vmf,
642261ac
RZ
552 void *entry, sector_t sector,
553 unsigned long flags)
9973c98e
RZ
554{
555 struct radix_tree_root *page_tree = &mapping->page_tree;
ac401cc7
JK
556 int error = 0;
557 bool hole_fill = false;
558 void *new_entry;
559 pgoff_t index = vmf->pgoff;
9973c98e 560
ac401cc7 561 if (vmf->flags & FAULT_FLAG_WRITE)
d2b2a28e 562 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
9973c98e 563
ac401cc7
JK
564 /* Replacing hole page with block mapping? */
565 if (!radix_tree_exceptional_entry(entry)) {
566 hole_fill = true;
567 /*
568 * Unmap the page now before we remove it from page cache below.
569 * The page is locked so it cannot be faulted in again.
570 */
571 unmap_mapping_range(mapping, vmf->pgoff << PAGE_SHIFT,
572 PAGE_SIZE, 0);
573 error = radix_tree_preload(vmf->gfp_mask & ~__GFP_HIGHMEM);
574 if (error)
575 return ERR_PTR(error);
642261ac
RZ
576 } else if (dax_is_zero_entry(entry) && !(flags & RADIX_DAX_HZP)) {
577 /* replacing huge zero page with PMD block mapping */
578 unmap_mapping_range(mapping,
579 (vmf->pgoff << PAGE_SHIFT) & PMD_MASK, PMD_SIZE, 0);
9973c98e
RZ
580 }
581
ac401cc7 582 spin_lock_irq(&mapping->tree_lock);
642261ac
RZ
583 new_entry = dax_radix_locked_entry(sector, flags);
584
ac401cc7
JK
585 if (hole_fill) {
586 __delete_from_page_cache(entry, NULL);
587 /* Drop pagecache reference */
588 put_page(entry);
642261ac
RZ
589 error = __radix_tree_insert(page_tree, index,
590 dax_radix_order(new_entry), new_entry);
ac401cc7
JK
591 if (error) {
592 new_entry = ERR_PTR(error);
9973c98e
RZ
593 goto unlock;
594 }
ac401cc7 595 mapping->nrexceptional++;
642261ac
RZ
596 } else if (dax_is_zero_entry(entry) || dax_is_empty_entry(entry)) {
597 /*
598 * Only swap our new entry into the radix tree if the current
599 * entry is a zero page or an empty entry. If a normal PTE or
600 * PMD entry is already in the tree, we leave it alone. This
601 * means that if we are trying to insert a PTE and the
602 * existing entry is a PMD, we will just leave the PMD in the
603 * tree and dirty it if necessary.
604 */
f7942430 605 struct radix_tree_node *node;
ac401cc7
JK
606 void **slot;
607 void *ret;
9973c98e 608
f7942430 609 ret = __radix_tree_lookup(page_tree, index, &node, &slot);
ac401cc7 610 WARN_ON_ONCE(ret != entry);
4d693d08
JW
611 __radix_tree_replace(page_tree, node, slot,
612 new_entry, NULL, NULL);
9973c98e 613 }
ac401cc7 614 if (vmf->flags & FAULT_FLAG_WRITE)
9973c98e
RZ
615 radix_tree_tag_set(page_tree, index, PAGECACHE_TAG_DIRTY);
616 unlock:
617 spin_unlock_irq(&mapping->tree_lock);
ac401cc7
JK
618 if (hole_fill) {
619 radix_tree_preload_end();
620 /*
621 * We don't need hole page anymore, it has been replaced with
622 * locked radix tree entry now.
623 */
624 if (mapping->a_ops->freepage)
625 mapping->a_ops->freepage(entry);
626 unlock_page(entry);
627 put_page(entry);
628 }
629 return new_entry;
9973c98e
RZ
630}
631
4b4bb46d
JK
632static inline unsigned long
633pgoff_address(pgoff_t pgoff, struct vm_area_struct *vma)
634{
635 unsigned long address;
636
637 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
638 VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
639 return address;
640}
641
642/* Walk all mappings of a given index of a file and writeprotect them */
643static void dax_mapping_entry_mkclean(struct address_space *mapping,
644 pgoff_t index, unsigned long pfn)
645{
646 struct vm_area_struct *vma;
f729c8c9
RZ
647 pte_t pte, *ptep = NULL;
648 pmd_t *pmdp = NULL;
4b4bb46d
JK
649 spinlock_t *ptl;
650 bool changed;
651
652 i_mmap_lock_read(mapping);
653 vma_interval_tree_foreach(vma, &mapping->i_mmap, index, index) {
654 unsigned long address;
655
656 cond_resched();
657
658 if (!(vma->vm_flags & VM_SHARED))
659 continue;
660
661 address = pgoff_address(index, vma);
662 changed = false;
f729c8c9 663 if (follow_pte_pmd(vma->vm_mm, address, &ptep, &pmdp, &ptl))
4b4bb46d 664 continue;
4b4bb46d 665
f729c8c9
RZ
666 if (pmdp) {
667#ifdef CONFIG_FS_DAX_PMD
668 pmd_t pmd;
669
670 if (pfn != pmd_pfn(*pmdp))
671 goto unlock_pmd;
672 if (!pmd_dirty(*pmdp) && !pmd_write(*pmdp))
673 goto unlock_pmd;
674
675 flush_cache_page(vma, address, pfn);
676 pmd = pmdp_huge_clear_flush(vma, address, pmdp);
677 pmd = pmd_wrprotect(pmd);
678 pmd = pmd_mkclean(pmd);
679 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
680 changed = true;
681unlock_pmd:
682 spin_unlock(ptl);
683#endif
684 } else {
685 if (pfn != pte_pfn(*ptep))
686 goto unlock_pte;
687 if (!pte_dirty(*ptep) && !pte_write(*ptep))
688 goto unlock_pte;
689
690 flush_cache_page(vma, address, pfn);
691 pte = ptep_clear_flush(vma, address, ptep);
692 pte = pte_wrprotect(pte);
693 pte = pte_mkclean(pte);
694 set_pte_at(vma->vm_mm, address, ptep, pte);
695 changed = true;
696unlock_pte:
697 pte_unmap_unlock(ptep, ptl);
698 }
4b4bb46d
JK
699
700 if (changed)
701 mmu_notifier_invalidate_page(vma->vm_mm, address);
702 }
703 i_mmap_unlock_read(mapping);
704}
705
9973c98e 706static int dax_writeback_one(struct block_device *bdev,
cccbce67
DW
707 struct dax_device *dax_dev, struct address_space *mapping,
708 pgoff_t index, void *entry)
9973c98e
RZ
709{
710 struct radix_tree_root *page_tree = &mapping->page_tree;
cccbce67
DW
711 void *entry2, **slot, *kaddr;
712 long ret = 0, id;
713 sector_t sector;
714 pgoff_t pgoff;
715 size_t size;
716 pfn_t pfn;
9973c98e 717
9973c98e 718 /*
a6abc2c0
JK
719 * A page got tagged dirty in DAX mapping? Something is seriously
720 * wrong.
9973c98e 721 */
a6abc2c0
JK
722 if (WARN_ON(!radix_tree_exceptional_entry(entry)))
723 return -EIO;
9973c98e 724
a6abc2c0
JK
725 spin_lock_irq(&mapping->tree_lock);
726 entry2 = get_unlocked_mapping_entry(mapping, index, &slot);
727 /* Entry got punched out / reallocated? */
728 if (!entry2 || !radix_tree_exceptional_entry(entry2))
729 goto put_unlocked;
730 /*
731 * Entry got reallocated elsewhere? No need to writeback. We have to
732 * compare sectors as we must not bail out due to difference in lockbit
733 * or entry type.
734 */
735 if (dax_radix_sector(entry2) != dax_radix_sector(entry))
736 goto put_unlocked;
642261ac
RZ
737 if (WARN_ON_ONCE(dax_is_empty_entry(entry) ||
738 dax_is_zero_entry(entry))) {
9973c98e 739 ret = -EIO;
a6abc2c0 740 goto put_unlocked;
9973c98e
RZ
741 }
742
a6abc2c0
JK
743 /* Another fsync thread may have already written back this entry */
744 if (!radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE))
745 goto put_unlocked;
746 /* Lock the entry to serialize with page faults */
747 entry = lock_slot(mapping, slot);
748 /*
749 * We can clear the tag now but we have to be careful so that concurrent
750 * dax_writeback_one() calls for the same index cannot finish before we
751 * actually flush the caches. This is achieved as the calls will look
752 * at the entry only under tree_lock and once they do that they will
753 * see the entry locked and wait for it to unlock.
754 */
755 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_TOWRITE);
756 spin_unlock_irq(&mapping->tree_lock);
757
642261ac
RZ
758 /*
759 * Even if dax_writeback_mapping_range() was given a wbc->range_start
760 * in the middle of a PMD, the 'index' we are given will be aligned to
761 * the start index of the PMD, as will the sector we pull from
762 * 'entry'. This allows us to flush for PMD_SIZE and not have to
763 * worry about partial PMD writebacks.
764 */
cccbce67
DW
765 sector = dax_radix_sector(entry);
766 size = PAGE_SIZE << dax_radix_order(entry);
767
768 id = dax_read_lock();
769 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
770 if (ret)
771 goto dax_unlock;
9973c98e
RZ
772
773 /*
cccbce67
DW
774 * dax_direct_access() may sleep, so cannot hold tree_lock over
775 * its invocation.
9973c98e 776 */
cccbce67
DW
777 ret = dax_direct_access(dax_dev, pgoff, size / PAGE_SIZE, &kaddr, &pfn);
778 if (ret < 0)
779 goto dax_unlock;
9973c98e 780
cccbce67 781 if (WARN_ON_ONCE(ret < size / PAGE_SIZE)) {
9973c98e 782 ret = -EIO;
cccbce67 783 goto dax_unlock;
9973c98e
RZ
784 }
785
cccbce67
DW
786 dax_mapping_entry_mkclean(mapping, index, pfn_t_to_pfn(pfn));
787 wb_cache_pmem(kaddr, size);
4b4bb46d
JK
788 /*
789 * After we have flushed the cache, we can clear the dirty tag. There
790 * cannot be new dirty data in the pfn after the flush has completed as
791 * the pfn mappings are writeprotected and fault waits for mapping
792 * entry lock.
793 */
794 spin_lock_irq(&mapping->tree_lock);
795 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_DIRTY);
796 spin_unlock_irq(&mapping->tree_lock);
f9bc3a07 797 trace_dax_writeback_one(mapping->host, index, size >> PAGE_SHIFT);
cccbce67
DW
798 dax_unlock:
799 dax_read_unlock(id);
a6abc2c0 800 put_locked_mapping_entry(mapping, index, entry);
9973c98e
RZ
801 return ret;
802
a6abc2c0
JK
803 put_unlocked:
804 put_unlocked_mapping_entry(mapping, index, entry2);
9973c98e
RZ
805 spin_unlock_irq(&mapping->tree_lock);
806 return ret;
807}
808
809/*
810 * Flush the mapping to the persistent domain within the byte range of [start,
811 * end]. This is required by data integrity operations to ensure file data is
812 * on persistent storage prior to completion of the operation.
813 */
7f6d5b52
RZ
814int dax_writeback_mapping_range(struct address_space *mapping,
815 struct block_device *bdev, struct writeback_control *wbc)
9973c98e
RZ
816{
817 struct inode *inode = mapping->host;
642261ac 818 pgoff_t start_index, end_index;
9973c98e 819 pgoff_t indices[PAGEVEC_SIZE];
cccbce67 820 struct dax_device *dax_dev;
9973c98e
RZ
821 struct pagevec pvec;
822 bool done = false;
823 int i, ret = 0;
9973c98e
RZ
824
825 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
826 return -EIO;
827
7f6d5b52
RZ
828 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
829 return 0;
830
cccbce67
DW
831 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
832 if (!dax_dev)
833 return -EIO;
834
09cbfeaf
KS
835 start_index = wbc->range_start >> PAGE_SHIFT;
836 end_index = wbc->range_end >> PAGE_SHIFT;
9973c98e 837
d14a3f48
RZ
838 trace_dax_writeback_range(inode, start_index, end_index);
839
9973c98e
RZ
840 tag_pages_for_writeback(mapping, start_index, end_index);
841
842 pagevec_init(&pvec, 0);
843 while (!done) {
844 pvec.nr = find_get_entries_tag(mapping, start_index,
845 PAGECACHE_TAG_TOWRITE, PAGEVEC_SIZE,
846 pvec.pages, indices);
847
848 if (pvec.nr == 0)
849 break;
850
851 for (i = 0; i < pvec.nr; i++) {
852 if (indices[i] > end_index) {
853 done = true;
854 break;
855 }
856
cccbce67
DW
857 ret = dax_writeback_one(bdev, dax_dev, mapping,
858 indices[i], pvec.pages[i]);
d14a3f48
RZ
859 if (ret < 0)
860 goto out;
9973c98e
RZ
861 }
862 }
d14a3f48 863out:
cccbce67 864 put_dax(dax_dev);
d14a3f48
RZ
865 trace_dax_writeback_range_done(inode, start_index, end_index);
866 return (ret < 0 ? ret : 0);
9973c98e
RZ
867}
868EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
869
ac401cc7 870static int dax_insert_mapping(struct address_space *mapping,
cccbce67
DW
871 struct block_device *bdev, struct dax_device *dax_dev,
872 sector_t sector, size_t size, void **entryp,
873 struct vm_area_struct *vma, struct vm_fault *vmf)
f7ca90b1 874{
1a29d85e 875 unsigned long vaddr = vmf->address;
ac401cc7 876 void *entry = *entryp;
cccbce67
DW
877 void *ret, *kaddr;
878 pgoff_t pgoff;
879 int id, rc;
880 pfn_t pfn;
f7ca90b1 881
cccbce67
DW
882 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
883 if (rc)
884 return rc;
f7ca90b1 885
cccbce67
DW
886 id = dax_read_lock();
887 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
888 if (rc < 0) {
889 dax_read_unlock(id);
890 return rc;
891 }
892 dax_read_unlock(id);
893
894 ret = dax_insert_mapping_entry(mapping, vmf, entry, sector, 0);
4d9a2c87
JK
895 if (IS_ERR(ret))
896 return PTR_ERR(ret);
ac401cc7 897 *entryp = ret;
9973c98e 898
b4440734 899 trace_dax_insert_mapping(mapping->host, vmf, ret);
cccbce67 900 return vm_insert_mixed(vma, vaddr, pfn);
f7ca90b1
MW
901}
902
0e3b210c
BH
903/**
904 * dax_pfn_mkwrite - handle first write to DAX page
0e3b210c 905 * @vmf: The description of the fault
0e3b210c 906 */
11bac800 907int dax_pfn_mkwrite(struct vm_fault *vmf)
0e3b210c 908{
11bac800 909 struct file *file = vmf->vma->vm_file;
ac401cc7 910 struct address_space *mapping = file->f_mapping;
c3ff68d7 911 struct inode *inode = mapping->host;
2f89dc12 912 void *entry, **slot;
ac401cc7 913 pgoff_t index = vmf->pgoff;
30f471fd 914
ac401cc7 915 spin_lock_irq(&mapping->tree_lock);
2f89dc12
JK
916 entry = get_unlocked_mapping_entry(mapping, index, &slot);
917 if (!entry || !radix_tree_exceptional_entry(entry)) {
918 if (entry)
919 put_unlocked_mapping_entry(mapping, index, entry);
920 spin_unlock_irq(&mapping->tree_lock);
c3ff68d7 921 trace_dax_pfn_mkwrite_no_entry(inode, vmf, VM_FAULT_NOPAGE);
2f89dc12
JK
922 return VM_FAULT_NOPAGE;
923 }
ac401cc7 924 radix_tree_tag_set(&mapping->page_tree, index, PAGECACHE_TAG_DIRTY);
2f89dc12 925 entry = lock_slot(mapping, slot);
ac401cc7 926 spin_unlock_irq(&mapping->tree_lock);
2f89dc12
JK
927 /*
928 * If we race with somebody updating the PTE and finish_mkwrite_fault()
929 * fails, we don't care. We need to return VM_FAULT_NOPAGE and retry
930 * the fault in either case.
931 */
932 finish_mkwrite_fault(vmf);
933 put_locked_mapping_entry(mapping, index, entry);
c3ff68d7 934 trace_dax_pfn_mkwrite(inode, vmf, VM_FAULT_NOPAGE);
0e3b210c
BH
935 return VM_FAULT_NOPAGE;
936}
937EXPORT_SYMBOL_GPL(dax_pfn_mkwrite);
938
4b0228fa
VV
939static bool dax_range_is_aligned(struct block_device *bdev,
940 unsigned int offset, unsigned int length)
941{
942 unsigned short sector_size = bdev_logical_block_size(bdev);
943
944 if (!IS_ALIGNED(offset, sector_size))
945 return false;
946 if (!IS_ALIGNED(length, sector_size))
947 return false;
948
949 return true;
950}
951
cccbce67
DW
952int __dax_zero_page_range(struct block_device *bdev,
953 struct dax_device *dax_dev, sector_t sector,
954 unsigned int offset, unsigned int size)
679c8bd3 955{
cccbce67
DW
956 if (dax_range_is_aligned(bdev, offset, size)) {
957 sector_t start_sector = sector + (offset >> 9);
4b0228fa
VV
958
959 return blkdev_issue_zeroout(bdev, start_sector,
53ef7d0e 960 size >> 9, GFP_NOFS, 0);
4b0228fa 961 } else {
cccbce67
DW
962 pgoff_t pgoff;
963 long rc, id;
964 void *kaddr;
965 pfn_t pfn;
966
e84b83b9 967 rc = bdev_dax_pgoff(bdev, sector, PAGE_SIZE, &pgoff);
cccbce67
DW
968 if (rc)
969 return rc;
970
971 id = dax_read_lock();
e84b83b9 972 rc = dax_direct_access(dax_dev, pgoff, 1, &kaddr,
cccbce67
DW
973 &pfn);
974 if (rc < 0) {
975 dax_read_unlock(id);
976 return rc;
977 }
978 clear_pmem(kaddr + offset, size);
979 dax_read_unlock(id);
4b0228fa 980 }
679c8bd3
CH
981 return 0;
982}
983EXPORT_SYMBOL_GPL(__dax_zero_page_range);
984
333ccc97 985static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
25726bc1 986{
333ccc97 987 return iomap->blkno + (((pos & PAGE_MASK) - iomap->offset) >> 9);
25726bc1 988}
a254e568 989
a254e568 990static loff_t
11c59c92 991dax_iomap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
a254e568
CH
992 struct iomap *iomap)
993{
cccbce67
DW
994 struct block_device *bdev = iomap->bdev;
995 struct dax_device *dax_dev = iomap->dax_dev;
a254e568
CH
996 struct iov_iter *iter = data;
997 loff_t end = pos + length, done = 0;
998 ssize_t ret = 0;
cccbce67 999 int id;
a254e568
CH
1000
1001 if (iov_iter_rw(iter) == READ) {
1002 end = min(end, i_size_read(inode));
1003 if (pos >= end)
1004 return 0;
1005
1006 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
1007 return iov_iter_zero(min(length, end - pos), iter);
1008 }
1009
1010 if (WARN_ON_ONCE(iomap->type != IOMAP_MAPPED))
1011 return -EIO;
1012
e3fce68c
JK
1013 /*
1014 * Write can allocate block for an area which has a hole page mapped
1015 * into page tables. We have to tear down these mappings so that data
1016 * written by write(2) is visible in mmap.
1017 */
cd656375 1018 if (iomap->flags & IOMAP_F_NEW) {
e3fce68c
JK
1019 invalidate_inode_pages2_range(inode->i_mapping,
1020 pos >> PAGE_SHIFT,
1021 (end - 1) >> PAGE_SHIFT);
1022 }
1023
cccbce67 1024 id = dax_read_lock();
a254e568
CH
1025 while (pos < end) {
1026 unsigned offset = pos & (PAGE_SIZE - 1);
cccbce67
DW
1027 const size_t size = ALIGN(length + offset, PAGE_SIZE);
1028 const sector_t sector = dax_iomap_sector(iomap, pos);
a254e568 1029 ssize_t map_len;
cccbce67
DW
1030 pgoff_t pgoff;
1031 void *kaddr;
1032 pfn_t pfn;
a254e568 1033
d1908f52
MH
1034 if (fatal_signal_pending(current)) {
1035 ret = -EINTR;
1036 break;
1037 }
1038
cccbce67
DW
1039 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
1040 if (ret)
1041 break;
1042
1043 map_len = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size),
1044 &kaddr, &pfn);
a254e568
CH
1045 if (map_len < 0) {
1046 ret = map_len;
1047 break;
1048 }
1049
cccbce67
DW
1050 map_len = PFN_PHYS(map_len);
1051 kaddr += offset;
a254e568
CH
1052 map_len -= offset;
1053 if (map_len > end - pos)
1054 map_len = end - pos;
1055
1056 if (iov_iter_rw(iter) == WRITE)
cccbce67 1057 map_len = copy_from_iter_pmem(kaddr, map_len, iter);
a254e568 1058 else
cccbce67 1059 map_len = copy_to_iter(kaddr, map_len, iter);
a254e568
CH
1060 if (map_len <= 0) {
1061 ret = map_len ? map_len : -EFAULT;
1062 break;
1063 }
1064
1065 pos += map_len;
1066 length -= map_len;
1067 done += map_len;
1068 }
cccbce67 1069 dax_read_unlock(id);
a254e568
CH
1070
1071 return done ? done : ret;
1072}
1073
1074/**
11c59c92 1075 * dax_iomap_rw - Perform I/O to a DAX file
a254e568
CH
1076 * @iocb: The control block for this I/O
1077 * @iter: The addresses to do I/O from or to
1078 * @ops: iomap ops passed from the file system
1079 *
1080 * This function performs read and write operations to directly mapped
1081 * persistent memory. The callers needs to take care of read/write exclusion
1082 * and evicting any page cache pages in the region under I/O.
1083 */
1084ssize_t
11c59c92 1085dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
8ff6daa1 1086 const struct iomap_ops *ops)
a254e568
CH
1087{
1088 struct address_space *mapping = iocb->ki_filp->f_mapping;
1089 struct inode *inode = mapping->host;
1090 loff_t pos = iocb->ki_pos, ret = 0, done = 0;
1091 unsigned flags = 0;
1092
168316db
CH
1093 if (iov_iter_rw(iter) == WRITE) {
1094 lockdep_assert_held_exclusive(&inode->i_rwsem);
a254e568 1095 flags |= IOMAP_WRITE;
168316db
CH
1096 } else {
1097 lockdep_assert_held(&inode->i_rwsem);
1098 }
a254e568 1099
a254e568
CH
1100 while (iov_iter_count(iter)) {
1101 ret = iomap_apply(inode, pos, iov_iter_count(iter), flags, ops,
11c59c92 1102 iter, dax_iomap_actor);
a254e568
CH
1103 if (ret <= 0)
1104 break;
1105 pos += ret;
1106 done += ret;
1107 }
1108
1109 iocb->ki_pos += done;
1110 return done ? done : ret;
1111}
11c59c92 1112EXPORT_SYMBOL_GPL(dax_iomap_rw);
a7d73fe6 1113
9f141d6e
JK
1114static int dax_fault_return(int error)
1115{
1116 if (error == 0)
1117 return VM_FAULT_NOPAGE;
1118 if (error == -ENOMEM)
1119 return VM_FAULT_OOM;
1120 return VM_FAULT_SIGBUS;
1121}
1122
a2d58167
DJ
1123static int dax_iomap_pte_fault(struct vm_fault *vmf,
1124 const struct iomap_ops *ops)
a7d73fe6 1125{
11bac800 1126 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
a7d73fe6 1127 struct inode *inode = mapping->host;
1a29d85e 1128 unsigned long vaddr = vmf->address;
a7d73fe6
CH
1129 loff_t pos = (loff_t)vmf->pgoff << PAGE_SHIFT;
1130 sector_t sector;
1131 struct iomap iomap = { 0 };
9484ab1b 1132 unsigned flags = IOMAP_FAULT;
a7d73fe6 1133 int error, major = 0;
b1aa812b 1134 int vmf_ret = 0;
a7d73fe6
CH
1135 void *entry;
1136
a9c42b33 1137 trace_dax_pte_fault(inode, vmf, vmf_ret);
a7d73fe6
CH
1138 /*
1139 * Check whether offset isn't beyond end of file now. Caller is supposed
1140 * to hold locks serializing us with truncate / punch hole so this is
1141 * a reliable test.
1142 */
a9c42b33
RZ
1143 if (pos >= i_size_read(inode)) {
1144 vmf_ret = VM_FAULT_SIGBUS;
1145 goto out;
1146 }
a7d73fe6 1147
a7d73fe6
CH
1148 if ((vmf->flags & FAULT_FLAG_WRITE) && !vmf->cow_page)
1149 flags |= IOMAP_WRITE;
1150
13e451fd
JK
1151 entry = grab_mapping_entry(mapping, vmf->pgoff, 0);
1152 if (IS_ERR(entry)) {
1153 vmf_ret = dax_fault_return(PTR_ERR(entry));
1154 goto out;
1155 }
1156
e2093926
RZ
1157 /*
1158 * It is possible, particularly with mixed reads & writes to private
1159 * mappings, that we have raced with a PMD fault that overlaps with
1160 * the PTE we need to set up. If so just return and the fault will be
1161 * retried.
1162 */
1163 if (pmd_trans_huge(*vmf->pmd) || pmd_devmap(*vmf->pmd)) {
1164 vmf_ret = VM_FAULT_NOPAGE;
1165 goto unlock_entry;
1166 }
1167
a7d73fe6
CH
1168 /*
1169 * Note that we don't bother to use iomap_apply here: DAX required
1170 * the file system block size to be equal the page size, which means
1171 * that we never have to deal with more than a single extent here.
1172 */
1173 error = ops->iomap_begin(inode, pos, PAGE_SIZE, flags, &iomap);
a9c42b33
RZ
1174 if (error) {
1175 vmf_ret = dax_fault_return(error);
13e451fd 1176 goto unlock_entry;
a9c42b33 1177 }
a7d73fe6 1178 if (WARN_ON_ONCE(iomap.offset + iomap.length < pos + PAGE_SIZE)) {
13e451fd
JK
1179 error = -EIO; /* fs corruption? */
1180 goto error_finish_iomap;
a7d73fe6
CH
1181 }
1182
333ccc97 1183 sector = dax_iomap_sector(&iomap, pos);
a7d73fe6
CH
1184
1185 if (vmf->cow_page) {
1186 switch (iomap.type) {
1187 case IOMAP_HOLE:
1188 case IOMAP_UNWRITTEN:
1189 clear_user_highpage(vmf->cow_page, vaddr);
1190 break;
1191 case IOMAP_MAPPED:
cccbce67
DW
1192 error = copy_user_dax(iomap.bdev, iomap.dax_dev,
1193 sector, PAGE_SIZE, vmf->cow_page, vaddr);
a7d73fe6
CH
1194 break;
1195 default:
1196 WARN_ON_ONCE(1);
1197 error = -EIO;
1198 break;
1199 }
1200
1201 if (error)
13e451fd 1202 goto error_finish_iomap;
b1aa812b
JK
1203
1204 __SetPageUptodate(vmf->cow_page);
1205 vmf_ret = finish_fault(vmf);
1206 if (!vmf_ret)
1207 vmf_ret = VM_FAULT_DONE_COW;
13e451fd 1208 goto finish_iomap;
a7d73fe6
CH
1209 }
1210
1211 switch (iomap.type) {
1212 case IOMAP_MAPPED:
1213 if (iomap.flags & IOMAP_F_NEW) {
1214 count_vm_event(PGMAJFAULT);
11bac800 1215 mem_cgroup_count_vm_event(vmf->vma->vm_mm, PGMAJFAULT);
a7d73fe6
CH
1216 major = VM_FAULT_MAJOR;
1217 }
cccbce67
DW
1218 error = dax_insert_mapping(mapping, iomap.bdev, iomap.dax_dev,
1219 sector, PAGE_SIZE, &entry, vmf->vma, vmf);
9f141d6e
JK
1220 /* -EBUSY is fine, somebody else faulted on the same PTE */
1221 if (error == -EBUSY)
1222 error = 0;
a7d73fe6
CH
1223 break;
1224 case IOMAP_UNWRITTEN:
1225 case IOMAP_HOLE:
1550290b 1226 if (!(vmf->flags & FAULT_FLAG_WRITE)) {
f449b936 1227 vmf_ret = dax_load_hole(mapping, &entry, vmf);
13e451fd 1228 goto finish_iomap;
1550290b 1229 }
a7d73fe6
CH
1230 /*FALLTHRU*/
1231 default:
1232 WARN_ON_ONCE(1);
1233 error = -EIO;
1234 break;
1235 }
1236
13e451fd 1237 error_finish_iomap:
9f141d6e 1238 vmf_ret = dax_fault_return(error) | major;
9f141d6e
JK
1239 finish_iomap:
1240 if (ops->iomap_end) {
1241 int copied = PAGE_SIZE;
1242
1243 if (vmf_ret & VM_FAULT_ERROR)
1244 copied = 0;
1245 /*
1246 * The fault is done by now and there's no way back (other
1247 * thread may be already happily using PTE we have installed).
1248 * Just ignore error from ->iomap_end since we cannot do much
1249 * with it.
1250 */
1251 ops->iomap_end(inode, pos, PAGE_SIZE, copied, flags, &iomap);
1550290b 1252 }
13e451fd
JK
1253 unlock_entry:
1254 put_locked_mapping_entry(mapping, vmf->pgoff, entry);
1255 out:
a9c42b33 1256 trace_dax_pte_fault_done(inode, vmf, vmf_ret);
9f141d6e 1257 return vmf_ret;
a7d73fe6 1258}
642261ac
RZ
1259
1260#ifdef CONFIG_FS_DAX_PMD
1261/*
1262 * The 'colour' (ie low bits) within a PMD of a page offset. This comes up
1263 * more often than one might expect in the below functions.
1264 */
1265#define PG_PMD_COLOUR ((PMD_SIZE >> PAGE_SHIFT) - 1)
1266
f4200391
DJ
1267static int dax_pmd_insert_mapping(struct vm_fault *vmf, struct iomap *iomap,
1268 loff_t pos, void **entryp)
642261ac 1269{
f4200391 1270 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
cccbce67
DW
1271 const sector_t sector = dax_iomap_sector(iomap, pos);
1272 struct dax_device *dax_dev = iomap->dax_dev;
642261ac 1273 struct block_device *bdev = iomap->bdev;
27a7ffac 1274 struct inode *inode = mapping->host;
cccbce67
DW
1275 const size_t size = PMD_SIZE;
1276 void *ret = NULL, *kaddr;
1277 long length = 0;
1278 pgoff_t pgoff;
1279 pfn_t pfn;
1280 int id;
1281
1282 if (bdev_dax_pgoff(bdev, sector, size, &pgoff) != 0)
27a7ffac 1283 goto fallback;
642261ac 1284
cccbce67
DW
1285 id = dax_read_lock();
1286 length = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
1287 if (length < 0)
1288 goto unlock_fallback;
1289 length = PFN_PHYS(length);
1290
1291 if (length < size)
1292 goto unlock_fallback;
1293 if (pfn_t_to_pfn(pfn) & PG_PMD_COLOUR)
1294 goto unlock_fallback;
1295 if (!pfn_t_devmap(pfn))
1296 goto unlock_fallback;
1297 dax_read_unlock(id);
1298
1299 ret = dax_insert_mapping_entry(mapping, vmf, *entryp, sector,
642261ac
RZ
1300 RADIX_DAX_PMD);
1301 if (IS_ERR(ret))
27a7ffac 1302 goto fallback;
642261ac
RZ
1303 *entryp = ret;
1304
cccbce67 1305 trace_dax_pmd_insert_mapping(inode, vmf, length, pfn, ret);
f4200391 1306 return vmf_insert_pfn_pmd(vmf->vma, vmf->address, vmf->pmd,
cccbce67 1307 pfn, vmf->flags & FAULT_FLAG_WRITE);
642261ac 1308
cccbce67
DW
1309unlock_fallback:
1310 dax_read_unlock(id);
27a7ffac 1311fallback:
cccbce67 1312 trace_dax_pmd_insert_mapping_fallback(inode, vmf, length, pfn, ret);
642261ac
RZ
1313 return VM_FAULT_FALLBACK;
1314}
1315
f4200391
DJ
1316static int dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
1317 void **entryp)
642261ac 1318{
f4200391
DJ
1319 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1320 unsigned long pmd_addr = vmf->address & PMD_MASK;
653b2ea3 1321 struct inode *inode = mapping->host;
642261ac 1322 struct page *zero_page;
653b2ea3 1323 void *ret = NULL;
642261ac
RZ
1324 spinlock_t *ptl;
1325 pmd_t pmd_entry;
642261ac 1326
f4200391 1327 zero_page = mm_get_huge_zero_page(vmf->vma->vm_mm);
642261ac
RZ
1328
1329 if (unlikely(!zero_page))
653b2ea3 1330 goto fallback;
642261ac
RZ
1331
1332 ret = dax_insert_mapping_entry(mapping, vmf, *entryp, 0,
1333 RADIX_DAX_PMD | RADIX_DAX_HZP);
1334 if (IS_ERR(ret))
653b2ea3 1335 goto fallback;
642261ac
RZ
1336 *entryp = ret;
1337
f4200391
DJ
1338 ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1339 if (!pmd_none(*(vmf->pmd))) {
642261ac 1340 spin_unlock(ptl);
653b2ea3 1341 goto fallback;
642261ac
RZ
1342 }
1343
f4200391 1344 pmd_entry = mk_pmd(zero_page, vmf->vma->vm_page_prot);
642261ac 1345 pmd_entry = pmd_mkhuge(pmd_entry);
f4200391 1346 set_pmd_at(vmf->vma->vm_mm, pmd_addr, vmf->pmd, pmd_entry);
642261ac 1347 spin_unlock(ptl);
f4200391 1348 trace_dax_pmd_load_hole(inode, vmf, zero_page, ret);
642261ac 1349 return VM_FAULT_NOPAGE;
653b2ea3
RZ
1350
1351fallback:
f4200391 1352 trace_dax_pmd_load_hole_fallback(inode, vmf, zero_page, ret);
653b2ea3 1353 return VM_FAULT_FALLBACK;
642261ac
RZ
1354}
1355
a2d58167
DJ
1356static int dax_iomap_pmd_fault(struct vm_fault *vmf,
1357 const struct iomap_ops *ops)
642261ac 1358{
f4200391 1359 struct vm_area_struct *vma = vmf->vma;
642261ac 1360 struct address_space *mapping = vma->vm_file->f_mapping;
d8a849e1
DJ
1361 unsigned long pmd_addr = vmf->address & PMD_MASK;
1362 bool write = vmf->flags & FAULT_FLAG_WRITE;
9484ab1b 1363 unsigned int iomap_flags = (write ? IOMAP_WRITE : 0) | IOMAP_FAULT;
642261ac
RZ
1364 struct inode *inode = mapping->host;
1365 int result = VM_FAULT_FALLBACK;
1366 struct iomap iomap = { 0 };
1367 pgoff_t max_pgoff, pgoff;
642261ac
RZ
1368 void *entry;
1369 loff_t pos;
1370 int error;
1371
282a8e03
RZ
1372 /*
1373 * Check whether offset isn't beyond end of file now. Caller is
1374 * supposed to hold locks serializing us with truncate / punch hole so
1375 * this is a reliable test.
1376 */
1377 pgoff = linear_page_index(vma, pmd_addr);
1378 max_pgoff = (i_size_read(inode) - 1) >> PAGE_SHIFT;
1379
f4200391 1380 trace_dax_pmd_fault(inode, vmf, max_pgoff, 0);
282a8e03 1381
642261ac
RZ
1382 /* Fall back to PTEs if we're going to COW */
1383 if (write && !(vma->vm_flags & VM_SHARED))
1384 goto fallback;
1385
1386 /* If the PMD would extend outside the VMA */
1387 if (pmd_addr < vma->vm_start)
1388 goto fallback;
1389 if ((pmd_addr + PMD_SIZE) > vma->vm_end)
1390 goto fallback;
1391
282a8e03
RZ
1392 if (pgoff > max_pgoff) {
1393 result = VM_FAULT_SIGBUS;
1394 goto out;
1395 }
642261ac
RZ
1396
1397 /* If the PMD would extend beyond the file size */
1398 if ((pgoff | PG_PMD_COLOUR) > max_pgoff)
1399 goto fallback;
1400
876f2946
RZ
1401 /*
1402 * grab_mapping_entry() will make sure we get a 2M empty entry, a DAX
1403 * PMD or a HZP entry. If it can't (because a 4k page is already in
1404 * the tree, for instance), it will return -EEXIST and we just fall
1405 * back to 4k entries.
1406 */
1407 entry = grab_mapping_entry(mapping, pgoff, RADIX_DAX_PMD);
1408 if (IS_ERR(entry))
1409 goto fallback;
1410
e2093926
RZ
1411 /*
1412 * It is possible, particularly with mixed reads & writes to private
1413 * mappings, that we have raced with a PTE fault that overlaps with
1414 * the PMD we need to set up. If so just return and the fault will be
1415 * retried.
1416 */
1417 if (!pmd_none(*vmf->pmd) && !pmd_trans_huge(*vmf->pmd) &&
1418 !pmd_devmap(*vmf->pmd)) {
1419 result = 0;
1420 goto unlock_entry;
1421 }
1422
642261ac
RZ
1423 /*
1424 * Note that we don't use iomap_apply here. We aren't doing I/O, only
1425 * setting up a mapping, so really we're using iomap_begin() as a way
1426 * to look up our filesystem block.
1427 */
1428 pos = (loff_t)pgoff << PAGE_SHIFT;
1429 error = ops->iomap_begin(inode, pos, PMD_SIZE, iomap_flags, &iomap);
1430 if (error)
876f2946 1431 goto unlock_entry;
9f141d6e 1432
642261ac
RZ
1433 if (iomap.offset + iomap.length < pos + PMD_SIZE)
1434 goto finish_iomap;
1435
642261ac
RZ
1436 switch (iomap.type) {
1437 case IOMAP_MAPPED:
f4200391 1438 result = dax_pmd_insert_mapping(vmf, &iomap, pos, &entry);
642261ac
RZ
1439 break;
1440 case IOMAP_UNWRITTEN:
1441 case IOMAP_HOLE:
1442 if (WARN_ON_ONCE(write))
876f2946 1443 break;
f4200391 1444 result = dax_pmd_load_hole(vmf, &iomap, &entry);
642261ac
RZ
1445 break;
1446 default:
1447 WARN_ON_ONCE(1);
1448 break;
1449 }
1450
1451 finish_iomap:
1452 if (ops->iomap_end) {
9f141d6e
JK
1453 int copied = PMD_SIZE;
1454
1455 if (result == VM_FAULT_FALLBACK)
1456 copied = 0;
1457 /*
1458 * The fault is done by now and there's no way back (other
1459 * thread may be already happily using PMD we have installed).
1460 * Just ignore error from ->iomap_end since we cannot do much
1461 * with it.
1462 */
1463 ops->iomap_end(inode, pos, PMD_SIZE, copied, iomap_flags,
1464 &iomap);
642261ac 1465 }
876f2946
RZ
1466 unlock_entry:
1467 put_locked_mapping_entry(mapping, pgoff, entry);
642261ac
RZ
1468 fallback:
1469 if (result == VM_FAULT_FALLBACK) {
d8a849e1 1470 split_huge_pmd(vma, vmf->pmd, vmf->address);
642261ac
RZ
1471 count_vm_event(THP_FAULT_FALLBACK);
1472 }
282a8e03 1473out:
f4200391 1474 trace_dax_pmd_fault_done(inode, vmf, max_pgoff, result);
642261ac
RZ
1475 return result;
1476}
a2d58167 1477#else
01cddfe9
AB
1478static int dax_iomap_pmd_fault(struct vm_fault *vmf,
1479 const struct iomap_ops *ops)
a2d58167
DJ
1480{
1481 return VM_FAULT_FALLBACK;
1482}
642261ac 1483#endif /* CONFIG_FS_DAX_PMD */
a2d58167
DJ
1484
1485/**
1486 * dax_iomap_fault - handle a page fault on a DAX file
1487 * @vmf: The description of the fault
1488 * @ops: iomap ops passed from the file system
1489 *
1490 * When a page fault occurs, filesystems may call this helper in
1491 * their fault handler for DAX files. dax_iomap_fault() assumes the caller
1492 * has done all the necessary locking for page fault to proceed
1493 * successfully.
1494 */
c791ace1
DJ
1495int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
1496 const struct iomap_ops *ops)
a2d58167 1497{
c791ace1
DJ
1498 switch (pe_size) {
1499 case PE_SIZE_PTE:
a2d58167 1500 return dax_iomap_pte_fault(vmf, ops);
c791ace1 1501 case PE_SIZE_PMD:
a2d58167
DJ
1502 return dax_iomap_pmd_fault(vmf, ops);
1503 default:
1504 return VM_FAULT_FALLBACK;
1505 }
1506}
1507EXPORT_SYMBOL_GPL(dax_iomap_fault);