blob: 004c8ac1117c4c5a73e898a276503cc0de367847 [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 Zwislerce95ab02016-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/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700161 * @entry may no longer be the entry at the index in the mapping.
162 * The important information it's conveying is whether the entry at
163 * this index used to be a PMD entry.
Ross Zwislere30331f2017-09-06 16:18:39 -0700164 */
Ross Zwislerd01ad192017-09-06 16:18:47 -0700165static void dax_wake_mapping_entry_waiter(struct address_space *mapping,
Ross Zwislere30331f2017-09-06 16:18:39 -0700166 pgoff_t index, void *entry, bool wake_all)
167{
168 struct exceptional_entry_key key;
169 wait_queue_head_t *wq;
170
171 wq = dax_entry_waitqueue(mapping, index, entry, &key);
172
173 /*
174 * Checking for locked entry and prepare_to_wait_exclusive() happens
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700175 * under the i_pages lock, ditto for entry handling in our callers.
Ross Zwislere30331f2017-09-06 16:18:39 -0700176 * So at this point all tasks that could have seen our entry locked
177 * must be in the waitqueue and the following check will see them.
178 */
179 if (waitqueue_active(wq))
180 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key);
181}
182
183/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700184 * Check whether the given slot is locked. Must be called with the i_pages
185 * lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200186 */
187static inline int slot_locked(struct address_space *mapping, void **slot)
188{
189 unsigned long entry = (unsigned long)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700190 radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock);
Jan Karaac401cc2016-05-12 18:29:18 +0200191 return entry & RADIX_DAX_ENTRY_LOCK;
192}
193
194/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700195 * Mark the given slot as locked. Must be called with the i_pages lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200196 */
197static inline void *lock_slot(struct address_space *mapping, void **slot)
198{
199 unsigned long entry = (unsigned long)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700200 radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock);
Jan Karaac401cc2016-05-12 18:29:18 +0200201
202 entry |= RADIX_DAX_ENTRY_LOCK;
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700203 radix_tree_replace_slot(&mapping->i_pages, slot, (void *)entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200204 return (void *)entry;
205}
206
207/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700208 * Mark the given slot as unlocked. Must be called with the i_pages lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200209 */
210static inline void *unlock_slot(struct address_space *mapping, void **slot)
211{
212 unsigned long entry = (unsigned long)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700213 radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock);
Jan Karaac401cc2016-05-12 18:29:18 +0200214
215 entry &= ~(unsigned long)RADIX_DAX_ENTRY_LOCK;
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700216 radix_tree_replace_slot(&mapping->i_pages, slot, (void *)entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200217 return (void *)entry;
218}
219
Matthew Wilcoxe7a121e2018-11-16 15:50:02 -0500220static void put_unlocked_mapping_entry(struct address_space *mapping,
221 pgoff_t index, void *entry);
222
Jan Karaac401cc2016-05-12 18:29:18 +0200223/*
224 * Lookup entry in radix tree, wait for it to become unlocked if it is
225 * exceptional entry and return it. The caller must call
226 * put_unlocked_mapping_entry() when he decided not to lock the entry or
227 * put_locked_mapping_entry() when he locked the entry and now wants to
228 * unlock it.
229 *
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700230 * Must be called with the i_pages lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200231 */
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800232static void *get_unlocked_mapping_entry(struct address_space *mapping,
233 pgoff_t index, void ***slotp)
Jan Karaac401cc2016-05-12 18:29:18 +0200234{
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100235 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200236 struct wait_exceptional_entry_queue ewait;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100237 wait_queue_head_t *wq;
Jan Karaac401cc2016-05-12 18:29:18 +0200238
239 init_wait(&ewait.wait);
240 ewait.wait.func = wake_exceptional_entry_func;
Jan Karaac401cc2016-05-12 18:29:18 +0200241
242 for (;;) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700243 entry = __radix_tree_lookup(&mapping->i_pages, index, NULL,
Jan Karaac401cc2016-05-12 18:29:18 +0200244 &slot);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700245 if (!entry ||
246 WARN_ON_ONCE(!radix_tree_exceptional_entry(entry)) ||
Jan Karaac401cc2016-05-12 18:29:18 +0200247 !slot_locked(mapping, slot)) {
248 if (slotp)
249 *slotp = slot;
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100250 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200251 }
Ross Zwisler63e95b52016-11-08 11:32:20 +1100252
253 wq = dax_entry_waitqueue(mapping, index, entry, &ewait.key);
Jan Karaac401cc2016-05-12 18:29:18 +0200254 prepare_to_wait_exclusive(wq, &ewait.wait,
255 TASK_UNINTERRUPTIBLE);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700256 xa_unlock_irq(&mapping->i_pages);
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800257 schedule();
Jan Karaac401cc2016-05-12 18:29:18 +0200258 finish_wait(wq, &ewait.wait);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700259 xa_lock_irq(&mapping->i_pages);
Jan Karaac401cc2016-05-12 18:29:18 +0200260 }
261}
262
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800263/*
264 * The only thing keeping the address space around is the i_pages lock
265 * (it's cycled in clear_inode() after removing the entries from i_pages)
266 * After we call xas_unlock_irq(), we cannot touch xas->xa.
267 */
268static void wait_entry_unlocked(struct address_space *mapping, pgoff_t index,
269 void ***slotp, void *entry)
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700270{
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800271 struct wait_exceptional_entry_queue ewait;
272 wait_queue_head_t *wq;
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700273
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800274 init_wait(&ewait.wait);
275 ewait.wait.func = wake_exceptional_entry_func;
276
277 wq = dax_entry_waitqueue(mapping, index, entry, &ewait.key);
Dan Williams9621ea62019-01-05 11:45:13 -0800278 /*
279 * Unlike get_unlocked_entry() there is no guarantee that this
280 * path ever successfully retrieves an unlocked entry before an
281 * inode dies. Perform a non-exclusive wait in case this path
282 * never successfully performs its own wake up.
283 */
284 prepare_to_wait(wq, &ewait.wait, TASK_UNINTERRUPTIBLE);
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800285 xa_unlock_irq(&mapping->i_pages);
286 schedule();
287 finish_wait(wq, &ewait.wait);
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700288}
289
290static void unlock_mapping_entry(struct address_space *mapping, pgoff_t index)
Jan Karab1aa8122016-12-14 15:07:24 -0800291{
292 void *entry, **slot;
293
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700294 xa_lock_irq(&mapping->i_pages);
295 entry = __radix_tree_lookup(&mapping->i_pages, index, NULL, &slot);
Jan Karab1aa8122016-12-14 15:07:24 -0800296 if (WARN_ON_ONCE(!entry || !radix_tree_exceptional_entry(entry) ||
297 !slot_locked(mapping, slot))) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700298 xa_unlock_irq(&mapping->i_pages);
Jan Karab1aa8122016-12-14 15:07:24 -0800299 return;
300 }
301 unlock_slot(mapping, slot);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700302 xa_unlock_irq(&mapping->i_pages);
Jan Karab1aa8122016-12-14 15:07:24 -0800303 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
304}
305
Jan Karaac401cc2016-05-12 18:29:18 +0200306static void put_locked_mapping_entry(struct address_space *mapping,
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700307 pgoff_t index)
Jan Karaac401cc2016-05-12 18:29:18 +0200308{
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700309 unlock_mapping_entry(mapping, index);
Jan Karaac401cc2016-05-12 18:29:18 +0200310}
311
312/*
313 * Called when we are done with radix tree entry we looked up via
314 * get_unlocked_mapping_entry() and which we didn't lock in the end.
315 */
316static void put_unlocked_mapping_entry(struct address_space *mapping,
317 pgoff_t index, void *entry)
318{
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700319 if (!entry)
Jan Karaac401cc2016-05-12 18:29:18 +0200320 return;
321
322 /* We have to wake up next waiter for the radix tree entry lock */
Ross Zwisler422476c2016-11-08 11:33:44 +1100323 dax_wake_mapping_entry_waiter(mapping, index, entry, false);
324}
325
Dan Williamsd2c997c2017-12-22 22:02:48 -0800326static unsigned long dax_entry_size(void *entry)
327{
328 if (dax_is_zero_entry(entry))
329 return 0;
330 else if (dax_is_empty_entry(entry))
331 return 0;
332 else if (dax_is_pmd_entry(entry))
333 return PMD_SIZE;
334 else
335 return PAGE_SIZE;
336}
337
338static unsigned long dax_radix_end_pfn(void *entry)
339{
340 return dax_radix_pfn(entry) + dax_entry_size(entry) / PAGE_SIZE;
341}
342
343/*
344 * Iterate through all mapped pfns represented by an entry, i.e. skip
345 * 'empty' and 'zero' entries.
346 */
347#define for_each_mapped_pfn(entry, pfn) \
348 for (pfn = dax_radix_pfn(entry); \
349 pfn < dax_radix_end_pfn(entry); pfn++)
350
Dan Williams73449da2018-07-13 21:49:50 -0700351/*
352 * TODO: for reflink+dax we need a way to associate a single page with
353 * multiple address_space instances at different linear_page_index()
354 * offsets.
355 */
356static void dax_associate_entry(void *entry, struct address_space *mapping,
357 struct vm_area_struct *vma, unsigned long address)
Dan Williamsd2c997c2017-12-22 22:02:48 -0800358{
Dan Williams73449da2018-07-13 21:49:50 -0700359 unsigned long size = dax_entry_size(entry), pfn, index;
360 int i = 0;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800361
362 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED))
363 return;
364
Dan Williams73449da2018-07-13 21:49:50 -0700365 index = linear_page_index(vma, address & ~(size - 1));
Dan Williamsd2c997c2017-12-22 22:02:48 -0800366 for_each_mapped_pfn(entry, pfn) {
367 struct page *page = pfn_to_page(pfn);
368
369 WARN_ON_ONCE(page->mapping);
370 page->mapping = mapping;
Dan Williams73449da2018-07-13 21:49:50 -0700371 page->index = index + i++;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800372 }
373}
374
375static void dax_disassociate_entry(void *entry, struct address_space *mapping,
376 bool trunc)
377{
378 unsigned long pfn;
379
380 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED))
381 return;
382
383 for_each_mapped_pfn(entry, pfn) {
384 struct page *page = pfn_to_page(pfn);
385
386 WARN_ON_ONCE(trunc && page_ref_count(page) > 1);
387 WARN_ON_ONCE(page->mapping && page->mapping != mapping);
388 page->mapping = NULL;
Dan Williams73449da2018-07-13 21:49:50 -0700389 page->index = 0;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800390 }
391}
392
Dan Williams5fac7402018-03-09 17:44:31 -0800393static struct page *dax_busy_page(void *entry)
394{
395 unsigned long pfn;
396
397 for_each_mapped_pfn(entry, pfn) {
398 struct page *page = pfn_to_page(pfn);
399
400 if (page_ref_count(page) > 1)
401 return page;
402 }
403 return NULL;
404}
405
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700406bool dax_lock_mapping_entry(struct page *page)
407{
408 pgoff_t index;
409 struct inode *inode;
410 bool did_lock = false;
411 void *entry = NULL, **slot;
412 struct address_space *mapping;
413
414 rcu_read_lock();
415 for (;;) {
416 mapping = READ_ONCE(page->mapping);
417
Matthew Wilcox384f1812018-11-27 13:16:33 -0800418 if (!mapping || !dax_mapping(mapping))
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700419 break;
420
421 /*
422 * In the device-dax case there's no need to lock, a
423 * struct dev_pagemap pin is sufficient to keep the
424 * inode alive, and we assume we have dev_pagemap pin
425 * otherwise we would not have a valid pfn_to_page()
426 * translation.
427 */
428 inode = mapping->host;
429 if (S_ISCHR(inode->i_mode)) {
430 did_lock = true;
431 break;
432 }
433
434 xa_lock_irq(&mapping->i_pages);
435 if (mapping != page->mapping) {
436 xa_unlock_irq(&mapping->i_pages);
437 continue;
438 }
439 index = page->index;
440
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800441 entry = __radix_tree_lookup(&mapping->i_pages, index,
442 NULL, &slot);
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700443 if (!entry) {
444 xa_unlock_irq(&mapping->i_pages);
445 break;
Matthew Wilcoxc5557722019-01-05 11:45:08 -0800446 } else if (slot_locked(mapping, slot)) {
447 rcu_read_unlock();
448 wait_entry_unlocked(mapping, index, &slot, entry);
449 rcu_read_lock();
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700450 continue;
451 }
452 lock_slot(mapping, slot);
453 did_lock = true;
454 xa_unlock_irq(&mapping->i_pages);
455 break;
456 }
457 rcu_read_unlock();
458
459 return did_lock;
460}
461
462void dax_unlock_mapping_entry(struct page *page)
463{
464 struct address_space *mapping = page->mapping;
465 struct inode *inode = mapping->host;
466
467 if (S_ISCHR(inode->i_mode))
468 return;
469
470 unlock_mapping_entry(mapping, page->index);
471}
472
Jan Karaac401cc2016-05-12 18:29:18 +0200473/*
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700474 * Find radix tree entry at given index. If it points to an exceptional entry,
475 * return it with the radix tree entry locked. If the radix tree doesn't
476 * contain given index, create an empty exceptional entry for the index and
477 * return with it locked.
Jan Karaac401cc2016-05-12 18:29:18 +0200478 *
Ross Zwisler642261a2016-11-08 11:34:45 +1100479 * When requesting an entry with size RADIX_DAX_PMD, grab_mapping_entry() will
480 * either return that locked entry or will return an error. This error will
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700481 * happen if there are any 4k entries within the 2MiB range that we are
482 * requesting.
Ross Zwisler642261a2016-11-08 11:34:45 +1100483 *
484 * We always favor 4k entries over 2MiB entries. There isn't a flow where we
485 * evict 4k entries in order to 'upgrade' them to a 2MiB entry. A 2MiB
486 * insertion will fail if it finds any 4k entries already in the tree, and a
487 * 4k insertion will cause an existing 2MiB entry to be unmapped and
488 * downgraded to 4k entries. This happens for both 2MiB huge zero pages as
489 * well as 2MiB empty entries.
490 *
491 * The exception to this downgrade path is for 2MiB DAX PMD entries that have
492 * real storage backing them. We will leave these real 2MiB DAX entries in
493 * the tree, and PTE writes will simply dirty the entire 2MiB DAX entry.
494 *
Jan Karaac401cc2016-05-12 18:29:18 +0200495 * Note: Unlike filemap_fault() we don't honor FAULT_FLAG_RETRY flags. For
496 * persistent memory the benefit is doubtful. We can add that later if we can
497 * show it helps.
498 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100499static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index,
500 unsigned long size_flag)
Jan Karaac401cc2016-05-12 18:29:18 +0200501{
Ross Zwisler642261a2016-11-08 11:34:45 +1100502 bool pmd_downgrade = false; /* splitting 2MiB entry into 4k entries? */
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100503 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200504
505restart:
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700506 xa_lock_irq(&mapping->i_pages);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100507 entry = get_unlocked_mapping_entry(mapping, index, &slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100508
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700509 if (WARN_ON_ONCE(entry && !radix_tree_exceptional_entry(entry))) {
510 entry = ERR_PTR(-EIO);
511 goto out_unlock;
512 }
513
Ross Zwisler642261a2016-11-08 11:34:45 +1100514 if (entry) {
515 if (size_flag & RADIX_DAX_PMD) {
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700516 if (dax_is_pte_entry(entry)) {
Ross Zwisler642261a2016-11-08 11:34:45 +1100517 put_unlocked_mapping_entry(mapping, index,
518 entry);
519 entry = ERR_PTR(-EEXIST);
520 goto out_unlock;
521 }
522 } else { /* trying to grab a PTE entry */
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700523 if (dax_is_pmd_entry(entry) &&
Ross Zwisler642261a2016-11-08 11:34:45 +1100524 (dax_is_zero_entry(entry) ||
525 dax_is_empty_entry(entry))) {
526 pmd_downgrade = true;
527 }
528 }
529 }
530
Jan Karaac401cc2016-05-12 18:29:18 +0200531 /* No entry for given index? Make sure radix tree is big enough. */
Ross Zwisler642261a2016-11-08 11:34:45 +1100532 if (!entry || pmd_downgrade) {
Jan Karaac401cc2016-05-12 18:29:18 +0200533 int err;
534
Ross Zwisler642261a2016-11-08 11:34:45 +1100535 if (pmd_downgrade) {
536 /*
537 * Make sure 'entry' remains valid while we drop
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700538 * the i_pages lock.
Ross Zwisler642261a2016-11-08 11:34:45 +1100539 */
540 entry = lock_slot(mapping, slot);
541 }
542
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700543 xa_unlock_irq(&mapping->i_pages);
Ross Zwisler642261a2016-11-08 11:34:45 +1100544 /*
545 * Besides huge zero pages the only other thing that gets
546 * downgraded are empty entries which don't need to be
547 * unmapped.
548 */
549 if (pmd_downgrade && dax_is_zero_entry(entry))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800550 unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
551 PG_PMD_NR, false);
Ross Zwisler642261a2016-11-08 11:34:45 +1100552
Jan Kara0cb80b42016-12-12 21:34:12 -0500553 err = radix_tree_preload(
554 mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
555 if (err) {
556 if (pmd_downgrade)
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700557 put_locked_mapping_entry(mapping, index);
Jan Kara0cb80b42016-12-12 21:34:12 -0500558 return ERR_PTR(err);
559 }
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700560 xa_lock_irq(&mapping->i_pages);
Ross Zwisler642261a2016-11-08 11:34:45 +1100561
Ross Zwislere11f8b72017-04-07 16:04:57 -0700562 if (!entry) {
563 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700564 * We needed to drop the i_pages lock while calling
Ross Zwislere11f8b72017-04-07 16:04:57 -0700565 * radix_tree_preload() and we didn't have an entry to
566 * lock. See if another thread inserted an entry at
567 * our index during this time.
568 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700569 entry = __radix_tree_lookup(&mapping->i_pages, index,
Ross Zwislere11f8b72017-04-07 16:04:57 -0700570 NULL, &slot);
571 if (entry) {
572 radix_tree_preload_end();
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700573 xa_unlock_irq(&mapping->i_pages);
Ross Zwislere11f8b72017-04-07 16:04:57 -0700574 goto restart;
575 }
576 }
577
Ross Zwisler642261a2016-11-08 11:34:45 +1100578 if (pmd_downgrade) {
Dan Williamsd2c997c2017-12-22 22:02:48 -0800579 dax_disassociate_entry(entry, mapping, false);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700580 radix_tree_delete(&mapping->i_pages, index);
Ross Zwisler642261a2016-11-08 11:34:45 +1100581 mapping->nrexceptional--;
582 dax_wake_mapping_entry_waiter(mapping, index, entry,
583 true);
584 }
585
586 entry = dax_radix_locked_entry(0, size_flag | RADIX_DAX_EMPTY);
587
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700588 err = __radix_tree_insert(&mapping->i_pages, index,
Ross Zwisler642261a2016-11-08 11:34:45 +1100589 dax_radix_order(entry), entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200590 radix_tree_preload_end();
591 if (err) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700592 xa_unlock_irq(&mapping->i_pages);
Ross Zwisler642261a2016-11-08 11:34:45 +1100593 /*
Ross Zwislere11f8b72017-04-07 16:04:57 -0700594 * Our insertion of a DAX entry failed, most likely
595 * because we were inserting a PMD entry and it
596 * collided with a PTE sized entry at a different
597 * index in the PMD range. We haven't inserted
598 * anything into the radix tree and have no waiters to
599 * wake.
Ross Zwisler642261a2016-11-08 11:34:45 +1100600 */
Jan Karaac401cc2016-05-12 18:29:18 +0200601 return ERR_PTR(err);
602 }
603 /* Good, we have inserted empty locked entry into the tree. */
604 mapping->nrexceptional++;
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700605 xa_unlock_irq(&mapping->i_pages);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100606 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200607 }
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100608 entry = lock_slot(mapping, slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100609 out_unlock:
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700610 xa_unlock_irq(&mapping->i_pages);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100611 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200612}
613
Dan Williams5fac7402018-03-09 17:44:31 -0800614/**
615 * dax_layout_busy_page - find first pinned page in @mapping
616 * @mapping: address space to scan for a page with ref count > 1
617 *
618 * DAX requires ZONE_DEVICE mapped pages. These pages are never
619 * 'onlined' to the page allocator so they are considered idle when
620 * page->count == 1. A filesystem uses this interface to determine if
621 * any page in the mapping is busy, i.e. for DMA, or other
622 * get_user_pages() usages.
623 *
624 * It is expected that the filesystem is holding locks to block the
625 * establishment of new mappings in this address_space. I.e. it expects
626 * to be able to run unmap_mapping_range() and subsequently not race
627 * mapping_mapped() becoming true.
628 */
629struct page *dax_layout_busy_page(struct address_space *mapping)
630{
631 pgoff_t indices[PAGEVEC_SIZE];
632 struct page *page = NULL;
633 struct pagevec pvec;
634 pgoff_t index, end;
635 unsigned i;
636
637 /*
638 * In the 'limited' case get_user_pages() for dax is disabled.
639 */
640 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED))
641 return NULL;
642
643 if (!dax_mapping(mapping) || !mapping_mapped(mapping))
644 return NULL;
645
646 pagevec_init(&pvec);
647 index = 0;
648 end = -1;
649
650 /*
651 * If we race get_user_pages_fast() here either we'll see the
652 * elevated page count in the pagevec_lookup and wait, or
653 * get_user_pages_fast() will see that the page it took a reference
654 * against is no longer mapped in the page tables and bail to the
655 * get_user_pages() slow path. The slow path is protected by
656 * pte_lock() and pmd_lock(). New references are not taken without
657 * holding those locks, and unmap_mapping_range() will not zero the
658 * pte or pmd without holding the respective lock, so we are
659 * guaranteed to either see new references or prevent new
660 * references from being established.
661 */
662 unmap_mapping_range(mapping, 0, 0, 1);
663
664 while (index < end && pagevec_lookup_entries(&pvec, mapping, index,
665 min(end - index, (pgoff_t)PAGEVEC_SIZE),
666 indices)) {
Dan Williamsd7782142018-10-06 10:56:11 -0700667 pgoff_t nr_pages = 1;
668
Dan Williams5fac7402018-03-09 17:44:31 -0800669 for (i = 0; i < pagevec_count(&pvec); i++) {
670 struct page *pvec_ent = pvec.pages[i];
671 void *entry;
672
673 index = indices[i];
674 if (index >= end)
675 break;
676
Ross Zwislercdbf8892018-07-29 16:59:16 -0400677 if (WARN_ON_ONCE(
678 !radix_tree_exceptional_entry(pvec_ent)))
Dan Williams5fac7402018-03-09 17:44:31 -0800679 continue;
680
681 xa_lock_irq(&mapping->i_pages);
682 entry = get_unlocked_mapping_entry(mapping, index, NULL);
Dan Williamsd7782142018-10-06 10:56:11 -0700683 if (entry) {
Dan Williams5fac7402018-03-09 17:44:31 -0800684 page = dax_busy_page(entry);
Dan Williamsd7782142018-10-06 10:56:11 -0700685 /*
686 * Account for multi-order entries at
687 * the end of the pagevec.
688 */
689 if (i + 1 >= pagevec_count(&pvec))
690 nr_pages = 1UL << dax_radix_order(entry);
691 }
Dan Williams5fac7402018-03-09 17:44:31 -0800692 put_unlocked_mapping_entry(mapping, index, entry);
693 xa_unlock_irq(&mapping->i_pages);
694 if (page)
695 break;
696 }
Ross Zwislercdbf8892018-07-29 16:59:16 -0400697
698 /*
699 * We don't expect normal struct page entries to exist in our
700 * tree, but we keep these pagevec calls so that this code is
701 * consistent with the common pattern for handling pagevecs
702 * throughout the kernel.
703 */
Dan Williams5fac7402018-03-09 17:44:31 -0800704 pagevec_remove_exceptionals(&pvec);
705 pagevec_release(&pvec);
Dan Williamsd7782142018-10-06 10:56:11 -0700706 index += nr_pages;
Dan Williams5fac7402018-03-09 17:44:31 -0800707
708 if (page)
709 break;
710 }
711 return page;
712}
713EXPORT_SYMBOL_GPL(dax_layout_busy_page);
714
Jan Karac6dcf522016-08-10 17:22:44 +0200715static int __dax_invalidate_mapping_entry(struct address_space *mapping,
716 pgoff_t index, bool trunc)
717{
718 int ret = 0;
719 void *entry;
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700720 struct radix_tree_root *pages = &mapping->i_pages;
Jan Karac6dcf522016-08-10 17:22:44 +0200721
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700722 xa_lock_irq(pages);
Jan Karac6dcf522016-08-10 17:22:44 +0200723 entry = get_unlocked_mapping_entry(mapping, index, NULL);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700724 if (!entry || WARN_ON_ONCE(!radix_tree_exceptional_entry(entry)))
Jan Karac6dcf522016-08-10 17:22:44 +0200725 goto out;
726 if (!trunc &&
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700727 (radix_tree_tag_get(pages, index, PAGECACHE_TAG_DIRTY) ||
728 radix_tree_tag_get(pages, index, PAGECACHE_TAG_TOWRITE)))
Jan Karac6dcf522016-08-10 17:22:44 +0200729 goto out;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800730 dax_disassociate_entry(entry, mapping, trunc);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700731 radix_tree_delete(pages, index);
Jan Karac6dcf522016-08-10 17:22:44 +0200732 mapping->nrexceptional--;
733 ret = 1;
734out:
735 put_unlocked_mapping_entry(mapping, index, entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700736 xa_unlock_irq(pages);
Jan Karac6dcf522016-08-10 17:22:44 +0200737 return ret;
738}
Jan Karaac401cc2016-05-12 18:29:18 +0200739/*
740 * Delete exceptional DAX entry at @index from @mapping. Wait for radix tree
741 * entry to get unlocked before deleting it.
742 */
743int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index)
744{
Jan Karac6dcf522016-08-10 17:22:44 +0200745 int ret = __dax_invalidate_mapping_entry(mapping, index, true);
Jan Karaac401cc2016-05-12 18:29:18 +0200746
Jan Karaac401cc2016-05-12 18:29:18 +0200747 /*
748 * This gets called from truncate / punch_hole path. As such, the caller
749 * must hold locks protecting against concurrent modifications of the
750 * radix tree (usually fs-private i_mmap_sem for writing). Since the
751 * caller has seen exceptional entry for this index, we better find it
752 * at that index as well...
753 */
Jan Karac6dcf522016-08-10 17:22:44 +0200754 WARN_ON_ONCE(!ret);
755 return ret;
756}
Jan Karaac401cc2016-05-12 18:29:18 +0200757
Jan Karac6dcf522016-08-10 17:22:44 +0200758/*
Jan Karac6dcf522016-08-10 17:22:44 +0200759 * Invalidate exceptional DAX entry if it is clean.
760 */
761int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
762 pgoff_t index)
763{
764 return __dax_invalidate_mapping_entry(mapping, index, false);
Jan Karaac401cc2016-05-12 18:29:18 +0200765}
766
Dan Williamscccbce62017-01-27 13:31:42 -0800767static int copy_user_dax(struct block_device *bdev, struct dax_device *dax_dev,
768 sector_t sector, size_t size, struct page *to,
769 unsigned long vaddr)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800770{
Dan Williamscccbce62017-01-27 13:31:42 -0800771 void *vto, *kaddr;
772 pgoff_t pgoff;
Dan Williamscccbce62017-01-27 13:31:42 -0800773 long rc;
774 int id;
Ross Zwislere2e05392015-08-18 13:55:41 -0600775
Dan Williamscccbce62017-01-27 13:31:42 -0800776 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
777 if (rc)
778 return rc;
779
780 id = dax_read_lock();
Huaisheng Ye86ed9132018-07-30 15:15:48 +0800781 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, NULL);
Dan Williamscccbce62017-01-27 13:31:42 -0800782 if (rc < 0) {
783 dax_read_unlock(id);
784 return rc;
785 }
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800786 vto = kmap_atomic(to);
Dan Williamscccbce62017-01-27 13:31:42 -0800787 copy_user_page(vto, (void __force *)kaddr, vaddr, to);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800788 kunmap_atomic(vto);
Dan Williamscccbce62017-01-27 13:31:42 -0800789 dax_read_unlock(id);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800790 return 0;
791}
792
Ross Zwisler642261a2016-11-08 11:34:45 +1100793/*
794 * By this point grab_mapping_entry() has ensured that we have a locked entry
795 * of the appropriate size so we don't have to worry about downgrading PMDs to
796 * PTEs. If we happen to be trying to insert a PTE and there is a PMD
797 * already in the tree, we will skip the insertion and just dirty the PMD as
798 * appropriate.
799 */
Jan Karaac401cc2016-05-12 18:29:18 +0200800static void *dax_insert_mapping_entry(struct address_space *mapping,
801 struct vm_fault *vmf,
Dan Williams3fe07912017-10-14 17:13:45 -0700802 void *entry, pfn_t pfn_t,
Jan Karaf5b7b742017-11-01 16:36:40 +0100803 unsigned long flags, bool dirty)
Ross Zwisler9973c982016-01-22 15:10:47 -0800804{
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700805 struct radix_tree_root *pages = &mapping->i_pages;
Dan Williams3fe07912017-10-14 17:13:45 -0700806 unsigned long pfn = pfn_t_to_pfn(pfn_t);
Jan Karaac401cc2016-05-12 18:29:18 +0200807 pgoff_t index = vmf->pgoff;
Dan Williams3fe07912017-10-14 17:13:45 -0700808 void *new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800809
Jan Karaf5b7b742017-11-01 16:36:40 +0100810 if (dirty)
Dmitry Monakhovd2b2a282016-02-05 15:36:55 -0800811 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Ross Zwisler9973c982016-01-22 15:10:47 -0800812
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700813 if (dax_is_zero_entry(entry) && !(flags & RADIX_DAX_ZERO_PAGE)) {
814 /* we are replacing a zero page with block mapping */
815 if (dax_is_pmd_entry(entry))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800816 unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
817 PG_PMD_NR, false);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700818 else /* pte entry */
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800819 unmap_mapping_pages(mapping, vmf->pgoff, 1, false);
Ross Zwisler9973c982016-01-22 15:10:47 -0800820 }
821
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700822 xa_lock_irq(pages);
Dan Williams3fe07912017-10-14 17:13:45 -0700823 new_entry = dax_radix_locked_entry(pfn, flags);
Dan Williamsd2c997c2017-12-22 22:02:48 -0800824 if (dax_entry_size(entry) != dax_entry_size(new_entry)) {
825 dax_disassociate_entry(entry, mapping, false);
Dan Williams73449da2018-07-13 21:49:50 -0700826 dax_associate_entry(new_entry, mapping, vmf->vma, vmf->address);
Dan Williamsd2c997c2017-12-22 22:02:48 -0800827 }
Ross Zwisler642261a2016-11-08 11:34:45 +1100828
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700829 if (dax_is_zero_entry(entry) || dax_is_empty_entry(entry)) {
Ross Zwisler642261a2016-11-08 11:34:45 +1100830 /*
831 * Only swap our new entry into the radix tree if the current
832 * entry is a zero page or an empty entry. If a normal PTE or
833 * PMD entry is already in the tree, we leave it alone. This
834 * means that if we are trying to insert a PTE and the
835 * existing entry is a PMD, we will just leave the PMD in the
836 * tree and dirty it if necessary.
837 */
Johannes Weinerf7942432016-12-12 16:43:41 -0800838 struct radix_tree_node *node;
Jan Karaac401cc2016-05-12 18:29:18 +0200839 void **slot;
840 void *ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800841
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700842 ret = __radix_tree_lookup(pages, index, &node, &slot);
Jan Karaac401cc2016-05-12 18:29:18 +0200843 WARN_ON_ONCE(ret != entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700844 __radix_tree_replace(pages, node, slot,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800845 new_entry, NULL);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700846 entry = new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800847 }
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700848
Jan Karaf5b7b742017-11-01 16:36:40 +0100849 if (dirty)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700850 radix_tree_tag_set(pages, index, PAGECACHE_TAG_DIRTY);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700851
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700852 xa_unlock_irq(pages);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700853 return entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800854}
855
Jan Kara4b4bb462016-12-14 15:07:53 -0800856static inline unsigned long
857pgoff_address(pgoff_t pgoff, struct vm_area_struct *vma)
858{
859 unsigned long address;
860
861 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
862 VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
863 return address;
864}
865
866/* Walk all mappings of a given index of a file and writeprotect them */
867static void dax_mapping_entry_mkclean(struct address_space *mapping,
868 pgoff_t index, unsigned long pfn)
869{
870 struct vm_area_struct *vma;
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800871 pte_t pte, *ptep = NULL;
872 pmd_t *pmdp = NULL;
Jan Kara4b4bb462016-12-14 15:07:53 -0800873 spinlock_t *ptl;
Jan Kara4b4bb462016-12-14 15:07:53 -0800874
875 i_mmap_lock_read(mapping);
876 vma_interval_tree_foreach(vma, &mapping->i_mmap, index, index) {
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400877 unsigned long address, start, end;
Jan Kara4b4bb462016-12-14 15:07:53 -0800878
879 cond_resched();
880
881 if (!(vma->vm_flags & VM_SHARED))
882 continue;
883
884 address = pgoff_address(index, vma);
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400885
886 /*
887 * Note because we provide start/end to follow_pte_pmd it will
888 * call mmu_notifier_invalidate_range_start() on our behalf
889 * before taking any lock.
890 */
891 if (follow_pte_pmd(vma->vm_mm, address, &start, &end, &ptep, &pmdp, &ptl))
Jan Kara4b4bb462016-12-14 15:07:53 -0800892 continue;
Jan Kara4b4bb462016-12-14 15:07:53 -0800893
Jérôme Glisse0f108512017-11-15 17:34:07 -0800894 /*
895 * No need to call mmu_notifier_invalidate_range() as we are
896 * downgrading page table protection not changing it to point
897 * to a new page.
898 *
Mike Rapoportad56b732018-03-21 21:22:47 +0200899 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -0800900 */
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800901 if (pmdp) {
902#ifdef CONFIG_FS_DAX_PMD
903 pmd_t pmd;
904
905 if (pfn != pmd_pfn(*pmdp))
906 goto unlock_pmd;
Linus Torvaldsf6f37322017-12-15 18:53:22 -0800907 if (!pmd_dirty(*pmdp) && !pmd_write(*pmdp))
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800908 goto unlock_pmd;
909
910 flush_cache_page(vma, address, pfn);
911 pmd = pmdp_huge_clear_flush(vma, address, pmdp);
912 pmd = pmd_wrprotect(pmd);
913 pmd = pmd_mkclean(pmd);
914 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800915unlock_pmd:
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800916#endif
Jan H. Schönherree190ca2018-01-31 16:14:04 -0800917 spin_unlock(ptl);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800918 } else {
919 if (pfn != pte_pfn(*ptep))
920 goto unlock_pte;
921 if (!pte_dirty(*ptep) && !pte_write(*ptep))
922 goto unlock_pte;
923
924 flush_cache_page(vma, address, pfn);
925 pte = ptep_clear_flush(vma, address, ptep);
926 pte = pte_wrprotect(pte);
927 pte = pte_mkclean(pte);
928 set_pte_at(vma->vm_mm, address, ptep, pte);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800929unlock_pte:
930 pte_unmap_unlock(ptep, ptl);
931 }
Jan Kara4b4bb462016-12-14 15:07:53 -0800932
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400933 mmu_notifier_invalidate_range_end(vma->vm_mm, start, end);
Jan Kara4b4bb462016-12-14 15:07:53 -0800934 }
935 i_mmap_unlock_read(mapping);
936}
937
Dan Williams3fe07912017-10-14 17:13:45 -0700938static int dax_writeback_one(struct dax_device *dax_dev,
939 struct address_space *mapping, pgoff_t index, void *entry)
Ross Zwisler9973c982016-01-22 15:10:47 -0800940{
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700941 struct radix_tree_root *pages = &mapping->i_pages;
Dan Williams3fe07912017-10-14 17:13:45 -0700942 void *entry2, **slot;
943 unsigned long pfn;
944 long ret = 0;
Dan Williamscccbce62017-01-27 13:31:42 -0800945 size_t size;
Ross Zwisler9973c982016-01-22 15:10:47 -0800946
Ross Zwisler9973c982016-01-22 15:10:47 -0800947 /*
Jan Karaa6abc2c2016-12-14 15:07:47 -0800948 * A page got tagged dirty in DAX mapping? Something is seriously
949 * wrong.
Ross Zwisler9973c982016-01-22 15:10:47 -0800950 */
Jan Karaa6abc2c2016-12-14 15:07:47 -0800951 if (WARN_ON(!radix_tree_exceptional_entry(entry)))
952 return -EIO;
Ross Zwisler9973c982016-01-22 15:10:47 -0800953
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700954 xa_lock_irq(pages);
Jan Karaa6abc2c2016-12-14 15:07:47 -0800955 entry2 = get_unlocked_mapping_entry(mapping, index, &slot);
956 /* Entry got punched out / reallocated? */
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700957 if (!entry2 || WARN_ON_ONCE(!radix_tree_exceptional_entry(entry2)))
Jan Karaa6abc2c2016-12-14 15:07:47 -0800958 goto put_unlocked;
959 /*
960 * Entry got reallocated elsewhere? No need to writeback. We have to
Dan Williams3fe07912017-10-14 17:13:45 -0700961 * compare pfns as we must not bail out due to difference in lockbit
Jan Karaa6abc2c2016-12-14 15:07:47 -0800962 * or entry type.
963 */
Dan Williams3fe07912017-10-14 17:13:45 -0700964 if (dax_radix_pfn(entry2) != dax_radix_pfn(entry))
Jan Karaa6abc2c2016-12-14 15:07:47 -0800965 goto put_unlocked;
Ross Zwisler642261a2016-11-08 11:34:45 +1100966 if (WARN_ON_ONCE(dax_is_empty_entry(entry) ||
967 dax_is_zero_entry(entry))) {
Ross Zwisler9973c982016-01-22 15:10:47 -0800968 ret = -EIO;
Jan Karaa6abc2c2016-12-14 15:07:47 -0800969 goto put_unlocked;
Ross Zwisler9973c982016-01-22 15:10:47 -0800970 }
971
Jan Karaa6abc2c2016-12-14 15:07:47 -0800972 /* Another fsync thread may have already written back this entry */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700973 if (!radix_tree_tag_get(pages, index, PAGECACHE_TAG_TOWRITE))
Jan Karaa6abc2c2016-12-14 15:07:47 -0800974 goto put_unlocked;
975 /* Lock the entry to serialize with page faults */
976 entry = lock_slot(mapping, slot);
977 /*
978 * We can clear the tag now but we have to be careful so that concurrent
979 * dax_writeback_one() calls for the same index cannot finish before we
980 * actually flush the caches. This is achieved as the calls will look
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700981 * at the entry only under the i_pages lock and once they do that
982 * they will see the entry locked and wait for it to unlock.
Jan Karaa6abc2c2016-12-14 15:07:47 -0800983 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700984 radix_tree_tag_clear(pages, index, PAGECACHE_TAG_TOWRITE);
985 xa_unlock_irq(pages);
Jan Karaa6abc2c2016-12-14 15:07:47 -0800986
Ross Zwisler642261a2016-11-08 11:34:45 +1100987 /*
988 * Even if dax_writeback_mapping_range() was given a wbc->range_start
989 * in the middle of a PMD, the 'index' we are given will be aligned to
Dan Williams3fe07912017-10-14 17:13:45 -0700990 * the start index of the PMD, as will the pfn we pull from 'entry'.
991 * This allows us to flush for PMD_SIZE and not have to worry about
992 * partial PMD writebacks.
Ross Zwisler642261a2016-11-08 11:34:45 +1100993 */
Dan Williams3fe07912017-10-14 17:13:45 -0700994 pfn = dax_radix_pfn(entry);
Dan Williamscccbce62017-01-27 13:31:42 -0800995 size = PAGE_SIZE << dax_radix_order(entry);
996
Dan Williams3fe07912017-10-14 17:13:45 -0700997 dax_mapping_entry_mkclean(mapping, index, pfn);
998 dax_flush(dax_dev, page_address(pfn_to_page(pfn)), size);
Jan Kara4b4bb462016-12-14 15:07:53 -0800999 /*
1000 * After we have flushed the cache, we can clear the dirty tag. There
1001 * cannot be new dirty data in the pfn after the flush has completed as
1002 * the pfn mappings are writeprotected and fault waits for mapping
1003 * entry lock.
1004 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001005 xa_lock_irq(pages);
1006 radix_tree_tag_clear(pages, index, PAGECACHE_TAG_DIRTY);
1007 xa_unlock_irq(pages);
Ross Zwislerf9bc3a02017-05-08 16:00:13 -07001008 trace_dax_writeback_one(mapping->host, index, size >> PAGE_SHIFT);
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001009 put_locked_mapping_entry(mapping, index);
Ross Zwisler9973c982016-01-22 15:10:47 -08001010 return ret;
1011
Jan Karaa6abc2c2016-12-14 15:07:47 -08001012 put_unlocked:
1013 put_unlocked_mapping_entry(mapping, index, entry2);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001014 xa_unlock_irq(pages);
Ross Zwisler9973c982016-01-22 15:10:47 -08001015 return ret;
1016}
1017
1018/*
1019 * Flush the mapping to the persistent domain within the byte range of [start,
1020 * end]. This is required by data integrity operations to ensure file data is
1021 * on persistent storage prior to completion of the operation.
1022 */
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001023int dax_writeback_mapping_range(struct address_space *mapping,
1024 struct block_device *bdev, struct writeback_control *wbc)
Ross Zwisler9973c982016-01-22 15:10:47 -08001025{
1026 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001027 pgoff_t start_index, end_index;
Ross Zwisler9973c982016-01-22 15:10:47 -08001028 pgoff_t indices[PAGEVEC_SIZE];
Dan Williamscccbce62017-01-27 13:31:42 -08001029 struct dax_device *dax_dev;
Ross Zwisler9973c982016-01-22 15:10:47 -08001030 struct pagevec pvec;
1031 bool done = false;
1032 int i, ret = 0;
Ross Zwisler9973c982016-01-22 15:10:47 -08001033
1034 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
1035 return -EIO;
1036
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001037 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
1038 return 0;
1039
Dan Williamscccbce62017-01-27 13:31:42 -08001040 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
1041 if (!dax_dev)
1042 return -EIO;
1043
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001044 start_index = wbc->range_start >> PAGE_SHIFT;
1045 end_index = wbc->range_end >> PAGE_SHIFT;
Ross Zwisler9973c982016-01-22 15:10:47 -08001046
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001047 trace_dax_writeback_range(inode, start_index, end_index);
1048
Ross Zwisler9973c982016-01-22 15:10:47 -08001049 tag_pages_for_writeback(mapping, start_index, end_index);
1050
Mel Gorman86679822017-11-15 17:37:52 -08001051 pagevec_init(&pvec);
Ross Zwisler9973c982016-01-22 15:10:47 -08001052 while (!done) {
1053 pvec.nr = find_get_entries_tag(mapping, start_index,
1054 PAGECACHE_TAG_TOWRITE, PAGEVEC_SIZE,
1055 pvec.pages, indices);
1056
1057 if (pvec.nr == 0)
1058 break;
1059
1060 for (i = 0; i < pvec.nr; i++) {
1061 if (indices[i] > end_index) {
1062 done = true;
1063 break;
1064 }
1065
Dan Williams3fe07912017-10-14 17:13:45 -07001066 ret = dax_writeback_one(dax_dev, mapping, indices[i],
1067 pvec.pages[i]);
Jeff Layton819ec6b2017-07-06 07:02:27 -04001068 if (ret < 0) {
1069 mapping_set_error(mapping, ret);
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001070 goto out;
Jeff Layton819ec6b2017-07-06 07:02:27 -04001071 }
Ross Zwisler9973c982016-01-22 15:10:47 -08001072 }
Jan Kara1eb643d2017-06-23 15:08:46 -07001073 start_index = indices[pvec.nr - 1] + 1;
Ross Zwisler9973c982016-01-22 15:10:47 -08001074 }
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001075out:
Dan Williamscccbce62017-01-27 13:31:42 -08001076 put_dax(dax_dev);
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001077 trace_dax_writeback_range_done(inode, start_index, end_index);
1078 return (ret < 0 ? ret : 0);
Ross Zwisler9973c982016-01-22 15:10:47 -08001079}
1080EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
1081
Jan Kara31a6f1a2017-11-01 16:36:32 +01001082static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001083{
Linus Torvaldsa3841f92017-11-17 09:51:57 -08001084 return (iomap->addr + (pos & PAGE_MASK) - iomap->offset) >> 9;
Jan Kara31a6f1a2017-11-01 16:36:32 +01001085}
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001086
Jan Kara5e161e42017-11-01 16:36:33 +01001087static int dax_iomap_pfn(struct iomap *iomap, loff_t pos, size_t size,
1088 pfn_t *pfnp)
1089{
1090 const sector_t sector = dax_iomap_sector(iomap, pos);
1091 pgoff_t pgoff;
Jan Kara5e161e42017-11-01 16:36:33 +01001092 int id, rc;
1093 long length;
1094
1095 rc = bdev_dax_pgoff(iomap->bdev, sector, size, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -08001096 if (rc)
1097 return rc;
Dan Williamscccbce62017-01-27 13:31:42 -08001098 id = dax_read_lock();
Jan Kara5e161e42017-11-01 16:36:33 +01001099 length = dax_direct_access(iomap->dax_dev, pgoff, PHYS_PFN(size),
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001100 NULL, pfnp);
Jan Kara5e161e42017-11-01 16:36:33 +01001101 if (length < 0) {
1102 rc = length;
1103 goto out;
Dan Williamscccbce62017-01-27 13:31:42 -08001104 }
Jan Kara5e161e42017-11-01 16:36:33 +01001105 rc = -EINVAL;
1106 if (PFN_PHYS(length) < size)
1107 goto out;
1108 if (pfn_t_to_pfn(*pfnp) & (PHYS_PFN(size)-1))
1109 goto out;
1110 /* For larger pages we need devmap */
1111 if (length > 1 && !pfn_t_devmap(*pfnp))
1112 goto out;
1113 rc = 0;
1114out:
Dan Williamscccbce62017-01-27 13:31:42 -08001115 dax_read_unlock(id);
Jan Kara5e161e42017-11-01 16:36:33 +01001116 return rc;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001117}
1118
Ross Zwislere30331f2017-09-06 16:18:39 -07001119/*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001120 * The user has performed a load from a hole in the file. Allocating a new
1121 * page in the file would cause excessive storage usage for workloads with
1122 * sparse files. Instead we insert a read-only mapping of the 4k zero page.
1123 * If this page is ever written to we will re-fault and change the mapping to
1124 * point to real DAX storage instead.
Ross Zwislere30331f2017-09-06 16:18:39 -07001125 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001126static vm_fault_t dax_load_hole(struct address_space *mapping, void *entry,
Ross Zwislere30331f2017-09-06 16:18:39 -07001127 struct vm_fault *vmf)
1128{
1129 struct inode *inode = mapping->host;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001130 unsigned long vaddr = vmf->address;
Matthew Wilcoxb90ca5c2018-09-11 21:27:44 -07001131 pfn_t pfn = pfn_to_pfn_t(my_zero_pfn(vaddr));
1132 vm_fault_t ret;
Ross Zwislere30331f2017-09-06 16:18:39 -07001133
Matthew Wilcoxcc4a90a2018-06-02 19:39:37 -07001134 dax_insert_mapping_entry(mapping, vmf, entry, pfn, RADIX_DAX_ZERO_PAGE,
1135 false);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001136 ret = vmf_insert_mixed(vmf->vma, vaddr, pfn);
Ross Zwislere30331f2017-09-06 16:18:39 -07001137 trace_dax_load_hole(inode, vmf, ret);
1138 return ret;
1139}
1140
Vishal Verma4b0228f2016-04-21 15:13:46 -04001141static bool dax_range_is_aligned(struct block_device *bdev,
1142 unsigned int offset, unsigned int length)
1143{
1144 unsigned short sector_size = bdev_logical_block_size(bdev);
1145
1146 if (!IS_ALIGNED(offset, sector_size))
1147 return false;
1148 if (!IS_ALIGNED(length, sector_size))
1149 return false;
1150
1151 return true;
1152}
1153
Dan Williamscccbce62017-01-27 13:31:42 -08001154int __dax_zero_page_range(struct block_device *bdev,
1155 struct dax_device *dax_dev, sector_t sector,
1156 unsigned int offset, unsigned int size)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001157{
Dan Williamscccbce62017-01-27 13:31:42 -08001158 if (dax_range_is_aligned(bdev, offset, size)) {
1159 sector_t start_sector = sector + (offset >> 9);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001160
1161 return blkdev_issue_zeroout(bdev, start_sector,
Linus Torvalds53ef7d02017-05-05 18:49:20 -07001162 size >> 9, GFP_NOFS, 0);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001163 } else {
Dan Williamscccbce62017-01-27 13:31:42 -08001164 pgoff_t pgoff;
1165 long rc, id;
1166 void *kaddr;
Dan Williamscccbce62017-01-27 13:31:42 -08001167
Dan Williamse84b83b2017-05-10 19:38:13 -07001168 rc = bdev_dax_pgoff(bdev, sector, PAGE_SIZE, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -08001169 if (rc)
1170 return rc;
1171
1172 id = dax_read_lock();
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001173 rc = dax_direct_access(dax_dev, pgoff, 1, &kaddr, NULL);
Dan Williamscccbce62017-01-27 13:31:42 -08001174 if (rc < 0) {
1175 dax_read_unlock(id);
1176 return rc;
1177 }
Dan Williams81f55872017-05-29 13:12:20 -07001178 memset(kaddr + offset, 0, size);
Mikulas Patockac3ca0152017-08-31 21:47:43 -04001179 dax_flush(dax_dev, kaddr + offset, size);
Dan Williamscccbce62017-01-27 13:31:42 -08001180 dax_read_unlock(id);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001181 }
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001182 return 0;
1183}
1184EXPORT_SYMBOL_GPL(__dax_zero_page_range);
1185
Christoph Hellwiga254e562016-09-19 11:24:49 +10001186static loff_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001187dax_iomap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
Christoph Hellwiga254e562016-09-19 11:24:49 +10001188 struct iomap *iomap)
1189{
Dan Williamscccbce62017-01-27 13:31:42 -08001190 struct block_device *bdev = iomap->bdev;
1191 struct dax_device *dax_dev = iomap->dax_dev;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001192 struct iov_iter *iter = data;
1193 loff_t end = pos + length, done = 0;
1194 ssize_t ret = 0;
Dan Williamsa77d4782018-03-16 17:36:44 -07001195 size_t xfer;
Dan Williamscccbce62017-01-27 13:31:42 -08001196 int id;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001197
1198 if (iov_iter_rw(iter) == READ) {
1199 end = min(end, i_size_read(inode));
1200 if (pos >= end)
1201 return 0;
1202
1203 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
1204 return iov_iter_zero(min(length, end - pos), iter);
1205 }
1206
1207 if (WARN_ON_ONCE(iomap->type != IOMAP_MAPPED))
1208 return -EIO;
1209
Jan Karae3fce682016-08-10 17:10:28 +02001210 /*
1211 * Write can allocate block for an area which has a hole page mapped
1212 * into page tables. We have to tear down these mappings so that data
1213 * written by write(2) is visible in mmap.
1214 */
Jan Karacd656372017-05-12 15:46:50 -07001215 if (iomap->flags & IOMAP_F_NEW) {
Jan Karae3fce682016-08-10 17:10:28 +02001216 invalidate_inode_pages2_range(inode->i_mapping,
1217 pos >> PAGE_SHIFT,
1218 (end - 1) >> PAGE_SHIFT);
1219 }
1220
Dan Williamscccbce62017-01-27 13:31:42 -08001221 id = dax_read_lock();
Christoph Hellwiga254e562016-09-19 11:24:49 +10001222 while (pos < end) {
1223 unsigned offset = pos & (PAGE_SIZE - 1);
Dan Williamscccbce62017-01-27 13:31:42 -08001224 const size_t size = ALIGN(length + offset, PAGE_SIZE);
1225 const sector_t sector = dax_iomap_sector(iomap, pos);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001226 ssize_t map_len;
Dan Williamscccbce62017-01-27 13:31:42 -08001227 pgoff_t pgoff;
1228 void *kaddr;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001229
Michal Hockod1908f52017-02-03 13:13:26 -08001230 if (fatal_signal_pending(current)) {
1231 ret = -EINTR;
1232 break;
1233 }
1234
Dan Williamscccbce62017-01-27 13:31:42 -08001235 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
1236 if (ret)
1237 break;
1238
1239 map_len = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size),
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001240 &kaddr, NULL);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001241 if (map_len < 0) {
1242 ret = map_len;
1243 break;
1244 }
1245
Dan Williamscccbce62017-01-27 13:31:42 -08001246 map_len = PFN_PHYS(map_len);
1247 kaddr += offset;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001248 map_len -= offset;
1249 if (map_len > end - pos)
1250 map_len = end - pos;
1251
Ross Zwislera2e050f2017-09-06 16:18:54 -07001252 /*
1253 * The userspace address for the memory copy has already been
1254 * validated via access_ok() in either vfs_read() or
1255 * vfs_write(), depending on which operation we are doing.
1256 */
Christoph Hellwiga254e562016-09-19 11:24:49 +10001257 if (iov_iter_rw(iter) == WRITE)
Dan Williamsa77d4782018-03-16 17:36:44 -07001258 xfer = dax_copy_from_iter(dax_dev, pgoff, kaddr,
Dan Williamsfec53772017-05-29 21:56:49 -07001259 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001260 else
Dan Williamsa77d4782018-03-16 17:36:44 -07001261 xfer = dax_copy_to_iter(dax_dev, pgoff, kaddr,
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07001262 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001263
Dan Williamsa77d4782018-03-16 17:36:44 -07001264 pos += xfer;
1265 length -= xfer;
1266 done += xfer;
1267
1268 if (xfer == 0)
1269 ret = -EFAULT;
1270 if (xfer < map_len)
1271 break;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001272 }
Dan Williamscccbce62017-01-27 13:31:42 -08001273 dax_read_unlock(id);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001274
1275 return done ? done : ret;
1276}
1277
1278/**
Ross Zwisler11c59c92016-11-08 11:32:46 +11001279 * dax_iomap_rw - Perform I/O to a DAX file
Christoph Hellwiga254e562016-09-19 11:24:49 +10001280 * @iocb: The control block for this I/O
1281 * @iter: The addresses to do I/O from or to
1282 * @ops: iomap ops passed from the file system
1283 *
1284 * This function performs read and write operations to directly mapped
1285 * persistent memory. The callers needs to take care of read/write exclusion
1286 * and evicting any page cache pages in the region under I/O.
1287 */
1288ssize_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001289dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001290 const struct iomap_ops *ops)
Christoph Hellwiga254e562016-09-19 11:24:49 +10001291{
1292 struct address_space *mapping = iocb->ki_filp->f_mapping;
1293 struct inode *inode = mapping->host;
1294 loff_t pos = iocb->ki_pos, ret = 0, done = 0;
1295 unsigned flags = 0;
1296
Christoph Hellwig168316d2017-02-08 14:43:13 -05001297 if (iov_iter_rw(iter) == WRITE) {
1298 lockdep_assert_held_exclusive(&inode->i_rwsem);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001299 flags |= IOMAP_WRITE;
Christoph Hellwig168316d2017-02-08 14:43:13 -05001300 } else {
1301 lockdep_assert_held(&inode->i_rwsem);
1302 }
Christoph Hellwiga254e562016-09-19 11:24:49 +10001303
Christoph Hellwiga254e562016-09-19 11:24:49 +10001304 while (iov_iter_count(iter)) {
1305 ret = iomap_apply(inode, pos, iov_iter_count(iter), flags, ops,
Ross Zwisler11c59c92016-11-08 11:32:46 +11001306 iter, dax_iomap_actor);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001307 if (ret <= 0)
1308 break;
1309 pos += ret;
1310 done += ret;
1311 }
1312
1313 iocb->ki_pos += done;
1314 return done ? done : ret;
1315}
Ross Zwisler11c59c92016-11-08 11:32:46 +11001316EXPORT_SYMBOL_GPL(dax_iomap_rw);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001317
Souptick Joarderab77dab2018-06-07 17:04:29 -07001318static vm_fault_t dax_fault_return(int error)
Jan Kara9f141d62016-10-19 14:34:31 +02001319{
1320 if (error == 0)
1321 return VM_FAULT_NOPAGE;
1322 if (error == -ENOMEM)
1323 return VM_FAULT_OOM;
1324 return VM_FAULT_SIGBUS;
1325}
1326
Dan Williamsaaa422c2017-11-13 16:38:44 -08001327/*
1328 * MAP_SYNC on a dax mapping guarantees dirty metadata is
1329 * flushed on write-faults (non-cow), but not read-faults.
1330 */
1331static bool dax_fault_is_synchronous(unsigned long flags,
1332 struct vm_area_struct *vma, struct iomap *iomap)
1333{
1334 return (flags & IOMAP_WRITE) && (vma->vm_flags & VM_SYNC)
1335 && (iomap->flags & IOMAP_F_DIRTY);
1336}
1337
Souptick Joarderab77dab2018-06-07 17:04:29 -07001338static vm_fault_t dax_iomap_pte_fault(struct vm_fault *vmf, pfn_t *pfnp,
Jan Karac0b24622018-01-07 16:38:43 -05001339 int *iomap_errp, const struct iomap_ops *ops)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001340{
Jan Karaa0987ad2017-11-01 16:36:34 +01001341 struct vm_area_struct *vma = vmf->vma;
1342 struct address_space *mapping = vma->vm_file->f_mapping;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001343 struct inode *inode = mapping->host;
Jan Kara1a29d852016-12-14 15:07:01 -08001344 unsigned long vaddr = vmf->address;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001345 loff_t pos = (loff_t)vmf->pgoff << PAGE_SHIFT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001346 struct iomap iomap = { 0 };
Jan Kara9484ab12016-11-10 10:26:50 +11001347 unsigned flags = IOMAP_FAULT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001348 int error, major = 0;
Jan Karad2c43ef2017-11-01 16:36:35 +01001349 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001350 bool sync;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001351 vm_fault_t ret = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001352 void *entry;
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001353 pfn_t pfn;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001354
Souptick Joarderab77dab2018-06-07 17:04:29 -07001355 trace_dax_pte_fault(inode, vmf, ret);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001356 /*
1357 * Check whether offset isn't beyond end of file now. Caller is supposed
1358 * to hold locks serializing us with truncate / punch hole so this is
1359 * a reliable test.
1360 */
Ross Zwislera9c42b32017-05-08 16:00:00 -07001361 if (pos >= i_size_read(inode)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001362 ret = VM_FAULT_SIGBUS;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001363 goto out;
1364 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001365
Jan Karad2c43ef2017-11-01 16:36:35 +01001366 if (write && !vmf->cow_page)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001367 flags |= IOMAP_WRITE;
1368
Jan Kara13e451f2017-05-12 15:46:57 -07001369 entry = grab_mapping_entry(mapping, vmf->pgoff, 0);
1370 if (IS_ERR(entry)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001371 ret = dax_fault_return(PTR_ERR(entry));
Jan Kara13e451f2017-05-12 15:46:57 -07001372 goto out;
1373 }
1374
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001375 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001376 * It is possible, particularly with mixed reads & writes to private
1377 * mappings, that we have raced with a PMD fault that overlaps with
1378 * the PTE we need to set up. If so just return and the fault will be
1379 * retried.
1380 */
1381 if (pmd_trans_huge(*vmf->pmd) || pmd_devmap(*vmf->pmd)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001382 ret = VM_FAULT_NOPAGE;
Ross Zwislere2093922017-06-02 14:46:37 -07001383 goto unlock_entry;
1384 }
1385
1386 /*
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001387 * Note that we don't bother to use iomap_apply here: DAX required
1388 * the file system block size to be equal the page size, which means
1389 * that we never have to deal with more than a single extent here.
1390 */
1391 error = ops->iomap_begin(inode, pos, PAGE_SIZE, flags, &iomap);
Jan Karac0b24622018-01-07 16:38:43 -05001392 if (iomap_errp)
1393 *iomap_errp = error;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001394 if (error) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001395 ret = dax_fault_return(error);
Jan Kara13e451f2017-05-12 15:46:57 -07001396 goto unlock_entry;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001397 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001398 if (WARN_ON_ONCE(iomap.offset + iomap.length < pos + PAGE_SIZE)) {
Jan Kara13e451f2017-05-12 15:46:57 -07001399 error = -EIO; /* fs corruption? */
1400 goto error_finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001401 }
1402
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001403 if (vmf->cow_page) {
Jan Kara31a6f1a2017-11-01 16:36:32 +01001404 sector_t sector = dax_iomap_sector(&iomap, pos);
1405
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001406 switch (iomap.type) {
1407 case IOMAP_HOLE:
1408 case IOMAP_UNWRITTEN:
1409 clear_user_highpage(vmf->cow_page, vaddr);
1410 break;
1411 case IOMAP_MAPPED:
Dan Williamscccbce62017-01-27 13:31:42 -08001412 error = copy_user_dax(iomap.bdev, iomap.dax_dev,
1413 sector, PAGE_SIZE, vmf->cow_page, vaddr);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001414 break;
1415 default:
1416 WARN_ON_ONCE(1);
1417 error = -EIO;
1418 break;
1419 }
1420
1421 if (error)
Jan Kara13e451f2017-05-12 15:46:57 -07001422 goto error_finish_iomap;
Jan Karab1aa8122016-12-14 15:07:24 -08001423
1424 __SetPageUptodate(vmf->cow_page);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001425 ret = finish_fault(vmf);
1426 if (!ret)
1427 ret = VM_FAULT_DONE_COW;
Jan Kara13e451f2017-05-12 15:46:57 -07001428 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001429 }
1430
Dan Williamsaaa422c2017-11-13 16:38:44 -08001431 sync = dax_fault_is_synchronous(flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001432
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001433 switch (iomap.type) {
1434 case IOMAP_MAPPED:
1435 if (iomap.flags & IOMAP_F_NEW) {
1436 count_vm_event(PGMAJFAULT);
Jan Karaa0987ad2017-11-01 16:36:34 +01001437 count_memcg_event_mm(vma->vm_mm, PGMAJFAULT);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001438 major = VM_FAULT_MAJOR;
1439 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001440 error = dax_iomap_pfn(&iomap, pos, PAGE_SIZE, &pfn);
1441 if (error < 0)
1442 goto error_finish_iomap;
1443
Dan Williams3fe07912017-10-14 17:13:45 -07001444 entry = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karacaa51d22017-11-01 16:36:42 +01001445 0, write && !sync);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001446
Jan Karacaa51d22017-11-01 16:36:42 +01001447 /*
1448 * If we are doing synchronous page fault and inode needs fsync,
1449 * we can insert PTE into page tables only after that happens.
1450 * Skip insertion for now and return the pfn so that caller can
1451 * insert it after fsync is done.
1452 */
1453 if (sync) {
1454 if (WARN_ON_ONCE(!pfnp)) {
1455 error = -EIO;
1456 goto error_finish_iomap;
1457 }
1458 *pfnp = pfn;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001459 ret = VM_FAULT_NEEDDSYNC | major;
Jan Karacaa51d22017-11-01 16:36:42 +01001460 goto finish_iomap;
1461 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001462 trace_dax_insert_mapping(inode, vmf, entry);
1463 if (write)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001464 ret = vmf_insert_mixed_mkwrite(vma, vaddr, pfn);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001465 else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001466 ret = vmf_insert_mixed(vma, vaddr, pfn);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001467
Souptick Joarderab77dab2018-06-07 17:04:29 -07001468 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001469 case IOMAP_UNWRITTEN:
1470 case IOMAP_HOLE:
Jan Karad2c43ef2017-11-01 16:36:35 +01001471 if (!write) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001472 ret = dax_load_hole(mapping, entry, vmf);
Jan Kara13e451f2017-05-12 15:46:57 -07001473 goto finish_iomap;
Ross Zwisler15502902016-11-08 11:33:26 +11001474 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001475 /*FALLTHRU*/
1476 default:
1477 WARN_ON_ONCE(1);
1478 error = -EIO;
1479 break;
1480 }
1481
Jan Kara13e451f2017-05-12 15:46:57 -07001482 error_finish_iomap:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001483 ret = dax_fault_return(error);
Jan Kara9f141d62016-10-19 14:34:31 +02001484 finish_iomap:
1485 if (ops->iomap_end) {
1486 int copied = PAGE_SIZE;
1487
Souptick Joarderab77dab2018-06-07 17:04:29 -07001488 if (ret & VM_FAULT_ERROR)
Jan Kara9f141d62016-10-19 14:34:31 +02001489 copied = 0;
1490 /*
1491 * The fault is done by now and there's no way back (other
1492 * thread may be already happily using PTE we have installed).
1493 * Just ignore error from ->iomap_end since we cannot do much
1494 * with it.
1495 */
1496 ops->iomap_end(inode, pos, PAGE_SIZE, copied, flags, &iomap);
Ross Zwisler15502902016-11-08 11:33:26 +11001497 }
Jan Kara13e451f2017-05-12 15:46:57 -07001498 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001499 put_locked_mapping_entry(mapping, vmf->pgoff);
Jan Kara13e451f2017-05-12 15:46:57 -07001500 out:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001501 trace_dax_pte_fault_done(inode, vmf, ret);
1502 return ret | major;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001503}
Ross Zwisler642261a2016-11-08 11:34:45 +11001504
1505#ifdef CONFIG_FS_DAX_PMD
Souptick Joarderab77dab2018-06-07 17:04:29 -07001506static vm_fault_t dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001507 void *entry)
Ross Zwisler642261a2016-11-08 11:34:45 +11001508{
Dave Jiangf4200392017-02-22 15:40:06 -08001509 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1510 unsigned long pmd_addr = vmf->address & PMD_MASK;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001511 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001512 struct page *zero_page;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001513 void *ret = NULL;
Ross Zwisler642261a2016-11-08 11:34:45 +11001514 spinlock_t *ptl;
1515 pmd_t pmd_entry;
Dan Williams3fe07912017-10-14 17:13:45 -07001516 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001517
Dave Jiangf4200392017-02-22 15:40:06 -08001518 zero_page = mm_get_huge_zero_page(vmf->vma->vm_mm);
Ross Zwisler642261a2016-11-08 11:34:45 +11001519
1520 if (unlikely(!zero_page))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001521 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001522
Dan Williams3fe07912017-10-14 17:13:45 -07001523 pfn = page_to_pfn_t(zero_page);
1524 ret = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karaf5b7b742017-11-01 16:36:40 +01001525 RADIX_DAX_PMD | RADIX_DAX_ZERO_PAGE, false);
Ross Zwisler642261a2016-11-08 11:34:45 +11001526
Dave Jiangf4200392017-02-22 15:40:06 -08001527 ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1528 if (!pmd_none(*(vmf->pmd))) {
Ross Zwisler642261a2016-11-08 11:34:45 +11001529 spin_unlock(ptl);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001530 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001531 }
1532
Dave Jiangf4200392017-02-22 15:40:06 -08001533 pmd_entry = mk_pmd(zero_page, vmf->vma->vm_page_prot);
Ross Zwisler642261a2016-11-08 11:34:45 +11001534 pmd_entry = pmd_mkhuge(pmd_entry);
Dave Jiangf4200392017-02-22 15:40:06 -08001535 set_pmd_at(vmf->vma->vm_mm, pmd_addr, vmf->pmd, pmd_entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001536 spin_unlock(ptl);
Dave Jiangf4200392017-02-22 15:40:06 -08001537 trace_dax_pmd_load_hole(inode, vmf, zero_page, ret);
Ross Zwisler642261a2016-11-08 11:34:45 +11001538 return VM_FAULT_NOPAGE;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001539
1540fallback:
Dave Jiangf4200392017-02-22 15:40:06 -08001541 trace_dax_pmd_load_hole_fallback(inode, vmf, zero_page, ret);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001542 return VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001543}
1544
Souptick Joarderab77dab2018-06-07 17:04:29 -07001545static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Dave Jianga2d58162017-02-24 14:56:59 -08001546 const struct iomap_ops *ops)
Ross Zwisler642261a2016-11-08 11:34:45 +11001547{
Dave Jiangf4200392017-02-22 15:40:06 -08001548 struct vm_area_struct *vma = vmf->vma;
Ross Zwisler642261a2016-11-08 11:34:45 +11001549 struct address_space *mapping = vma->vm_file->f_mapping;
Dave Jiangd8a849e2017-02-22 15:40:03 -08001550 unsigned long pmd_addr = vmf->address & PMD_MASK;
1551 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001552 bool sync;
Jan Kara9484ab12016-11-10 10:26:50 +11001553 unsigned int iomap_flags = (write ? IOMAP_WRITE : 0) | IOMAP_FAULT;
Ross Zwisler642261a2016-11-08 11:34:45 +11001554 struct inode *inode = mapping->host;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001555 vm_fault_t result = VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001556 struct iomap iomap = { 0 };
1557 pgoff_t max_pgoff, pgoff;
Ross Zwisler642261a2016-11-08 11:34:45 +11001558 void *entry;
1559 loff_t pos;
1560 int error;
Jan Kara302a5e32017-11-01 16:36:37 +01001561 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001562
Ross Zwisler282a8e02017-02-22 15:39:50 -08001563 /*
1564 * Check whether offset isn't beyond end of file now. Caller is
1565 * supposed to hold locks serializing us with truncate / punch hole so
1566 * this is a reliable test.
1567 */
1568 pgoff = linear_page_index(vma, pmd_addr);
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001569 max_pgoff = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001570
Dave Jiangf4200392017-02-22 15:40:06 -08001571 trace_dax_pmd_fault(inode, vmf, max_pgoff, 0);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001572
Ross Zwislerfffa2812017-08-25 15:55:36 -07001573 /*
1574 * Make sure that the faulting address's PMD offset (color) matches
1575 * the PMD offset from the start of the file. This is necessary so
1576 * that a PMD range in the page table overlaps exactly with a PMD
1577 * range in the radix tree.
1578 */
1579 if ((vmf->pgoff & PG_PMD_COLOUR) !=
1580 ((vmf->address >> PAGE_SHIFT) & PG_PMD_COLOUR))
1581 goto fallback;
1582
Ross Zwisler642261a2016-11-08 11:34:45 +11001583 /* Fall back to PTEs if we're going to COW */
1584 if (write && !(vma->vm_flags & VM_SHARED))
1585 goto fallback;
1586
1587 /* If the PMD would extend outside the VMA */
1588 if (pmd_addr < vma->vm_start)
1589 goto fallback;
1590 if ((pmd_addr + PMD_SIZE) > vma->vm_end)
1591 goto fallback;
1592
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001593 if (pgoff >= max_pgoff) {
Ross Zwisler282a8e02017-02-22 15:39:50 -08001594 result = VM_FAULT_SIGBUS;
1595 goto out;
1596 }
Ross Zwisler642261a2016-11-08 11:34:45 +11001597
1598 /* If the PMD would extend beyond the file size */
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001599 if ((pgoff | PG_PMD_COLOUR) >= max_pgoff)
Ross Zwisler642261a2016-11-08 11:34:45 +11001600 goto fallback;
1601
1602 /*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001603 * grab_mapping_entry() will make sure we get a 2MiB empty entry, a
1604 * 2MiB zero page entry or a DAX PMD. If it can't (because a 4k page
1605 * is already in the tree, for instance), it will return -EEXIST and
1606 * we just fall back to 4k entries.
Jan Kara9f141d62016-10-19 14:34:31 +02001607 */
1608 entry = grab_mapping_entry(mapping, pgoff, RADIX_DAX_PMD);
1609 if (IS_ERR(entry))
Ross Zwisler876f2942017-05-12 15:47:00 -07001610 goto fallback;
1611
1612 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001613 * It is possible, particularly with mixed reads & writes to private
1614 * mappings, that we have raced with a PTE fault that overlaps with
1615 * the PMD we need to set up. If so just return and the fault will be
1616 * retried.
1617 */
1618 if (!pmd_none(*vmf->pmd) && !pmd_trans_huge(*vmf->pmd) &&
1619 !pmd_devmap(*vmf->pmd)) {
1620 result = 0;
1621 goto unlock_entry;
1622 }
1623
1624 /*
Ross Zwisler876f2942017-05-12 15:47:00 -07001625 * Note that we don't use iomap_apply here. We aren't doing I/O, only
1626 * setting up a mapping, so really we're using iomap_begin() as a way
1627 * to look up our filesystem block.
1628 */
1629 pos = (loff_t)pgoff << PAGE_SHIFT;
1630 error = ops->iomap_begin(inode, pos, PMD_SIZE, iomap_flags, &iomap);
1631 if (error)
1632 goto unlock_entry;
1633
1634 if (iomap.offset + iomap.length < pos + PMD_SIZE)
Jan Kara9f141d62016-10-19 14:34:31 +02001635 goto finish_iomap;
1636
Dan Williamsaaa422c2017-11-13 16:38:44 -08001637 sync = dax_fault_is_synchronous(iomap_flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001638
Ross Zwisler642261a2016-11-08 11:34:45 +11001639 switch (iomap.type) {
1640 case IOMAP_MAPPED:
Jan Kara302a5e32017-11-01 16:36:37 +01001641 error = dax_iomap_pfn(&iomap, pos, PMD_SIZE, &pfn);
1642 if (error < 0)
1643 goto finish_iomap;
1644
Dan Williams3fe07912017-10-14 17:13:45 -07001645 entry = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
Jan Karacaa51d22017-11-01 16:36:42 +01001646 RADIX_DAX_PMD, write && !sync);
Jan Kara302a5e32017-11-01 16:36:37 +01001647
Jan Karacaa51d22017-11-01 16:36:42 +01001648 /*
1649 * If we are doing synchronous page fault and inode needs fsync,
1650 * we can insert PMD into page tables only after that happens.
1651 * Skip insertion for now and return the pfn so that caller can
1652 * insert it after fsync is done.
1653 */
1654 if (sync) {
1655 if (WARN_ON_ONCE(!pfnp))
1656 goto finish_iomap;
1657 *pfnp = pfn;
1658 result = VM_FAULT_NEEDDSYNC;
1659 goto finish_iomap;
1660 }
1661
Jan Kara302a5e32017-11-01 16:36:37 +01001662 trace_dax_pmd_insert_mapping(inode, vmf, PMD_SIZE, pfn, entry);
Dan Williams58db3812019-05-13 17:15:33 -07001663 result = vmf_insert_pfn_pmd(vmf, pfn, write);
Ross Zwisler642261a2016-11-08 11:34:45 +11001664 break;
1665 case IOMAP_UNWRITTEN:
1666 case IOMAP_HOLE:
1667 if (WARN_ON_ONCE(write))
Ross Zwisler876f2942017-05-12 15:47:00 -07001668 break;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001669 result = dax_pmd_load_hole(vmf, &iomap, entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001670 break;
1671 default:
1672 WARN_ON_ONCE(1);
1673 break;
1674 }
1675
Jan Kara9f141d62016-10-19 14:34:31 +02001676 finish_iomap:
1677 if (ops->iomap_end) {
1678 int copied = PMD_SIZE;
1679
1680 if (result == VM_FAULT_FALLBACK)
1681 copied = 0;
1682 /*
1683 * The fault is done by now and there's no way back (other
1684 * thread may be already happily using PMD we have installed).
1685 * Just ignore error from ->iomap_end since we cannot do much
1686 * with it.
1687 */
1688 ops->iomap_end(inode, pos, PMD_SIZE, copied, iomap_flags,
1689 &iomap);
1690 }
Ross Zwisler876f2942017-05-12 15:47:00 -07001691 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001692 put_locked_mapping_entry(mapping, pgoff);
Ross Zwisler642261a2016-11-08 11:34:45 +11001693 fallback:
1694 if (result == VM_FAULT_FALLBACK) {
Dave Jiangd8a849e2017-02-22 15:40:03 -08001695 split_huge_pmd(vma, vmf->pmd, vmf->address);
Ross Zwisler642261a2016-11-08 11:34:45 +11001696 count_vm_event(THP_FAULT_FALLBACK);
1697 }
Ross Zwisler282a8e02017-02-22 15:39:50 -08001698out:
Dave Jiangf4200392017-02-22 15:40:06 -08001699 trace_dax_pmd_fault_done(inode, vmf, max_pgoff, result);
Ross Zwisler642261a2016-11-08 11:34:45 +11001700 return result;
1701}
Dave Jianga2d58162017-02-24 14:56:59 -08001702#else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001703static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Arnd Bergmann01cddfe2017-02-27 14:26:44 -08001704 const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001705{
1706 return VM_FAULT_FALLBACK;
1707}
Ross Zwisler642261a2016-11-08 11:34:45 +11001708#endif /* CONFIG_FS_DAX_PMD */
Dave Jianga2d58162017-02-24 14:56:59 -08001709
1710/**
1711 * dax_iomap_fault - handle a page fault on a DAX file
1712 * @vmf: The description of the fault
Jan Karacec04e82017-11-01 16:36:38 +01001713 * @pe_size: Size of the page to fault in
Jan Kara9a0dd422017-11-01 16:36:39 +01001714 * @pfnp: PFN to insert for synchronous faults if fsync is required
Jan Karac0b24622018-01-07 16:38:43 -05001715 * @iomap_errp: Storage for detailed error code in case of error
Jan Karacec04e82017-11-01 16:36:38 +01001716 * @ops: Iomap ops passed from the file system
Dave Jianga2d58162017-02-24 14:56:59 -08001717 *
1718 * When a page fault occurs, filesystems may call this helper in
1719 * their fault handler for DAX files. dax_iomap_fault() assumes the caller
1720 * has done all the necessary locking for page fault to proceed
1721 * successfully.
1722 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001723vm_fault_t dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
Jan Karac0b24622018-01-07 16:38:43 -05001724 pfn_t *pfnp, int *iomap_errp, const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001725{
Dave Jiangc791ace2017-02-24 14:57:08 -08001726 switch (pe_size) {
1727 case PE_SIZE_PTE:
Jan Karac0b24622018-01-07 16:38:43 -05001728 return dax_iomap_pte_fault(vmf, pfnp, iomap_errp, ops);
Dave Jiangc791ace2017-02-24 14:57:08 -08001729 case PE_SIZE_PMD:
Jan Kara9a0dd422017-11-01 16:36:39 +01001730 return dax_iomap_pmd_fault(vmf, pfnp, ops);
Dave Jianga2d58162017-02-24 14:56:59 -08001731 default:
1732 return VM_FAULT_FALLBACK;
1733 }
1734}
1735EXPORT_SYMBOL_GPL(dax_iomap_fault);
Jan Kara71eab6d2017-11-01 16:36:43 +01001736
1737/**
1738 * dax_insert_pfn_mkwrite - insert PTE or PMD entry into page tables
1739 * @vmf: The description of the fault
1740 * @pe_size: Size of entry to be inserted
1741 * @pfn: PFN to insert
1742 *
1743 * This function inserts writeable PTE or PMD entry into page tables for mmaped
1744 * DAX file. It takes care of marking corresponding radix tree entry as dirty
1745 * as well.
1746 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001747static vm_fault_t dax_insert_pfn_mkwrite(struct vm_fault *vmf,
Jan Kara71eab6d2017-11-01 16:36:43 +01001748 enum page_entry_size pe_size,
1749 pfn_t pfn)
1750{
1751 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1752 void *entry, **slot;
1753 pgoff_t index = vmf->pgoff;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001754 vm_fault_t ret;
Jan Kara71eab6d2017-11-01 16:36:43 +01001755
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001756 xa_lock_irq(&mapping->i_pages);
Jan Kara71eab6d2017-11-01 16:36:43 +01001757 entry = get_unlocked_mapping_entry(mapping, index, &slot);
1758 /* Did we race with someone splitting entry or so? */
1759 if (!entry ||
1760 (pe_size == PE_SIZE_PTE && !dax_is_pte_entry(entry)) ||
1761 (pe_size == PE_SIZE_PMD && !dax_is_pmd_entry(entry))) {
1762 put_unlocked_mapping_entry(mapping, index, entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001763 xa_unlock_irq(&mapping->i_pages);
Jan Kara71eab6d2017-11-01 16:36:43 +01001764 trace_dax_insert_pfn_mkwrite_no_entry(mapping->host, vmf,
1765 VM_FAULT_NOPAGE);
1766 return VM_FAULT_NOPAGE;
1767 }
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001768 radix_tree_tag_set(&mapping->i_pages, index, PAGECACHE_TAG_DIRTY);
Jan Kara71eab6d2017-11-01 16:36:43 +01001769 entry = lock_slot(mapping, slot);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001770 xa_unlock_irq(&mapping->i_pages);
Jan Kara71eab6d2017-11-01 16:36:43 +01001771 switch (pe_size) {
1772 case PE_SIZE_PTE:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001773 ret = vmf_insert_mixed_mkwrite(vmf->vma, vmf->address, pfn);
Jan Kara71eab6d2017-11-01 16:36:43 +01001774 break;
1775#ifdef CONFIG_FS_DAX_PMD
1776 case PE_SIZE_PMD:
Dan Williams58db3812019-05-13 17:15:33 -07001777 ret = vmf_insert_pfn_pmd(vmf, pfn, FAULT_FLAG_WRITE);
Jan Kara71eab6d2017-11-01 16:36:43 +01001778 break;
1779#endif
1780 default:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001781 ret = VM_FAULT_FALLBACK;
Jan Kara71eab6d2017-11-01 16:36:43 +01001782 }
1783 put_locked_mapping_entry(mapping, index);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001784 trace_dax_insert_pfn_mkwrite(mapping->host, vmf, ret);
1785 return ret;
Jan Kara71eab6d2017-11-01 16:36:43 +01001786}
1787
1788/**
1789 * dax_finish_sync_fault - finish synchronous page fault
1790 * @vmf: The description of the fault
1791 * @pe_size: Size of entry to be inserted
1792 * @pfn: PFN to insert
1793 *
1794 * This function ensures that the file range touched by the page fault is
1795 * stored persistently on the media and handles inserting of appropriate page
1796 * table entry.
1797 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001798vm_fault_t dax_finish_sync_fault(struct vm_fault *vmf,
1799 enum page_entry_size pe_size, pfn_t pfn)
Jan Kara71eab6d2017-11-01 16:36:43 +01001800{
1801 int err;
1802 loff_t start = ((loff_t)vmf->pgoff) << PAGE_SHIFT;
1803 size_t len = 0;
1804
1805 if (pe_size == PE_SIZE_PTE)
1806 len = PAGE_SIZE;
1807 else if (pe_size == PE_SIZE_PMD)
1808 len = PMD_SIZE;
1809 else
1810 WARN_ON_ONCE(1);
1811 err = vfs_fsync_range(vmf->vma->vm_file, start, start + len - 1, 1);
1812 if (err)
1813 return VM_FAULT_SIGBUS;
1814 return dax_insert_pfn_mkwrite(vmf, pe_size, pfn);
1815}
1816EXPORT_SYMBOL_GPL(dax_finish_sync_fault);