blob: 9bec30e062118c14499fb4af8d8236d3eba6fb92 [file] [log] [blame]
Matthew Wilcoxd475c632015-02-16 15:58:56 -08001/*
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>
Ross Zwislerd77e92e2015-09-09 10:29:40 -060020#include <linux/dax.h>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080021#include <linux/fs.h>
22#include <linux/genhd.h>
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -080023#include <linux/highmem.h>
24#include <linux/memcontrol.h>
25#include <linux/mm.h>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080026#include <linux/mutex.h>
Ross Zwisler9973c982016-01-22 15:10:47 -080027#include <linux/pagevec.h>
Ross Zwisler2765cfb2015-08-18 13:55:40 -060028#include <linux/pmem.h>
Matthew Wilcox289c6ae2015-02-16 15:58:59 -080029#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010030#include <linux/sched/signal.h>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080031#include <linux/uio.h>
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -080032#include <linux/vmstat.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080033#include <linux/pfn_t.h>
Dan Williams0e749e52016-01-15 16:55:53 -080034#include <linux/sizes.h>
Jan Kara4b4bb462016-12-14 15:07:53 -080035#include <linux/mmu_notifier.h>
Christoph Hellwiga254e562016-09-19 11:24:49 +100036#include <linux/iomap.h>
37#include "internal.h"
Matthew Wilcoxd475c632015-02-16 15:58:56 -080038
Ross Zwisler282a8e02017-02-22 15:39:50 -080039#define CREATE_TRACE_POINTS
40#include <trace/events/fs_dax.h>
41
Jan Karaac401cc2016-05-12 18:29:18 +020042/* 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
Ross Zwislerce95ab02016-11-08 11:31:44 +110046static wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
Jan Karaac401cc2016-05-12 18:29:18 +020047
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
Ross Zwisler642261a2016-11-08 11:34:45 +110058static int dax_is_pmd_entry(void *entry)
59{
60 return (unsigned long)entry & RADIX_DAX_PMD;
61}
62
63static int dax_is_pte_entry(void *entry)
64{
65 return !((unsigned long)entry & RADIX_DAX_PMD);
66}
67
68static int dax_is_zero_entry(void *entry)
69{
70 return (unsigned long)entry & RADIX_DAX_HZP;
71}
72
73static int dax_is_empty_entry(void *entry)
74{
75 return (unsigned long)entry & RADIX_DAX_EMPTY;
76}
77
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -080078/*
Jan Karaac401cc2016-05-12 18:29:18 +020079 * DAX radix tree locking
80 */
81struct exceptional_entry_key {
82 struct address_space *mapping;
Ross Zwisler63e95b52016-11-08 11:32:20 +110083 pgoff_t entry_start;
Jan Karaac401cc2016-05-12 18:29:18 +020084};
85
86struct wait_exceptional_entry_queue {
87 wait_queue_t wait;
88 struct exceptional_entry_key key;
89};
90
Ross Zwisler63e95b52016-11-08 11:32:20 +110091static 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 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100101 if (dax_is_pmd_entry(entry))
Ross Zwisler63e95b52016-11-08 11:32:20 +1100102 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
Jan Karaac401cc2016-05-12 18:29:18 +0200111static 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 ||
Ross Zwisler63e95b52016-11-08 11:32:20 +1100119 key->entry_start != ewait->key.entry_start)
Jan Karaac401cc2016-05-12 18:29:18 +0200120 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;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800145 radix_tree_replace_slot(&mapping->page_tree, slot, (void *)entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200146 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;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800159 radix_tree_replace_slot(&mapping->page_tree, slot, (void *)entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200160 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{
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100175 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200176 struct wait_exceptional_entry_queue ewait;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100177 wait_queue_head_t *wq;
Jan Karaac401cc2016-05-12 18:29:18 +0200178
179 init_wait(&ewait.wait);
180 ewait.wait.func = wake_exceptional_entry_func;
Jan Karaac401cc2016-05-12 18:29:18 +0200181
182 for (;;) {
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100183 entry = __radix_tree_lookup(&mapping->page_tree, index, NULL,
Jan Karaac401cc2016-05-12 18:29:18 +0200184 &slot);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100185 if (!entry || !radix_tree_exceptional_entry(entry) ||
Jan Karaac401cc2016-05-12 18:29:18 +0200186 !slot_locked(mapping, slot)) {
187 if (slotp)
188 *slotp = slot;
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100189 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200190 }
Ross Zwisler63e95b52016-11-08 11:32:20 +1100191
192 wq = dax_entry_waitqueue(mapping, index, entry, &ewait.key);
Jan Karaac401cc2016-05-12 18:29:18 +0200193 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
Jan Karab1aa8122016-12-14 15:07:24 -0800202static 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
Jan Karaac401cc2016-05-12 18:29:18 +0200219static 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 {
Jan Karabc2466e2016-05-12 18:29:19 +0200226 dax_unlock_mapping_entry(mapping, index);
Jan Karaac401cc2016-05-12 18:29:18 +0200227 }
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 */
Ross Zwisler422476c2016-11-08 11:33:44 +1100241 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
242}
243
Jan Karaac401cc2016-05-12 18:29:18 +0200244/*
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 *
Ross Zwisler642261a2016-11-08 11:34:45 +1100250 * 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 *
Jan Karaac401cc2016-05-12 18:29:18 +0200266 * 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 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100270static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index,
271 unsigned long size_flag)
Jan Karaac401cc2016-05-12 18:29:18 +0200272{
Ross Zwisler642261a2016-11-08 11:34:45 +1100273 bool pmd_downgrade = false; /* splitting 2MiB entry into 4k entries? */
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100274 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200275
276restart:
277 spin_lock_irq(&mapping->tree_lock);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100278 entry = get_unlocked_mapping_entry(mapping, index, &slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100279
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
Jan Karaac401cc2016-05-12 18:29:18 +0200299 /* No entry for given index? Make sure radix tree is big enough. */
Ross Zwisler642261a2016-11-08 11:34:45 +1100300 if (!entry || pmd_downgrade) {
Jan Karaac401cc2016-05-12 18:29:18 +0200301 int err;
302
Ross Zwisler642261a2016-11-08 11:34:45 +1100303 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
Jan Karaac401cc2016-05-12 18:29:18 +0200311 spin_unlock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100312 /*
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
Jan Kara0cb80b42016-12-12 21:34:12 -0500321 err = radix_tree_preload(
322 mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
323 if (err) {
324 if (pmd_downgrade)
325 put_locked_mapping_entry(mapping, index, entry);
326 return ERR_PTR(err);
327 }
Jan Karaac401cc2016-05-12 18:29:18 +0200328 spin_lock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100329
Ross Zwislere11f8b72017-04-07 16:04:57 -0700330 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
Ross Zwisler642261a2016-11-08 11:34:45 +1100346 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);
Jan Karaac401cc2016-05-12 18:29:18 +0200357 radix_tree_preload_end();
358 if (err) {
359 spin_unlock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100360 /*
Ross Zwislere11f8b72017-04-07 16:04:57 -0700361 * 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.
Ross Zwisler642261a2016-11-08 11:34:45 +1100367 */
Jan Karaac401cc2016-05-12 18:29:18 +0200368 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);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100373 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200374 }
375 /* Normal page in radix tree? */
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100376 if (!radix_tree_exceptional_entry(entry)) {
377 struct page *page = entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200378
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 }
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100390 entry = lock_slot(mapping, slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100391 out_unlock:
Jan Karaac401cc2016-05-12 18:29:18 +0200392 spin_unlock_irq(&mapping->tree_lock);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100393 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200394}
395
Ross Zwisler63e95b52016-11-08 11:32:20 +1100396/*
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
Ross Zwisler642261a2016-11-08 11:34:45 +1100399 * 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.
Ross Zwisler63e95b52016-11-08 11:32:20 +1100402 */
Jan Karaac401cc2016-05-12 18:29:18 +0200403void dax_wake_mapping_entry_waiter(struct address_space *mapping,
Ross Zwisler63e95b52016-11-08 11:32:20 +1100404 pgoff_t index, void *entry, bool wake_all)
Jan Karaac401cc2016-05-12 18:29:18 +0200405{
Ross Zwisler63e95b52016-11-08 11:32:20 +1100406 struct exceptional_entry_key key;
407 wait_queue_head_t *wq;
408
409 wq = dax_entry_waitqueue(mapping, index, entry, &key);
Jan Karaac401cc2016-05-12 18:29:18 +0200410
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 */
Ross Zwisler63e95b52016-11-08 11:32:20 +1100417 if (waitqueue_active(wq))
Jan Karaac401cc2016-05-12 18:29:18 +0200418 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key);
Jan Karaac401cc2016-05-12 18:29:18 +0200419}
420
Jan Karac6dcf522016-08-10 17:22:44 +0200421static 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}
Jan Karaac401cc2016-05-12 18:29:18 +0200444/*
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{
Jan Karac6dcf522016-08-10 17:22:44 +0200450 int ret = __dax_invalidate_mapping_entry(mapping, index, true);
Jan Karaac401cc2016-05-12 18:29:18 +0200451
Jan Karaac401cc2016-05-12 18:29:18 +0200452 /*
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 */
Jan Karac6dcf522016-08-10 17:22:44 +0200459 WARN_ON_ONCE(!ret);
460 return ret;
461}
Jan Karaac401cc2016-05-12 18:29:18 +0200462
Jan Karac6dcf522016-08-10 17:22:44 +0200463/*
464 * Invalidate exceptional DAX entry if easily possible. This handles DAX
465 * entries for invalidate_inode_pages() so we evict the entry only if we can
466 * do so without blocking.
467 */
468int dax_invalidate_mapping_entry(struct address_space *mapping, pgoff_t index)
469{
470 int ret = 0;
471 void *entry, **slot;
472 struct radix_tree_root *page_tree = &mapping->page_tree;
473
474 spin_lock_irq(&mapping->tree_lock);
475 entry = __radix_tree_lookup(page_tree, index, NULL, &slot);
476 if (!entry || !radix_tree_exceptional_entry(entry) ||
477 slot_locked(mapping, slot))
478 goto out;
479 if (radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_DIRTY) ||
480 radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE))
481 goto out;
482 radix_tree_delete(page_tree, index);
483 mapping->nrexceptional--;
484 ret = 1;
485out:
486 spin_unlock_irq(&mapping->tree_lock);
487 if (ret)
488 dax_wake_mapping_entry_waiter(mapping, index, entry, true);
489 return ret;
490}
491
492/*
493 * Invalidate exceptional DAX entry if it is clean.
494 */
495int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
496 pgoff_t index)
497{
498 return __dax_invalidate_mapping_entry(mapping, index, false);
Jan Karaac401cc2016-05-12 18:29:18 +0200499}
500
501/*
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800502 * The user has performed a load from a hole in the file. Allocating
503 * a new page in the file would cause excessive storage usage for
504 * workloads with sparse files. We allocate a page cache page instead.
505 * We'll kick it out of the page cache if it's ever written to,
506 * otherwise it will simply fall out of the page cache under memory
507 * pressure without ever having been dirtied.
508 */
Jan Karaf449b932016-10-19 14:48:38 +0200509static int dax_load_hole(struct address_space *mapping, void **entry,
Jan Karaac401cc2016-05-12 18:29:18 +0200510 struct vm_fault *vmf)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800511{
Ross Zwisler678c9fd2017-05-08 16:00:07 -0700512 struct inode *inode = mapping->host;
Jan Karaac401cc2016-05-12 18:29:18 +0200513 struct page *page;
Jan Karaf449b932016-10-19 14:48:38 +0200514 int ret;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800515
Jan Karaac401cc2016-05-12 18:29:18 +0200516 /* Hole page already exists? Return it... */
Jan Karaf449b932016-10-19 14:48:38 +0200517 if (!radix_tree_exceptional_entry(*entry)) {
518 page = *entry;
Ross Zwisler678c9fd2017-05-08 16:00:07 -0700519 goto finish_fault;
Jan Karaac401cc2016-05-12 18:29:18 +0200520 }
521
522 /* This will replace locked radix tree entry with a hole page */
523 page = find_or_create_page(mapping, vmf->pgoff,
524 vmf->gfp_mask | __GFP_ZERO);
Ross Zwisler678c9fd2017-05-08 16:00:07 -0700525 if (!page) {
526 ret = VM_FAULT_OOM;
527 goto out;
528 }
529
530finish_fault:
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800531 vmf->page = page;
Jan Karaf449b932016-10-19 14:48:38 +0200532 ret = finish_fault(vmf);
533 vmf->page = NULL;
534 *entry = page;
535 if (!ret) {
536 /* Grab reference for PTE that is now referencing the page */
537 get_page(page);
Ross Zwisler678c9fd2017-05-08 16:00:07 -0700538 ret = VM_FAULT_NOPAGE;
Jan Karaf449b932016-10-19 14:48:38 +0200539 }
Ross Zwisler678c9fd2017-05-08 16:00:07 -0700540out:
541 trace_dax_load_hole(inode, vmf, ret);
Jan Karaf449b932016-10-19 14:48:38 +0200542 return ret;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800543}
544
Dan Williamscccbce62017-01-27 13:31:42 -0800545static int copy_user_dax(struct block_device *bdev, struct dax_device *dax_dev,
546 sector_t sector, size_t size, struct page *to,
547 unsigned long vaddr)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800548{
Dan Williamscccbce62017-01-27 13:31:42 -0800549 void *vto, *kaddr;
550 pgoff_t pgoff;
551 pfn_t pfn;
552 long rc;
553 int id;
Ross Zwislere2e05392015-08-18 13:55:41 -0600554
Dan Williamscccbce62017-01-27 13:31:42 -0800555 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
556 if (rc)
557 return rc;
558
559 id = dax_read_lock();
560 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
561 if (rc < 0) {
562 dax_read_unlock(id);
563 return rc;
564 }
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800565 vto = kmap_atomic(to);
Dan Williamscccbce62017-01-27 13:31:42 -0800566 copy_user_page(vto, (void __force *)kaddr, vaddr, to);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800567 kunmap_atomic(vto);
Dan Williamscccbce62017-01-27 13:31:42 -0800568 dax_read_unlock(id);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800569 return 0;
570}
571
Ross Zwisler642261a2016-11-08 11:34:45 +1100572/*
573 * By this point grab_mapping_entry() has ensured that we have a locked entry
574 * of the appropriate size so we don't have to worry about downgrading PMDs to
575 * PTEs. If we happen to be trying to insert a PTE and there is a PMD
576 * already in the tree, we will skip the insertion and just dirty the PMD as
577 * appropriate.
578 */
Jan Karaac401cc2016-05-12 18:29:18 +0200579static void *dax_insert_mapping_entry(struct address_space *mapping,
580 struct vm_fault *vmf,
Ross Zwisler642261a2016-11-08 11:34:45 +1100581 void *entry, sector_t sector,
582 unsigned long flags)
Ross Zwisler9973c982016-01-22 15:10:47 -0800583{
584 struct radix_tree_root *page_tree = &mapping->page_tree;
Jan Karaac401cc2016-05-12 18:29:18 +0200585 int error = 0;
586 bool hole_fill = false;
587 void *new_entry;
588 pgoff_t index = vmf->pgoff;
Ross Zwisler9973c982016-01-22 15:10:47 -0800589
Jan Karaac401cc2016-05-12 18:29:18 +0200590 if (vmf->flags & FAULT_FLAG_WRITE)
Dmitry Monakhovd2b2a282016-02-05 15:36:55 -0800591 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Ross Zwisler9973c982016-01-22 15:10:47 -0800592
Jan Karaac401cc2016-05-12 18:29:18 +0200593 /* Replacing hole page with block mapping? */
594 if (!radix_tree_exceptional_entry(entry)) {
595 hole_fill = true;
596 /*
597 * Unmap the page now before we remove it from page cache below.
598 * The page is locked so it cannot be faulted in again.
599 */
600 unmap_mapping_range(mapping, vmf->pgoff << PAGE_SHIFT,
601 PAGE_SIZE, 0);
602 error = radix_tree_preload(vmf->gfp_mask & ~__GFP_HIGHMEM);
603 if (error)
604 return ERR_PTR(error);
Ross Zwisler642261a2016-11-08 11:34:45 +1100605 } else if (dax_is_zero_entry(entry) && !(flags & RADIX_DAX_HZP)) {
606 /* replacing huge zero page with PMD block mapping */
607 unmap_mapping_range(mapping,
608 (vmf->pgoff << PAGE_SHIFT) & PMD_MASK, PMD_SIZE, 0);
Ross Zwisler9973c982016-01-22 15:10:47 -0800609 }
610
Jan Karaac401cc2016-05-12 18:29:18 +0200611 spin_lock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100612 new_entry = dax_radix_locked_entry(sector, flags);
613
Jan Karaac401cc2016-05-12 18:29:18 +0200614 if (hole_fill) {
615 __delete_from_page_cache(entry, NULL);
616 /* Drop pagecache reference */
617 put_page(entry);
Ross Zwisler642261a2016-11-08 11:34:45 +1100618 error = __radix_tree_insert(page_tree, index,
619 dax_radix_order(new_entry), new_entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200620 if (error) {
621 new_entry = ERR_PTR(error);
Ross Zwisler9973c982016-01-22 15:10:47 -0800622 goto unlock;
623 }
Jan Karaac401cc2016-05-12 18:29:18 +0200624 mapping->nrexceptional++;
Ross Zwisler642261a2016-11-08 11:34:45 +1100625 } else if (dax_is_zero_entry(entry) || dax_is_empty_entry(entry)) {
626 /*
627 * Only swap our new entry into the radix tree if the current
628 * entry is a zero page or an empty entry. If a normal PTE or
629 * PMD entry is already in the tree, we leave it alone. This
630 * means that if we are trying to insert a PTE and the
631 * existing entry is a PMD, we will just leave the PMD in the
632 * tree and dirty it if necessary.
633 */
Johannes Weinerf7942432016-12-12 16:43:41 -0800634 struct radix_tree_node *node;
Jan Karaac401cc2016-05-12 18:29:18 +0200635 void **slot;
636 void *ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800637
Johannes Weinerf7942432016-12-12 16:43:41 -0800638 ret = __radix_tree_lookup(page_tree, index, &node, &slot);
Jan Karaac401cc2016-05-12 18:29:18 +0200639 WARN_ON_ONCE(ret != entry);
Johannes Weiner4d693d02016-12-12 16:43:49 -0800640 __radix_tree_replace(page_tree, node, slot,
641 new_entry, NULL, NULL);
Ross Zwisler9973c982016-01-22 15:10:47 -0800642 }
Jan Karaac401cc2016-05-12 18:29:18 +0200643 if (vmf->flags & FAULT_FLAG_WRITE)
Ross Zwisler9973c982016-01-22 15:10:47 -0800644 radix_tree_tag_set(page_tree, index, PAGECACHE_TAG_DIRTY);
645 unlock:
646 spin_unlock_irq(&mapping->tree_lock);
Jan Karaac401cc2016-05-12 18:29:18 +0200647 if (hole_fill) {
648 radix_tree_preload_end();
649 /*
650 * We don't need hole page anymore, it has been replaced with
651 * locked radix tree entry now.
652 */
653 if (mapping->a_ops->freepage)
654 mapping->a_ops->freepage(entry);
655 unlock_page(entry);
656 put_page(entry);
657 }
658 return new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800659}
660
Jan Kara4b4bb462016-12-14 15:07:53 -0800661static inline unsigned long
662pgoff_address(pgoff_t pgoff, struct vm_area_struct *vma)
663{
664 unsigned long address;
665
666 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
667 VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
668 return address;
669}
670
671/* Walk all mappings of a given index of a file and writeprotect them */
672static void dax_mapping_entry_mkclean(struct address_space *mapping,
673 pgoff_t index, unsigned long pfn)
674{
675 struct vm_area_struct *vma;
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800676 pte_t pte, *ptep = NULL;
677 pmd_t *pmdp = NULL;
Jan Kara4b4bb462016-12-14 15:07:53 -0800678 spinlock_t *ptl;
679 bool changed;
680
681 i_mmap_lock_read(mapping);
682 vma_interval_tree_foreach(vma, &mapping->i_mmap, index, index) {
683 unsigned long address;
684
685 cond_resched();
686
687 if (!(vma->vm_flags & VM_SHARED))
688 continue;
689
690 address = pgoff_address(index, vma);
691 changed = false;
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800692 if (follow_pte_pmd(vma->vm_mm, address, &ptep, &pmdp, &ptl))
Jan Kara4b4bb462016-12-14 15:07:53 -0800693 continue;
Jan Kara4b4bb462016-12-14 15:07:53 -0800694
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800695 if (pmdp) {
696#ifdef CONFIG_FS_DAX_PMD
697 pmd_t pmd;
698
699 if (pfn != pmd_pfn(*pmdp))
700 goto unlock_pmd;
701 if (!pmd_dirty(*pmdp) && !pmd_write(*pmdp))
702 goto unlock_pmd;
703
704 flush_cache_page(vma, address, pfn);
705 pmd = pmdp_huge_clear_flush(vma, address, pmdp);
706 pmd = pmd_wrprotect(pmd);
707 pmd = pmd_mkclean(pmd);
708 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
709 changed = true;
710unlock_pmd:
711 spin_unlock(ptl);
712#endif
713 } else {
714 if (pfn != pte_pfn(*ptep))
715 goto unlock_pte;
716 if (!pte_dirty(*ptep) && !pte_write(*ptep))
717 goto unlock_pte;
718
719 flush_cache_page(vma, address, pfn);
720 pte = ptep_clear_flush(vma, address, ptep);
721 pte = pte_wrprotect(pte);
722 pte = pte_mkclean(pte);
723 set_pte_at(vma->vm_mm, address, ptep, pte);
724 changed = true;
725unlock_pte:
726 pte_unmap_unlock(ptep, ptl);
727 }
Jan Kara4b4bb462016-12-14 15:07:53 -0800728
729 if (changed)
730 mmu_notifier_invalidate_page(vma->vm_mm, address);
731 }
732 i_mmap_unlock_read(mapping);
733}
734
Ross Zwisler9973c982016-01-22 15:10:47 -0800735static int dax_writeback_one(struct block_device *bdev,
Dan Williamscccbce62017-01-27 13:31:42 -0800736 struct dax_device *dax_dev, struct address_space *mapping,
737 pgoff_t index, void *entry)
Ross Zwisler9973c982016-01-22 15:10:47 -0800738{
739 struct radix_tree_root *page_tree = &mapping->page_tree;
Dan Williamscccbce62017-01-27 13:31:42 -0800740 void *entry2, **slot, *kaddr;
741 long ret = 0, id;
742 sector_t sector;
743 pgoff_t pgoff;
744 size_t size;
745 pfn_t pfn;
Ross Zwisler9973c982016-01-22 15:10:47 -0800746
Ross Zwisler9973c982016-01-22 15:10:47 -0800747 /*
Jan Karaa6abc2c2016-12-14 15:07:47 -0800748 * A page got tagged dirty in DAX mapping? Something is seriously
749 * wrong.
Ross Zwisler9973c982016-01-22 15:10:47 -0800750 */
Jan Karaa6abc2c2016-12-14 15:07:47 -0800751 if (WARN_ON(!radix_tree_exceptional_entry(entry)))
752 return -EIO;
Ross Zwisler9973c982016-01-22 15:10:47 -0800753
Jan Karaa6abc2c2016-12-14 15:07:47 -0800754 spin_lock_irq(&mapping->tree_lock);
755 entry2 = get_unlocked_mapping_entry(mapping, index, &slot);
756 /* Entry got punched out / reallocated? */
757 if (!entry2 || !radix_tree_exceptional_entry(entry2))
758 goto put_unlocked;
759 /*
760 * Entry got reallocated elsewhere? No need to writeback. We have to
761 * compare sectors as we must not bail out due to difference in lockbit
762 * or entry type.
763 */
764 if (dax_radix_sector(entry2) != dax_radix_sector(entry))
765 goto put_unlocked;
Ross Zwisler642261a2016-11-08 11:34:45 +1100766 if (WARN_ON_ONCE(dax_is_empty_entry(entry) ||
767 dax_is_zero_entry(entry))) {
Ross Zwisler9973c982016-01-22 15:10:47 -0800768 ret = -EIO;
Jan Karaa6abc2c2016-12-14 15:07:47 -0800769 goto put_unlocked;
Ross Zwisler9973c982016-01-22 15:10:47 -0800770 }
771
Jan Karaa6abc2c2016-12-14 15:07:47 -0800772 /* Another fsync thread may have already written back this entry */
773 if (!radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE))
774 goto put_unlocked;
775 /* Lock the entry to serialize with page faults */
776 entry = lock_slot(mapping, slot);
777 /*
778 * We can clear the tag now but we have to be careful so that concurrent
779 * dax_writeback_one() calls for the same index cannot finish before we
780 * actually flush the caches. This is achieved as the calls will look
781 * at the entry only under tree_lock and once they do that they will
782 * see the entry locked and wait for it to unlock.
783 */
784 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_TOWRITE);
785 spin_unlock_irq(&mapping->tree_lock);
786
Ross Zwisler642261a2016-11-08 11:34:45 +1100787 /*
788 * Even if dax_writeback_mapping_range() was given a wbc->range_start
789 * in the middle of a PMD, the 'index' we are given will be aligned to
790 * the start index of the PMD, as will the sector we pull from
791 * 'entry'. This allows us to flush for PMD_SIZE and not have to
792 * worry about partial PMD writebacks.
793 */
Dan Williamscccbce62017-01-27 13:31:42 -0800794 sector = dax_radix_sector(entry);
795 size = PAGE_SIZE << dax_radix_order(entry);
796
797 id = dax_read_lock();
798 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
799 if (ret)
800 goto dax_unlock;
Ross Zwisler9973c982016-01-22 15:10:47 -0800801
802 /*
Dan Williamscccbce62017-01-27 13:31:42 -0800803 * dax_direct_access() may sleep, so cannot hold tree_lock over
804 * its invocation.
Ross Zwisler9973c982016-01-22 15:10:47 -0800805 */
Dan Williamscccbce62017-01-27 13:31:42 -0800806 ret = dax_direct_access(dax_dev, pgoff, size / PAGE_SIZE, &kaddr, &pfn);
807 if (ret < 0)
808 goto dax_unlock;
Ross Zwisler9973c982016-01-22 15:10:47 -0800809
Dan Williamscccbce62017-01-27 13:31:42 -0800810 if (WARN_ON_ONCE(ret < size / PAGE_SIZE)) {
Ross Zwisler9973c982016-01-22 15:10:47 -0800811 ret = -EIO;
Dan Williamscccbce62017-01-27 13:31:42 -0800812 goto dax_unlock;
Ross Zwisler9973c982016-01-22 15:10:47 -0800813 }
814
Dan Williamscccbce62017-01-27 13:31:42 -0800815 dax_mapping_entry_mkclean(mapping, index, pfn_t_to_pfn(pfn));
816 wb_cache_pmem(kaddr, size);
Jan Kara4b4bb462016-12-14 15:07:53 -0800817 /*
818 * After we have flushed the cache, we can clear the dirty tag. There
819 * cannot be new dirty data in the pfn after the flush has completed as
820 * the pfn mappings are writeprotected and fault waits for mapping
821 * entry lock.
822 */
823 spin_lock_irq(&mapping->tree_lock);
824 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_DIRTY);
825 spin_unlock_irq(&mapping->tree_lock);
Ross Zwislerf9bc3a02017-05-08 16:00:13 -0700826 trace_dax_writeback_one(mapping->host, index, size >> PAGE_SHIFT);
Dan Williamscccbce62017-01-27 13:31:42 -0800827 dax_unlock:
828 dax_read_unlock(id);
Jan Karaa6abc2c2016-12-14 15:07:47 -0800829 put_locked_mapping_entry(mapping, index, entry);
Ross Zwisler9973c982016-01-22 15:10:47 -0800830 return ret;
831
Jan Karaa6abc2c2016-12-14 15:07:47 -0800832 put_unlocked:
833 put_unlocked_mapping_entry(mapping, index, entry2);
Ross Zwisler9973c982016-01-22 15:10:47 -0800834 spin_unlock_irq(&mapping->tree_lock);
835 return ret;
836}
837
838/*
839 * Flush the mapping to the persistent domain within the byte range of [start,
840 * end]. This is required by data integrity operations to ensure file data is
841 * on persistent storage prior to completion of the operation.
842 */
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800843int dax_writeback_mapping_range(struct address_space *mapping,
844 struct block_device *bdev, struct writeback_control *wbc)
Ross Zwisler9973c982016-01-22 15:10:47 -0800845{
846 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +1100847 pgoff_t start_index, end_index;
Ross Zwisler9973c982016-01-22 15:10:47 -0800848 pgoff_t indices[PAGEVEC_SIZE];
Dan Williamscccbce62017-01-27 13:31:42 -0800849 struct dax_device *dax_dev;
Ross Zwisler9973c982016-01-22 15:10:47 -0800850 struct pagevec pvec;
851 bool done = false;
852 int i, ret = 0;
Ross Zwisler9973c982016-01-22 15:10:47 -0800853
854 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
855 return -EIO;
856
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800857 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
858 return 0;
859
Dan Williamscccbce62017-01-27 13:31:42 -0800860 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
861 if (!dax_dev)
862 return -EIO;
863
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300864 start_index = wbc->range_start >> PAGE_SHIFT;
865 end_index = wbc->range_end >> PAGE_SHIFT;
Ross Zwisler9973c982016-01-22 15:10:47 -0800866
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700867 trace_dax_writeback_range(inode, start_index, end_index);
868
Ross Zwisler9973c982016-01-22 15:10:47 -0800869 tag_pages_for_writeback(mapping, start_index, end_index);
870
871 pagevec_init(&pvec, 0);
872 while (!done) {
873 pvec.nr = find_get_entries_tag(mapping, start_index,
874 PAGECACHE_TAG_TOWRITE, PAGEVEC_SIZE,
875 pvec.pages, indices);
876
877 if (pvec.nr == 0)
878 break;
879
880 for (i = 0; i < pvec.nr; i++) {
881 if (indices[i] > end_index) {
882 done = true;
883 break;
884 }
885
Dan Williamscccbce62017-01-27 13:31:42 -0800886 ret = dax_writeback_one(bdev, dax_dev, mapping,
887 indices[i], pvec.pages[i]);
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700888 if (ret < 0)
889 goto out;
Ross Zwisler9973c982016-01-22 15:10:47 -0800890 }
891 }
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700892out:
Dan Williamscccbce62017-01-27 13:31:42 -0800893 put_dax(dax_dev);
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700894 trace_dax_writeback_range_done(inode, start_index, end_index);
895 return (ret < 0 ? ret : 0);
Ross Zwisler9973c982016-01-22 15:10:47 -0800896}
897EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
898
Jan Karaac401cc2016-05-12 18:29:18 +0200899static int dax_insert_mapping(struct address_space *mapping,
Dan Williamscccbce62017-01-27 13:31:42 -0800900 struct block_device *bdev, struct dax_device *dax_dev,
901 sector_t sector, size_t size, void **entryp,
902 struct vm_area_struct *vma, struct vm_fault *vmf)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800903{
Jan Kara1a29d852016-12-14 15:07:01 -0800904 unsigned long vaddr = vmf->address;
Jan Karaac401cc2016-05-12 18:29:18 +0200905 void *entry = *entryp;
Dan Williamscccbce62017-01-27 13:31:42 -0800906 void *ret, *kaddr;
907 pgoff_t pgoff;
908 int id, rc;
909 pfn_t pfn;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800910
Dan Williamscccbce62017-01-27 13:31:42 -0800911 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
912 if (rc)
913 return rc;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800914
Dan Williamscccbce62017-01-27 13:31:42 -0800915 id = dax_read_lock();
916 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
917 if (rc < 0) {
918 dax_read_unlock(id);
919 return rc;
920 }
921 dax_read_unlock(id);
922
923 ret = dax_insert_mapping_entry(mapping, vmf, entry, sector, 0);
Jan Kara4d9a2c82016-05-12 18:29:20 +0200924 if (IS_ERR(ret))
925 return PTR_ERR(ret);
Jan Karaac401cc2016-05-12 18:29:18 +0200926 *entryp = ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800927
Dan Williamscccbce62017-01-27 13:31:42 -0800928 return vm_insert_mixed(vma, vaddr, pfn);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800929}
930
Dave Chinnerce5c5d52015-06-04 09:18:18 +1000931/**
Boaz Harrosh0e3b2102015-04-15 16:15:14 -0700932 * dax_pfn_mkwrite - handle first write to DAX page
Boaz Harrosh0e3b2102015-04-15 16:15:14 -0700933 * @vmf: The description of the fault
Boaz Harrosh0e3b2102015-04-15 16:15:14 -0700934 */
Dave Jiang11bac802017-02-24 14:56:41 -0800935int dax_pfn_mkwrite(struct vm_fault *vmf)
Boaz Harrosh0e3b2102015-04-15 16:15:14 -0700936{
Dave Jiang11bac802017-02-24 14:56:41 -0800937 struct file *file = vmf->vma->vm_file;
Jan Karaac401cc2016-05-12 18:29:18 +0200938 struct address_space *mapping = file->f_mapping;
Ross Zwislerc3ff68d2017-05-08 16:00:03 -0700939 struct inode *inode = mapping->host;
Jan Kara2f89dc12016-12-14 15:07:50 -0800940 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200941 pgoff_t index = vmf->pgoff;
Boaz Harrosh0e3b2102015-04-15 16:15:14 -0700942
Jan Karaac401cc2016-05-12 18:29:18 +0200943 spin_lock_irq(&mapping->tree_lock);
Jan Kara2f89dc12016-12-14 15:07:50 -0800944 entry = get_unlocked_mapping_entry(mapping, index, &slot);
945 if (!entry || !radix_tree_exceptional_entry(entry)) {
946 if (entry)
947 put_unlocked_mapping_entry(mapping, index, entry);
948 spin_unlock_irq(&mapping->tree_lock);
Ross Zwislerc3ff68d2017-05-08 16:00:03 -0700949 trace_dax_pfn_mkwrite_no_entry(inode, vmf, VM_FAULT_NOPAGE);
Jan Kara2f89dc12016-12-14 15:07:50 -0800950 return VM_FAULT_NOPAGE;
951 }
Jan Karaac401cc2016-05-12 18:29:18 +0200952 radix_tree_tag_set(&mapping->page_tree, index, PAGECACHE_TAG_DIRTY);
Jan Kara2f89dc12016-12-14 15:07:50 -0800953 entry = lock_slot(mapping, slot);
Jan Karaac401cc2016-05-12 18:29:18 +0200954 spin_unlock_irq(&mapping->tree_lock);
Jan Kara2f89dc12016-12-14 15:07:50 -0800955 /*
956 * If we race with somebody updating the PTE and finish_mkwrite_fault()
957 * fails, we don't care. We need to return VM_FAULT_NOPAGE and retry
958 * the fault in either case.
959 */
960 finish_mkwrite_fault(vmf);
961 put_locked_mapping_entry(mapping, index, entry);
Ross Zwislerc3ff68d2017-05-08 16:00:03 -0700962 trace_dax_pfn_mkwrite(inode, vmf, VM_FAULT_NOPAGE);
Boaz Harrosh0e3b2102015-04-15 16:15:14 -0700963 return VM_FAULT_NOPAGE;
964}
965EXPORT_SYMBOL_GPL(dax_pfn_mkwrite);
966
Vishal Verma4b0228f2016-04-21 15:13:46 -0400967static bool dax_range_is_aligned(struct block_device *bdev,
968 unsigned int offset, unsigned int length)
969{
970 unsigned short sector_size = bdev_logical_block_size(bdev);
971
972 if (!IS_ALIGNED(offset, sector_size))
973 return false;
974 if (!IS_ALIGNED(length, sector_size))
975 return false;
976
977 return true;
978}
979
Dan Williamscccbce62017-01-27 13:31:42 -0800980int __dax_zero_page_range(struct block_device *bdev,
981 struct dax_device *dax_dev, sector_t sector,
982 unsigned int offset, unsigned int size)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200983{
Dan Williamscccbce62017-01-27 13:31:42 -0800984 if (dax_range_is_aligned(bdev, offset, size)) {
985 sector_t start_sector = sector + (offset >> 9);
Vishal Verma4b0228f2016-04-21 15:13:46 -0400986
987 return blkdev_issue_zeroout(bdev, start_sector,
Linus Torvalds53ef7d02017-05-05 18:49:20 -0700988 size >> 9, GFP_NOFS, 0);
Vishal Verma4b0228f2016-04-21 15:13:46 -0400989 } else {
Dan Williamscccbce62017-01-27 13:31:42 -0800990 pgoff_t pgoff;
991 long rc, id;
992 void *kaddr;
993 pfn_t pfn;
994
995 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
996 if (rc)
997 return rc;
998
999 id = dax_read_lock();
1000 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr,
1001 &pfn);
1002 if (rc < 0) {
1003 dax_read_unlock(id);
1004 return rc;
1005 }
1006 clear_pmem(kaddr + offset, size);
1007 dax_read_unlock(id);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001008 }
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001009 return 0;
1010}
1011EXPORT_SYMBOL_GPL(__dax_zero_page_range);
1012
Ross Zwisler333ccc92016-11-08 11:33:09 +11001013static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
1014{
1015 return iomap->blkno + (((pos & PAGE_MASK) - iomap->offset) >> 9);
1016}
1017
Christoph Hellwiga254e562016-09-19 11:24:49 +10001018static loff_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001019dax_iomap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
Christoph Hellwiga254e562016-09-19 11:24:49 +10001020 struct iomap *iomap)
1021{
Dan Williamscccbce62017-01-27 13:31:42 -08001022 struct block_device *bdev = iomap->bdev;
1023 struct dax_device *dax_dev = iomap->dax_dev;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001024 struct iov_iter *iter = data;
1025 loff_t end = pos + length, done = 0;
1026 ssize_t ret = 0;
Dan Williamscccbce62017-01-27 13:31:42 -08001027 int id;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001028
1029 if (iov_iter_rw(iter) == READ) {
1030 end = min(end, i_size_read(inode));
1031 if (pos >= end)
1032 return 0;
1033
1034 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
1035 return iov_iter_zero(min(length, end - pos), iter);
1036 }
1037
1038 if (WARN_ON_ONCE(iomap->type != IOMAP_MAPPED))
1039 return -EIO;
1040
Jan Karae3fce682016-08-10 17:10:28 +02001041 /*
1042 * Write can allocate block for an area which has a hole page mapped
1043 * into page tables. We have to tear down these mappings so that data
1044 * written by write(2) is visible in mmap.
1045 */
1046 if ((iomap->flags & IOMAP_F_NEW) && inode->i_mapping->nrpages) {
1047 invalidate_inode_pages2_range(inode->i_mapping,
1048 pos >> PAGE_SHIFT,
1049 (end - 1) >> PAGE_SHIFT);
1050 }
1051
Dan Williamscccbce62017-01-27 13:31:42 -08001052 id = dax_read_lock();
Christoph Hellwiga254e562016-09-19 11:24:49 +10001053 while (pos < end) {
1054 unsigned offset = pos & (PAGE_SIZE - 1);
Dan Williamscccbce62017-01-27 13:31:42 -08001055 const size_t size = ALIGN(length + offset, PAGE_SIZE);
1056 const sector_t sector = dax_iomap_sector(iomap, pos);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001057 ssize_t map_len;
Dan Williamscccbce62017-01-27 13:31:42 -08001058 pgoff_t pgoff;
1059 void *kaddr;
1060 pfn_t pfn;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001061
Michal Hockod1908f52017-02-03 13:13:26 -08001062 if (fatal_signal_pending(current)) {
1063 ret = -EINTR;
1064 break;
1065 }
1066
Dan Williamscccbce62017-01-27 13:31:42 -08001067 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
1068 if (ret)
1069 break;
1070
1071 map_len = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size),
1072 &kaddr, &pfn);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001073 if (map_len < 0) {
1074 ret = map_len;
1075 break;
1076 }
1077
Dan Williamscccbce62017-01-27 13:31:42 -08001078 map_len = PFN_PHYS(map_len);
1079 kaddr += offset;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001080 map_len -= offset;
1081 if (map_len > end - pos)
1082 map_len = end - pos;
1083
1084 if (iov_iter_rw(iter) == WRITE)
Dan Williamscccbce62017-01-27 13:31:42 -08001085 map_len = copy_from_iter_pmem(kaddr, map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001086 else
Dan Williamscccbce62017-01-27 13:31:42 -08001087 map_len = copy_to_iter(kaddr, map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001088 if (map_len <= 0) {
1089 ret = map_len ? map_len : -EFAULT;
1090 break;
1091 }
1092
1093 pos += map_len;
1094 length -= map_len;
1095 done += map_len;
1096 }
Dan Williamscccbce62017-01-27 13:31:42 -08001097 dax_read_unlock(id);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001098
1099 return done ? done : ret;
1100}
1101
1102/**
Ross Zwisler11c59c92016-11-08 11:32:46 +11001103 * dax_iomap_rw - Perform I/O to a DAX file
Christoph Hellwiga254e562016-09-19 11:24:49 +10001104 * @iocb: The control block for this I/O
1105 * @iter: The addresses to do I/O from or to
1106 * @ops: iomap ops passed from the file system
1107 *
1108 * This function performs read and write operations to directly mapped
1109 * persistent memory. The callers needs to take care of read/write exclusion
1110 * and evicting any page cache pages in the region under I/O.
1111 */
1112ssize_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001113dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001114 const struct iomap_ops *ops)
Christoph Hellwiga254e562016-09-19 11:24:49 +10001115{
1116 struct address_space *mapping = iocb->ki_filp->f_mapping;
1117 struct inode *inode = mapping->host;
1118 loff_t pos = iocb->ki_pos, ret = 0, done = 0;
1119 unsigned flags = 0;
1120
Christoph Hellwig168316d2017-02-08 14:43:13 -05001121 if (iov_iter_rw(iter) == WRITE) {
1122 lockdep_assert_held_exclusive(&inode->i_rwsem);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001123 flags |= IOMAP_WRITE;
Christoph Hellwig168316d2017-02-08 14:43:13 -05001124 } else {
1125 lockdep_assert_held(&inode->i_rwsem);
1126 }
Christoph Hellwiga254e562016-09-19 11:24:49 +10001127
Christoph Hellwiga254e562016-09-19 11:24:49 +10001128 while (iov_iter_count(iter)) {
1129 ret = iomap_apply(inode, pos, iov_iter_count(iter), flags, ops,
Ross Zwisler11c59c92016-11-08 11:32:46 +11001130 iter, dax_iomap_actor);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001131 if (ret <= 0)
1132 break;
1133 pos += ret;
1134 done += ret;
1135 }
1136
1137 iocb->ki_pos += done;
1138 return done ? done : ret;
1139}
Ross Zwisler11c59c92016-11-08 11:32:46 +11001140EXPORT_SYMBOL_GPL(dax_iomap_rw);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001141
Jan Kara9f141d62016-10-19 14:34:31 +02001142static int dax_fault_return(int error)
1143{
1144 if (error == 0)
1145 return VM_FAULT_NOPAGE;
1146 if (error == -ENOMEM)
1147 return VM_FAULT_OOM;
1148 return VM_FAULT_SIGBUS;
1149}
1150
Dave Jianga2d58162017-02-24 14:56:59 -08001151static int dax_iomap_pte_fault(struct vm_fault *vmf,
1152 const struct iomap_ops *ops)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001153{
Dave Jiang11bac802017-02-24 14:56:41 -08001154 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001155 struct inode *inode = mapping->host;
Jan Kara1a29d852016-12-14 15:07:01 -08001156 unsigned long vaddr = vmf->address;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001157 loff_t pos = (loff_t)vmf->pgoff << PAGE_SHIFT;
1158 sector_t sector;
1159 struct iomap iomap = { 0 };
Jan Kara9484ab12016-11-10 10:26:50 +11001160 unsigned flags = IOMAP_FAULT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001161 int error, major = 0;
Jan Karab1aa8122016-12-14 15:07:24 -08001162 int vmf_ret = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001163 void *entry;
1164
Ross Zwislera9c42b32017-05-08 16:00:00 -07001165 trace_dax_pte_fault(inode, vmf, vmf_ret);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001166 /*
1167 * Check whether offset isn't beyond end of file now. Caller is supposed
1168 * to hold locks serializing us with truncate / punch hole so this is
1169 * a reliable test.
1170 */
Ross Zwislera9c42b32017-05-08 16:00:00 -07001171 if (pos >= i_size_read(inode)) {
1172 vmf_ret = VM_FAULT_SIGBUS;
1173 goto out;
1174 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001175
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001176 if ((vmf->flags & FAULT_FLAG_WRITE) && !vmf->cow_page)
1177 flags |= IOMAP_WRITE;
1178
1179 /*
1180 * Note that we don't bother to use iomap_apply here: DAX required
1181 * the file system block size to be equal the page size, which means
1182 * that we never have to deal with more than a single extent here.
1183 */
1184 error = ops->iomap_begin(inode, pos, PAGE_SIZE, flags, &iomap);
Ross Zwislera9c42b32017-05-08 16:00:00 -07001185 if (error) {
1186 vmf_ret = dax_fault_return(error);
1187 goto out;
1188 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001189 if (WARN_ON_ONCE(iomap.offset + iomap.length < pos + PAGE_SIZE)) {
Jan Kara9f141d62016-10-19 14:34:31 +02001190 vmf_ret = dax_fault_return(-EIO); /* fs corruption? */
1191 goto finish_iomap;
1192 }
1193
1194 entry = grab_mapping_entry(mapping, vmf->pgoff, 0);
1195 if (IS_ERR(entry)) {
1196 vmf_ret = dax_fault_return(PTR_ERR(entry));
Ross Zwisler15502902016-11-08 11:33:26 +11001197 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001198 }
1199
Ross Zwisler333ccc92016-11-08 11:33:09 +11001200 sector = dax_iomap_sector(&iomap, pos);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001201
1202 if (vmf->cow_page) {
1203 switch (iomap.type) {
1204 case IOMAP_HOLE:
1205 case IOMAP_UNWRITTEN:
1206 clear_user_highpage(vmf->cow_page, vaddr);
1207 break;
1208 case IOMAP_MAPPED:
Dan Williamscccbce62017-01-27 13:31:42 -08001209 error = copy_user_dax(iomap.bdev, iomap.dax_dev,
1210 sector, PAGE_SIZE, vmf->cow_page, vaddr);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001211 break;
1212 default:
1213 WARN_ON_ONCE(1);
1214 error = -EIO;
1215 break;
1216 }
1217
1218 if (error)
Jan Kara9f141d62016-10-19 14:34:31 +02001219 goto error_unlock_entry;
Jan Karab1aa8122016-12-14 15:07:24 -08001220
1221 __SetPageUptodate(vmf->cow_page);
1222 vmf_ret = finish_fault(vmf);
1223 if (!vmf_ret)
1224 vmf_ret = VM_FAULT_DONE_COW;
Jan Kara9f141d62016-10-19 14:34:31 +02001225 goto unlock_entry;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001226 }
1227
1228 switch (iomap.type) {
1229 case IOMAP_MAPPED:
1230 if (iomap.flags & IOMAP_F_NEW) {
1231 count_vm_event(PGMAJFAULT);
Dave Jiang11bac802017-02-24 14:56:41 -08001232 mem_cgroup_count_vm_event(vmf->vma->vm_mm, PGMAJFAULT);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001233 major = VM_FAULT_MAJOR;
1234 }
Dan Williamscccbce62017-01-27 13:31:42 -08001235 error = dax_insert_mapping(mapping, iomap.bdev, iomap.dax_dev,
1236 sector, PAGE_SIZE, &entry, vmf->vma, vmf);
Jan Kara9f141d62016-10-19 14:34:31 +02001237 /* -EBUSY is fine, somebody else faulted on the same PTE */
1238 if (error == -EBUSY)
1239 error = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001240 break;
1241 case IOMAP_UNWRITTEN:
1242 case IOMAP_HOLE:
Ross Zwisler15502902016-11-08 11:33:26 +11001243 if (!(vmf->flags & FAULT_FLAG_WRITE)) {
Jan Karaf449b932016-10-19 14:48:38 +02001244 vmf_ret = dax_load_hole(mapping, &entry, vmf);
Jan Kara9f141d62016-10-19 14:34:31 +02001245 goto unlock_entry;
Ross Zwisler15502902016-11-08 11:33:26 +11001246 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001247 /*FALLTHRU*/
1248 default:
1249 WARN_ON_ONCE(1);
1250 error = -EIO;
1251 break;
1252 }
1253
Jan Kara9f141d62016-10-19 14:34:31 +02001254 error_unlock_entry:
1255 vmf_ret = dax_fault_return(error) | major;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001256 unlock_entry:
Jan Karaf449b932016-10-19 14:48:38 +02001257 put_locked_mapping_entry(mapping, vmf->pgoff, entry);
Jan Kara9f141d62016-10-19 14:34:31 +02001258 finish_iomap:
1259 if (ops->iomap_end) {
1260 int copied = PAGE_SIZE;
1261
1262 if (vmf_ret & VM_FAULT_ERROR)
1263 copied = 0;
1264 /*
1265 * The fault is done by now and there's no way back (other
1266 * thread may be already happily using PTE we have installed).
1267 * Just ignore error from ->iomap_end since we cannot do much
1268 * with it.
1269 */
1270 ops->iomap_end(inode, pos, PAGE_SIZE, copied, flags, &iomap);
Ross Zwisler15502902016-11-08 11:33:26 +11001271 }
Ross Zwislera9c42b32017-05-08 16:00:00 -07001272out:
1273 trace_dax_pte_fault_done(inode, vmf, vmf_ret);
Jan Kara9f141d62016-10-19 14:34:31 +02001274 return vmf_ret;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001275}
Ross Zwisler642261a2016-11-08 11:34:45 +11001276
1277#ifdef CONFIG_FS_DAX_PMD
1278/*
1279 * The 'colour' (ie low bits) within a PMD of a page offset. This comes up
1280 * more often than one might expect in the below functions.
1281 */
1282#define PG_PMD_COLOUR ((PMD_SIZE >> PAGE_SHIFT) - 1)
1283
Dave Jiangf4200392017-02-22 15:40:06 -08001284static int dax_pmd_insert_mapping(struct vm_fault *vmf, struct iomap *iomap,
1285 loff_t pos, void **entryp)
Ross Zwisler642261a2016-11-08 11:34:45 +11001286{
Dave Jiangf4200392017-02-22 15:40:06 -08001287 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
Dan Williamscccbce62017-01-27 13:31:42 -08001288 const sector_t sector = dax_iomap_sector(iomap, pos);
1289 struct dax_device *dax_dev = iomap->dax_dev;
Ross Zwisler642261a2016-11-08 11:34:45 +11001290 struct block_device *bdev = iomap->bdev;
Ross Zwisler27a7ffa2017-02-22 15:40:00 -08001291 struct inode *inode = mapping->host;
Dan Williamscccbce62017-01-27 13:31:42 -08001292 const size_t size = PMD_SIZE;
1293 void *ret = NULL, *kaddr;
1294 long length = 0;
1295 pgoff_t pgoff;
1296 pfn_t pfn;
1297 int id;
Ross Zwisler642261a2016-11-08 11:34:45 +11001298
Dan Williamscccbce62017-01-27 13:31:42 -08001299 if (bdev_dax_pgoff(bdev, sector, size, &pgoff) != 0)
Ross Zwisler27a7ffa2017-02-22 15:40:00 -08001300 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001301
Dan Williamscccbce62017-01-27 13:31:42 -08001302 id = dax_read_lock();
1303 length = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
1304 if (length < 0)
1305 goto unlock_fallback;
1306 length = PFN_PHYS(length);
Ross Zwisler642261a2016-11-08 11:34:45 +11001307
Dan Williamscccbce62017-01-27 13:31:42 -08001308 if (length < size)
1309 goto unlock_fallback;
1310 if (pfn_t_to_pfn(pfn) & PG_PMD_COLOUR)
1311 goto unlock_fallback;
1312 if (!pfn_t_devmap(pfn))
1313 goto unlock_fallback;
1314 dax_read_unlock(id);
1315
1316 ret = dax_insert_mapping_entry(mapping, vmf, *entryp, sector,
Ross Zwisler642261a2016-11-08 11:34:45 +11001317 RADIX_DAX_PMD);
1318 if (IS_ERR(ret))
Ross Zwisler27a7ffa2017-02-22 15:40:00 -08001319 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001320 *entryp = ret;
1321
Dan Williamscccbce62017-01-27 13:31:42 -08001322 trace_dax_pmd_insert_mapping(inode, vmf, length, pfn, ret);
Dave Jiangf4200392017-02-22 15:40:06 -08001323 return vmf_insert_pfn_pmd(vmf->vma, vmf->address, vmf->pmd,
Dan Williamscccbce62017-01-27 13:31:42 -08001324 pfn, vmf->flags & FAULT_FLAG_WRITE);
Ross Zwisler642261a2016-11-08 11:34:45 +11001325
Dan Williamscccbce62017-01-27 13:31:42 -08001326unlock_fallback:
1327 dax_read_unlock(id);
Ross Zwisler27a7ffa2017-02-22 15:40:00 -08001328fallback:
Dan Williamscccbce62017-01-27 13:31:42 -08001329 trace_dax_pmd_insert_mapping_fallback(inode, vmf, length, pfn, ret);
Ross Zwisler642261a2016-11-08 11:34:45 +11001330 return VM_FAULT_FALLBACK;
1331}
1332
Dave Jiangf4200392017-02-22 15:40:06 -08001333static int dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
1334 void **entryp)
Ross Zwisler642261a2016-11-08 11:34:45 +11001335{
Dave Jiangf4200392017-02-22 15:40:06 -08001336 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1337 unsigned long pmd_addr = vmf->address & PMD_MASK;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001338 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001339 struct page *zero_page;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001340 void *ret = NULL;
Ross Zwisler642261a2016-11-08 11:34:45 +11001341 spinlock_t *ptl;
1342 pmd_t pmd_entry;
Ross Zwisler642261a2016-11-08 11:34:45 +11001343
Dave Jiangf4200392017-02-22 15:40:06 -08001344 zero_page = mm_get_huge_zero_page(vmf->vma->vm_mm);
Ross Zwisler642261a2016-11-08 11:34:45 +11001345
1346 if (unlikely(!zero_page))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001347 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001348
1349 ret = dax_insert_mapping_entry(mapping, vmf, *entryp, 0,
1350 RADIX_DAX_PMD | RADIX_DAX_HZP);
1351 if (IS_ERR(ret))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001352 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001353 *entryp = ret;
1354
Dave Jiangf4200392017-02-22 15:40:06 -08001355 ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1356 if (!pmd_none(*(vmf->pmd))) {
Ross Zwisler642261a2016-11-08 11:34:45 +11001357 spin_unlock(ptl);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001358 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001359 }
1360
Dave Jiangf4200392017-02-22 15:40:06 -08001361 pmd_entry = mk_pmd(zero_page, vmf->vma->vm_page_prot);
Ross Zwisler642261a2016-11-08 11:34:45 +11001362 pmd_entry = pmd_mkhuge(pmd_entry);
Dave Jiangf4200392017-02-22 15:40:06 -08001363 set_pmd_at(vmf->vma->vm_mm, pmd_addr, vmf->pmd, pmd_entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001364 spin_unlock(ptl);
Dave Jiangf4200392017-02-22 15:40:06 -08001365 trace_dax_pmd_load_hole(inode, vmf, zero_page, ret);
Ross Zwisler642261a2016-11-08 11:34:45 +11001366 return VM_FAULT_NOPAGE;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001367
1368fallback:
Dave Jiangf4200392017-02-22 15:40:06 -08001369 trace_dax_pmd_load_hole_fallback(inode, vmf, zero_page, ret);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001370 return VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001371}
1372
Dave Jianga2d58162017-02-24 14:56:59 -08001373static int dax_iomap_pmd_fault(struct vm_fault *vmf,
1374 const struct iomap_ops *ops)
Ross Zwisler642261a2016-11-08 11:34:45 +11001375{
Dave Jiangf4200392017-02-22 15:40:06 -08001376 struct vm_area_struct *vma = vmf->vma;
Ross Zwisler642261a2016-11-08 11:34:45 +11001377 struct address_space *mapping = vma->vm_file->f_mapping;
Dave Jiangd8a849e2017-02-22 15:40:03 -08001378 unsigned long pmd_addr = vmf->address & PMD_MASK;
1379 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Kara9484ab12016-11-10 10:26:50 +11001380 unsigned int iomap_flags = (write ? IOMAP_WRITE : 0) | IOMAP_FAULT;
Ross Zwisler642261a2016-11-08 11:34:45 +11001381 struct inode *inode = mapping->host;
1382 int result = VM_FAULT_FALLBACK;
1383 struct iomap iomap = { 0 };
1384 pgoff_t max_pgoff, pgoff;
Ross Zwisler642261a2016-11-08 11:34:45 +11001385 void *entry;
1386 loff_t pos;
1387 int error;
1388
Ross Zwisler282a8e02017-02-22 15:39:50 -08001389 /*
1390 * Check whether offset isn't beyond end of file now. Caller is
1391 * supposed to hold locks serializing us with truncate / punch hole so
1392 * this is a reliable test.
1393 */
1394 pgoff = linear_page_index(vma, pmd_addr);
1395 max_pgoff = (i_size_read(inode) - 1) >> PAGE_SHIFT;
1396
Dave Jiangf4200392017-02-22 15:40:06 -08001397 trace_dax_pmd_fault(inode, vmf, max_pgoff, 0);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001398
Ross Zwisler642261a2016-11-08 11:34:45 +11001399 /* Fall back to PTEs if we're going to COW */
1400 if (write && !(vma->vm_flags & VM_SHARED))
1401 goto fallback;
1402
1403 /* If the PMD would extend outside the VMA */
1404 if (pmd_addr < vma->vm_start)
1405 goto fallback;
1406 if ((pmd_addr + PMD_SIZE) > vma->vm_end)
1407 goto fallback;
1408
Ross Zwisler282a8e02017-02-22 15:39:50 -08001409 if (pgoff > max_pgoff) {
1410 result = VM_FAULT_SIGBUS;
1411 goto out;
1412 }
Ross Zwisler642261a2016-11-08 11:34:45 +11001413
1414 /* If the PMD would extend beyond the file size */
1415 if ((pgoff | PG_PMD_COLOUR) > max_pgoff)
1416 goto fallback;
1417
1418 /*
Ross Zwisler642261a2016-11-08 11:34:45 +11001419 * Note that we don't use iomap_apply here. We aren't doing I/O, only
1420 * setting up a mapping, so really we're using iomap_begin() as a way
1421 * to look up our filesystem block.
1422 */
1423 pos = (loff_t)pgoff << PAGE_SHIFT;
1424 error = ops->iomap_begin(inode, pos, PMD_SIZE, iomap_flags, &iomap);
1425 if (error)
Jan Kara9f141d62016-10-19 14:34:31 +02001426 goto fallback;
1427
Ross Zwisler642261a2016-11-08 11:34:45 +11001428 if (iomap.offset + iomap.length < pos + PMD_SIZE)
1429 goto finish_iomap;
1430
Jan Kara9f141d62016-10-19 14:34:31 +02001431 /*
1432 * grab_mapping_entry() will make sure we get a 2M empty entry, a DAX
1433 * PMD or a HZP entry. If it can't (because a 4k page is already in
1434 * the tree, for instance), it will return -EEXIST and we just fall
1435 * back to 4k entries.
1436 */
1437 entry = grab_mapping_entry(mapping, pgoff, RADIX_DAX_PMD);
1438 if (IS_ERR(entry))
1439 goto finish_iomap;
1440
Ross Zwisler642261a2016-11-08 11:34:45 +11001441 switch (iomap.type) {
1442 case IOMAP_MAPPED:
Dave Jiangf4200392017-02-22 15:40:06 -08001443 result = dax_pmd_insert_mapping(vmf, &iomap, pos, &entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001444 break;
1445 case IOMAP_UNWRITTEN:
1446 case IOMAP_HOLE:
1447 if (WARN_ON_ONCE(write))
Jan Kara9f141d62016-10-19 14:34:31 +02001448 goto unlock_entry;
Dave Jiangf4200392017-02-22 15:40:06 -08001449 result = dax_pmd_load_hole(vmf, &iomap, &entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001450 break;
1451 default:
1452 WARN_ON_ONCE(1);
1453 break;
1454 }
1455
Ross Zwisler642261a2016-11-08 11:34:45 +11001456 unlock_entry:
1457 put_locked_mapping_entry(mapping, pgoff, entry);
Jan Kara9f141d62016-10-19 14:34:31 +02001458 finish_iomap:
1459 if (ops->iomap_end) {
1460 int copied = PMD_SIZE;
1461
1462 if (result == VM_FAULT_FALLBACK)
1463 copied = 0;
1464 /*
1465 * The fault is done by now and there's no way back (other
1466 * thread may be already happily using PMD we have installed).
1467 * Just ignore error from ->iomap_end since we cannot do much
1468 * with it.
1469 */
1470 ops->iomap_end(inode, pos, PMD_SIZE, copied, iomap_flags,
1471 &iomap);
1472 }
Ross Zwisler642261a2016-11-08 11:34:45 +11001473 fallback:
1474 if (result == VM_FAULT_FALLBACK) {
Dave Jiangd8a849e2017-02-22 15:40:03 -08001475 split_huge_pmd(vma, vmf->pmd, vmf->address);
Ross Zwisler642261a2016-11-08 11:34:45 +11001476 count_vm_event(THP_FAULT_FALLBACK);
1477 }
Ross Zwisler282a8e02017-02-22 15:39:50 -08001478out:
Dave Jiangf4200392017-02-22 15:40:06 -08001479 trace_dax_pmd_fault_done(inode, vmf, max_pgoff, result);
Ross Zwisler642261a2016-11-08 11:34:45 +11001480 return result;
1481}
Dave Jianga2d58162017-02-24 14:56:59 -08001482#else
Arnd Bergmann01cddfe2017-02-27 14:26:44 -08001483static int dax_iomap_pmd_fault(struct vm_fault *vmf,
1484 const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001485{
1486 return VM_FAULT_FALLBACK;
1487}
Ross Zwisler642261a2016-11-08 11:34:45 +11001488#endif /* CONFIG_FS_DAX_PMD */
Dave Jianga2d58162017-02-24 14:56:59 -08001489
1490/**
1491 * dax_iomap_fault - handle a page fault on a DAX file
1492 * @vmf: The description of the fault
1493 * @ops: iomap ops passed from the file system
1494 *
1495 * When a page fault occurs, filesystems may call this helper in
1496 * their fault handler for DAX files. dax_iomap_fault() assumes the caller
1497 * has done all the necessary locking for page fault to proceed
1498 * successfully.
1499 */
Dave Jiangc791ace2017-02-24 14:57:08 -08001500int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
1501 const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001502{
Dave Jiangc791ace2017-02-24 14:57:08 -08001503 switch (pe_size) {
1504 case PE_SIZE_PTE:
Dave Jianga2d58162017-02-24 14:56:59 -08001505 return dax_iomap_pte_fault(vmf, ops);
Dave Jiangc791ace2017-02-24 14:57:08 -08001506 case PE_SIZE_PMD:
Dave Jianga2d58162017-02-24 14:56:59 -08001507 return dax_iomap_pmd_fault(vmf, ops);
1508 default:
1509 return VM_FAULT_FALLBACK;
1510 }
1511}
1512EXPORT_SYMBOL_GPL(dax_iomap_fault);