blob: b646a46e4d126a89a0aa08c00a2e55c1d97ef356 [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>
Matthew Wilcox289c6ae2015-02-16 15:58:59 -080028#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010029#include <linux/sched/signal.h>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080030#include <linux/uio.h>
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -080031#include <linux/vmstat.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080032#include <linux/pfn_t.h>
Dan Williams0e749e52016-01-15 16:55:53 -080033#include <linux/sizes.h>
Jan Kara4b4bb462016-12-14 15:07:53 -080034#include <linux/mmu_notifier.h>
Christoph Hellwiga254e562016-09-19 11:24:49 +100035#include <linux/iomap.h>
36#include "internal.h"
Matthew Wilcoxd475c632015-02-16 15:58:56 -080037
Ross Zwisler282a8e02017-02-22 15:39:50 -080038#define CREATE_TRACE_POINTS
39#include <trace/events/fs_dax.h>
40
Jan Karaac401cc2016-05-12 18:29:18 +020041/* We choose 4096 entries - same as per-zone page wait tables */
42#define DAX_WAIT_TABLE_BITS 12
43#define DAX_WAIT_TABLE_ENTRIES (1 << DAX_WAIT_TABLE_BITS)
44
Ross Zwisler917f3452017-09-06 16:18:58 -070045/* The 'colour' (ie low bits) within a PMD of a page offset. */
46#define PG_PMD_COLOUR ((PMD_SIZE >> PAGE_SHIFT) - 1)
Matthew Wilcox977fbdc2018-01-31 16:17:36 -080047#define PG_PMD_NR (PMD_SIZE >> PAGE_SHIFT)
Ross Zwisler917f3452017-09-06 16:18:58 -070048
Ross Zwislerce95ab0f2016-11-08 11:31:44 +110049static wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
Jan Karaac401cc2016-05-12 18:29:18 +020050
51static int __init init_dax_wait_table(void)
52{
53 int i;
54
55 for (i = 0; i < DAX_WAIT_TABLE_ENTRIES; i++)
56 init_waitqueue_head(wait_table + i);
57 return 0;
58}
59fs_initcall(init_dax_wait_table);
60
Ross Zwisler527b19d2017-09-06 16:18:51 -070061/*
62 * We use lowest available bit in exceptional entry for locking, one bit for
63 * the entry size (PMD) and two more to tell us if the entry is a zero page or
64 * an empty entry that is just used for locking. In total four special bits.
65 *
66 * If the PMD bit isn't set the entry has size PAGE_SIZE, and if the ZERO_PAGE
67 * and EMPTY bits aren't set the entry is a normal DAX entry with a filesystem
68 * block allocation.
69 */
70#define RADIX_DAX_SHIFT (RADIX_TREE_EXCEPTIONAL_SHIFT + 4)
71#define RADIX_DAX_ENTRY_LOCK (1 << RADIX_TREE_EXCEPTIONAL_SHIFT)
72#define RADIX_DAX_PMD (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 1))
73#define RADIX_DAX_ZERO_PAGE (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 2))
74#define RADIX_DAX_EMPTY (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 3))
75
Dan Williams3fe07912017-10-14 17:13:45 -070076static unsigned long dax_radix_pfn(void *entry)
Ross Zwisler527b19d2017-09-06 16:18:51 -070077{
78 return (unsigned long)entry >> RADIX_DAX_SHIFT;
79}
80
Dan Williams3fe07912017-10-14 17:13:45 -070081static void *dax_radix_locked_entry(unsigned long pfn, unsigned long flags)
Ross Zwisler527b19d2017-09-06 16:18:51 -070082{
83 return (void *)(RADIX_TREE_EXCEPTIONAL_ENTRY | flags |
Dan Williams3fe07912017-10-14 17:13:45 -070084 (pfn << RADIX_DAX_SHIFT) | RADIX_DAX_ENTRY_LOCK);
Ross Zwisler527b19d2017-09-06 16:18:51 -070085}
86
87static unsigned int dax_radix_order(void *entry)
88{
89 if ((unsigned long)entry & RADIX_DAX_PMD)
90 return PMD_SHIFT - PAGE_SHIFT;
91 return 0;
92}
93
Ross Zwisler642261a2016-11-08 11:34:45 +110094static int dax_is_pmd_entry(void *entry)
95{
96 return (unsigned long)entry & RADIX_DAX_PMD;
97}
98
99static int dax_is_pte_entry(void *entry)
100{
101 return !((unsigned long)entry & RADIX_DAX_PMD);
102}
103
104static int dax_is_zero_entry(void *entry)
105{
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700106 return (unsigned long)entry & RADIX_DAX_ZERO_PAGE;
Ross Zwisler642261a2016-11-08 11:34:45 +1100107}
108
109static int dax_is_empty_entry(void *entry)
110{
111 return (unsigned long)entry & RADIX_DAX_EMPTY;
112}
113
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800114/*
Jan Karaac401cc2016-05-12 18:29:18 +0200115 * DAX radix tree locking
116 */
117struct exceptional_entry_key {
118 struct address_space *mapping;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100119 pgoff_t entry_start;
Jan Karaac401cc2016-05-12 18:29:18 +0200120};
121
122struct wait_exceptional_entry_queue {
Ingo Molnarac6424b2017-06-20 12:06:13 +0200123 wait_queue_entry_t wait;
Jan Karaac401cc2016-05-12 18:29:18 +0200124 struct exceptional_entry_key key;
125};
126
Ross Zwisler63e95b52016-11-08 11:32:20 +1100127static wait_queue_head_t *dax_entry_waitqueue(struct address_space *mapping,
128 pgoff_t index, void *entry, struct exceptional_entry_key *key)
129{
130 unsigned long hash;
131
132 /*
133 * If 'entry' is a PMD, align the 'index' that we use for the wait
134 * queue to the start of that PMD. This ensures that all offsets in
135 * the range covered by the PMD map to the same bit lock.
136 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100137 if (dax_is_pmd_entry(entry))
Ross Zwisler917f3452017-09-06 16:18:58 -0700138 index &= ~PG_PMD_COLOUR;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100139
140 key->mapping = mapping;
141 key->entry_start = index;
142
143 hash = hash_long((unsigned long)mapping ^ index, DAX_WAIT_TABLE_BITS);
144 return wait_table + hash;
145}
146
Ingo Molnarac6424b2017-06-20 12:06:13 +0200147static int wake_exceptional_entry_func(wait_queue_entry_t *wait, unsigned int mode,
Jan Karaac401cc2016-05-12 18:29:18 +0200148 int sync, void *keyp)
149{
150 struct exceptional_entry_key *key = keyp;
151 struct wait_exceptional_entry_queue *ewait =
152 container_of(wait, struct wait_exceptional_entry_queue, wait);
153
154 if (key->mapping != ewait->key.mapping ||
Ross Zwisler63e95b52016-11-08 11:32:20 +1100155 key->entry_start != ewait->key.entry_start)
Jan Karaac401cc2016-05-12 18:29:18 +0200156 return 0;
157 return autoremove_wake_function(wait, mode, sync, NULL);
158}
159
160/*
Ross Zwislere30331f2017-09-06 16:18:39 -0700161 * We do not necessarily hold the mapping->tree_lock when we call this
162 * function so it is possible that 'entry' is no longer a valid item in the
163 * radix tree. This is okay because all we really need to do is to find the
164 * correct waitqueue where tasks might be waiting for that old 'entry' and
165 * wake them.
166 */
Ross Zwislerd01ad192017-09-06 16:18:47 -0700167static void dax_wake_mapping_entry_waiter(struct address_space *mapping,
Ross Zwislere30331f2017-09-06 16:18:39 -0700168 pgoff_t index, void *entry, bool wake_all)
169{
170 struct exceptional_entry_key key;
171 wait_queue_head_t *wq;
172
173 wq = dax_entry_waitqueue(mapping, index, entry, &key);
174
175 /*
176 * Checking for locked entry and prepare_to_wait_exclusive() happens
177 * under mapping->tree_lock, ditto for entry handling in our callers.
178 * So at this point all tasks that could have seen our entry locked
179 * must be in the waitqueue and the following check will see them.
180 */
181 if (waitqueue_active(wq))
182 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key);
183}
184
185/*
Jan Karaac401cc2016-05-12 18:29:18 +0200186 * Check whether the given slot is locked. The function must be called with
187 * mapping->tree_lock held
188 */
189static inline int slot_locked(struct address_space *mapping, void **slot)
190{
191 unsigned long entry = (unsigned long)
192 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
193 return entry & RADIX_DAX_ENTRY_LOCK;
194}
195
196/*
197 * Mark the given slot is locked. The function must be called with
198 * mapping->tree_lock held
199 */
200static inline void *lock_slot(struct address_space *mapping, void **slot)
201{
202 unsigned long entry = (unsigned long)
203 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
204
205 entry |= RADIX_DAX_ENTRY_LOCK;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800206 radix_tree_replace_slot(&mapping->page_tree, slot, (void *)entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200207 return (void *)entry;
208}
209
210/*
211 * Mark the given slot is unlocked. The function must be called with
212 * mapping->tree_lock held
213 */
214static inline void *unlock_slot(struct address_space *mapping, void **slot)
215{
216 unsigned long entry = (unsigned long)
217 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
218
219 entry &= ~(unsigned long)RADIX_DAX_ENTRY_LOCK;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800220 radix_tree_replace_slot(&mapping->page_tree, slot, (void *)entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200221 return (void *)entry;
222}
223
224/*
225 * Lookup entry in radix tree, wait for it to become unlocked if it is
226 * exceptional entry and return it. The caller must call
227 * put_unlocked_mapping_entry() when he decided not to lock the entry or
228 * put_locked_mapping_entry() when he locked the entry and now wants to
229 * unlock it.
230 *
231 * The function must be called with mapping->tree_lock held.
232 */
233static void *get_unlocked_mapping_entry(struct address_space *mapping,
234 pgoff_t index, void ***slotp)
235{
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100236 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200237 struct wait_exceptional_entry_queue ewait;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100238 wait_queue_head_t *wq;
Jan Karaac401cc2016-05-12 18:29:18 +0200239
240 init_wait(&ewait.wait);
241 ewait.wait.func = wake_exceptional_entry_func;
Jan Karaac401cc2016-05-12 18:29:18 +0200242
243 for (;;) {
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100244 entry = __radix_tree_lookup(&mapping->page_tree, index, NULL,
Jan Karaac401cc2016-05-12 18:29:18 +0200245 &slot);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700246 if (!entry ||
247 WARN_ON_ONCE(!radix_tree_exceptional_entry(entry)) ||
Jan Karaac401cc2016-05-12 18:29:18 +0200248 !slot_locked(mapping, slot)) {
249 if (slotp)
250 *slotp = slot;
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100251 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200252 }
Ross Zwisler63e95b52016-11-08 11:32:20 +1100253
254 wq = dax_entry_waitqueue(mapping, index, entry, &ewait.key);
Jan Karaac401cc2016-05-12 18:29:18 +0200255 prepare_to_wait_exclusive(wq, &ewait.wait,
256 TASK_UNINTERRUPTIBLE);
257 spin_unlock_irq(&mapping->tree_lock);
258 schedule();
259 finish_wait(wq, &ewait.wait);
260 spin_lock_irq(&mapping->tree_lock);
261 }
262}
263
Jan Karab1aa8122016-12-14 15:07:24 -0800264static void dax_unlock_mapping_entry(struct address_space *mapping,
265 pgoff_t index)
266{
267 void *entry, **slot;
268
269 spin_lock_irq(&mapping->tree_lock);
270 entry = __radix_tree_lookup(&mapping->page_tree, index, NULL, &slot);
271 if (WARN_ON_ONCE(!entry || !radix_tree_exceptional_entry(entry) ||
272 !slot_locked(mapping, slot))) {
273 spin_unlock_irq(&mapping->tree_lock);
274 return;
275 }
276 unlock_slot(mapping, slot);
277 spin_unlock_irq(&mapping->tree_lock);
278 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
279}
280
Jan Karaac401cc2016-05-12 18:29:18 +0200281static void put_locked_mapping_entry(struct address_space *mapping,
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700282 pgoff_t index)
Jan Karaac401cc2016-05-12 18:29:18 +0200283{
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700284 dax_unlock_mapping_entry(mapping, index);
Jan Karaac401cc2016-05-12 18:29:18 +0200285}
286
287/*
288 * Called when we are done with radix tree entry we looked up via
289 * get_unlocked_mapping_entry() and which we didn't lock in the end.
290 */
291static void put_unlocked_mapping_entry(struct address_space *mapping,
292 pgoff_t index, void *entry)
293{
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700294 if (!entry)
Jan Karaac401cc2016-05-12 18:29:18 +0200295 return;
296
297 /* We have to wake up next waiter for the radix tree entry lock */
Ross Zwisler422476c2016-11-08 11:33:44 +1100298 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
299}
300
Jan Karaac401cc2016-05-12 18:29:18 +0200301/*
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700302 * Find radix tree entry at given index. If it points to an exceptional entry,
303 * return it with the radix tree entry locked. If the radix tree doesn't
304 * contain given index, create an empty exceptional entry for the index and
305 * return with it locked.
Jan Karaac401cc2016-05-12 18:29:18 +0200306 *
Ross Zwisler642261a2016-11-08 11:34:45 +1100307 * When requesting an entry with size RADIX_DAX_PMD, grab_mapping_entry() will
308 * either return that locked entry or will return an error. This error will
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700309 * happen if there are any 4k entries within the 2MiB range that we are
310 * requesting.
Ross Zwisler642261a2016-11-08 11:34:45 +1100311 *
312 * We always favor 4k entries over 2MiB entries. There isn't a flow where we
313 * evict 4k entries in order to 'upgrade' them to a 2MiB entry. A 2MiB
314 * insertion will fail if it finds any 4k entries already in the tree, and a
315 * 4k insertion will cause an existing 2MiB entry to be unmapped and
316 * downgraded to 4k entries. This happens for both 2MiB huge zero pages as
317 * well as 2MiB empty entries.
318 *
319 * The exception to this downgrade path is for 2MiB DAX PMD entries that have
320 * real storage backing them. We will leave these real 2MiB DAX entries in
321 * the tree, and PTE writes will simply dirty the entire 2MiB DAX entry.
322 *
Jan Karaac401cc2016-05-12 18:29:18 +0200323 * Note: Unlike filemap_fault() we don't honor FAULT_FLAG_RETRY flags. For
324 * persistent memory the benefit is doubtful. We can add that later if we can
325 * show it helps.
326 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100327static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index,
328 unsigned long size_flag)
Jan Karaac401cc2016-05-12 18:29:18 +0200329{
Ross Zwisler642261a2016-11-08 11:34:45 +1100330 bool pmd_downgrade = false; /* splitting 2MiB entry into 4k entries? */
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100331 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200332
333restart:
334 spin_lock_irq(&mapping->tree_lock);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100335 entry = get_unlocked_mapping_entry(mapping, index, &slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100336
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700337 if (WARN_ON_ONCE(entry && !radix_tree_exceptional_entry(entry))) {
338 entry = ERR_PTR(-EIO);
339 goto out_unlock;
340 }
341
Ross Zwisler642261a2016-11-08 11:34:45 +1100342 if (entry) {
343 if (size_flag & RADIX_DAX_PMD) {
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700344 if (dax_is_pte_entry(entry)) {
Ross Zwisler642261a2016-11-08 11:34:45 +1100345 put_unlocked_mapping_entry(mapping, index,
346 entry);
347 entry = ERR_PTR(-EEXIST);
348 goto out_unlock;
349 }
350 } else { /* trying to grab a PTE entry */
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700351 if (dax_is_pmd_entry(entry) &&
Ross Zwisler642261a2016-11-08 11:34:45 +1100352 (dax_is_zero_entry(entry) ||
353 dax_is_empty_entry(entry))) {
354 pmd_downgrade = true;
355 }
356 }
357 }
358
Jan Karaac401cc2016-05-12 18:29:18 +0200359 /* No entry for given index? Make sure radix tree is big enough. */
Ross Zwisler642261a2016-11-08 11:34:45 +1100360 if (!entry || pmd_downgrade) {
Jan Karaac401cc2016-05-12 18:29:18 +0200361 int err;
362
Ross Zwisler642261a2016-11-08 11:34:45 +1100363 if (pmd_downgrade) {
364 /*
365 * Make sure 'entry' remains valid while we drop
366 * mapping->tree_lock.
367 */
368 entry = lock_slot(mapping, slot);
369 }
370
Jan Karaac401cc2016-05-12 18:29:18 +0200371 spin_unlock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100372 /*
373 * Besides huge zero pages the only other thing that gets
374 * downgraded are empty entries which don't need to be
375 * unmapped.
376 */
377 if (pmd_downgrade && dax_is_zero_entry(entry))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800378 unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
379 PG_PMD_NR, false);
Ross Zwisler642261a2016-11-08 11:34:45 +1100380
Jan Kara0cb80b42016-12-12 21:34:12 -0500381 err = radix_tree_preload(
382 mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
383 if (err) {
384 if (pmd_downgrade)
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700385 put_locked_mapping_entry(mapping, index);
Jan Kara0cb80b42016-12-12 21:34:12 -0500386 return ERR_PTR(err);
387 }
Jan Karaac401cc2016-05-12 18:29:18 +0200388 spin_lock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100389
Ross Zwislere11f8b72017-04-07 16:04:57 -0700390 if (!entry) {
391 /*
392 * We needed to drop the page_tree lock while calling
393 * radix_tree_preload() and we didn't have an entry to
394 * lock. See if another thread inserted an entry at
395 * our index during this time.
396 */
397 entry = __radix_tree_lookup(&mapping->page_tree, index,
398 NULL, &slot);
399 if (entry) {
400 radix_tree_preload_end();
401 spin_unlock_irq(&mapping->tree_lock);
402 goto restart;
403 }
404 }
405
Ross Zwisler642261a2016-11-08 11:34:45 +1100406 if (pmd_downgrade) {
407 radix_tree_delete(&mapping->page_tree, index);
408 mapping->nrexceptional--;
409 dax_wake_mapping_entry_waiter(mapping, index, entry,
410 true);
411 }
412
413 entry = dax_radix_locked_entry(0, size_flag | RADIX_DAX_EMPTY);
414
415 err = __radix_tree_insert(&mapping->page_tree, index,
416 dax_radix_order(entry), entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200417 radix_tree_preload_end();
418 if (err) {
419 spin_unlock_irq(&mapping->tree_lock);
Ross Zwisler642261a2016-11-08 11:34:45 +1100420 /*
Ross Zwislere11f8b72017-04-07 16:04:57 -0700421 * Our insertion of a DAX entry failed, most likely
422 * because we were inserting a PMD entry and it
423 * collided with a PTE sized entry at a different
424 * index in the PMD range. We haven't inserted
425 * anything into the radix tree and have no waiters to
426 * wake.
Ross Zwisler642261a2016-11-08 11:34:45 +1100427 */
Jan Karaac401cc2016-05-12 18:29:18 +0200428 return ERR_PTR(err);
429 }
430 /* Good, we have inserted empty locked entry into the tree. */
431 mapping->nrexceptional++;
432 spin_unlock_irq(&mapping->tree_lock);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100433 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200434 }
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100435 entry = lock_slot(mapping, slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100436 out_unlock:
Jan Karaac401cc2016-05-12 18:29:18 +0200437 spin_unlock_irq(&mapping->tree_lock);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100438 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200439}
440
Jan Karac6dcf522016-08-10 17:22:44 +0200441static int __dax_invalidate_mapping_entry(struct address_space *mapping,
442 pgoff_t index, bool trunc)
443{
444 int ret = 0;
445 void *entry;
446 struct radix_tree_root *page_tree = &mapping->page_tree;
447
448 spin_lock_irq(&mapping->tree_lock);
449 entry = get_unlocked_mapping_entry(mapping, index, NULL);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700450 if (!entry || WARN_ON_ONCE(!radix_tree_exceptional_entry(entry)))
Jan Karac6dcf522016-08-10 17:22:44 +0200451 goto out;
452 if (!trunc &&
453 (radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_DIRTY) ||
454 radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE)))
455 goto out;
456 radix_tree_delete(page_tree, index);
457 mapping->nrexceptional--;
458 ret = 1;
459out:
460 put_unlocked_mapping_entry(mapping, index, entry);
461 spin_unlock_irq(&mapping->tree_lock);
462 return ret;
463}
Jan Karaac401cc2016-05-12 18:29:18 +0200464/*
465 * Delete exceptional DAX entry at @index from @mapping. Wait for radix tree
466 * entry to get unlocked before deleting it.
467 */
468int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index)
469{
Jan Karac6dcf522016-08-10 17:22:44 +0200470 int ret = __dax_invalidate_mapping_entry(mapping, index, true);
Jan Karaac401cc2016-05-12 18:29:18 +0200471
Jan Karaac401cc2016-05-12 18:29:18 +0200472 /*
473 * This gets called from truncate / punch_hole path. As such, the caller
474 * must hold locks protecting against concurrent modifications of the
475 * radix tree (usually fs-private i_mmap_sem for writing). Since the
476 * caller has seen exceptional entry for this index, we better find it
477 * at that index as well...
478 */
Jan Karac6dcf522016-08-10 17:22:44 +0200479 WARN_ON_ONCE(!ret);
480 return ret;
481}
Jan Karaac401cc2016-05-12 18:29:18 +0200482
Jan Karac6dcf522016-08-10 17:22:44 +0200483/*
Jan Karac6dcf522016-08-10 17:22:44 +0200484 * Invalidate exceptional DAX entry if it is clean.
485 */
486int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
487 pgoff_t index)
488{
489 return __dax_invalidate_mapping_entry(mapping, index, false);
Jan Karaac401cc2016-05-12 18:29:18 +0200490}
491
Dan Williamscccbce62017-01-27 13:31:42 -0800492static int copy_user_dax(struct block_device *bdev, struct dax_device *dax_dev,
493 sector_t sector, size_t size, struct page *to,
494 unsigned long vaddr)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800495{
Dan Williamscccbce62017-01-27 13:31:42 -0800496 void *vto, *kaddr;
497 pgoff_t pgoff;
498 pfn_t pfn;
499 long rc;
500 int id;
Ross Zwislere2e05392015-08-18 13:55:41 -0600501
Dan Williamscccbce62017-01-27 13:31:42 -0800502 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
503 if (rc)
504 return rc;
505
506 id = dax_read_lock();
507 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, &pfn);
508 if (rc < 0) {
509 dax_read_unlock(id);
510 return rc;
511 }
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800512 vto = kmap_atomic(to);
Dan Williamscccbce62017-01-27 13:31:42 -0800513 copy_user_page(vto, (void __force *)kaddr, vaddr, to);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800514 kunmap_atomic(vto);
Dan Williamscccbce62017-01-27 13:31:42 -0800515 dax_read_unlock(id);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800516 return 0;
517}
518
Ross Zwisler642261a2016-11-08 11:34:45 +1100519/*
520 * By this point grab_mapping_entry() has ensured that we have a locked entry
521 * of the appropriate size so we don't have to worry about downgrading PMDs to
522 * PTEs. If we happen to be trying to insert a PTE and there is a PMD
523 * already in the tree, we will skip the insertion and just dirty the PMD as
524 * appropriate.
525 */
Jan Karaac401cc2016-05-12 18:29:18 +0200526static void *dax_insert_mapping_entry(struct address_space *mapping,
527 struct vm_fault *vmf,
Dan Williams3fe07912017-10-14 17:13:45 -0700528 void *entry, pfn_t pfn_t,
Jan Karaf5b7b742017-11-01 16:36:40 +0100529 unsigned long flags, bool dirty)
Ross Zwisler9973c982016-01-22 15:10:47 -0800530{
531 struct radix_tree_root *page_tree = &mapping->page_tree;
Dan Williams3fe07912017-10-14 17:13:45 -0700532 unsigned long pfn = pfn_t_to_pfn(pfn_t);
Jan Karaac401cc2016-05-12 18:29:18 +0200533 pgoff_t index = vmf->pgoff;
Dan Williams3fe07912017-10-14 17:13:45 -0700534 void *new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800535
Jan Karaf5b7b742017-11-01 16:36:40 +0100536 if (dirty)
Dmitry Monakhovd2b2a282016-02-05 15:36:55 -0800537 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Ross Zwisler9973c982016-01-22 15:10:47 -0800538
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700539 if (dax_is_zero_entry(entry) && !(flags & RADIX_DAX_ZERO_PAGE)) {
540 /* we are replacing a zero page with block mapping */
541 if (dax_is_pmd_entry(entry))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800542 unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
543 PG_PMD_NR, false);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700544 else /* pte entry */
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800545 unmap_mapping_pages(mapping, vmf->pgoff, 1, false);
Ross Zwisler9973c982016-01-22 15:10:47 -0800546 }
547
Jan Karaac401cc2016-05-12 18:29:18 +0200548 spin_lock_irq(&mapping->tree_lock);
Dan Williams3fe07912017-10-14 17:13:45 -0700549 new_entry = dax_radix_locked_entry(pfn, flags);
Ross Zwisler642261a2016-11-08 11:34:45 +1100550
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700551 if (dax_is_zero_entry(entry) || dax_is_empty_entry(entry)) {
Ross Zwisler642261a2016-11-08 11:34:45 +1100552 /*
553 * Only swap our new entry into the radix tree if the current
554 * entry is a zero page or an empty entry. If a normal PTE or
555 * PMD entry is already in the tree, we leave it alone. This
556 * means that if we are trying to insert a PTE and the
557 * existing entry is a PMD, we will just leave the PMD in the
558 * tree and dirty it if necessary.
559 */
Johannes Weinerf7942432016-12-12 16:43:41 -0800560 struct radix_tree_node *node;
Jan Karaac401cc2016-05-12 18:29:18 +0200561 void **slot;
562 void *ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800563
Johannes Weinerf7942432016-12-12 16:43:41 -0800564 ret = __radix_tree_lookup(page_tree, index, &node, &slot);
Jan Karaac401cc2016-05-12 18:29:18 +0200565 WARN_ON_ONCE(ret != entry);
Johannes Weiner4d693d02016-12-12 16:43:49 -0800566 __radix_tree_replace(page_tree, node, slot,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800567 new_entry, NULL);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700568 entry = new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800569 }
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700570
Jan Karaf5b7b742017-11-01 16:36:40 +0100571 if (dirty)
Ross Zwisler9973c982016-01-22 15:10:47 -0800572 radix_tree_tag_set(page_tree, index, PAGECACHE_TAG_DIRTY);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700573
Ross Zwisler9973c982016-01-22 15:10:47 -0800574 spin_unlock_irq(&mapping->tree_lock);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700575 return entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800576}
577
Jan Kara4b4bb462016-12-14 15:07:53 -0800578static inline unsigned long
579pgoff_address(pgoff_t pgoff, struct vm_area_struct *vma)
580{
581 unsigned long address;
582
583 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
584 VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
585 return address;
586}
587
588/* Walk all mappings of a given index of a file and writeprotect them */
589static void dax_mapping_entry_mkclean(struct address_space *mapping,
590 pgoff_t index, unsigned long pfn)
591{
592 struct vm_area_struct *vma;
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800593 pte_t pte, *ptep = NULL;
594 pmd_t *pmdp = NULL;
Jan Kara4b4bb462016-12-14 15:07:53 -0800595 spinlock_t *ptl;
Jan Kara4b4bb462016-12-14 15:07:53 -0800596
597 i_mmap_lock_read(mapping);
598 vma_interval_tree_foreach(vma, &mapping->i_mmap, index, index) {
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400599 unsigned long address, start, end;
Jan Kara4b4bb462016-12-14 15:07:53 -0800600
601 cond_resched();
602
603 if (!(vma->vm_flags & VM_SHARED))
604 continue;
605
606 address = pgoff_address(index, vma);
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400607
608 /*
609 * Note because we provide start/end to follow_pte_pmd it will
610 * call mmu_notifier_invalidate_range_start() on our behalf
611 * before taking any lock.
612 */
613 if (follow_pte_pmd(vma->vm_mm, address, &start, &end, &ptep, &pmdp, &ptl))
Jan Kara4b4bb462016-12-14 15:07:53 -0800614 continue;
Jan Kara4b4bb462016-12-14 15:07:53 -0800615
Jérôme Glisse0f108512017-11-15 17:34:07 -0800616 /*
617 * No need to call mmu_notifier_invalidate_range() as we are
618 * downgrading page table protection not changing it to point
619 * to a new page.
620 *
621 * See Documentation/vm/mmu_notifier.txt
622 */
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800623 if (pmdp) {
624#ifdef CONFIG_FS_DAX_PMD
625 pmd_t pmd;
626
627 if (pfn != pmd_pfn(*pmdp))
628 goto unlock_pmd;
Linus Torvaldsf6f37322017-12-15 18:53:22 -0800629 if (!pmd_dirty(*pmdp) && !pmd_write(*pmdp))
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800630 goto unlock_pmd;
631
632 flush_cache_page(vma, address, pfn);
633 pmd = pmdp_huge_clear_flush(vma, address, pmdp);
634 pmd = pmd_wrprotect(pmd);
635 pmd = pmd_mkclean(pmd);
636 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800637unlock_pmd:
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800638#endif
Jan H. Schönherree190ca2018-01-31 16:14:04 -0800639 spin_unlock(ptl);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800640 } else {
641 if (pfn != pte_pfn(*ptep))
642 goto unlock_pte;
643 if (!pte_dirty(*ptep) && !pte_write(*ptep))
644 goto unlock_pte;
645
646 flush_cache_page(vma, address, pfn);
647 pte = ptep_clear_flush(vma, address, ptep);
648 pte = pte_wrprotect(pte);
649 pte = pte_mkclean(pte);
650 set_pte_at(vma->vm_mm, address, ptep, pte);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800651unlock_pte:
652 pte_unmap_unlock(ptep, ptl);
653 }
Jan Kara4b4bb462016-12-14 15:07:53 -0800654
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400655 mmu_notifier_invalidate_range_end(vma->vm_mm, start, end);
Jan Kara4b4bb462016-12-14 15:07:53 -0800656 }
657 i_mmap_unlock_read(mapping);
658}
659
Dan Williams3fe07912017-10-14 17:13:45 -0700660static int dax_writeback_one(struct dax_device *dax_dev,
661 struct address_space *mapping, pgoff_t index, void *entry)
Ross Zwisler9973c982016-01-22 15:10:47 -0800662{
663 struct radix_tree_root *page_tree = &mapping->page_tree;
Dan Williams3fe07912017-10-14 17:13:45 -0700664 void *entry2, **slot;
665 unsigned long pfn;
666 long ret = 0;
Dan Williamscccbce62017-01-27 13:31:42 -0800667 size_t size;
Ross Zwisler9973c982016-01-22 15:10:47 -0800668
Ross Zwisler9973c982016-01-22 15:10:47 -0800669 /*
Jan Karaa6abc2c2016-12-14 15:07:47 -0800670 * A page got tagged dirty in DAX mapping? Something is seriously
671 * wrong.
Ross Zwisler9973c982016-01-22 15:10:47 -0800672 */
Jan Karaa6abc2c2016-12-14 15:07:47 -0800673 if (WARN_ON(!radix_tree_exceptional_entry(entry)))
674 return -EIO;
Ross Zwisler9973c982016-01-22 15:10:47 -0800675
Jan Karaa6abc2c2016-12-14 15:07:47 -0800676 spin_lock_irq(&mapping->tree_lock);
677 entry2 = get_unlocked_mapping_entry(mapping, index, &slot);
678 /* Entry got punched out / reallocated? */
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700679 if (!entry2 || WARN_ON_ONCE(!radix_tree_exceptional_entry(entry2)))
Jan Karaa6abc2c2016-12-14 15:07:47 -0800680 goto put_unlocked;
681 /*
682 * Entry got reallocated elsewhere? No need to writeback. We have to
Dan Williams3fe07912017-10-14 17:13:45 -0700683 * compare pfns as we must not bail out due to difference in lockbit
Jan Karaa6abc2c2016-12-14 15:07:47 -0800684 * or entry type.
685 */
Dan Williams3fe07912017-10-14 17:13:45 -0700686 if (dax_radix_pfn(entry2) != dax_radix_pfn(entry))
Jan Karaa6abc2c2016-12-14 15:07:47 -0800687 goto put_unlocked;
Ross Zwisler642261a2016-11-08 11:34:45 +1100688 if (WARN_ON_ONCE(dax_is_empty_entry(entry) ||
689 dax_is_zero_entry(entry))) {
Ross Zwisler9973c982016-01-22 15:10:47 -0800690 ret = -EIO;
Jan Karaa6abc2c2016-12-14 15:07:47 -0800691 goto put_unlocked;
Ross Zwisler9973c982016-01-22 15:10:47 -0800692 }
693
Jan Karaa6abc2c2016-12-14 15:07:47 -0800694 /* Another fsync thread may have already written back this entry */
695 if (!radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE))
696 goto put_unlocked;
697 /* Lock the entry to serialize with page faults */
698 entry = lock_slot(mapping, slot);
699 /*
700 * We can clear the tag now but we have to be careful so that concurrent
701 * dax_writeback_one() calls for the same index cannot finish before we
702 * actually flush the caches. This is achieved as the calls will look
703 * at the entry only under tree_lock and once they do that they will
704 * see the entry locked and wait for it to unlock.
705 */
706 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_TOWRITE);
707 spin_unlock_irq(&mapping->tree_lock);
708
Ross Zwisler642261a2016-11-08 11:34:45 +1100709 /*
710 * Even if dax_writeback_mapping_range() was given a wbc->range_start
711 * in the middle of a PMD, the 'index' we are given will be aligned to
Dan Williams3fe07912017-10-14 17:13:45 -0700712 * the start index of the PMD, as will the pfn we pull from 'entry'.
713 * This allows us to flush for PMD_SIZE and not have to worry about
714 * partial PMD writebacks.
Ross Zwisler642261a2016-11-08 11:34:45 +1100715 */
Dan Williams3fe07912017-10-14 17:13:45 -0700716 pfn = dax_radix_pfn(entry);
Dan Williamscccbce62017-01-27 13:31:42 -0800717 size = PAGE_SIZE << dax_radix_order(entry);
718
Dan Williams3fe07912017-10-14 17:13:45 -0700719 dax_mapping_entry_mkclean(mapping, index, pfn);
720 dax_flush(dax_dev, page_address(pfn_to_page(pfn)), size);
Jan Kara4b4bb462016-12-14 15:07:53 -0800721 /*
722 * After we have flushed the cache, we can clear the dirty tag. There
723 * cannot be new dirty data in the pfn after the flush has completed as
724 * the pfn mappings are writeprotected and fault waits for mapping
725 * entry lock.
726 */
727 spin_lock_irq(&mapping->tree_lock);
728 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_DIRTY);
729 spin_unlock_irq(&mapping->tree_lock);
Ross Zwislerf9bc3a02017-05-08 16:00:13 -0700730 trace_dax_writeback_one(mapping->host, index, size >> PAGE_SHIFT);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700731 put_locked_mapping_entry(mapping, index);
Ross Zwisler9973c982016-01-22 15:10:47 -0800732 return ret;
733
Jan Karaa6abc2c2016-12-14 15:07:47 -0800734 put_unlocked:
735 put_unlocked_mapping_entry(mapping, index, entry2);
Ross Zwisler9973c982016-01-22 15:10:47 -0800736 spin_unlock_irq(&mapping->tree_lock);
737 return ret;
738}
739
740/*
741 * Flush the mapping to the persistent domain within the byte range of [start,
742 * end]. This is required by data integrity operations to ensure file data is
743 * on persistent storage prior to completion of the operation.
744 */
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800745int dax_writeback_mapping_range(struct address_space *mapping,
746 struct block_device *bdev, struct writeback_control *wbc)
Ross Zwisler9973c982016-01-22 15:10:47 -0800747{
748 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +1100749 pgoff_t start_index, end_index;
Ross Zwisler9973c982016-01-22 15:10:47 -0800750 pgoff_t indices[PAGEVEC_SIZE];
Dan Williamscccbce62017-01-27 13:31:42 -0800751 struct dax_device *dax_dev;
Ross Zwisler9973c982016-01-22 15:10:47 -0800752 struct pagevec pvec;
753 bool done = false;
754 int i, ret = 0;
Ross Zwisler9973c982016-01-22 15:10:47 -0800755
756 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
757 return -EIO;
758
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800759 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
760 return 0;
761
Dan Williamscccbce62017-01-27 13:31:42 -0800762 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
763 if (!dax_dev)
764 return -EIO;
765
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300766 start_index = wbc->range_start >> PAGE_SHIFT;
767 end_index = wbc->range_end >> PAGE_SHIFT;
Ross Zwisler9973c982016-01-22 15:10:47 -0800768
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700769 trace_dax_writeback_range(inode, start_index, end_index);
770
Ross Zwisler9973c982016-01-22 15:10:47 -0800771 tag_pages_for_writeback(mapping, start_index, end_index);
772
Mel Gorman86679822017-11-15 17:37:52 -0800773 pagevec_init(&pvec);
Ross Zwisler9973c982016-01-22 15:10:47 -0800774 while (!done) {
775 pvec.nr = find_get_entries_tag(mapping, start_index,
776 PAGECACHE_TAG_TOWRITE, PAGEVEC_SIZE,
777 pvec.pages, indices);
778
779 if (pvec.nr == 0)
780 break;
781
782 for (i = 0; i < pvec.nr; i++) {
783 if (indices[i] > end_index) {
784 done = true;
785 break;
786 }
787
Dan Williams3fe07912017-10-14 17:13:45 -0700788 ret = dax_writeback_one(dax_dev, mapping, indices[i],
789 pvec.pages[i]);
Jeff Layton819ec6b2017-07-06 07:02:27 -0400790 if (ret < 0) {
791 mapping_set_error(mapping, ret);
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700792 goto out;
Jeff Layton819ec6b2017-07-06 07:02:27 -0400793 }
Ross Zwisler9973c982016-01-22 15:10:47 -0800794 }
Jan Kara1eb643d2017-06-23 15:08:46 -0700795 start_index = indices[pvec.nr - 1] + 1;
Ross Zwisler9973c982016-01-22 15:10:47 -0800796 }
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700797out:
Dan Williamscccbce62017-01-27 13:31:42 -0800798 put_dax(dax_dev);
Ross Zwislerd14a3f42017-05-08 16:00:10 -0700799 trace_dax_writeback_range_done(inode, start_index, end_index);
800 return (ret < 0 ? ret : 0);
Ross Zwisler9973c982016-01-22 15:10:47 -0800801}
802EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
803
Jan Kara31a6f1a2017-11-01 16:36:32 +0100804static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800805{
Linus Torvaldsa3841f92017-11-17 09:51:57 -0800806 return (iomap->addr + (pos & PAGE_MASK) - iomap->offset) >> 9;
Jan Kara31a6f1a2017-11-01 16:36:32 +0100807}
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800808
Jan Kara5e161e42017-11-01 16:36:33 +0100809static int dax_iomap_pfn(struct iomap *iomap, loff_t pos, size_t size,
810 pfn_t *pfnp)
811{
812 const sector_t sector = dax_iomap_sector(iomap, pos);
813 pgoff_t pgoff;
814 void *kaddr;
815 int id, rc;
816 long length;
817
818 rc = bdev_dax_pgoff(iomap->bdev, sector, size, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -0800819 if (rc)
820 return rc;
Dan Williamscccbce62017-01-27 13:31:42 -0800821 id = dax_read_lock();
Jan Kara5e161e42017-11-01 16:36:33 +0100822 length = dax_direct_access(iomap->dax_dev, pgoff, PHYS_PFN(size),
823 &kaddr, pfnp);
824 if (length < 0) {
825 rc = length;
826 goto out;
Dan Williamscccbce62017-01-27 13:31:42 -0800827 }
Jan Kara5e161e42017-11-01 16:36:33 +0100828 rc = -EINVAL;
829 if (PFN_PHYS(length) < size)
830 goto out;
831 if (pfn_t_to_pfn(*pfnp) & (PHYS_PFN(size)-1))
832 goto out;
833 /* For larger pages we need devmap */
834 if (length > 1 && !pfn_t_devmap(*pfnp))
835 goto out;
836 rc = 0;
837out:
Dan Williamscccbce62017-01-27 13:31:42 -0800838 dax_read_unlock(id);
Jan Kara5e161e42017-11-01 16:36:33 +0100839 return rc;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800840}
841
Ross Zwislere30331f2017-09-06 16:18:39 -0700842/*
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700843 * The user has performed a load from a hole in the file. Allocating a new
844 * page in the file would cause excessive storage usage for workloads with
845 * sparse files. Instead we insert a read-only mapping of the 4k zero page.
846 * If this page is ever written to we will re-fault and change the mapping to
847 * point to real DAX storage instead.
Ross Zwislere30331f2017-09-06 16:18:39 -0700848 */
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700849static int dax_load_hole(struct address_space *mapping, void *entry,
Ross Zwislere30331f2017-09-06 16:18:39 -0700850 struct vm_fault *vmf)
851{
852 struct inode *inode = mapping->host;
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700853 unsigned long vaddr = vmf->address;
854 int ret = VM_FAULT_NOPAGE;
855 struct page *zero_page;
856 void *entry2;
Dan Williams3fe07912017-10-14 17:13:45 -0700857 pfn_t pfn;
Ross Zwislere30331f2017-09-06 16:18:39 -0700858
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700859 zero_page = ZERO_PAGE(0);
860 if (unlikely(!zero_page)) {
Ross Zwislere30331f2017-09-06 16:18:39 -0700861 ret = VM_FAULT_OOM;
862 goto out;
863 }
864
Dan Williams3fe07912017-10-14 17:13:45 -0700865 pfn = page_to_pfn_t(zero_page);
866 entry2 = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karaf5b7b742017-11-01 16:36:40 +0100867 RADIX_DAX_ZERO_PAGE, false);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700868 if (IS_ERR(entry2)) {
869 ret = VM_FAULT_SIGBUS;
870 goto out;
Ross Zwislere30331f2017-09-06 16:18:39 -0700871 }
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700872
Dan Williams3fe07912017-10-14 17:13:45 -0700873 vm_insert_mixed(vmf->vma, vaddr, pfn);
Ross Zwislere30331f2017-09-06 16:18:39 -0700874out:
875 trace_dax_load_hole(inode, vmf, ret);
876 return ret;
877}
878
Vishal Verma4b0228f2016-04-21 15:13:46 -0400879static bool dax_range_is_aligned(struct block_device *bdev,
880 unsigned int offset, unsigned int length)
881{
882 unsigned short sector_size = bdev_logical_block_size(bdev);
883
884 if (!IS_ALIGNED(offset, sector_size))
885 return false;
886 if (!IS_ALIGNED(length, sector_size))
887 return false;
888
889 return true;
890}
891
Dan Williamscccbce62017-01-27 13:31:42 -0800892int __dax_zero_page_range(struct block_device *bdev,
893 struct dax_device *dax_dev, sector_t sector,
894 unsigned int offset, unsigned int size)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200895{
Dan Williamscccbce62017-01-27 13:31:42 -0800896 if (dax_range_is_aligned(bdev, offset, size)) {
897 sector_t start_sector = sector + (offset >> 9);
Vishal Verma4b0228f2016-04-21 15:13:46 -0400898
899 return blkdev_issue_zeroout(bdev, start_sector,
Linus Torvalds53ef7d02017-05-05 18:49:20 -0700900 size >> 9, GFP_NOFS, 0);
Vishal Verma4b0228f2016-04-21 15:13:46 -0400901 } else {
Dan Williamscccbce62017-01-27 13:31:42 -0800902 pgoff_t pgoff;
903 long rc, id;
904 void *kaddr;
905 pfn_t pfn;
906
Dan Williamse84b83b2017-05-10 19:38:13 -0700907 rc = bdev_dax_pgoff(bdev, sector, PAGE_SIZE, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -0800908 if (rc)
909 return rc;
910
911 id = dax_read_lock();
Dan Williamse84b83b2017-05-10 19:38:13 -0700912 rc = dax_direct_access(dax_dev, pgoff, 1, &kaddr,
Dan Williamscccbce62017-01-27 13:31:42 -0800913 &pfn);
914 if (rc < 0) {
915 dax_read_unlock(id);
916 return rc;
917 }
Dan Williams81f55872017-05-29 13:12:20 -0700918 memset(kaddr + offset, 0, size);
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400919 dax_flush(dax_dev, kaddr + offset, size);
Dan Williamscccbce62017-01-27 13:31:42 -0800920 dax_read_unlock(id);
Vishal Verma4b0228f2016-04-21 15:13:46 -0400921 }
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200922 return 0;
923}
924EXPORT_SYMBOL_GPL(__dax_zero_page_range);
925
Christoph Hellwiga254e562016-09-19 11:24:49 +1000926static loff_t
Ross Zwisler11c59c92016-11-08 11:32:46 +1100927dax_iomap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
Christoph Hellwiga254e562016-09-19 11:24:49 +1000928 struct iomap *iomap)
929{
Dan Williamscccbce62017-01-27 13:31:42 -0800930 struct block_device *bdev = iomap->bdev;
931 struct dax_device *dax_dev = iomap->dax_dev;
Christoph Hellwiga254e562016-09-19 11:24:49 +1000932 struct iov_iter *iter = data;
933 loff_t end = pos + length, done = 0;
934 ssize_t ret = 0;
Dan Williamscccbce62017-01-27 13:31:42 -0800935 int id;
Christoph Hellwiga254e562016-09-19 11:24:49 +1000936
937 if (iov_iter_rw(iter) == READ) {
938 end = min(end, i_size_read(inode));
939 if (pos >= end)
940 return 0;
941
942 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
943 return iov_iter_zero(min(length, end - pos), iter);
944 }
945
946 if (WARN_ON_ONCE(iomap->type != IOMAP_MAPPED))
947 return -EIO;
948
Jan Karae3fce682016-08-10 17:10:28 +0200949 /*
950 * Write can allocate block for an area which has a hole page mapped
951 * into page tables. We have to tear down these mappings so that data
952 * written by write(2) is visible in mmap.
953 */
Jan Karacd656372017-05-12 15:46:50 -0700954 if (iomap->flags & IOMAP_F_NEW) {
Jan Karae3fce682016-08-10 17:10:28 +0200955 invalidate_inode_pages2_range(inode->i_mapping,
956 pos >> PAGE_SHIFT,
957 (end - 1) >> PAGE_SHIFT);
958 }
959
Dan Williamscccbce62017-01-27 13:31:42 -0800960 id = dax_read_lock();
Christoph Hellwiga254e562016-09-19 11:24:49 +1000961 while (pos < end) {
962 unsigned offset = pos & (PAGE_SIZE - 1);
Dan Williamscccbce62017-01-27 13:31:42 -0800963 const size_t size = ALIGN(length + offset, PAGE_SIZE);
964 const sector_t sector = dax_iomap_sector(iomap, pos);
Christoph Hellwiga254e562016-09-19 11:24:49 +1000965 ssize_t map_len;
Dan Williamscccbce62017-01-27 13:31:42 -0800966 pgoff_t pgoff;
967 void *kaddr;
968 pfn_t pfn;
Christoph Hellwiga254e562016-09-19 11:24:49 +1000969
Michal Hockod1908f52017-02-03 13:13:26 -0800970 if (fatal_signal_pending(current)) {
971 ret = -EINTR;
972 break;
973 }
974
Dan Williamscccbce62017-01-27 13:31:42 -0800975 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
976 if (ret)
977 break;
978
979 map_len = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size),
980 &kaddr, &pfn);
Christoph Hellwiga254e562016-09-19 11:24:49 +1000981 if (map_len < 0) {
982 ret = map_len;
983 break;
984 }
985
Dan Williamscccbce62017-01-27 13:31:42 -0800986 map_len = PFN_PHYS(map_len);
987 kaddr += offset;
Christoph Hellwiga254e562016-09-19 11:24:49 +1000988 map_len -= offset;
989 if (map_len > end - pos)
990 map_len = end - pos;
991
Ross Zwislera2e050f2017-09-06 16:18:54 -0700992 /*
993 * The userspace address for the memory copy has already been
994 * validated via access_ok() in either vfs_read() or
995 * vfs_write(), depending on which operation we are doing.
996 */
Christoph Hellwiga254e562016-09-19 11:24:49 +1000997 if (iov_iter_rw(iter) == WRITE)
Dan Williamsfec53772017-05-29 21:56:49 -0700998 map_len = dax_copy_from_iter(dax_dev, pgoff, kaddr,
999 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001000 else
Dan Williamscccbce62017-01-27 13:31:42 -08001001 map_len = copy_to_iter(kaddr, map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001002 if (map_len <= 0) {
1003 ret = map_len ? map_len : -EFAULT;
1004 break;
1005 }
1006
1007 pos += map_len;
1008 length -= map_len;
1009 done += map_len;
1010 }
Dan Williamscccbce62017-01-27 13:31:42 -08001011 dax_read_unlock(id);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001012
1013 return done ? done : ret;
1014}
1015
1016/**
Ross Zwisler11c59c92016-11-08 11:32:46 +11001017 * dax_iomap_rw - Perform I/O to a DAX file
Christoph Hellwiga254e562016-09-19 11:24:49 +10001018 * @iocb: The control block for this I/O
1019 * @iter: The addresses to do I/O from or to
1020 * @ops: iomap ops passed from the file system
1021 *
1022 * This function performs read and write operations to directly mapped
1023 * persistent memory. The callers needs to take care of read/write exclusion
1024 * and evicting any page cache pages in the region under I/O.
1025 */
1026ssize_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001027dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001028 const struct iomap_ops *ops)
Christoph Hellwiga254e562016-09-19 11:24:49 +10001029{
1030 struct address_space *mapping = iocb->ki_filp->f_mapping;
1031 struct inode *inode = mapping->host;
1032 loff_t pos = iocb->ki_pos, ret = 0, done = 0;
1033 unsigned flags = 0;
1034
Christoph Hellwig168316d2017-02-08 14:43:13 -05001035 if (iov_iter_rw(iter) == WRITE) {
1036 lockdep_assert_held_exclusive(&inode->i_rwsem);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001037 flags |= IOMAP_WRITE;
Christoph Hellwig168316d2017-02-08 14:43:13 -05001038 } else {
1039 lockdep_assert_held(&inode->i_rwsem);
1040 }
Christoph Hellwiga254e562016-09-19 11:24:49 +10001041
Christoph Hellwiga254e562016-09-19 11:24:49 +10001042 while (iov_iter_count(iter)) {
1043 ret = iomap_apply(inode, pos, iov_iter_count(iter), flags, ops,
Ross Zwisler11c59c92016-11-08 11:32:46 +11001044 iter, dax_iomap_actor);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001045 if (ret <= 0)
1046 break;
1047 pos += ret;
1048 done += ret;
1049 }
1050
1051 iocb->ki_pos += done;
1052 return done ? done : ret;
1053}
Ross Zwisler11c59c92016-11-08 11:32:46 +11001054EXPORT_SYMBOL_GPL(dax_iomap_rw);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001055
Jan Kara9f141d62016-10-19 14:34:31 +02001056static int dax_fault_return(int error)
1057{
1058 if (error == 0)
1059 return VM_FAULT_NOPAGE;
1060 if (error == -ENOMEM)
1061 return VM_FAULT_OOM;
1062 return VM_FAULT_SIGBUS;
1063}
1064
Dan Williamsaaa422c2017-11-13 16:38:44 -08001065/*
1066 * MAP_SYNC on a dax mapping guarantees dirty metadata is
1067 * flushed on write-faults (non-cow), but not read-faults.
1068 */
1069static bool dax_fault_is_synchronous(unsigned long flags,
1070 struct vm_area_struct *vma, struct iomap *iomap)
1071{
1072 return (flags & IOMAP_WRITE) && (vma->vm_flags & VM_SYNC)
1073 && (iomap->flags & IOMAP_F_DIRTY);
1074}
1075
Jan Kara9a0dd422017-11-01 16:36:39 +01001076static int dax_iomap_pte_fault(struct vm_fault *vmf, pfn_t *pfnp,
Jan Karac0b24622018-01-07 16:38:43 -05001077 int *iomap_errp, const struct iomap_ops *ops)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001078{
Jan Karaa0987ad2017-11-01 16:36:34 +01001079 struct vm_area_struct *vma = vmf->vma;
1080 struct address_space *mapping = vma->vm_file->f_mapping;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001081 struct inode *inode = mapping->host;
Jan Kara1a29d852016-12-14 15:07:01 -08001082 unsigned long vaddr = vmf->address;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001083 loff_t pos = (loff_t)vmf->pgoff << PAGE_SHIFT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001084 struct iomap iomap = { 0 };
Jan Kara9484ab12016-11-10 10:26:50 +11001085 unsigned flags = IOMAP_FAULT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001086 int error, major = 0;
Jan Karad2c43ef2017-11-01 16:36:35 +01001087 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001088 bool sync;
Jan Karab1aa8122016-12-14 15:07:24 -08001089 int vmf_ret = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001090 void *entry;
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001091 pfn_t pfn;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001092
Ross Zwislera9c42b32017-05-08 16:00:00 -07001093 trace_dax_pte_fault(inode, vmf, vmf_ret);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001094 /*
1095 * Check whether offset isn't beyond end of file now. Caller is supposed
1096 * to hold locks serializing us with truncate / punch hole so this is
1097 * a reliable test.
1098 */
Ross Zwislera9c42b32017-05-08 16:00:00 -07001099 if (pos >= i_size_read(inode)) {
1100 vmf_ret = VM_FAULT_SIGBUS;
1101 goto out;
1102 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001103
Jan Karad2c43ef2017-11-01 16:36:35 +01001104 if (write && !vmf->cow_page)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001105 flags |= IOMAP_WRITE;
1106
Jan Kara13e451f2017-05-12 15:46:57 -07001107 entry = grab_mapping_entry(mapping, vmf->pgoff, 0);
1108 if (IS_ERR(entry)) {
1109 vmf_ret = dax_fault_return(PTR_ERR(entry));
1110 goto out;
1111 }
1112
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001113 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001114 * It is possible, particularly with mixed reads & writes to private
1115 * mappings, that we have raced with a PMD fault that overlaps with
1116 * the PTE we need to set up. If so just return and the fault will be
1117 * retried.
1118 */
1119 if (pmd_trans_huge(*vmf->pmd) || pmd_devmap(*vmf->pmd)) {
1120 vmf_ret = VM_FAULT_NOPAGE;
1121 goto unlock_entry;
1122 }
1123
1124 /*
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001125 * Note that we don't bother to use iomap_apply here: DAX required
1126 * the file system block size to be equal the page size, which means
1127 * that we never have to deal with more than a single extent here.
1128 */
1129 error = ops->iomap_begin(inode, pos, PAGE_SIZE, flags, &iomap);
Jan Karac0b24622018-01-07 16:38:43 -05001130 if (iomap_errp)
1131 *iomap_errp = error;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001132 if (error) {
1133 vmf_ret = dax_fault_return(error);
Jan Kara13e451f2017-05-12 15:46:57 -07001134 goto unlock_entry;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001135 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001136 if (WARN_ON_ONCE(iomap.offset + iomap.length < pos + PAGE_SIZE)) {
Jan Kara13e451f2017-05-12 15:46:57 -07001137 error = -EIO; /* fs corruption? */
1138 goto error_finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001139 }
1140
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001141 if (vmf->cow_page) {
Jan Kara31a6f1a2017-11-01 16:36:32 +01001142 sector_t sector = dax_iomap_sector(&iomap, pos);
1143
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001144 switch (iomap.type) {
1145 case IOMAP_HOLE:
1146 case IOMAP_UNWRITTEN:
1147 clear_user_highpage(vmf->cow_page, vaddr);
1148 break;
1149 case IOMAP_MAPPED:
Dan Williamscccbce62017-01-27 13:31:42 -08001150 error = copy_user_dax(iomap.bdev, iomap.dax_dev,
1151 sector, PAGE_SIZE, vmf->cow_page, vaddr);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001152 break;
1153 default:
1154 WARN_ON_ONCE(1);
1155 error = -EIO;
1156 break;
1157 }
1158
1159 if (error)
Jan Kara13e451f2017-05-12 15:46:57 -07001160 goto error_finish_iomap;
Jan Karab1aa8122016-12-14 15:07:24 -08001161
1162 __SetPageUptodate(vmf->cow_page);
1163 vmf_ret = finish_fault(vmf);
1164 if (!vmf_ret)
1165 vmf_ret = VM_FAULT_DONE_COW;
Jan Kara13e451f2017-05-12 15:46:57 -07001166 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001167 }
1168
Dan Williamsaaa422c2017-11-13 16:38:44 -08001169 sync = dax_fault_is_synchronous(flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001170
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001171 switch (iomap.type) {
1172 case IOMAP_MAPPED:
1173 if (iomap.flags & IOMAP_F_NEW) {
1174 count_vm_event(PGMAJFAULT);
Jan Karaa0987ad2017-11-01 16:36:34 +01001175 count_memcg_event_mm(vma->vm_mm, PGMAJFAULT);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001176 major = VM_FAULT_MAJOR;
1177 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001178 error = dax_iomap_pfn(&iomap, pos, PAGE_SIZE, &pfn);
1179 if (error < 0)
1180 goto error_finish_iomap;
1181
Dan Williams3fe07912017-10-14 17:13:45 -07001182 entry = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karacaa51d22017-11-01 16:36:42 +01001183 0, write && !sync);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001184 if (IS_ERR(entry)) {
1185 error = PTR_ERR(entry);
1186 goto error_finish_iomap;
1187 }
1188
Jan Karacaa51d22017-11-01 16:36:42 +01001189 /*
1190 * If we are doing synchronous page fault and inode needs fsync,
1191 * we can insert PTE into page tables only after that happens.
1192 * Skip insertion for now and return the pfn so that caller can
1193 * insert it after fsync is done.
1194 */
1195 if (sync) {
1196 if (WARN_ON_ONCE(!pfnp)) {
1197 error = -EIO;
1198 goto error_finish_iomap;
1199 }
1200 *pfnp = pfn;
1201 vmf_ret = VM_FAULT_NEEDDSYNC | major;
1202 goto finish_iomap;
1203 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001204 trace_dax_insert_mapping(inode, vmf, entry);
1205 if (write)
1206 error = vm_insert_mixed_mkwrite(vma, vaddr, pfn);
1207 else
1208 error = vm_insert_mixed(vma, vaddr, pfn);
1209
Jan Kara9f141d62016-10-19 14:34:31 +02001210 /* -EBUSY is fine, somebody else faulted on the same PTE */
1211 if (error == -EBUSY)
1212 error = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001213 break;
1214 case IOMAP_UNWRITTEN:
1215 case IOMAP_HOLE:
Jan Karad2c43ef2017-11-01 16:36:35 +01001216 if (!write) {
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001217 vmf_ret = dax_load_hole(mapping, entry, vmf);
Jan Kara13e451f2017-05-12 15:46:57 -07001218 goto finish_iomap;
Ross Zwisler15502902016-11-08 11:33:26 +11001219 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001220 /*FALLTHRU*/
1221 default:
1222 WARN_ON_ONCE(1);
1223 error = -EIO;
1224 break;
1225 }
1226
Jan Kara13e451f2017-05-12 15:46:57 -07001227 error_finish_iomap:
Jan Kara9f141d62016-10-19 14:34:31 +02001228 vmf_ret = dax_fault_return(error) | major;
Jan Kara9f141d62016-10-19 14:34:31 +02001229 finish_iomap:
1230 if (ops->iomap_end) {
1231 int copied = PAGE_SIZE;
1232
1233 if (vmf_ret & VM_FAULT_ERROR)
1234 copied = 0;
1235 /*
1236 * The fault is done by now and there's no way back (other
1237 * thread may be already happily using PTE we have installed).
1238 * Just ignore error from ->iomap_end since we cannot do much
1239 * with it.
1240 */
1241 ops->iomap_end(inode, pos, PAGE_SIZE, copied, flags, &iomap);
Ross Zwisler15502902016-11-08 11:33:26 +11001242 }
Jan Kara13e451f2017-05-12 15:46:57 -07001243 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001244 put_locked_mapping_entry(mapping, vmf->pgoff);
Jan Kara13e451f2017-05-12 15:46:57 -07001245 out:
Ross Zwislera9c42b32017-05-08 16:00:00 -07001246 trace_dax_pte_fault_done(inode, vmf, vmf_ret);
Jan Kara9f141d62016-10-19 14:34:31 +02001247 return vmf_ret;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001248}
Ross Zwisler642261a2016-11-08 11:34:45 +11001249
1250#ifdef CONFIG_FS_DAX_PMD
Dave Jiangf4200392017-02-22 15:40:06 -08001251static int dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001252 void *entry)
Ross Zwisler642261a2016-11-08 11:34:45 +11001253{
Dave Jiangf4200392017-02-22 15:40:06 -08001254 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1255 unsigned long pmd_addr = vmf->address & PMD_MASK;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001256 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001257 struct page *zero_page;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001258 void *ret = NULL;
Ross Zwisler642261a2016-11-08 11:34:45 +11001259 spinlock_t *ptl;
1260 pmd_t pmd_entry;
Dan Williams3fe07912017-10-14 17:13:45 -07001261 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001262
Dave Jiangf4200392017-02-22 15:40:06 -08001263 zero_page = mm_get_huge_zero_page(vmf->vma->vm_mm);
Ross Zwisler642261a2016-11-08 11:34:45 +11001264
1265 if (unlikely(!zero_page))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001266 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001267
Dan Williams3fe07912017-10-14 17:13:45 -07001268 pfn = page_to_pfn_t(zero_page);
1269 ret = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karaf5b7b742017-11-01 16:36:40 +01001270 RADIX_DAX_PMD | RADIX_DAX_ZERO_PAGE, false);
Ross Zwisler642261a2016-11-08 11:34:45 +11001271 if (IS_ERR(ret))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001272 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001273
Dave Jiangf4200392017-02-22 15:40:06 -08001274 ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1275 if (!pmd_none(*(vmf->pmd))) {
Ross Zwisler642261a2016-11-08 11:34:45 +11001276 spin_unlock(ptl);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001277 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001278 }
1279
Dave Jiangf4200392017-02-22 15:40:06 -08001280 pmd_entry = mk_pmd(zero_page, vmf->vma->vm_page_prot);
Ross Zwisler642261a2016-11-08 11:34:45 +11001281 pmd_entry = pmd_mkhuge(pmd_entry);
Dave Jiangf4200392017-02-22 15:40:06 -08001282 set_pmd_at(vmf->vma->vm_mm, pmd_addr, vmf->pmd, pmd_entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001283 spin_unlock(ptl);
Dave Jiangf4200392017-02-22 15:40:06 -08001284 trace_dax_pmd_load_hole(inode, vmf, zero_page, ret);
Ross Zwisler642261a2016-11-08 11:34:45 +11001285 return VM_FAULT_NOPAGE;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001286
1287fallback:
Dave Jiangf4200392017-02-22 15:40:06 -08001288 trace_dax_pmd_load_hole_fallback(inode, vmf, zero_page, ret);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001289 return VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001290}
1291
Jan Kara9a0dd422017-11-01 16:36:39 +01001292static int dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Dave Jianga2d58162017-02-24 14:56:59 -08001293 const struct iomap_ops *ops)
Ross Zwisler642261a2016-11-08 11:34:45 +11001294{
Dave Jiangf4200392017-02-22 15:40:06 -08001295 struct vm_area_struct *vma = vmf->vma;
Ross Zwisler642261a2016-11-08 11:34:45 +11001296 struct address_space *mapping = vma->vm_file->f_mapping;
Dave Jiangd8a849e2017-02-22 15:40:03 -08001297 unsigned long pmd_addr = vmf->address & PMD_MASK;
1298 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001299 bool sync;
Jan Kara9484ab12016-11-10 10:26:50 +11001300 unsigned int iomap_flags = (write ? IOMAP_WRITE : 0) | IOMAP_FAULT;
Ross Zwisler642261a2016-11-08 11:34:45 +11001301 struct inode *inode = mapping->host;
1302 int result = VM_FAULT_FALLBACK;
1303 struct iomap iomap = { 0 };
1304 pgoff_t max_pgoff, pgoff;
Ross Zwisler642261a2016-11-08 11:34:45 +11001305 void *entry;
1306 loff_t pos;
1307 int error;
Jan Kara302a5e32017-11-01 16:36:37 +01001308 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001309
Ross Zwisler282a8e02017-02-22 15:39:50 -08001310 /*
1311 * Check whether offset isn't beyond end of file now. Caller is
1312 * supposed to hold locks serializing us with truncate / punch hole so
1313 * this is a reliable test.
1314 */
1315 pgoff = linear_page_index(vma, pmd_addr);
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001316 max_pgoff = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001317
Dave Jiangf4200392017-02-22 15:40:06 -08001318 trace_dax_pmd_fault(inode, vmf, max_pgoff, 0);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001319
Ross Zwislerfffa2812017-08-25 15:55:36 -07001320 /*
1321 * Make sure that the faulting address's PMD offset (color) matches
1322 * the PMD offset from the start of the file. This is necessary so
1323 * that a PMD range in the page table overlaps exactly with a PMD
1324 * range in the radix tree.
1325 */
1326 if ((vmf->pgoff & PG_PMD_COLOUR) !=
1327 ((vmf->address >> PAGE_SHIFT) & PG_PMD_COLOUR))
1328 goto fallback;
1329
Ross Zwisler642261a2016-11-08 11:34:45 +11001330 /* Fall back to PTEs if we're going to COW */
1331 if (write && !(vma->vm_flags & VM_SHARED))
1332 goto fallback;
1333
1334 /* If the PMD would extend outside the VMA */
1335 if (pmd_addr < vma->vm_start)
1336 goto fallback;
1337 if ((pmd_addr + PMD_SIZE) > vma->vm_end)
1338 goto fallback;
1339
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001340 if (pgoff >= max_pgoff) {
Ross Zwisler282a8e02017-02-22 15:39:50 -08001341 result = VM_FAULT_SIGBUS;
1342 goto out;
1343 }
Ross Zwisler642261a2016-11-08 11:34:45 +11001344
1345 /* If the PMD would extend beyond the file size */
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001346 if ((pgoff | PG_PMD_COLOUR) >= max_pgoff)
Ross Zwisler642261a2016-11-08 11:34:45 +11001347 goto fallback;
1348
1349 /*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001350 * grab_mapping_entry() will make sure we get a 2MiB empty entry, a
1351 * 2MiB zero page entry or a DAX PMD. If it can't (because a 4k page
1352 * is already in the tree, for instance), it will return -EEXIST and
1353 * we just fall back to 4k entries.
Jan Kara9f141d62016-10-19 14:34:31 +02001354 */
1355 entry = grab_mapping_entry(mapping, pgoff, RADIX_DAX_PMD);
1356 if (IS_ERR(entry))
Ross Zwisler876f2942017-05-12 15:47:00 -07001357 goto fallback;
1358
1359 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001360 * It is possible, particularly with mixed reads & writes to private
1361 * mappings, that we have raced with a PTE fault that overlaps with
1362 * the PMD we need to set up. If so just return and the fault will be
1363 * retried.
1364 */
1365 if (!pmd_none(*vmf->pmd) && !pmd_trans_huge(*vmf->pmd) &&
1366 !pmd_devmap(*vmf->pmd)) {
1367 result = 0;
1368 goto unlock_entry;
1369 }
1370
1371 /*
Ross Zwisler876f2942017-05-12 15:47:00 -07001372 * Note that we don't use iomap_apply here. We aren't doing I/O, only
1373 * setting up a mapping, so really we're using iomap_begin() as a way
1374 * to look up our filesystem block.
1375 */
1376 pos = (loff_t)pgoff << PAGE_SHIFT;
1377 error = ops->iomap_begin(inode, pos, PMD_SIZE, iomap_flags, &iomap);
1378 if (error)
1379 goto unlock_entry;
1380
1381 if (iomap.offset + iomap.length < pos + PMD_SIZE)
Jan Kara9f141d62016-10-19 14:34:31 +02001382 goto finish_iomap;
1383
Dan Williamsaaa422c2017-11-13 16:38:44 -08001384 sync = dax_fault_is_synchronous(iomap_flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001385
Ross Zwisler642261a2016-11-08 11:34:45 +11001386 switch (iomap.type) {
1387 case IOMAP_MAPPED:
Jan Kara302a5e32017-11-01 16:36:37 +01001388 error = dax_iomap_pfn(&iomap, pos, PMD_SIZE, &pfn);
1389 if (error < 0)
1390 goto finish_iomap;
1391
Dan Williams3fe07912017-10-14 17:13:45 -07001392 entry = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karacaa51d22017-11-01 16:36:42 +01001393 RADIX_DAX_PMD, write && !sync);
Jan Kara302a5e32017-11-01 16:36:37 +01001394 if (IS_ERR(entry))
1395 goto finish_iomap;
1396
Jan Karacaa51d22017-11-01 16:36:42 +01001397 /*
1398 * If we are doing synchronous page fault and inode needs fsync,
1399 * we can insert PMD into page tables only after that happens.
1400 * Skip insertion for now and return the pfn so that caller can
1401 * insert it after fsync is done.
1402 */
1403 if (sync) {
1404 if (WARN_ON_ONCE(!pfnp))
1405 goto finish_iomap;
1406 *pfnp = pfn;
1407 result = VM_FAULT_NEEDDSYNC;
1408 goto finish_iomap;
1409 }
1410
Jan Kara302a5e32017-11-01 16:36:37 +01001411 trace_dax_pmd_insert_mapping(inode, vmf, PMD_SIZE, pfn, entry);
1412 result = vmf_insert_pfn_pmd(vma, vmf->address, vmf->pmd, pfn,
1413 write);
Ross Zwisler642261a2016-11-08 11:34:45 +11001414 break;
1415 case IOMAP_UNWRITTEN:
1416 case IOMAP_HOLE:
1417 if (WARN_ON_ONCE(write))
Ross Zwisler876f2942017-05-12 15:47:00 -07001418 break;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001419 result = dax_pmd_load_hole(vmf, &iomap, entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001420 break;
1421 default:
1422 WARN_ON_ONCE(1);
1423 break;
1424 }
1425
Jan Kara9f141d62016-10-19 14:34:31 +02001426 finish_iomap:
1427 if (ops->iomap_end) {
1428 int copied = PMD_SIZE;
1429
1430 if (result == VM_FAULT_FALLBACK)
1431 copied = 0;
1432 /*
1433 * The fault is done by now and there's no way back (other
1434 * thread may be already happily using PMD we have installed).
1435 * Just ignore error from ->iomap_end since we cannot do much
1436 * with it.
1437 */
1438 ops->iomap_end(inode, pos, PMD_SIZE, copied, iomap_flags,
1439 &iomap);
1440 }
Ross Zwisler876f2942017-05-12 15:47:00 -07001441 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001442 put_locked_mapping_entry(mapping, pgoff);
Ross Zwisler642261a2016-11-08 11:34:45 +11001443 fallback:
1444 if (result == VM_FAULT_FALLBACK) {
Dave Jiangd8a849e2017-02-22 15:40:03 -08001445 split_huge_pmd(vma, vmf->pmd, vmf->address);
Ross Zwisler642261a2016-11-08 11:34:45 +11001446 count_vm_event(THP_FAULT_FALLBACK);
1447 }
Ross Zwisler282a8e02017-02-22 15:39:50 -08001448out:
Dave Jiangf4200392017-02-22 15:40:06 -08001449 trace_dax_pmd_fault_done(inode, vmf, max_pgoff, result);
Ross Zwisler642261a2016-11-08 11:34:45 +11001450 return result;
1451}
Dave Jianga2d58162017-02-24 14:56:59 -08001452#else
Jan Kara9a0dd422017-11-01 16:36:39 +01001453static int dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Arnd Bergmann01cddfe2017-02-27 14:26:44 -08001454 const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001455{
1456 return VM_FAULT_FALLBACK;
1457}
Ross Zwisler642261a2016-11-08 11:34:45 +11001458#endif /* CONFIG_FS_DAX_PMD */
Dave Jianga2d58162017-02-24 14:56:59 -08001459
1460/**
1461 * dax_iomap_fault - handle a page fault on a DAX file
1462 * @vmf: The description of the fault
Jan Karacec04e82017-11-01 16:36:38 +01001463 * @pe_size: Size of the page to fault in
Jan Kara9a0dd422017-11-01 16:36:39 +01001464 * @pfnp: PFN to insert for synchronous faults if fsync is required
Jan Karac0b24622018-01-07 16:38:43 -05001465 * @iomap_errp: Storage for detailed error code in case of error
Jan Karacec04e82017-11-01 16:36:38 +01001466 * @ops: Iomap ops passed from the file system
Dave Jianga2d58162017-02-24 14:56:59 -08001467 *
1468 * When a page fault occurs, filesystems may call this helper in
1469 * their fault handler for DAX files. dax_iomap_fault() assumes the caller
1470 * has done all the necessary locking for page fault to proceed
1471 * successfully.
1472 */
Dave Jiangc791ace2017-02-24 14:57:08 -08001473int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
Jan Karac0b24622018-01-07 16:38:43 -05001474 pfn_t *pfnp, int *iomap_errp, const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001475{
Dave Jiangc791ace2017-02-24 14:57:08 -08001476 switch (pe_size) {
1477 case PE_SIZE_PTE:
Jan Karac0b24622018-01-07 16:38:43 -05001478 return dax_iomap_pte_fault(vmf, pfnp, iomap_errp, ops);
Dave Jiangc791ace2017-02-24 14:57:08 -08001479 case PE_SIZE_PMD:
Jan Kara9a0dd422017-11-01 16:36:39 +01001480 return dax_iomap_pmd_fault(vmf, pfnp, ops);
Dave Jianga2d58162017-02-24 14:56:59 -08001481 default:
1482 return VM_FAULT_FALLBACK;
1483 }
1484}
1485EXPORT_SYMBOL_GPL(dax_iomap_fault);
Jan Kara71eab6d2017-11-01 16:36:43 +01001486
1487/**
1488 * dax_insert_pfn_mkwrite - insert PTE or PMD entry into page tables
1489 * @vmf: The description of the fault
1490 * @pe_size: Size of entry to be inserted
1491 * @pfn: PFN to insert
1492 *
1493 * This function inserts writeable PTE or PMD entry into page tables for mmaped
1494 * DAX file. It takes care of marking corresponding radix tree entry as dirty
1495 * as well.
1496 */
1497static int dax_insert_pfn_mkwrite(struct vm_fault *vmf,
1498 enum page_entry_size pe_size,
1499 pfn_t pfn)
1500{
1501 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1502 void *entry, **slot;
1503 pgoff_t index = vmf->pgoff;
1504 int vmf_ret, error;
1505
1506 spin_lock_irq(&mapping->tree_lock);
1507 entry = get_unlocked_mapping_entry(mapping, index, &slot);
1508 /* Did we race with someone splitting entry or so? */
1509 if (!entry ||
1510 (pe_size == PE_SIZE_PTE && !dax_is_pte_entry(entry)) ||
1511 (pe_size == PE_SIZE_PMD && !dax_is_pmd_entry(entry))) {
1512 put_unlocked_mapping_entry(mapping, index, entry);
1513 spin_unlock_irq(&mapping->tree_lock);
1514 trace_dax_insert_pfn_mkwrite_no_entry(mapping->host, vmf,
1515 VM_FAULT_NOPAGE);
1516 return VM_FAULT_NOPAGE;
1517 }
1518 radix_tree_tag_set(&mapping->page_tree, index, PAGECACHE_TAG_DIRTY);
1519 entry = lock_slot(mapping, slot);
1520 spin_unlock_irq(&mapping->tree_lock);
1521 switch (pe_size) {
1522 case PE_SIZE_PTE:
1523 error = vm_insert_mixed_mkwrite(vmf->vma, vmf->address, pfn);
1524 vmf_ret = dax_fault_return(error);
1525 break;
1526#ifdef CONFIG_FS_DAX_PMD
1527 case PE_SIZE_PMD:
1528 vmf_ret = vmf_insert_pfn_pmd(vmf->vma, vmf->address, vmf->pmd,
1529 pfn, true);
1530 break;
1531#endif
1532 default:
1533 vmf_ret = VM_FAULT_FALLBACK;
1534 }
1535 put_locked_mapping_entry(mapping, index);
1536 trace_dax_insert_pfn_mkwrite(mapping->host, vmf, vmf_ret);
1537 return vmf_ret;
1538}
1539
1540/**
1541 * dax_finish_sync_fault - finish synchronous page fault
1542 * @vmf: The description of the fault
1543 * @pe_size: Size of entry to be inserted
1544 * @pfn: PFN to insert
1545 *
1546 * This function ensures that the file range touched by the page fault is
1547 * stored persistently on the media and handles inserting of appropriate page
1548 * table entry.
1549 */
1550int dax_finish_sync_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
1551 pfn_t pfn)
1552{
1553 int err;
1554 loff_t start = ((loff_t)vmf->pgoff) << PAGE_SHIFT;
1555 size_t len = 0;
1556
1557 if (pe_size == PE_SIZE_PTE)
1558 len = PAGE_SIZE;
1559 else if (pe_size == PE_SIZE_PMD)
1560 len = PMD_SIZE;
1561 else
1562 WARN_ON_ONCE(1);
1563 err = vfs_fsync_range(vmf->vma->vm_file, start, start + len - 1, 1);
1564 if (err)
1565 return VM_FAULT_SIGBUS;
1566 return dax_insert_pfn_mkwrite(vmf, pe_size, pfn);
1567}
1568EXPORT_SYMBOL_GPL(dax_finish_sync_fault);