blob: 83a510068b95f2ed5d5e0c7ff7b83e1a2d97f70b [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
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -040041static inline unsigned int pe_order(enum page_entry_size pe_size)
42{
43 if (pe_size == PE_SIZE_PTE)
44 return PAGE_SHIFT - PAGE_SHIFT;
45 if (pe_size == PE_SIZE_PMD)
46 return PMD_SHIFT - PAGE_SHIFT;
47 if (pe_size == PE_SIZE_PUD)
48 return PUD_SHIFT - PAGE_SHIFT;
49 return ~0;
50}
51
Jan Karaac401cc2016-05-12 18:29:18 +020052/* We choose 4096 entries - same as per-zone page wait tables */
53#define DAX_WAIT_TABLE_BITS 12
54#define DAX_WAIT_TABLE_ENTRIES (1 << DAX_WAIT_TABLE_BITS)
55
Ross Zwisler917f3452017-09-06 16:18:58 -070056/* The 'colour' (ie low bits) within a PMD of a page offset. */
57#define PG_PMD_COLOUR ((PMD_SIZE >> PAGE_SHIFT) - 1)
Matthew Wilcox977fbdc2018-01-31 16:17:36 -080058#define PG_PMD_NR (PMD_SIZE >> PAGE_SHIFT)
Ross Zwisler917f3452017-09-06 16:18:58 -070059
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -040060/* The order of a PMD entry */
61#define PMD_ORDER (PMD_SHIFT - PAGE_SHIFT)
62
Ross Zwislerce95ab02016-11-08 11:31:44 +110063static wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
Jan Karaac401cc2016-05-12 18:29:18 +020064
65static int __init init_dax_wait_table(void)
66{
67 int i;
68
69 for (i = 0; i < DAX_WAIT_TABLE_ENTRIES; i++)
70 init_waitqueue_head(wait_table + i);
71 return 0;
72}
73fs_initcall(init_dax_wait_table);
74
Ross Zwisler527b19d2017-09-06 16:18:51 -070075/*
Matthew Wilcox3159f942017-11-03 13:30:42 -040076 * DAX pagecache entries use XArray value entries so they can't be mistaken
77 * for pages. We use one bit for locking, one bit for the entry size (PMD)
78 * and two more to tell us if the entry is a zero page or an empty entry that
79 * is just used for locking. In total four special bits.
Ross Zwisler527b19d2017-09-06 16:18:51 -070080 *
81 * If the PMD bit isn't set the entry has size PAGE_SIZE, and if the ZERO_PAGE
82 * and EMPTY bits aren't set the entry is a normal DAX entry with a filesystem
83 * block allocation.
84 */
Matthew Wilcox3159f942017-11-03 13:30:42 -040085#define DAX_SHIFT (4)
86#define DAX_LOCKED (1UL << 0)
87#define DAX_PMD (1UL << 1)
88#define DAX_ZERO_PAGE (1UL << 2)
89#define DAX_EMPTY (1UL << 3)
Ross Zwisler527b19d2017-09-06 16:18:51 -070090
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -040091static unsigned long dax_to_pfn(void *entry)
Ross Zwisler527b19d2017-09-06 16:18:51 -070092{
Matthew Wilcox3159f942017-11-03 13:30:42 -040093 return xa_to_value(entry) >> DAX_SHIFT;
Ross Zwisler527b19d2017-09-06 16:18:51 -070094}
95
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -040096static void *dax_make_locked(unsigned long pfn, unsigned long flags)
Ross Zwisler527b19d2017-09-06 16:18:51 -070097{
Matthew Wilcox3159f942017-11-03 13:30:42 -040098 return xa_mk_value(flags | ((unsigned long)pfn << DAX_SHIFT) |
99 DAX_LOCKED);
Ross Zwisler527b19d2017-09-06 16:18:51 -0700100}
101
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -0400102static bool dax_is_locked(void *entry)
103{
104 return xa_to_value(entry) & DAX_LOCKED;
105}
106
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400107static unsigned int dax_entry_order(void *entry)
Ross Zwisler527b19d2017-09-06 16:18:51 -0700108{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400109 if (xa_to_value(entry) & DAX_PMD)
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -0400110 return PMD_ORDER;
Ross Zwisler527b19d2017-09-06 16:18:51 -0700111 return 0;
112}
113
Ross Zwisler642261a2016-11-08 11:34:45 +1100114static int dax_is_pmd_entry(void *entry)
115{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400116 return xa_to_value(entry) & DAX_PMD;
Ross Zwisler642261a2016-11-08 11:34:45 +1100117}
118
119static int dax_is_pte_entry(void *entry)
120{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400121 return !(xa_to_value(entry) & DAX_PMD);
Ross Zwisler642261a2016-11-08 11:34:45 +1100122}
123
124static int dax_is_zero_entry(void *entry)
125{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400126 return xa_to_value(entry) & DAX_ZERO_PAGE;
Ross Zwisler642261a2016-11-08 11:34:45 +1100127}
128
129static int dax_is_empty_entry(void *entry)
130{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400131 return xa_to_value(entry) & DAX_EMPTY;
Ross Zwisler642261a2016-11-08 11:34:45 +1100132}
133
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800134/*
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400135 * DAX page cache entry locking
Jan Karaac401cc2016-05-12 18:29:18 +0200136 */
137struct exceptional_entry_key {
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400138 struct xarray *xa;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100139 pgoff_t entry_start;
Jan Karaac401cc2016-05-12 18:29:18 +0200140};
141
142struct wait_exceptional_entry_queue {
Ingo Molnarac6424b2017-06-20 12:06:13 +0200143 wait_queue_entry_t wait;
Jan Karaac401cc2016-05-12 18:29:18 +0200144 struct exceptional_entry_key key;
145};
146
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400147static wait_queue_head_t *dax_entry_waitqueue(struct xarray *xa,
Ross Zwisler63e95b52016-11-08 11:32:20 +1100148 pgoff_t index, void *entry, struct exceptional_entry_key *key)
149{
150 unsigned long hash;
151
152 /*
153 * If 'entry' is a PMD, align the 'index' that we use for the wait
154 * queue to the start of that PMD. This ensures that all offsets in
155 * the range covered by the PMD map to the same bit lock.
156 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100157 if (dax_is_pmd_entry(entry))
Ross Zwisler917f3452017-09-06 16:18:58 -0700158 index &= ~PG_PMD_COLOUR;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100159
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400160 key->xa = xa;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100161 key->entry_start = index;
162
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400163 hash = hash_long((unsigned long)xa ^ index, DAX_WAIT_TABLE_BITS);
Ross Zwisler63e95b52016-11-08 11:32:20 +1100164 return wait_table + hash;
165}
166
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400167static int wake_exceptional_entry_func(wait_queue_entry_t *wait,
168 unsigned int mode, int sync, void *keyp)
Jan Karaac401cc2016-05-12 18:29:18 +0200169{
170 struct exceptional_entry_key *key = keyp;
171 struct wait_exceptional_entry_queue *ewait =
172 container_of(wait, struct wait_exceptional_entry_queue, wait);
173
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400174 if (key->xa != ewait->key.xa ||
Ross Zwisler63e95b52016-11-08 11:32:20 +1100175 key->entry_start != ewait->key.entry_start)
Jan Karaac401cc2016-05-12 18:29:18 +0200176 return 0;
177 return autoremove_wake_function(wait, mode, sync, NULL);
178}
179
180/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700181 * @entry may no longer be the entry at the index in the mapping.
182 * The important information it's conveying is whether the entry at
183 * this index used to be a PMD entry.
Ross Zwislere30331f2017-09-06 16:18:39 -0700184 */
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400185static void dax_wake_mapping_entry_waiter(struct xarray *xa,
Ross Zwislere30331f2017-09-06 16:18:39 -0700186 pgoff_t index, void *entry, bool wake_all)
187{
188 struct exceptional_entry_key key;
189 wait_queue_head_t *wq;
190
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400191 wq = dax_entry_waitqueue(xa, index, entry, &key);
Ross Zwislere30331f2017-09-06 16:18:39 -0700192
193 /*
194 * Checking for locked entry and prepare_to_wait_exclusive() happens
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700195 * under the i_pages lock, ditto for entry handling in our callers.
Ross Zwislere30331f2017-09-06 16:18:39 -0700196 * So at this point all tasks that could have seen our entry locked
197 * must be in the waitqueue and the following check will see them.
198 */
199 if (waitqueue_active(wq))
200 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key);
201}
202
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -0400203static void dax_wake_entry(struct xa_state *xas, void *entry, bool wake_all)
204{
205 return dax_wake_mapping_entry_waiter(xas->xa, xas->xa_index, entry,
206 wake_all);
207}
208
209/*
210 * Look up entry in page cache, wait for it to become unlocked if it
211 * is a DAX entry and return it. The caller must subsequently call
212 * put_unlocked_entry() if it did not lock the entry or dax_unlock_entry()
213 * if it did.
214 *
215 * Must be called with the i_pages lock held.
216 */
217static void *get_unlocked_entry(struct xa_state *xas)
218{
219 void *entry;
220 struct wait_exceptional_entry_queue ewait;
221 wait_queue_head_t *wq;
222
223 init_wait(&ewait.wait);
224 ewait.wait.func = wake_exceptional_entry_func;
225
226 for (;;) {
227 entry = xas_load(xas);
228 if (!entry || xa_is_internal(entry) ||
229 WARN_ON_ONCE(!xa_is_value(entry)) ||
230 !dax_is_locked(entry))
231 return entry;
232
233 wq = dax_entry_waitqueue(xas->xa, xas->xa_index, entry,
234 &ewait.key);
235 prepare_to_wait_exclusive(wq, &ewait.wait,
236 TASK_UNINTERRUPTIBLE);
237 xas_unlock_irq(xas);
238 xas_reset(xas);
239 schedule();
240 finish_wait(wq, &ewait.wait);
241 xas_lock_irq(xas);
242 }
243}
244
245static void put_unlocked_entry(struct xa_state *xas, void *entry)
246{
247 /* If we were the only waiter woken, wake the next one */
248 if (entry)
249 dax_wake_entry(xas, entry, false);
250}
251
252/*
253 * We used the xa_state to get the entry, but then we locked the entry and
254 * dropped the xa_lock, so we know the xa_state is stale and must be reset
255 * before use.
256 */
257static void dax_unlock_entry(struct xa_state *xas, void *entry)
258{
259 void *old;
260
261 xas_reset(xas);
262 xas_lock_irq(xas);
263 old = xas_store(xas, entry);
264 xas_unlock_irq(xas);
265 BUG_ON(!dax_is_locked(old));
266 dax_wake_entry(xas, entry, false);
267}
268
269/*
270 * Return: The entry stored at this location before it was locked.
271 */
272static void *dax_lock_entry(struct xa_state *xas, void *entry)
273{
274 unsigned long v = xa_to_value(entry);
275 return xas_store(xas, xa_mk_value(v | DAX_LOCKED));
276}
277
Ross Zwislere30331f2017-09-06 16:18:39 -0700278/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700279 * Check whether the given slot is locked. Must be called with the i_pages
280 * lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200281 */
282static inline int slot_locked(struct address_space *mapping, void **slot)
283{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400284 unsigned long entry = xa_to_value(
285 radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock));
286 return entry & DAX_LOCKED;
Jan Karaac401cc2016-05-12 18:29:18 +0200287}
288
289/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700290 * Mark the given slot as locked. Must be called with the i_pages lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200291 */
292static inline void *lock_slot(struct address_space *mapping, void **slot)
293{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400294 unsigned long v = xa_to_value(
295 radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock));
296 void *entry = xa_mk_value(v | DAX_LOCKED);
297 radix_tree_replace_slot(&mapping->i_pages, slot, entry);
298 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200299}
300
301/*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700302 * Mark the given slot as unlocked. Must be called with the i_pages lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200303 */
304static inline void *unlock_slot(struct address_space *mapping, void **slot)
305{
Matthew Wilcox3159f942017-11-03 13:30:42 -0400306 unsigned long v = xa_to_value(
307 radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock));
308 void *entry = xa_mk_value(v & ~DAX_LOCKED);
309 radix_tree_replace_slot(&mapping->i_pages, slot, entry);
310 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200311}
312
313/*
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400314 * Lookup entry in page cache, wait for it to become unlocked if it is
Matthew Wilcox3159f942017-11-03 13:30:42 -0400315 * a DAX entry and return it. The caller must call
Jan Karaac401cc2016-05-12 18:29:18 +0200316 * put_unlocked_mapping_entry() when he decided not to lock the entry or
317 * put_locked_mapping_entry() when he locked the entry and now wants to
318 * unlock it.
319 *
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700320 * Must be called with the i_pages lock held.
Jan Karaac401cc2016-05-12 18:29:18 +0200321 */
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700322static void *__get_unlocked_mapping_entry(struct address_space *mapping,
323 pgoff_t index, void ***slotp, bool (*wait_fn)(void))
Jan Karaac401cc2016-05-12 18:29:18 +0200324{
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100325 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200326 struct wait_exceptional_entry_queue ewait;
Ross Zwisler63e95b52016-11-08 11:32:20 +1100327 wait_queue_head_t *wq;
Jan Karaac401cc2016-05-12 18:29:18 +0200328
329 init_wait(&ewait.wait);
330 ewait.wait.func = wake_exceptional_entry_func;
Jan Karaac401cc2016-05-12 18:29:18 +0200331
332 for (;;) {
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700333 bool revalidate;
334
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700335 entry = __radix_tree_lookup(&mapping->i_pages, index, NULL,
Jan Karaac401cc2016-05-12 18:29:18 +0200336 &slot);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700337 if (!entry ||
Matthew Wilcox3159f942017-11-03 13:30:42 -0400338 WARN_ON_ONCE(!xa_is_value(entry)) ||
Jan Karaac401cc2016-05-12 18:29:18 +0200339 !slot_locked(mapping, slot)) {
340 if (slotp)
341 *slotp = slot;
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100342 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200343 }
Ross Zwisler63e95b52016-11-08 11:32:20 +1100344
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400345 wq = dax_entry_waitqueue(&mapping->i_pages, index, entry,
346 &ewait.key);
Jan Karaac401cc2016-05-12 18:29:18 +0200347 prepare_to_wait_exclusive(wq, &ewait.wait,
348 TASK_UNINTERRUPTIBLE);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700349 xa_unlock_irq(&mapping->i_pages);
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700350 revalidate = wait_fn();
Jan Karaac401cc2016-05-12 18:29:18 +0200351 finish_wait(wq, &ewait.wait);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700352 xa_lock_irq(&mapping->i_pages);
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700353 if (revalidate)
354 return ERR_PTR(-EAGAIN);
Jan Karaac401cc2016-05-12 18:29:18 +0200355 }
356}
357
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700358static bool entry_wait(void)
359{
360 schedule();
361 /*
362 * Never return an ERR_PTR() from
363 * __get_unlocked_mapping_entry(), just keep looping.
364 */
365 return false;
366}
367
368static void *get_unlocked_mapping_entry(struct address_space *mapping,
369 pgoff_t index, void ***slotp)
370{
371 return __get_unlocked_mapping_entry(mapping, index, slotp, entry_wait);
372}
373
374static void unlock_mapping_entry(struct address_space *mapping, pgoff_t index)
Jan Karab1aa8122016-12-14 15:07:24 -0800375{
376 void *entry, **slot;
377
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700378 xa_lock_irq(&mapping->i_pages);
379 entry = __radix_tree_lookup(&mapping->i_pages, index, NULL, &slot);
Matthew Wilcox3159f942017-11-03 13:30:42 -0400380 if (WARN_ON_ONCE(!entry || !xa_is_value(entry) ||
Jan Karab1aa8122016-12-14 15:07:24 -0800381 !slot_locked(mapping, slot))) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700382 xa_unlock_irq(&mapping->i_pages);
Jan Karab1aa8122016-12-14 15:07:24 -0800383 return;
384 }
385 unlock_slot(mapping, slot);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700386 xa_unlock_irq(&mapping->i_pages);
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400387 dax_wake_mapping_entry_waiter(&mapping->i_pages, index, entry, false);
Jan Karab1aa8122016-12-14 15:07:24 -0800388}
389
Jan Karaac401cc2016-05-12 18:29:18 +0200390static void put_locked_mapping_entry(struct address_space *mapping,
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700391 pgoff_t index)
Jan Karaac401cc2016-05-12 18:29:18 +0200392{
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700393 unlock_mapping_entry(mapping, index);
Jan Karaac401cc2016-05-12 18:29:18 +0200394}
395
396/*
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400397 * Called when we are done with page cache entry we looked up via
Jan Karaac401cc2016-05-12 18:29:18 +0200398 * get_unlocked_mapping_entry() and which we didn't lock in the end.
399 */
400static void put_unlocked_mapping_entry(struct address_space *mapping,
401 pgoff_t index, void *entry)
402{
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700403 if (!entry)
Jan Karaac401cc2016-05-12 18:29:18 +0200404 return;
405
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400406 /* We have to wake up next waiter for the page cache entry lock */
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400407 dax_wake_mapping_entry_waiter(&mapping->i_pages, index, entry, false);
Ross Zwisler422476c2016-11-08 11:33:44 +1100408}
409
Dan Williamsd2c997c2017-12-22 22:02:48 -0800410static unsigned long dax_entry_size(void *entry)
411{
412 if (dax_is_zero_entry(entry))
413 return 0;
414 else if (dax_is_empty_entry(entry))
415 return 0;
416 else if (dax_is_pmd_entry(entry))
417 return PMD_SIZE;
418 else
419 return PAGE_SIZE;
420}
421
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400422static unsigned long dax_end_pfn(void *entry)
Dan Williamsd2c997c2017-12-22 22:02:48 -0800423{
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400424 return dax_to_pfn(entry) + dax_entry_size(entry) / PAGE_SIZE;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800425}
426
427/*
428 * Iterate through all mapped pfns represented by an entry, i.e. skip
429 * 'empty' and 'zero' entries.
430 */
431#define for_each_mapped_pfn(entry, pfn) \
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400432 for (pfn = dax_to_pfn(entry); \
433 pfn < dax_end_pfn(entry); pfn++)
Dan Williamsd2c997c2017-12-22 22:02:48 -0800434
Dan Williams73449da2018-07-13 21:49:50 -0700435/*
436 * TODO: for reflink+dax we need a way to associate a single page with
437 * multiple address_space instances at different linear_page_index()
438 * offsets.
439 */
440static void dax_associate_entry(void *entry, struct address_space *mapping,
441 struct vm_area_struct *vma, unsigned long address)
Dan Williamsd2c997c2017-12-22 22:02:48 -0800442{
Dan Williams73449da2018-07-13 21:49:50 -0700443 unsigned long size = dax_entry_size(entry), pfn, index;
444 int i = 0;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800445
446 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED))
447 return;
448
Dan Williams73449da2018-07-13 21:49:50 -0700449 index = linear_page_index(vma, address & ~(size - 1));
Dan Williamsd2c997c2017-12-22 22:02:48 -0800450 for_each_mapped_pfn(entry, pfn) {
451 struct page *page = pfn_to_page(pfn);
452
453 WARN_ON_ONCE(page->mapping);
454 page->mapping = mapping;
Dan Williams73449da2018-07-13 21:49:50 -0700455 page->index = index + i++;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800456 }
457}
458
459static void dax_disassociate_entry(void *entry, struct address_space *mapping,
460 bool trunc)
461{
462 unsigned long pfn;
463
464 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED))
465 return;
466
467 for_each_mapped_pfn(entry, pfn) {
468 struct page *page = pfn_to_page(pfn);
469
470 WARN_ON_ONCE(trunc && page_ref_count(page) > 1);
471 WARN_ON_ONCE(page->mapping && page->mapping != mapping);
472 page->mapping = NULL;
Dan Williams73449da2018-07-13 21:49:50 -0700473 page->index = 0;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800474 }
475}
476
Dan Williams5fac7402018-03-09 17:44:31 -0800477static struct page *dax_busy_page(void *entry)
478{
479 unsigned long pfn;
480
481 for_each_mapped_pfn(entry, pfn) {
482 struct page *page = pfn_to_page(pfn);
483
484 if (page_ref_count(page) > 1)
485 return page;
486 }
487 return NULL;
488}
489
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700490static bool entry_wait_revalidate(void)
491{
492 rcu_read_unlock();
493 schedule();
494 rcu_read_lock();
495
496 /*
497 * Tell __get_unlocked_mapping_entry() to take a break, we need
498 * to revalidate page->mapping after dropping locks
499 */
500 return true;
501}
502
503bool dax_lock_mapping_entry(struct page *page)
504{
505 pgoff_t index;
506 struct inode *inode;
507 bool did_lock = false;
508 void *entry = NULL, **slot;
509 struct address_space *mapping;
510
511 rcu_read_lock();
512 for (;;) {
513 mapping = READ_ONCE(page->mapping);
514
515 if (!dax_mapping(mapping))
516 break;
517
518 /*
519 * In the device-dax case there's no need to lock, a
520 * struct dev_pagemap pin is sufficient to keep the
521 * inode alive, and we assume we have dev_pagemap pin
522 * otherwise we would not have a valid pfn_to_page()
523 * translation.
524 */
525 inode = mapping->host;
526 if (S_ISCHR(inode->i_mode)) {
527 did_lock = true;
528 break;
529 }
530
531 xa_lock_irq(&mapping->i_pages);
532 if (mapping != page->mapping) {
533 xa_unlock_irq(&mapping->i_pages);
534 continue;
535 }
536 index = page->index;
537
538 entry = __get_unlocked_mapping_entry(mapping, index, &slot,
539 entry_wait_revalidate);
540 if (!entry) {
541 xa_unlock_irq(&mapping->i_pages);
542 break;
543 } else if (IS_ERR(entry)) {
544 WARN_ON_ONCE(PTR_ERR(entry) != -EAGAIN);
545 continue;
546 }
547 lock_slot(mapping, slot);
548 did_lock = true;
549 xa_unlock_irq(&mapping->i_pages);
550 break;
551 }
552 rcu_read_unlock();
553
554 return did_lock;
555}
556
557void dax_unlock_mapping_entry(struct page *page)
558{
559 struct address_space *mapping = page->mapping;
560 struct inode *inode = mapping->host;
561
562 if (S_ISCHR(inode->i_mode))
563 return;
564
565 unlock_mapping_entry(mapping, page->index);
566}
567
Jan Karaac401cc2016-05-12 18:29:18 +0200568/*
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400569 * Find page cache entry at given index. If it is a DAX entry, return it
570 * with the entry locked. If the page cache doesn't contain an entry at
571 * that index, add a locked empty entry.
Jan Karaac401cc2016-05-12 18:29:18 +0200572 *
Matthew Wilcox3159f942017-11-03 13:30:42 -0400573 * When requesting an entry with size DAX_PMD, grab_mapping_entry() will
Ross Zwisler642261a2016-11-08 11:34:45 +1100574 * either return that locked entry or will return an error. This error will
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700575 * happen if there are any 4k entries within the 2MiB range that we are
576 * requesting.
Ross Zwisler642261a2016-11-08 11:34:45 +1100577 *
578 * We always favor 4k entries over 2MiB entries. There isn't a flow where we
579 * evict 4k entries in order to 'upgrade' them to a 2MiB entry. A 2MiB
580 * insertion will fail if it finds any 4k entries already in the tree, and a
581 * 4k insertion will cause an existing 2MiB entry to be unmapped and
582 * downgraded to 4k entries. This happens for both 2MiB huge zero pages as
583 * well as 2MiB empty entries.
584 *
585 * The exception to this downgrade path is for 2MiB DAX PMD entries that have
586 * real storage backing them. We will leave these real 2MiB DAX entries in
587 * the tree, and PTE writes will simply dirty the entire 2MiB DAX entry.
588 *
Jan Karaac401cc2016-05-12 18:29:18 +0200589 * Note: Unlike filemap_fault() we don't honor FAULT_FLAG_RETRY flags. For
590 * persistent memory the benefit is doubtful. We can add that later if we can
591 * show it helps.
592 */
Ross Zwisler642261a2016-11-08 11:34:45 +1100593static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index,
594 unsigned long size_flag)
Jan Karaac401cc2016-05-12 18:29:18 +0200595{
Ross Zwisler642261a2016-11-08 11:34:45 +1100596 bool pmd_downgrade = false; /* splitting 2MiB entry into 4k entries? */
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100597 void *entry, **slot;
Jan Karaac401cc2016-05-12 18:29:18 +0200598
599restart:
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700600 xa_lock_irq(&mapping->i_pages);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100601 entry = get_unlocked_mapping_entry(mapping, index, &slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100602
Matthew Wilcox3159f942017-11-03 13:30:42 -0400603 if (WARN_ON_ONCE(entry && !xa_is_value(entry))) {
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700604 entry = ERR_PTR(-EIO);
605 goto out_unlock;
606 }
607
Ross Zwisler642261a2016-11-08 11:34:45 +1100608 if (entry) {
Matthew Wilcox3159f942017-11-03 13:30:42 -0400609 if (size_flag & DAX_PMD) {
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700610 if (dax_is_pte_entry(entry)) {
Ross Zwisler642261a2016-11-08 11:34:45 +1100611 put_unlocked_mapping_entry(mapping, index,
612 entry);
613 entry = ERR_PTR(-EEXIST);
614 goto out_unlock;
615 }
616 } else { /* trying to grab a PTE entry */
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700617 if (dax_is_pmd_entry(entry) &&
Ross Zwisler642261a2016-11-08 11:34:45 +1100618 (dax_is_zero_entry(entry) ||
619 dax_is_empty_entry(entry))) {
620 pmd_downgrade = true;
621 }
622 }
623 }
624
Jan Karaac401cc2016-05-12 18:29:18 +0200625 /* No entry for given index? Make sure radix tree is big enough. */
Ross Zwisler642261a2016-11-08 11:34:45 +1100626 if (!entry || pmd_downgrade) {
Jan Karaac401cc2016-05-12 18:29:18 +0200627 int err;
628
Ross Zwisler642261a2016-11-08 11:34:45 +1100629 if (pmd_downgrade) {
630 /*
631 * Make sure 'entry' remains valid while we drop
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700632 * the i_pages lock.
Ross Zwisler642261a2016-11-08 11:34:45 +1100633 */
634 entry = lock_slot(mapping, slot);
635 }
636
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700637 xa_unlock_irq(&mapping->i_pages);
Ross Zwisler642261a2016-11-08 11:34:45 +1100638 /*
639 * Besides huge zero pages the only other thing that gets
640 * downgraded are empty entries which don't need to be
641 * unmapped.
642 */
643 if (pmd_downgrade && dax_is_zero_entry(entry))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800644 unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
645 PG_PMD_NR, false);
Ross Zwisler642261a2016-11-08 11:34:45 +1100646
Jan Kara0cb80b42016-12-12 21:34:12 -0500647 err = radix_tree_preload(
648 mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
649 if (err) {
650 if (pmd_downgrade)
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700651 put_locked_mapping_entry(mapping, index);
Jan Kara0cb80b42016-12-12 21:34:12 -0500652 return ERR_PTR(err);
653 }
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700654 xa_lock_irq(&mapping->i_pages);
Ross Zwisler642261a2016-11-08 11:34:45 +1100655
Ross Zwislere11f8b72017-04-07 16:04:57 -0700656 if (!entry) {
657 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700658 * We needed to drop the i_pages lock while calling
Ross Zwislere11f8b72017-04-07 16:04:57 -0700659 * radix_tree_preload() and we didn't have an entry to
660 * lock. See if another thread inserted an entry at
661 * our index during this time.
662 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700663 entry = __radix_tree_lookup(&mapping->i_pages, index,
Ross Zwislere11f8b72017-04-07 16:04:57 -0700664 NULL, &slot);
665 if (entry) {
666 radix_tree_preload_end();
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700667 xa_unlock_irq(&mapping->i_pages);
Ross Zwislere11f8b72017-04-07 16:04:57 -0700668 goto restart;
669 }
670 }
671
Ross Zwisler642261a2016-11-08 11:34:45 +1100672 if (pmd_downgrade) {
Dan Williamsd2c997c2017-12-22 22:02:48 -0800673 dax_disassociate_entry(entry, mapping, false);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700674 radix_tree_delete(&mapping->i_pages, index);
Ross Zwisler642261a2016-11-08 11:34:45 +1100675 mapping->nrexceptional--;
Matthew Wilcoxec4907f2018-03-28 11:01:43 -0400676 dax_wake_mapping_entry_waiter(&mapping->i_pages,
677 index, entry, true);
Ross Zwisler642261a2016-11-08 11:34:45 +1100678 }
679
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400680 entry = dax_make_locked(0, size_flag | DAX_EMPTY);
Ross Zwisler642261a2016-11-08 11:34:45 +1100681
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700682 err = __radix_tree_insert(&mapping->i_pages, index,
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400683 dax_entry_order(entry), entry);
Jan Karaac401cc2016-05-12 18:29:18 +0200684 radix_tree_preload_end();
685 if (err) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700686 xa_unlock_irq(&mapping->i_pages);
Ross Zwisler642261a2016-11-08 11:34:45 +1100687 /*
Ross Zwislere11f8b72017-04-07 16:04:57 -0700688 * Our insertion of a DAX entry failed, most likely
689 * because we were inserting a PMD entry and it
690 * collided with a PTE sized entry at a different
691 * index in the PMD range. We haven't inserted
692 * anything into the radix tree and have no waiters to
693 * wake.
Ross Zwisler642261a2016-11-08 11:34:45 +1100694 */
Jan Karaac401cc2016-05-12 18:29:18 +0200695 return ERR_PTR(err);
696 }
697 /* Good, we have inserted empty locked entry into the tree. */
698 mapping->nrexceptional++;
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700699 xa_unlock_irq(&mapping->i_pages);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100700 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200701 }
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100702 entry = lock_slot(mapping, slot);
Ross Zwisler642261a2016-11-08 11:34:45 +1100703 out_unlock:
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700704 xa_unlock_irq(&mapping->i_pages);
Ross Zwislere3ad61c2016-11-08 11:32:12 +1100705 return entry;
Jan Karaac401cc2016-05-12 18:29:18 +0200706}
707
Dan Williams5fac7402018-03-09 17:44:31 -0800708/**
709 * dax_layout_busy_page - find first pinned page in @mapping
710 * @mapping: address space to scan for a page with ref count > 1
711 *
712 * DAX requires ZONE_DEVICE mapped pages. These pages are never
713 * 'onlined' to the page allocator so they are considered idle when
714 * page->count == 1. A filesystem uses this interface to determine if
715 * any page in the mapping is busy, i.e. for DMA, or other
716 * get_user_pages() usages.
717 *
718 * It is expected that the filesystem is holding locks to block the
719 * establishment of new mappings in this address_space. I.e. it expects
720 * to be able to run unmap_mapping_range() and subsequently not race
721 * mapping_mapped() becoming true.
722 */
723struct page *dax_layout_busy_page(struct address_space *mapping)
724{
Matthew Wilcox084a8992018-05-17 13:03:48 -0400725 XA_STATE(xas, &mapping->i_pages, 0);
726 void *entry;
727 unsigned int scanned = 0;
Dan Williams5fac7402018-03-09 17:44:31 -0800728 struct page *page = NULL;
Dan Williams5fac7402018-03-09 17:44:31 -0800729
730 /*
731 * In the 'limited' case get_user_pages() for dax is disabled.
732 */
733 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED))
734 return NULL;
735
736 if (!dax_mapping(mapping) || !mapping_mapped(mapping))
737 return NULL;
738
Dan Williams5fac7402018-03-09 17:44:31 -0800739 /*
740 * If we race get_user_pages_fast() here either we'll see the
Matthew Wilcox084a8992018-05-17 13:03:48 -0400741 * elevated page count in the iteration and wait, or
Dan Williams5fac7402018-03-09 17:44:31 -0800742 * get_user_pages_fast() will see that the page it took a reference
743 * against is no longer mapped in the page tables and bail to the
744 * get_user_pages() slow path. The slow path is protected by
745 * pte_lock() and pmd_lock(). New references are not taken without
746 * holding those locks, and unmap_mapping_range() will not zero the
747 * pte or pmd without holding the respective lock, so we are
748 * guaranteed to either see new references or prevent new
749 * references from being established.
750 */
751 unmap_mapping_range(mapping, 0, 0, 1);
752
Matthew Wilcox084a8992018-05-17 13:03:48 -0400753 xas_lock_irq(&xas);
754 xas_for_each(&xas, entry, ULONG_MAX) {
755 if (WARN_ON_ONCE(!xa_is_value(entry)))
756 continue;
757 if (unlikely(dax_is_locked(entry)))
758 entry = get_unlocked_entry(&xas);
759 if (entry)
760 page = dax_busy_page(entry);
761 put_unlocked_entry(&xas, entry);
Dan Williams5fac7402018-03-09 17:44:31 -0800762 if (page)
763 break;
Matthew Wilcox084a8992018-05-17 13:03:48 -0400764 if (++scanned % XA_CHECK_SCHED)
765 continue;
766
767 xas_pause(&xas);
768 xas_unlock_irq(&xas);
769 cond_resched();
770 xas_lock_irq(&xas);
Dan Williams5fac7402018-03-09 17:44:31 -0800771 }
Matthew Wilcox084a8992018-05-17 13:03:48 -0400772 xas_unlock_irq(&xas);
Dan Williams5fac7402018-03-09 17:44:31 -0800773 return page;
774}
775EXPORT_SYMBOL_GPL(dax_layout_busy_page);
776
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400777static int __dax_invalidate_entry(struct address_space *mapping,
Jan Karac6dcf522016-08-10 17:22:44 +0200778 pgoff_t index, bool trunc)
779{
Matthew Wilcox07f2d892018-03-28 15:40:41 -0400780 XA_STATE(xas, &mapping->i_pages, index);
Jan Karac6dcf522016-08-10 17:22:44 +0200781 int ret = 0;
782 void *entry;
Jan Karac6dcf522016-08-10 17:22:44 +0200783
Matthew Wilcox07f2d892018-03-28 15:40:41 -0400784 xas_lock_irq(&xas);
785 entry = get_unlocked_entry(&xas);
Matthew Wilcox3159f942017-11-03 13:30:42 -0400786 if (!entry || WARN_ON_ONCE(!xa_is_value(entry)))
Jan Karac6dcf522016-08-10 17:22:44 +0200787 goto out;
788 if (!trunc &&
Matthew Wilcox07f2d892018-03-28 15:40:41 -0400789 (xas_get_mark(&xas, PAGECACHE_TAG_DIRTY) ||
790 xas_get_mark(&xas, PAGECACHE_TAG_TOWRITE)))
Jan Karac6dcf522016-08-10 17:22:44 +0200791 goto out;
Dan Williamsd2c997c2017-12-22 22:02:48 -0800792 dax_disassociate_entry(entry, mapping, trunc);
Matthew Wilcox07f2d892018-03-28 15:40:41 -0400793 xas_store(&xas, NULL);
Jan Karac6dcf522016-08-10 17:22:44 +0200794 mapping->nrexceptional--;
795 ret = 1;
796out:
Matthew Wilcox07f2d892018-03-28 15:40:41 -0400797 put_unlocked_entry(&xas, entry);
798 xas_unlock_irq(&xas);
Jan Karac6dcf522016-08-10 17:22:44 +0200799 return ret;
800}
Matthew Wilcox07f2d892018-03-28 15:40:41 -0400801
Jan Karaac401cc2016-05-12 18:29:18 +0200802/*
Matthew Wilcox3159f942017-11-03 13:30:42 -0400803 * Delete DAX entry at @index from @mapping. Wait for it
804 * to be unlocked before deleting it.
Jan Karaac401cc2016-05-12 18:29:18 +0200805 */
806int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index)
807{
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400808 int ret = __dax_invalidate_entry(mapping, index, true);
Jan Karaac401cc2016-05-12 18:29:18 +0200809
Jan Karaac401cc2016-05-12 18:29:18 +0200810 /*
811 * This gets called from truncate / punch_hole path. As such, the caller
812 * must hold locks protecting against concurrent modifications of the
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400813 * page cache (usually fs-private i_mmap_sem for writing). Since the
Matthew Wilcox3159f942017-11-03 13:30:42 -0400814 * caller has seen a DAX entry for this index, we better find it
Jan Karaac401cc2016-05-12 18:29:18 +0200815 * at that index as well...
816 */
Jan Karac6dcf522016-08-10 17:22:44 +0200817 WARN_ON_ONCE(!ret);
818 return ret;
819}
Jan Karaac401cc2016-05-12 18:29:18 +0200820
Jan Karac6dcf522016-08-10 17:22:44 +0200821/*
Matthew Wilcox3159f942017-11-03 13:30:42 -0400822 * Invalidate DAX entry if it is clean.
Jan Karac6dcf522016-08-10 17:22:44 +0200823 */
824int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
825 pgoff_t index)
826{
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400827 return __dax_invalidate_entry(mapping, index, false);
Jan Karaac401cc2016-05-12 18:29:18 +0200828}
829
Dan Williamscccbce62017-01-27 13:31:42 -0800830static int copy_user_dax(struct block_device *bdev, struct dax_device *dax_dev,
831 sector_t sector, size_t size, struct page *to,
832 unsigned long vaddr)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800833{
Dan Williamscccbce62017-01-27 13:31:42 -0800834 void *vto, *kaddr;
835 pgoff_t pgoff;
Dan Williamscccbce62017-01-27 13:31:42 -0800836 long rc;
837 int id;
Ross Zwislere2e05392015-08-18 13:55:41 -0600838
Dan Williamscccbce62017-01-27 13:31:42 -0800839 rc = bdev_dax_pgoff(bdev, sector, size, &pgoff);
840 if (rc)
841 return rc;
842
843 id = dax_read_lock();
Huaisheng Ye86ed9132018-07-30 15:15:48 +0800844 rc = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size), &kaddr, NULL);
Dan Williamscccbce62017-01-27 13:31:42 -0800845 if (rc < 0) {
846 dax_read_unlock(id);
847 return rc;
848 }
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800849 vto = kmap_atomic(to);
Dan Williamscccbce62017-01-27 13:31:42 -0800850 copy_user_page(vto, (void __force *)kaddr, vaddr, to);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800851 kunmap_atomic(vto);
Dan Williamscccbce62017-01-27 13:31:42 -0800852 dax_read_unlock(id);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800853 return 0;
854}
855
Ross Zwisler642261a2016-11-08 11:34:45 +1100856/*
857 * By this point grab_mapping_entry() has ensured that we have a locked entry
858 * of the appropriate size so we don't have to worry about downgrading PMDs to
859 * PTEs. If we happen to be trying to insert a PTE and there is a PMD
860 * already in the tree, we will skip the insertion and just dirty the PMD as
861 * appropriate.
862 */
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400863static void *dax_insert_entry(struct address_space *mapping,
864 struct vm_fault *vmf,
865 void *entry, pfn_t pfn_t, unsigned long flags, bool dirty)
Ross Zwisler9973c982016-01-22 15:10:47 -0800866{
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700867 struct radix_tree_root *pages = &mapping->i_pages;
Dan Williams3fe07912017-10-14 17:13:45 -0700868 unsigned long pfn = pfn_t_to_pfn(pfn_t);
Jan Karaac401cc2016-05-12 18:29:18 +0200869 pgoff_t index = vmf->pgoff;
Dan Williams3fe07912017-10-14 17:13:45 -0700870 void *new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800871
Jan Karaf5b7b742017-11-01 16:36:40 +0100872 if (dirty)
Dmitry Monakhovd2b2a282016-02-05 15:36:55 -0800873 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Ross Zwisler9973c982016-01-22 15:10:47 -0800874
Matthew Wilcox3159f942017-11-03 13:30:42 -0400875 if (dax_is_zero_entry(entry) && !(flags & DAX_ZERO_PAGE)) {
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700876 /* we are replacing a zero page with block mapping */
877 if (dax_is_pmd_entry(entry))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800878 unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
879 PG_PMD_NR, false);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700880 else /* pte entry */
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800881 unmap_mapping_pages(mapping, vmf->pgoff, 1, false);
Ross Zwisler9973c982016-01-22 15:10:47 -0800882 }
883
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700884 xa_lock_irq(pages);
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400885 new_entry = dax_make_locked(pfn, flags);
Dan Williamsd2c997c2017-12-22 22:02:48 -0800886 if (dax_entry_size(entry) != dax_entry_size(new_entry)) {
887 dax_disassociate_entry(entry, mapping, false);
Dan Williams73449da2018-07-13 21:49:50 -0700888 dax_associate_entry(new_entry, mapping, vmf->vma, vmf->address);
Dan Williamsd2c997c2017-12-22 22:02:48 -0800889 }
Ross Zwisler642261a2016-11-08 11:34:45 +1100890
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700891 if (dax_is_zero_entry(entry) || dax_is_empty_entry(entry)) {
Ross Zwisler642261a2016-11-08 11:34:45 +1100892 /*
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400893 * Only swap our new entry into the page cache if the current
Ross Zwisler642261a2016-11-08 11:34:45 +1100894 * entry is a zero page or an empty entry. If a normal PTE or
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400895 * PMD entry is already in the cache, we leave it alone. This
Ross Zwisler642261a2016-11-08 11:34:45 +1100896 * means that if we are trying to insert a PTE and the
897 * existing entry is a PMD, we will just leave the PMD in the
898 * tree and dirty it if necessary.
899 */
Johannes Weinerf7942432016-12-12 16:43:41 -0800900 struct radix_tree_node *node;
Jan Karaac401cc2016-05-12 18:29:18 +0200901 void **slot;
902 void *ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800903
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700904 ret = __radix_tree_lookup(pages, index, &node, &slot);
Jan Karaac401cc2016-05-12 18:29:18 +0200905 WARN_ON_ONCE(ret != entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700906 __radix_tree_replace(pages, node, slot,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800907 new_entry, NULL);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700908 entry = new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800909 }
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700910
Jan Karaf5b7b742017-11-01 16:36:40 +0100911 if (dirty)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700912 radix_tree_tag_set(pages, index, PAGECACHE_TAG_DIRTY);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700913
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700914 xa_unlock_irq(pages);
Ross Zwisler91d25ba2017-09-06 16:18:43 -0700915 return entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800916}
917
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400918static inline
919unsigned long pgoff_address(pgoff_t pgoff, struct vm_area_struct *vma)
Jan Kara4b4bb462016-12-14 15:07:53 -0800920{
921 unsigned long address;
922
923 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
924 VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
925 return address;
926}
927
928/* Walk all mappings of a given index of a file and writeprotect them */
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -0400929static void dax_entry_mkclean(struct address_space *mapping, pgoff_t index,
930 unsigned long pfn)
Jan Kara4b4bb462016-12-14 15:07:53 -0800931{
932 struct vm_area_struct *vma;
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800933 pte_t pte, *ptep = NULL;
934 pmd_t *pmdp = NULL;
Jan Kara4b4bb462016-12-14 15:07:53 -0800935 spinlock_t *ptl;
Jan Kara4b4bb462016-12-14 15:07:53 -0800936
937 i_mmap_lock_read(mapping);
938 vma_interval_tree_foreach(vma, &mapping->i_mmap, index, index) {
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400939 unsigned long address, start, end;
Jan Kara4b4bb462016-12-14 15:07:53 -0800940
941 cond_resched();
942
943 if (!(vma->vm_flags & VM_SHARED))
944 continue;
945
946 address = pgoff_address(index, vma);
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400947
948 /*
949 * Note because we provide start/end to follow_pte_pmd it will
950 * call mmu_notifier_invalidate_range_start() on our behalf
951 * before taking any lock.
952 */
953 if (follow_pte_pmd(vma->vm_mm, address, &start, &end, &ptep, &pmdp, &ptl))
Jan Kara4b4bb462016-12-14 15:07:53 -0800954 continue;
Jan Kara4b4bb462016-12-14 15:07:53 -0800955
Jérôme Glisse0f108512017-11-15 17:34:07 -0800956 /*
957 * No need to call mmu_notifier_invalidate_range() as we are
958 * downgrading page table protection not changing it to point
959 * to a new page.
960 *
Mike Rapoportad56b732018-03-21 21:22:47 +0200961 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -0800962 */
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800963 if (pmdp) {
964#ifdef CONFIG_FS_DAX_PMD
965 pmd_t pmd;
966
967 if (pfn != pmd_pfn(*pmdp))
968 goto unlock_pmd;
Linus Torvaldsf6f37322017-12-15 18:53:22 -0800969 if (!pmd_dirty(*pmdp) && !pmd_write(*pmdp))
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800970 goto unlock_pmd;
971
972 flush_cache_page(vma, address, pfn);
973 pmd = pmdp_huge_clear_flush(vma, address, pmdp);
974 pmd = pmd_wrprotect(pmd);
975 pmd = pmd_mkclean(pmd);
976 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800977unlock_pmd:
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800978#endif
Jan H. Schönherree190ca2018-01-31 16:14:04 -0800979 spin_unlock(ptl);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800980 } else {
981 if (pfn != pte_pfn(*ptep))
982 goto unlock_pte;
983 if (!pte_dirty(*ptep) && !pte_write(*ptep))
984 goto unlock_pte;
985
986 flush_cache_page(vma, address, pfn);
987 pte = ptep_clear_flush(vma, address, ptep);
988 pte = pte_wrprotect(pte);
989 pte = pte_mkclean(pte);
990 set_pte_at(vma->vm_mm, address, ptep, pte);
Ross Zwislerf729c8c2017-01-10 16:57:24 -0800991unlock_pte:
992 pte_unmap_unlock(ptep, ptl);
993 }
Jan Kara4b4bb462016-12-14 15:07:53 -0800994
Jérôme Glissea4d1a882017-08-31 17:17:26 -0400995 mmu_notifier_invalidate_range_end(vma->vm_mm, start, end);
Jan Kara4b4bb462016-12-14 15:07:53 -0800996 }
997 i_mmap_unlock_read(mapping);
998}
999
Dan Williams3fe07912017-10-14 17:13:45 -07001000static int dax_writeback_one(struct dax_device *dax_dev,
1001 struct address_space *mapping, pgoff_t index, void *entry)
Ross Zwisler9973c982016-01-22 15:10:47 -08001002{
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001003 struct radix_tree_root *pages = &mapping->i_pages;
Dan Williams3fe07912017-10-14 17:13:45 -07001004 void *entry2, **slot;
1005 unsigned long pfn;
1006 long ret = 0;
Dan Williamscccbce62017-01-27 13:31:42 -08001007 size_t size;
Ross Zwisler9973c982016-01-22 15:10:47 -08001008
Ross Zwisler9973c982016-01-22 15:10:47 -08001009 /*
Jan Karaa6abc2c2016-12-14 15:07:47 -08001010 * A page got tagged dirty in DAX mapping? Something is seriously
1011 * wrong.
Ross Zwisler9973c982016-01-22 15:10:47 -08001012 */
Matthew Wilcox3159f942017-11-03 13:30:42 -04001013 if (WARN_ON(!xa_is_value(entry)))
Jan Karaa6abc2c2016-12-14 15:07:47 -08001014 return -EIO;
Ross Zwisler9973c982016-01-22 15:10:47 -08001015
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001016 xa_lock_irq(pages);
Jan Karaa6abc2c2016-12-14 15:07:47 -08001017 entry2 = get_unlocked_mapping_entry(mapping, index, &slot);
1018 /* Entry got punched out / reallocated? */
Matthew Wilcox3159f942017-11-03 13:30:42 -04001019 if (!entry2 || WARN_ON_ONCE(!xa_is_value(entry2)))
Jan Karaa6abc2c2016-12-14 15:07:47 -08001020 goto put_unlocked;
1021 /*
1022 * Entry got reallocated elsewhere? No need to writeback. We have to
Dan Williams3fe07912017-10-14 17:13:45 -07001023 * compare pfns as we must not bail out due to difference in lockbit
Jan Karaa6abc2c2016-12-14 15:07:47 -08001024 * or entry type.
1025 */
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001026 if (dax_to_pfn(entry2) != dax_to_pfn(entry))
Jan Karaa6abc2c2016-12-14 15:07:47 -08001027 goto put_unlocked;
Ross Zwisler642261a2016-11-08 11:34:45 +11001028 if (WARN_ON_ONCE(dax_is_empty_entry(entry) ||
1029 dax_is_zero_entry(entry))) {
Ross Zwisler9973c982016-01-22 15:10:47 -08001030 ret = -EIO;
Jan Karaa6abc2c2016-12-14 15:07:47 -08001031 goto put_unlocked;
Ross Zwisler9973c982016-01-22 15:10:47 -08001032 }
1033
Jan Karaa6abc2c2016-12-14 15:07:47 -08001034 /* Another fsync thread may have already written back this entry */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001035 if (!radix_tree_tag_get(pages, index, PAGECACHE_TAG_TOWRITE))
Jan Karaa6abc2c2016-12-14 15:07:47 -08001036 goto put_unlocked;
1037 /* Lock the entry to serialize with page faults */
1038 entry = lock_slot(mapping, slot);
1039 /*
1040 * We can clear the tag now but we have to be careful so that concurrent
1041 * dax_writeback_one() calls for the same index cannot finish before we
1042 * actually flush the caches. This is achieved as the calls will look
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001043 * at the entry only under the i_pages lock and once they do that
1044 * they will see the entry locked and wait for it to unlock.
Jan Karaa6abc2c2016-12-14 15:07:47 -08001045 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001046 radix_tree_tag_clear(pages, index, PAGECACHE_TAG_TOWRITE);
1047 xa_unlock_irq(pages);
Jan Karaa6abc2c2016-12-14 15:07:47 -08001048
Ross Zwisler642261a2016-11-08 11:34:45 +11001049 /*
1050 * Even if dax_writeback_mapping_range() was given a wbc->range_start
1051 * in the middle of a PMD, the 'index' we are given will be aligned to
Dan Williams3fe07912017-10-14 17:13:45 -07001052 * the start index of the PMD, as will the pfn we pull from 'entry'.
1053 * This allows us to flush for PMD_SIZE and not have to worry about
1054 * partial PMD writebacks.
Ross Zwisler642261a2016-11-08 11:34:45 +11001055 */
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001056 pfn = dax_to_pfn(entry);
1057 size = PAGE_SIZE << dax_entry_order(entry);
Dan Williamscccbce62017-01-27 13:31:42 -08001058
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001059 dax_entry_mkclean(mapping, index, pfn);
Dan Williams3fe07912017-10-14 17:13:45 -07001060 dax_flush(dax_dev, page_address(pfn_to_page(pfn)), size);
Jan Kara4b4bb462016-12-14 15:07:53 -08001061 /*
1062 * After we have flushed the cache, we can clear the dirty tag. There
1063 * cannot be new dirty data in the pfn after the flush has completed as
1064 * the pfn mappings are writeprotected and fault waits for mapping
1065 * entry lock.
1066 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001067 xa_lock_irq(pages);
1068 radix_tree_tag_clear(pages, index, PAGECACHE_TAG_DIRTY);
1069 xa_unlock_irq(pages);
Ross Zwislerf9bc3a02017-05-08 16:00:13 -07001070 trace_dax_writeback_one(mapping->host, index, size >> PAGE_SHIFT);
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001071 put_locked_mapping_entry(mapping, index);
Ross Zwisler9973c982016-01-22 15:10:47 -08001072 return ret;
1073
Jan Karaa6abc2c2016-12-14 15:07:47 -08001074 put_unlocked:
1075 put_unlocked_mapping_entry(mapping, index, entry2);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001076 xa_unlock_irq(pages);
Ross Zwisler9973c982016-01-22 15:10:47 -08001077 return ret;
1078}
1079
1080/*
1081 * Flush the mapping to the persistent domain within the byte range of [start,
1082 * end]. This is required by data integrity operations to ensure file data is
1083 * on persistent storage prior to completion of the operation.
1084 */
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001085int dax_writeback_mapping_range(struct address_space *mapping,
1086 struct block_device *bdev, struct writeback_control *wbc)
Ross Zwisler9973c982016-01-22 15:10:47 -08001087{
1088 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001089 pgoff_t start_index, end_index;
Ross Zwisler9973c982016-01-22 15:10:47 -08001090 pgoff_t indices[PAGEVEC_SIZE];
Dan Williamscccbce62017-01-27 13:31:42 -08001091 struct dax_device *dax_dev;
Ross Zwisler9973c982016-01-22 15:10:47 -08001092 struct pagevec pvec;
1093 bool done = false;
1094 int i, ret = 0;
Ross Zwisler9973c982016-01-22 15:10:47 -08001095
1096 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
1097 return -EIO;
1098
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001099 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
1100 return 0;
1101
Dan Williamscccbce62017-01-27 13:31:42 -08001102 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
1103 if (!dax_dev)
1104 return -EIO;
1105
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001106 start_index = wbc->range_start >> PAGE_SHIFT;
1107 end_index = wbc->range_end >> PAGE_SHIFT;
Ross Zwisler9973c982016-01-22 15:10:47 -08001108
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001109 trace_dax_writeback_range(inode, start_index, end_index);
1110
Ross Zwisler9973c982016-01-22 15:10:47 -08001111 tag_pages_for_writeback(mapping, start_index, end_index);
1112
Mel Gorman86679822017-11-15 17:37:52 -08001113 pagevec_init(&pvec);
Ross Zwisler9973c982016-01-22 15:10:47 -08001114 while (!done) {
1115 pvec.nr = find_get_entries_tag(mapping, start_index,
1116 PAGECACHE_TAG_TOWRITE, PAGEVEC_SIZE,
1117 pvec.pages, indices);
1118
1119 if (pvec.nr == 0)
1120 break;
1121
1122 for (i = 0; i < pvec.nr; i++) {
1123 if (indices[i] > end_index) {
1124 done = true;
1125 break;
1126 }
1127
Dan Williams3fe07912017-10-14 17:13:45 -07001128 ret = dax_writeback_one(dax_dev, mapping, indices[i],
1129 pvec.pages[i]);
Jeff Layton819ec6b2017-07-06 07:02:27 -04001130 if (ret < 0) {
1131 mapping_set_error(mapping, ret);
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001132 goto out;
Jeff Layton819ec6b2017-07-06 07:02:27 -04001133 }
Ross Zwisler9973c982016-01-22 15:10:47 -08001134 }
Jan Kara1eb643d2017-06-23 15:08:46 -07001135 start_index = indices[pvec.nr - 1] + 1;
Ross Zwisler9973c982016-01-22 15:10:47 -08001136 }
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001137out:
Dan Williamscccbce62017-01-27 13:31:42 -08001138 put_dax(dax_dev);
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001139 trace_dax_writeback_range_done(inode, start_index, end_index);
1140 return (ret < 0 ? ret : 0);
Ross Zwisler9973c982016-01-22 15:10:47 -08001141}
1142EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
1143
Jan Kara31a6f1a2017-11-01 16:36:32 +01001144static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001145{
Linus Torvaldsa3841f92017-11-17 09:51:57 -08001146 return (iomap->addr + (pos & PAGE_MASK) - iomap->offset) >> 9;
Jan Kara31a6f1a2017-11-01 16:36:32 +01001147}
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001148
Jan Kara5e161e42017-11-01 16:36:33 +01001149static int dax_iomap_pfn(struct iomap *iomap, loff_t pos, size_t size,
1150 pfn_t *pfnp)
1151{
1152 const sector_t sector = dax_iomap_sector(iomap, pos);
1153 pgoff_t pgoff;
Jan Kara5e161e42017-11-01 16:36:33 +01001154 int id, rc;
1155 long length;
1156
1157 rc = bdev_dax_pgoff(iomap->bdev, sector, size, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -08001158 if (rc)
1159 return rc;
Dan Williamscccbce62017-01-27 13:31:42 -08001160 id = dax_read_lock();
Jan Kara5e161e42017-11-01 16:36:33 +01001161 length = dax_direct_access(iomap->dax_dev, pgoff, PHYS_PFN(size),
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001162 NULL, pfnp);
Jan Kara5e161e42017-11-01 16:36:33 +01001163 if (length < 0) {
1164 rc = length;
1165 goto out;
Dan Williamscccbce62017-01-27 13:31:42 -08001166 }
Jan Kara5e161e42017-11-01 16:36:33 +01001167 rc = -EINVAL;
1168 if (PFN_PHYS(length) < size)
1169 goto out;
1170 if (pfn_t_to_pfn(*pfnp) & (PHYS_PFN(size)-1))
1171 goto out;
1172 /* For larger pages we need devmap */
1173 if (length > 1 && !pfn_t_devmap(*pfnp))
1174 goto out;
1175 rc = 0;
1176out:
Dan Williamscccbce62017-01-27 13:31:42 -08001177 dax_read_unlock(id);
Jan Kara5e161e42017-11-01 16:36:33 +01001178 return rc;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001179}
1180
Ross Zwislere30331f2017-09-06 16:18:39 -07001181/*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001182 * The user has performed a load from a hole in the file. Allocating a new
1183 * page in the file would cause excessive storage usage for workloads with
1184 * sparse files. Instead we insert a read-only mapping of the 4k zero page.
1185 * If this page is ever written to we will re-fault and change the mapping to
1186 * point to real DAX storage instead.
Ross Zwislere30331f2017-09-06 16:18:39 -07001187 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001188static vm_fault_t dax_load_hole(struct address_space *mapping, void *entry,
Ross Zwislere30331f2017-09-06 16:18:39 -07001189 struct vm_fault *vmf)
1190{
1191 struct inode *inode = mapping->host;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001192 unsigned long vaddr = vmf->address;
Matthew Wilcoxb90ca5c2018-09-11 21:27:44 -07001193 pfn_t pfn = pfn_to_pfn_t(my_zero_pfn(vaddr));
1194 vm_fault_t ret;
Ross Zwislere30331f2017-09-06 16:18:39 -07001195
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001196 dax_insert_entry(mapping, vmf, entry, pfn,
Matthew Wilcox3159f942017-11-03 13:30:42 -04001197 DAX_ZERO_PAGE, false);
1198
Souptick Joarderab77dab2018-06-07 17:04:29 -07001199 ret = vmf_insert_mixed(vmf->vma, vaddr, pfn);
Ross Zwislere30331f2017-09-06 16:18:39 -07001200 trace_dax_load_hole(inode, vmf, ret);
1201 return ret;
1202}
1203
Vishal Verma4b0228f2016-04-21 15:13:46 -04001204static bool dax_range_is_aligned(struct block_device *bdev,
1205 unsigned int offset, unsigned int length)
1206{
1207 unsigned short sector_size = bdev_logical_block_size(bdev);
1208
1209 if (!IS_ALIGNED(offset, sector_size))
1210 return false;
1211 if (!IS_ALIGNED(length, sector_size))
1212 return false;
1213
1214 return true;
1215}
1216
Dan Williamscccbce62017-01-27 13:31:42 -08001217int __dax_zero_page_range(struct block_device *bdev,
1218 struct dax_device *dax_dev, sector_t sector,
1219 unsigned int offset, unsigned int size)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001220{
Dan Williamscccbce62017-01-27 13:31:42 -08001221 if (dax_range_is_aligned(bdev, offset, size)) {
1222 sector_t start_sector = sector + (offset >> 9);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001223
1224 return blkdev_issue_zeroout(bdev, start_sector,
Linus Torvalds53ef7d02017-05-05 18:49:20 -07001225 size >> 9, GFP_NOFS, 0);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001226 } else {
Dan Williamscccbce62017-01-27 13:31:42 -08001227 pgoff_t pgoff;
1228 long rc, id;
1229 void *kaddr;
Dan Williamscccbce62017-01-27 13:31:42 -08001230
Dan Williamse84b83b2017-05-10 19:38:13 -07001231 rc = bdev_dax_pgoff(bdev, sector, PAGE_SIZE, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -08001232 if (rc)
1233 return rc;
1234
1235 id = dax_read_lock();
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001236 rc = dax_direct_access(dax_dev, pgoff, 1, &kaddr, NULL);
Dan Williamscccbce62017-01-27 13:31:42 -08001237 if (rc < 0) {
1238 dax_read_unlock(id);
1239 return rc;
1240 }
Dan Williams81f55872017-05-29 13:12:20 -07001241 memset(kaddr + offset, 0, size);
Mikulas Patockac3ca0152017-08-31 21:47:43 -04001242 dax_flush(dax_dev, kaddr + offset, size);
Dan Williamscccbce62017-01-27 13:31:42 -08001243 dax_read_unlock(id);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001244 }
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001245 return 0;
1246}
1247EXPORT_SYMBOL_GPL(__dax_zero_page_range);
1248
Christoph Hellwiga254e562016-09-19 11:24:49 +10001249static loff_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001250dax_iomap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
Christoph Hellwiga254e562016-09-19 11:24:49 +10001251 struct iomap *iomap)
1252{
Dan Williamscccbce62017-01-27 13:31:42 -08001253 struct block_device *bdev = iomap->bdev;
1254 struct dax_device *dax_dev = iomap->dax_dev;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001255 struct iov_iter *iter = data;
1256 loff_t end = pos + length, done = 0;
1257 ssize_t ret = 0;
Dan Williamsa77d4782018-03-16 17:36:44 -07001258 size_t xfer;
Dan Williamscccbce62017-01-27 13:31:42 -08001259 int id;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001260
1261 if (iov_iter_rw(iter) == READ) {
1262 end = min(end, i_size_read(inode));
1263 if (pos >= end)
1264 return 0;
1265
1266 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
1267 return iov_iter_zero(min(length, end - pos), iter);
1268 }
1269
1270 if (WARN_ON_ONCE(iomap->type != IOMAP_MAPPED))
1271 return -EIO;
1272
Jan Karae3fce682016-08-10 17:10:28 +02001273 /*
1274 * Write can allocate block for an area which has a hole page mapped
1275 * into page tables. We have to tear down these mappings so that data
1276 * written by write(2) is visible in mmap.
1277 */
Jan Karacd656372017-05-12 15:46:50 -07001278 if (iomap->flags & IOMAP_F_NEW) {
Jan Karae3fce682016-08-10 17:10:28 +02001279 invalidate_inode_pages2_range(inode->i_mapping,
1280 pos >> PAGE_SHIFT,
1281 (end - 1) >> PAGE_SHIFT);
1282 }
1283
Dan Williamscccbce62017-01-27 13:31:42 -08001284 id = dax_read_lock();
Christoph Hellwiga254e562016-09-19 11:24:49 +10001285 while (pos < end) {
1286 unsigned offset = pos & (PAGE_SIZE - 1);
Dan Williamscccbce62017-01-27 13:31:42 -08001287 const size_t size = ALIGN(length + offset, PAGE_SIZE);
1288 const sector_t sector = dax_iomap_sector(iomap, pos);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001289 ssize_t map_len;
Dan Williamscccbce62017-01-27 13:31:42 -08001290 pgoff_t pgoff;
1291 void *kaddr;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001292
Michal Hockod1908f52017-02-03 13:13:26 -08001293 if (fatal_signal_pending(current)) {
1294 ret = -EINTR;
1295 break;
1296 }
1297
Dan Williamscccbce62017-01-27 13:31:42 -08001298 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
1299 if (ret)
1300 break;
1301
1302 map_len = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size),
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001303 &kaddr, NULL);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001304 if (map_len < 0) {
1305 ret = map_len;
1306 break;
1307 }
1308
Dan Williamscccbce62017-01-27 13:31:42 -08001309 map_len = PFN_PHYS(map_len);
1310 kaddr += offset;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001311 map_len -= offset;
1312 if (map_len > end - pos)
1313 map_len = end - pos;
1314
Ross Zwislera2e050f2017-09-06 16:18:54 -07001315 /*
1316 * The userspace address for the memory copy has already been
1317 * validated via access_ok() in either vfs_read() or
1318 * vfs_write(), depending on which operation we are doing.
1319 */
Christoph Hellwiga254e562016-09-19 11:24:49 +10001320 if (iov_iter_rw(iter) == WRITE)
Dan Williamsa77d4782018-03-16 17:36:44 -07001321 xfer = dax_copy_from_iter(dax_dev, pgoff, kaddr,
Dan Williamsfec53772017-05-29 21:56:49 -07001322 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001323 else
Dan Williamsa77d4782018-03-16 17:36:44 -07001324 xfer = dax_copy_to_iter(dax_dev, pgoff, kaddr,
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07001325 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001326
Dan Williamsa77d4782018-03-16 17:36:44 -07001327 pos += xfer;
1328 length -= xfer;
1329 done += xfer;
1330
1331 if (xfer == 0)
1332 ret = -EFAULT;
1333 if (xfer < map_len)
1334 break;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001335 }
Dan Williamscccbce62017-01-27 13:31:42 -08001336 dax_read_unlock(id);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001337
1338 return done ? done : ret;
1339}
1340
1341/**
Ross Zwisler11c59c92016-11-08 11:32:46 +11001342 * dax_iomap_rw - Perform I/O to a DAX file
Christoph Hellwiga254e562016-09-19 11:24:49 +10001343 * @iocb: The control block for this I/O
1344 * @iter: The addresses to do I/O from or to
1345 * @ops: iomap ops passed from the file system
1346 *
1347 * This function performs read and write operations to directly mapped
1348 * persistent memory. The callers needs to take care of read/write exclusion
1349 * and evicting any page cache pages in the region under I/O.
1350 */
1351ssize_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001352dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001353 const struct iomap_ops *ops)
Christoph Hellwiga254e562016-09-19 11:24:49 +10001354{
1355 struct address_space *mapping = iocb->ki_filp->f_mapping;
1356 struct inode *inode = mapping->host;
1357 loff_t pos = iocb->ki_pos, ret = 0, done = 0;
1358 unsigned flags = 0;
1359
Christoph Hellwig168316d2017-02-08 14:43:13 -05001360 if (iov_iter_rw(iter) == WRITE) {
1361 lockdep_assert_held_exclusive(&inode->i_rwsem);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001362 flags |= IOMAP_WRITE;
Christoph Hellwig168316d2017-02-08 14:43:13 -05001363 } else {
1364 lockdep_assert_held(&inode->i_rwsem);
1365 }
Christoph Hellwiga254e562016-09-19 11:24:49 +10001366
Christoph Hellwiga254e562016-09-19 11:24:49 +10001367 while (iov_iter_count(iter)) {
1368 ret = iomap_apply(inode, pos, iov_iter_count(iter), flags, ops,
Ross Zwisler11c59c92016-11-08 11:32:46 +11001369 iter, dax_iomap_actor);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001370 if (ret <= 0)
1371 break;
1372 pos += ret;
1373 done += ret;
1374 }
1375
1376 iocb->ki_pos += done;
1377 return done ? done : ret;
1378}
Ross Zwisler11c59c92016-11-08 11:32:46 +11001379EXPORT_SYMBOL_GPL(dax_iomap_rw);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001380
Souptick Joarderab77dab2018-06-07 17:04:29 -07001381static vm_fault_t dax_fault_return(int error)
Jan Kara9f141d62016-10-19 14:34:31 +02001382{
1383 if (error == 0)
1384 return VM_FAULT_NOPAGE;
1385 if (error == -ENOMEM)
1386 return VM_FAULT_OOM;
1387 return VM_FAULT_SIGBUS;
1388}
1389
Dan Williamsaaa422c2017-11-13 16:38:44 -08001390/*
1391 * MAP_SYNC on a dax mapping guarantees dirty metadata is
1392 * flushed on write-faults (non-cow), but not read-faults.
1393 */
1394static bool dax_fault_is_synchronous(unsigned long flags,
1395 struct vm_area_struct *vma, struct iomap *iomap)
1396{
1397 return (flags & IOMAP_WRITE) && (vma->vm_flags & VM_SYNC)
1398 && (iomap->flags & IOMAP_F_DIRTY);
1399}
1400
Souptick Joarderab77dab2018-06-07 17:04:29 -07001401static vm_fault_t dax_iomap_pte_fault(struct vm_fault *vmf, pfn_t *pfnp,
Jan Karac0b24622018-01-07 16:38:43 -05001402 int *iomap_errp, const struct iomap_ops *ops)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001403{
Jan Karaa0987ad2017-11-01 16:36:34 +01001404 struct vm_area_struct *vma = vmf->vma;
1405 struct address_space *mapping = vma->vm_file->f_mapping;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001406 struct inode *inode = mapping->host;
Jan Kara1a29d852016-12-14 15:07:01 -08001407 unsigned long vaddr = vmf->address;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001408 loff_t pos = (loff_t)vmf->pgoff << PAGE_SHIFT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001409 struct iomap iomap = { 0 };
Jan Kara9484ab12016-11-10 10:26:50 +11001410 unsigned flags = IOMAP_FAULT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001411 int error, major = 0;
Jan Karad2c43ef2017-11-01 16:36:35 +01001412 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001413 bool sync;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001414 vm_fault_t ret = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001415 void *entry;
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001416 pfn_t pfn;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001417
Souptick Joarderab77dab2018-06-07 17:04:29 -07001418 trace_dax_pte_fault(inode, vmf, ret);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001419 /*
1420 * Check whether offset isn't beyond end of file now. Caller is supposed
1421 * to hold locks serializing us with truncate / punch hole so this is
1422 * a reliable test.
1423 */
Ross Zwislera9c42b32017-05-08 16:00:00 -07001424 if (pos >= i_size_read(inode)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001425 ret = VM_FAULT_SIGBUS;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001426 goto out;
1427 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001428
Jan Karad2c43ef2017-11-01 16:36:35 +01001429 if (write && !vmf->cow_page)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001430 flags |= IOMAP_WRITE;
1431
Jan Kara13e451f2017-05-12 15:46:57 -07001432 entry = grab_mapping_entry(mapping, vmf->pgoff, 0);
1433 if (IS_ERR(entry)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001434 ret = dax_fault_return(PTR_ERR(entry));
Jan Kara13e451f2017-05-12 15:46:57 -07001435 goto out;
1436 }
1437
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001438 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001439 * It is possible, particularly with mixed reads & writes to private
1440 * mappings, that we have raced with a PMD fault that overlaps with
1441 * the PTE we need to set up. If so just return and the fault will be
1442 * retried.
1443 */
1444 if (pmd_trans_huge(*vmf->pmd) || pmd_devmap(*vmf->pmd)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001445 ret = VM_FAULT_NOPAGE;
Ross Zwislere2093922017-06-02 14:46:37 -07001446 goto unlock_entry;
1447 }
1448
1449 /*
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001450 * Note that we don't bother to use iomap_apply here: DAX required
1451 * the file system block size to be equal the page size, which means
1452 * that we never have to deal with more than a single extent here.
1453 */
1454 error = ops->iomap_begin(inode, pos, PAGE_SIZE, flags, &iomap);
Jan Karac0b24622018-01-07 16:38:43 -05001455 if (iomap_errp)
1456 *iomap_errp = error;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001457 if (error) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001458 ret = dax_fault_return(error);
Jan Kara13e451f2017-05-12 15:46:57 -07001459 goto unlock_entry;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001460 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001461 if (WARN_ON_ONCE(iomap.offset + iomap.length < pos + PAGE_SIZE)) {
Jan Kara13e451f2017-05-12 15:46:57 -07001462 error = -EIO; /* fs corruption? */
1463 goto error_finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001464 }
1465
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001466 if (vmf->cow_page) {
Jan Kara31a6f1a2017-11-01 16:36:32 +01001467 sector_t sector = dax_iomap_sector(&iomap, pos);
1468
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001469 switch (iomap.type) {
1470 case IOMAP_HOLE:
1471 case IOMAP_UNWRITTEN:
1472 clear_user_highpage(vmf->cow_page, vaddr);
1473 break;
1474 case IOMAP_MAPPED:
Dan Williamscccbce62017-01-27 13:31:42 -08001475 error = copy_user_dax(iomap.bdev, iomap.dax_dev,
1476 sector, PAGE_SIZE, vmf->cow_page, vaddr);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001477 break;
1478 default:
1479 WARN_ON_ONCE(1);
1480 error = -EIO;
1481 break;
1482 }
1483
1484 if (error)
Jan Kara13e451f2017-05-12 15:46:57 -07001485 goto error_finish_iomap;
Jan Karab1aa8122016-12-14 15:07:24 -08001486
1487 __SetPageUptodate(vmf->cow_page);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001488 ret = finish_fault(vmf);
1489 if (!ret)
1490 ret = VM_FAULT_DONE_COW;
Jan Kara13e451f2017-05-12 15:46:57 -07001491 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001492 }
1493
Dan Williamsaaa422c2017-11-13 16:38:44 -08001494 sync = dax_fault_is_synchronous(flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001495
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001496 switch (iomap.type) {
1497 case IOMAP_MAPPED:
1498 if (iomap.flags & IOMAP_F_NEW) {
1499 count_vm_event(PGMAJFAULT);
Jan Karaa0987ad2017-11-01 16:36:34 +01001500 count_memcg_event_mm(vma->vm_mm, PGMAJFAULT);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001501 major = VM_FAULT_MAJOR;
1502 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001503 error = dax_iomap_pfn(&iomap, pos, PAGE_SIZE, &pfn);
1504 if (error < 0)
1505 goto error_finish_iomap;
1506
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001507 entry = dax_insert_entry(mapping, vmf, entry, pfn,
Jan Karacaa51d22017-11-01 16:36:42 +01001508 0, write && !sync);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001509
Jan Karacaa51d22017-11-01 16:36:42 +01001510 /*
1511 * If we are doing synchronous page fault and inode needs fsync,
1512 * we can insert PTE into page tables only after that happens.
1513 * Skip insertion for now and return the pfn so that caller can
1514 * insert it after fsync is done.
1515 */
1516 if (sync) {
1517 if (WARN_ON_ONCE(!pfnp)) {
1518 error = -EIO;
1519 goto error_finish_iomap;
1520 }
1521 *pfnp = pfn;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001522 ret = VM_FAULT_NEEDDSYNC | major;
Jan Karacaa51d22017-11-01 16:36:42 +01001523 goto finish_iomap;
1524 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001525 trace_dax_insert_mapping(inode, vmf, entry);
1526 if (write)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001527 ret = vmf_insert_mixed_mkwrite(vma, vaddr, pfn);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001528 else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001529 ret = vmf_insert_mixed(vma, vaddr, pfn);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001530
Souptick Joarderab77dab2018-06-07 17:04:29 -07001531 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001532 case IOMAP_UNWRITTEN:
1533 case IOMAP_HOLE:
Jan Karad2c43ef2017-11-01 16:36:35 +01001534 if (!write) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001535 ret = dax_load_hole(mapping, entry, vmf);
Jan Kara13e451f2017-05-12 15:46:57 -07001536 goto finish_iomap;
Ross Zwisler15502902016-11-08 11:33:26 +11001537 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001538 /*FALLTHRU*/
1539 default:
1540 WARN_ON_ONCE(1);
1541 error = -EIO;
1542 break;
1543 }
1544
Jan Kara13e451f2017-05-12 15:46:57 -07001545 error_finish_iomap:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001546 ret = dax_fault_return(error);
Jan Kara9f141d62016-10-19 14:34:31 +02001547 finish_iomap:
1548 if (ops->iomap_end) {
1549 int copied = PAGE_SIZE;
1550
Souptick Joarderab77dab2018-06-07 17:04:29 -07001551 if (ret & VM_FAULT_ERROR)
Jan Kara9f141d62016-10-19 14:34:31 +02001552 copied = 0;
1553 /*
1554 * The fault is done by now and there's no way back (other
1555 * thread may be already happily using PTE we have installed).
1556 * Just ignore error from ->iomap_end since we cannot do much
1557 * with it.
1558 */
1559 ops->iomap_end(inode, pos, PAGE_SIZE, copied, flags, &iomap);
Ross Zwisler15502902016-11-08 11:33:26 +11001560 }
Jan Kara13e451f2017-05-12 15:46:57 -07001561 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001562 put_locked_mapping_entry(mapping, vmf->pgoff);
Jan Kara13e451f2017-05-12 15:46:57 -07001563 out:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001564 trace_dax_pte_fault_done(inode, vmf, ret);
1565 return ret | major;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001566}
Ross Zwisler642261a2016-11-08 11:34:45 +11001567
1568#ifdef CONFIG_FS_DAX_PMD
Souptick Joarderab77dab2018-06-07 17:04:29 -07001569static vm_fault_t dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001570 void *entry)
Ross Zwisler642261a2016-11-08 11:34:45 +11001571{
Dave Jiangf4200392017-02-22 15:40:06 -08001572 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1573 unsigned long pmd_addr = vmf->address & PMD_MASK;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001574 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001575 struct page *zero_page;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001576 void *ret = NULL;
Ross Zwisler642261a2016-11-08 11:34:45 +11001577 spinlock_t *ptl;
1578 pmd_t pmd_entry;
Dan Williams3fe07912017-10-14 17:13:45 -07001579 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001580
Dave Jiangf4200392017-02-22 15:40:06 -08001581 zero_page = mm_get_huge_zero_page(vmf->vma->vm_mm);
Ross Zwisler642261a2016-11-08 11:34:45 +11001582
1583 if (unlikely(!zero_page))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001584 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001585
Dan Williams3fe07912017-10-14 17:13:45 -07001586 pfn = page_to_pfn_t(zero_page);
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001587 ret = dax_insert_entry(mapping, vmf, entry, pfn,
Matthew Wilcox3159f942017-11-03 13:30:42 -04001588 DAX_PMD | DAX_ZERO_PAGE, false);
Ross Zwisler642261a2016-11-08 11:34:45 +11001589
Dave Jiangf4200392017-02-22 15:40:06 -08001590 ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1591 if (!pmd_none(*(vmf->pmd))) {
Ross Zwisler642261a2016-11-08 11:34:45 +11001592 spin_unlock(ptl);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001593 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001594 }
1595
Dave Jiangf4200392017-02-22 15:40:06 -08001596 pmd_entry = mk_pmd(zero_page, vmf->vma->vm_page_prot);
Ross Zwisler642261a2016-11-08 11:34:45 +11001597 pmd_entry = pmd_mkhuge(pmd_entry);
Dave Jiangf4200392017-02-22 15:40:06 -08001598 set_pmd_at(vmf->vma->vm_mm, pmd_addr, vmf->pmd, pmd_entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001599 spin_unlock(ptl);
Dave Jiangf4200392017-02-22 15:40:06 -08001600 trace_dax_pmd_load_hole(inode, vmf, zero_page, ret);
Ross Zwisler642261a2016-11-08 11:34:45 +11001601 return VM_FAULT_NOPAGE;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001602
1603fallback:
Dave Jiangf4200392017-02-22 15:40:06 -08001604 trace_dax_pmd_load_hole_fallback(inode, vmf, zero_page, ret);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001605 return VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001606}
1607
Souptick Joarderab77dab2018-06-07 17:04:29 -07001608static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Dave Jianga2d58162017-02-24 14:56:59 -08001609 const struct iomap_ops *ops)
Ross Zwisler642261a2016-11-08 11:34:45 +11001610{
Dave Jiangf4200392017-02-22 15:40:06 -08001611 struct vm_area_struct *vma = vmf->vma;
Ross Zwisler642261a2016-11-08 11:34:45 +11001612 struct address_space *mapping = vma->vm_file->f_mapping;
Dave Jiangd8a849e2017-02-22 15:40:03 -08001613 unsigned long pmd_addr = vmf->address & PMD_MASK;
1614 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001615 bool sync;
Jan Kara9484ab12016-11-10 10:26:50 +11001616 unsigned int iomap_flags = (write ? IOMAP_WRITE : 0) | IOMAP_FAULT;
Ross Zwisler642261a2016-11-08 11:34:45 +11001617 struct inode *inode = mapping->host;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001618 vm_fault_t result = VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001619 struct iomap iomap = { 0 };
1620 pgoff_t max_pgoff, pgoff;
Ross Zwisler642261a2016-11-08 11:34:45 +11001621 void *entry;
1622 loff_t pos;
1623 int error;
Jan Kara302a5e32017-11-01 16:36:37 +01001624 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001625
Ross Zwisler282a8e02017-02-22 15:39:50 -08001626 /*
1627 * Check whether offset isn't beyond end of file now. Caller is
1628 * supposed to hold locks serializing us with truncate / punch hole so
1629 * this is a reliable test.
1630 */
1631 pgoff = linear_page_index(vma, pmd_addr);
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001632 max_pgoff = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001633
Dave Jiangf4200392017-02-22 15:40:06 -08001634 trace_dax_pmd_fault(inode, vmf, max_pgoff, 0);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001635
Ross Zwislerfffa2812017-08-25 15:55:36 -07001636 /*
1637 * Make sure that the faulting address's PMD offset (color) matches
1638 * the PMD offset from the start of the file. This is necessary so
1639 * that a PMD range in the page table overlaps exactly with a PMD
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001640 * range in the page cache.
Ross Zwislerfffa2812017-08-25 15:55:36 -07001641 */
1642 if ((vmf->pgoff & PG_PMD_COLOUR) !=
1643 ((vmf->address >> PAGE_SHIFT) & PG_PMD_COLOUR))
1644 goto fallback;
1645
Ross Zwisler642261a2016-11-08 11:34:45 +11001646 /* Fall back to PTEs if we're going to COW */
1647 if (write && !(vma->vm_flags & VM_SHARED))
1648 goto fallback;
1649
1650 /* If the PMD would extend outside the VMA */
1651 if (pmd_addr < vma->vm_start)
1652 goto fallback;
1653 if ((pmd_addr + PMD_SIZE) > vma->vm_end)
1654 goto fallback;
1655
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001656 if (pgoff >= max_pgoff) {
Ross Zwisler282a8e02017-02-22 15:39:50 -08001657 result = VM_FAULT_SIGBUS;
1658 goto out;
1659 }
Ross Zwisler642261a2016-11-08 11:34:45 +11001660
1661 /* If the PMD would extend beyond the file size */
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001662 if ((pgoff | PG_PMD_COLOUR) >= max_pgoff)
Ross Zwisler642261a2016-11-08 11:34:45 +11001663 goto fallback;
1664
1665 /*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001666 * grab_mapping_entry() will make sure we get a 2MiB empty entry, a
1667 * 2MiB zero page entry or a DAX PMD. If it can't (because a 4k page
1668 * is already in the tree, for instance), it will return -EEXIST and
1669 * we just fall back to 4k entries.
Jan Kara9f141d62016-10-19 14:34:31 +02001670 */
Matthew Wilcox3159f942017-11-03 13:30:42 -04001671 entry = grab_mapping_entry(mapping, pgoff, DAX_PMD);
Jan Kara9f141d62016-10-19 14:34:31 +02001672 if (IS_ERR(entry))
Ross Zwisler876f2942017-05-12 15:47:00 -07001673 goto fallback;
1674
1675 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001676 * It is possible, particularly with mixed reads & writes to private
1677 * mappings, that we have raced with a PTE fault that overlaps with
1678 * the PMD we need to set up. If so just return and the fault will be
1679 * retried.
1680 */
1681 if (!pmd_none(*vmf->pmd) && !pmd_trans_huge(*vmf->pmd) &&
1682 !pmd_devmap(*vmf->pmd)) {
1683 result = 0;
1684 goto unlock_entry;
1685 }
1686
1687 /*
Ross Zwisler876f2942017-05-12 15:47:00 -07001688 * Note that we don't use iomap_apply here. We aren't doing I/O, only
1689 * setting up a mapping, so really we're using iomap_begin() as a way
1690 * to look up our filesystem block.
1691 */
1692 pos = (loff_t)pgoff << PAGE_SHIFT;
1693 error = ops->iomap_begin(inode, pos, PMD_SIZE, iomap_flags, &iomap);
1694 if (error)
1695 goto unlock_entry;
1696
1697 if (iomap.offset + iomap.length < pos + PMD_SIZE)
Jan Kara9f141d62016-10-19 14:34:31 +02001698 goto finish_iomap;
1699
Dan Williamsaaa422c2017-11-13 16:38:44 -08001700 sync = dax_fault_is_synchronous(iomap_flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001701
Ross Zwisler642261a2016-11-08 11:34:45 +11001702 switch (iomap.type) {
1703 case IOMAP_MAPPED:
Jan Kara302a5e32017-11-01 16:36:37 +01001704 error = dax_iomap_pfn(&iomap, pos, PMD_SIZE, &pfn);
1705 if (error < 0)
1706 goto finish_iomap;
1707
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001708 entry = dax_insert_entry(mapping, vmf, entry, pfn,
Matthew Wilcox3159f942017-11-03 13:30:42 -04001709 DAX_PMD, write && !sync);
Jan Kara302a5e32017-11-01 16:36:37 +01001710
Jan Karacaa51d22017-11-01 16:36:42 +01001711 /*
1712 * If we are doing synchronous page fault and inode needs fsync,
1713 * we can insert PMD into page tables only after that happens.
1714 * Skip insertion for now and return the pfn so that caller can
1715 * insert it after fsync is done.
1716 */
1717 if (sync) {
1718 if (WARN_ON_ONCE(!pfnp))
1719 goto finish_iomap;
1720 *pfnp = pfn;
1721 result = VM_FAULT_NEEDDSYNC;
1722 goto finish_iomap;
1723 }
1724
Jan Kara302a5e32017-11-01 16:36:37 +01001725 trace_dax_pmd_insert_mapping(inode, vmf, PMD_SIZE, pfn, entry);
1726 result = vmf_insert_pfn_pmd(vma, vmf->address, vmf->pmd, pfn,
1727 write);
Ross Zwisler642261a2016-11-08 11:34:45 +11001728 break;
1729 case IOMAP_UNWRITTEN:
1730 case IOMAP_HOLE:
1731 if (WARN_ON_ONCE(write))
Ross Zwisler876f2942017-05-12 15:47:00 -07001732 break;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001733 result = dax_pmd_load_hole(vmf, &iomap, entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001734 break;
1735 default:
1736 WARN_ON_ONCE(1);
1737 break;
1738 }
1739
Jan Kara9f141d62016-10-19 14:34:31 +02001740 finish_iomap:
1741 if (ops->iomap_end) {
1742 int copied = PMD_SIZE;
1743
1744 if (result == VM_FAULT_FALLBACK)
1745 copied = 0;
1746 /*
1747 * The fault is done by now and there's no way back (other
1748 * thread may be already happily using PMD we have installed).
1749 * Just ignore error from ->iomap_end since we cannot do much
1750 * with it.
1751 */
1752 ops->iomap_end(inode, pos, PMD_SIZE, copied, iomap_flags,
1753 &iomap);
1754 }
Ross Zwisler876f2942017-05-12 15:47:00 -07001755 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001756 put_locked_mapping_entry(mapping, pgoff);
Ross Zwisler642261a2016-11-08 11:34:45 +11001757 fallback:
1758 if (result == VM_FAULT_FALLBACK) {
Dave Jiangd8a849e2017-02-22 15:40:03 -08001759 split_huge_pmd(vma, vmf->pmd, vmf->address);
Ross Zwisler642261a2016-11-08 11:34:45 +11001760 count_vm_event(THP_FAULT_FALLBACK);
1761 }
Ross Zwisler282a8e02017-02-22 15:39:50 -08001762out:
Dave Jiangf4200392017-02-22 15:40:06 -08001763 trace_dax_pmd_fault_done(inode, vmf, max_pgoff, result);
Ross Zwisler642261a2016-11-08 11:34:45 +11001764 return result;
1765}
Dave Jianga2d58162017-02-24 14:56:59 -08001766#else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001767static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Arnd Bergmann01cddfe2017-02-27 14:26:44 -08001768 const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001769{
1770 return VM_FAULT_FALLBACK;
1771}
Ross Zwisler642261a2016-11-08 11:34:45 +11001772#endif /* CONFIG_FS_DAX_PMD */
Dave Jianga2d58162017-02-24 14:56:59 -08001773
1774/**
1775 * dax_iomap_fault - handle a page fault on a DAX file
1776 * @vmf: The description of the fault
Jan Karacec04e82017-11-01 16:36:38 +01001777 * @pe_size: Size of the page to fault in
Jan Kara9a0dd422017-11-01 16:36:39 +01001778 * @pfnp: PFN to insert for synchronous faults if fsync is required
Jan Karac0b24622018-01-07 16:38:43 -05001779 * @iomap_errp: Storage for detailed error code in case of error
Jan Karacec04e82017-11-01 16:36:38 +01001780 * @ops: Iomap ops passed from the file system
Dave Jianga2d58162017-02-24 14:56:59 -08001781 *
1782 * When a page fault occurs, filesystems may call this helper in
1783 * their fault handler for DAX files. dax_iomap_fault() assumes the caller
1784 * has done all the necessary locking for page fault to proceed
1785 * successfully.
1786 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001787vm_fault_t dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
Jan Karac0b24622018-01-07 16:38:43 -05001788 pfn_t *pfnp, int *iomap_errp, const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001789{
Dave Jiangc791ace2017-02-24 14:57:08 -08001790 switch (pe_size) {
1791 case PE_SIZE_PTE:
Jan Karac0b24622018-01-07 16:38:43 -05001792 return dax_iomap_pte_fault(vmf, pfnp, iomap_errp, ops);
Dave Jiangc791ace2017-02-24 14:57:08 -08001793 case PE_SIZE_PMD:
Jan Kara9a0dd422017-11-01 16:36:39 +01001794 return dax_iomap_pmd_fault(vmf, pfnp, ops);
Dave Jianga2d58162017-02-24 14:56:59 -08001795 default:
1796 return VM_FAULT_FALLBACK;
1797 }
1798}
1799EXPORT_SYMBOL_GPL(dax_iomap_fault);
Jan Kara71eab6d2017-11-01 16:36:43 +01001800
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001801/*
Jan Kara71eab6d2017-11-01 16:36:43 +01001802 * dax_insert_pfn_mkwrite - insert PTE or PMD entry into page tables
1803 * @vmf: The description of the fault
Jan Kara71eab6d2017-11-01 16:36:43 +01001804 * @pfn: PFN to insert
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001805 * @order: Order of entry to insert.
Jan Kara71eab6d2017-11-01 16:36:43 +01001806 *
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001807 * This function inserts a writeable PTE or PMD entry into the page tables
1808 * for an mmaped DAX file. It also marks the page cache entry as dirty.
Jan Kara71eab6d2017-11-01 16:36:43 +01001809 */
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001810static vm_fault_t
1811dax_insert_pfn_mkwrite(struct vm_fault *vmf, pfn_t pfn, unsigned int order)
Jan Kara71eab6d2017-11-01 16:36:43 +01001812{
1813 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001814 XA_STATE_ORDER(xas, &mapping->i_pages, vmf->pgoff, order);
1815 void *entry;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001816 vm_fault_t ret;
Jan Kara71eab6d2017-11-01 16:36:43 +01001817
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001818 xas_lock_irq(&xas);
1819 entry = get_unlocked_entry(&xas);
Jan Kara71eab6d2017-11-01 16:36:43 +01001820 /* Did we race with someone splitting entry or so? */
1821 if (!entry ||
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001822 (order == 0 && !dax_is_pte_entry(entry)) ||
1823 (order == PMD_ORDER && (xa_is_internal(entry) ||
1824 !dax_is_pmd_entry(entry)))) {
1825 put_unlocked_entry(&xas, entry);
1826 xas_unlock_irq(&xas);
Jan Kara71eab6d2017-11-01 16:36:43 +01001827 trace_dax_insert_pfn_mkwrite_no_entry(mapping->host, vmf,
1828 VM_FAULT_NOPAGE);
1829 return VM_FAULT_NOPAGE;
1830 }
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001831 xas_set_mark(&xas, PAGECACHE_TAG_DIRTY);
1832 dax_lock_entry(&xas, entry);
1833 xas_unlock_irq(&xas);
1834 if (order == 0)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001835 ret = vmf_insert_mixed_mkwrite(vmf->vma, vmf->address, pfn);
Jan Kara71eab6d2017-11-01 16:36:43 +01001836#ifdef CONFIG_FS_DAX_PMD
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001837 else if (order == PMD_ORDER)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001838 ret = vmf_insert_pfn_pmd(vmf->vma, vmf->address, vmf->pmd,
Jan Kara71eab6d2017-11-01 16:36:43 +01001839 pfn, true);
Jan Kara71eab6d2017-11-01 16:36:43 +01001840#endif
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001841 else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001842 ret = VM_FAULT_FALLBACK;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001843 dax_unlock_entry(&xas, entry);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001844 trace_dax_insert_pfn_mkwrite(mapping->host, vmf, ret);
1845 return ret;
Jan Kara71eab6d2017-11-01 16:36:43 +01001846}
1847
1848/**
1849 * dax_finish_sync_fault - finish synchronous page fault
1850 * @vmf: The description of the fault
1851 * @pe_size: Size of entry to be inserted
1852 * @pfn: PFN to insert
1853 *
1854 * This function ensures that the file range touched by the page fault is
1855 * stored persistently on the media and handles inserting of appropriate page
1856 * table entry.
1857 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001858vm_fault_t dax_finish_sync_fault(struct vm_fault *vmf,
1859 enum page_entry_size pe_size, pfn_t pfn)
Jan Kara71eab6d2017-11-01 16:36:43 +01001860{
1861 int err;
1862 loff_t start = ((loff_t)vmf->pgoff) << PAGE_SHIFT;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001863 unsigned int order = pe_order(pe_size);
1864 size_t len = PAGE_SIZE << order;
Jan Kara71eab6d2017-11-01 16:36:43 +01001865
Jan Kara71eab6d2017-11-01 16:36:43 +01001866 err = vfs_fsync_range(vmf->vma->vm_file, start, start + len - 1, 1);
1867 if (err)
1868 return VM_FAULT_SIGBUS;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001869 return dax_insert_pfn_mkwrite(vmf, pfn, order);
Jan Kara71eab6d2017-11-01 16:36:43 +01001870}
1871EXPORT_SYMBOL_GPL(dax_finish_sync_fault);