blob: de3ba829a3f45f955541ae9759d7784be325f5f7 [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 Zwislerce95ab0f2016-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
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001000static int dax_writeback_one(struct xa_state *xas, struct dax_device *dax_dev,
1001 struct address_space *mapping, void *entry)
Ross Zwisler9973c982016-01-22 15:10:47 -08001002{
Dan Williams3fe07912017-10-14 17:13:45 -07001003 unsigned long pfn;
1004 long ret = 0;
Dan Williamscccbce62017-01-27 13:31:42 -08001005 size_t size;
Ross Zwisler9973c982016-01-22 15:10:47 -08001006
Ross Zwisler9973c982016-01-22 15:10:47 -08001007 /*
Jan Karaa6abc2c2016-12-14 15:07:47 -08001008 * A page got tagged dirty in DAX mapping? Something is seriously
1009 * wrong.
Ross Zwisler9973c982016-01-22 15:10:47 -08001010 */
Matthew Wilcox3159f942017-11-03 13:30:42 -04001011 if (WARN_ON(!xa_is_value(entry)))
Jan Karaa6abc2c2016-12-14 15:07:47 -08001012 return -EIO;
Ross Zwisler9973c982016-01-22 15:10:47 -08001013
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001014 if (unlikely(dax_is_locked(entry))) {
1015 void *old_entry = entry;
1016
1017 entry = get_unlocked_entry(xas);
1018
1019 /* Entry got punched out / reallocated? */
1020 if (!entry || WARN_ON_ONCE(!xa_is_value(entry)))
1021 goto put_unlocked;
1022 /*
1023 * Entry got reallocated elsewhere? No need to writeback.
1024 * We have to compare pfns as we must not bail out due to
1025 * difference in lockbit or entry type.
1026 */
1027 if (dax_to_pfn(old_entry) != dax_to_pfn(entry))
1028 goto put_unlocked;
1029 if (WARN_ON_ONCE(dax_is_empty_entry(entry) ||
1030 dax_is_zero_entry(entry))) {
1031 ret = -EIO;
1032 goto put_unlocked;
1033 }
1034
1035 /* Another fsync thread may have already done this entry */
1036 if (!xas_get_mark(xas, PAGECACHE_TAG_TOWRITE))
1037 goto put_unlocked;
Ross Zwisler9973c982016-01-22 15:10:47 -08001038 }
1039
Jan Karaa6abc2c2016-12-14 15:07:47 -08001040 /* Lock the entry to serialize with page faults */
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001041 dax_lock_entry(xas, entry);
1042
Jan Karaa6abc2c2016-12-14 15:07:47 -08001043 /*
1044 * We can clear the tag now but we have to be careful so that concurrent
1045 * dax_writeback_one() calls for the same index cannot finish before we
1046 * actually flush the caches. This is achieved as the calls will look
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001047 * at the entry only under the i_pages lock and once they do that
1048 * they will see the entry locked and wait for it to unlock.
Jan Karaa6abc2c2016-12-14 15:07:47 -08001049 */
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001050 xas_clear_mark(xas, PAGECACHE_TAG_TOWRITE);
1051 xas_unlock_irq(xas);
Jan Karaa6abc2c2016-12-14 15:07:47 -08001052
Ross Zwisler642261a2016-11-08 11:34:45 +11001053 /*
1054 * Even if dax_writeback_mapping_range() was given a wbc->range_start
1055 * in the middle of a PMD, the 'index' we are given will be aligned to
Dan Williams3fe07912017-10-14 17:13:45 -07001056 * the start index of the PMD, as will the pfn we pull from 'entry'.
1057 * This allows us to flush for PMD_SIZE and not have to worry about
1058 * partial PMD writebacks.
Ross Zwisler642261a2016-11-08 11:34:45 +11001059 */
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001060 pfn = dax_to_pfn(entry);
1061 size = PAGE_SIZE << dax_entry_order(entry);
Dan Williamscccbce62017-01-27 13:31:42 -08001062
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001063 dax_entry_mkclean(mapping, xas->xa_index, pfn);
Dan Williams3fe07912017-10-14 17:13:45 -07001064 dax_flush(dax_dev, page_address(pfn_to_page(pfn)), size);
Jan Kara4b4bb462016-12-14 15:07:53 -08001065 /*
1066 * After we have flushed the cache, we can clear the dirty tag. There
1067 * cannot be new dirty data in the pfn after the flush has completed as
1068 * the pfn mappings are writeprotected and fault waits for mapping
1069 * entry lock.
1070 */
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001071 xas_reset(xas);
1072 xas_lock_irq(xas);
1073 xas_store(xas, entry);
1074 xas_clear_mark(xas, PAGECACHE_TAG_DIRTY);
1075 dax_wake_entry(xas, entry, false);
1076
1077 trace_dax_writeback_one(mapping->host, xas->xa_index,
1078 size >> PAGE_SHIFT);
Ross Zwisler9973c982016-01-22 15:10:47 -08001079 return ret;
1080
Jan Karaa6abc2c2016-12-14 15:07:47 -08001081 put_unlocked:
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001082 put_unlocked_entry(xas, entry);
Ross Zwisler9973c982016-01-22 15:10:47 -08001083 return ret;
1084}
1085
1086/*
1087 * Flush the mapping to the persistent domain within the byte range of [start,
1088 * end]. This is required by data integrity operations to ensure file data is
1089 * on persistent storage prior to completion of the operation.
1090 */
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001091int dax_writeback_mapping_range(struct address_space *mapping,
1092 struct block_device *bdev, struct writeback_control *wbc)
Ross Zwisler9973c982016-01-22 15:10:47 -08001093{
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001094 XA_STATE(xas, &mapping->i_pages, wbc->range_start >> PAGE_SHIFT);
Ross Zwisler9973c982016-01-22 15:10:47 -08001095 struct inode *inode = mapping->host;
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001096 pgoff_t end_index = wbc->range_end >> PAGE_SHIFT;
Dan Williamscccbce62017-01-27 13:31:42 -08001097 struct dax_device *dax_dev;
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001098 void *entry;
1099 int ret = 0;
1100 unsigned int scanned = 0;
Ross Zwisler9973c982016-01-22 15:10:47 -08001101
1102 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
1103 return -EIO;
1104
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001105 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
1106 return 0;
1107
Dan Williamscccbce62017-01-27 13:31:42 -08001108 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
1109 if (!dax_dev)
1110 return -EIO;
1111
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001112 trace_dax_writeback_range(inode, xas.xa_index, end_index);
Ross Zwisler9973c982016-01-22 15:10:47 -08001113
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001114 tag_pages_for_writeback(mapping, xas.xa_index, end_index);
Ross Zwislerd14a3f42017-05-08 16:00:10 -07001115
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001116 xas_lock_irq(&xas);
1117 xas_for_each_marked(&xas, entry, end_index, PAGECACHE_TAG_TOWRITE) {
1118 ret = dax_writeback_one(&xas, dax_dev, mapping, entry);
1119 if (ret < 0) {
1120 mapping_set_error(mapping, ret);
Ross Zwisler9973c982016-01-22 15:10:47 -08001121 break;
Ross Zwisler9973c982016-01-22 15:10:47 -08001122 }
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001123 if (++scanned % XA_CHECK_SCHED)
1124 continue;
1125
1126 xas_pause(&xas);
1127 xas_unlock_irq(&xas);
1128 cond_resched();
1129 xas_lock_irq(&xas);
Ross Zwisler9973c982016-01-22 15:10:47 -08001130 }
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001131 xas_unlock_irq(&xas);
Dan Williamscccbce62017-01-27 13:31:42 -08001132 put_dax(dax_dev);
Matthew Wilcox9fc747f62018-03-28 16:03:45 -04001133 trace_dax_writeback_range_done(inode, xas.xa_index, end_index);
1134 return ret;
Ross Zwisler9973c982016-01-22 15:10:47 -08001135}
1136EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
1137
Jan Kara31a6f1a2017-11-01 16:36:32 +01001138static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001139{
Linus Torvaldsa3841f92017-11-17 09:51:57 -08001140 return (iomap->addr + (pos & PAGE_MASK) - iomap->offset) >> 9;
Jan Kara31a6f1a2017-11-01 16:36:32 +01001141}
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001142
Jan Kara5e161e42017-11-01 16:36:33 +01001143static int dax_iomap_pfn(struct iomap *iomap, loff_t pos, size_t size,
1144 pfn_t *pfnp)
1145{
1146 const sector_t sector = dax_iomap_sector(iomap, pos);
1147 pgoff_t pgoff;
Jan Kara5e161e42017-11-01 16:36:33 +01001148 int id, rc;
1149 long length;
1150
1151 rc = bdev_dax_pgoff(iomap->bdev, sector, size, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -08001152 if (rc)
1153 return rc;
Dan Williamscccbce62017-01-27 13:31:42 -08001154 id = dax_read_lock();
Jan Kara5e161e42017-11-01 16:36:33 +01001155 length = dax_direct_access(iomap->dax_dev, pgoff, PHYS_PFN(size),
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001156 NULL, pfnp);
Jan Kara5e161e42017-11-01 16:36:33 +01001157 if (length < 0) {
1158 rc = length;
1159 goto out;
Dan Williamscccbce62017-01-27 13:31:42 -08001160 }
Jan Kara5e161e42017-11-01 16:36:33 +01001161 rc = -EINVAL;
1162 if (PFN_PHYS(length) < size)
1163 goto out;
1164 if (pfn_t_to_pfn(*pfnp) & (PHYS_PFN(size)-1))
1165 goto out;
1166 /* For larger pages we need devmap */
1167 if (length > 1 && !pfn_t_devmap(*pfnp))
1168 goto out;
1169 rc = 0;
1170out:
Dan Williamscccbce62017-01-27 13:31:42 -08001171 dax_read_unlock(id);
Jan Kara5e161e42017-11-01 16:36:33 +01001172 return rc;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -08001173}
1174
Ross Zwislere30331f2017-09-06 16:18:39 -07001175/*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001176 * The user has performed a load from a hole in the file. Allocating a new
1177 * page in the file would cause excessive storage usage for workloads with
1178 * sparse files. Instead we insert a read-only mapping of the 4k zero page.
1179 * If this page is ever written to we will re-fault and change the mapping to
1180 * point to real DAX storage instead.
Ross Zwislere30331f2017-09-06 16:18:39 -07001181 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001182static vm_fault_t dax_load_hole(struct address_space *mapping, void *entry,
Ross Zwislere30331f2017-09-06 16:18:39 -07001183 struct vm_fault *vmf)
1184{
1185 struct inode *inode = mapping->host;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001186 unsigned long vaddr = vmf->address;
Matthew Wilcoxb90ca5c2018-09-11 21:27:44 -07001187 pfn_t pfn = pfn_to_pfn_t(my_zero_pfn(vaddr));
1188 vm_fault_t ret;
Ross Zwislere30331f2017-09-06 16:18:39 -07001189
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001190 dax_insert_entry(mapping, vmf, entry, pfn,
Matthew Wilcox3159f942017-11-03 13:30:42 -04001191 DAX_ZERO_PAGE, false);
1192
Souptick Joarderab77dab2018-06-07 17:04:29 -07001193 ret = vmf_insert_mixed(vmf->vma, vaddr, pfn);
Ross Zwislere30331f2017-09-06 16:18:39 -07001194 trace_dax_load_hole(inode, vmf, ret);
1195 return ret;
1196}
1197
Vishal Verma4b0228f2016-04-21 15:13:46 -04001198static bool dax_range_is_aligned(struct block_device *bdev,
1199 unsigned int offset, unsigned int length)
1200{
1201 unsigned short sector_size = bdev_logical_block_size(bdev);
1202
1203 if (!IS_ALIGNED(offset, sector_size))
1204 return false;
1205 if (!IS_ALIGNED(length, sector_size))
1206 return false;
1207
1208 return true;
1209}
1210
Dan Williamscccbce62017-01-27 13:31:42 -08001211int __dax_zero_page_range(struct block_device *bdev,
1212 struct dax_device *dax_dev, sector_t sector,
1213 unsigned int offset, unsigned int size)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001214{
Dan Williamscccbce62017-01-27 13:31:42 -08001215 if (dax_range_is_aligned(bdev, offset, size)) {
1216 sector_t start_sector = sector + (offset >> 9);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001217
1218 return blkdev_issue_zeroout(bdev, start_sector,
Linus Torvalds53ef7d02017-05-05 18:49:20 -07001219 size >> 9, GFP_NOFS, 0);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001220 } else {
Dan Williamscccbce62017-01-27 13:31:42 -08001221 pgoff_t pgoff;
1222 long rc, id;
1223 void *kaddr;
Dan Williamscccbce62017-01-27 13:31:42 -08001224
Dan Williamse84b83b2017-05-10 19:38:13 -07001225 rc = bdev_dax_pgoff(bdev, sector, PAGE_SIZE, &pgoff);
Dan Williamscccbce62017-01-27 13:31:42 -08001226 if (rc)
1227 return rc;
1228
1229 id = dax_read_lock();
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001230 rc = dax_direct_access(dax_dev, pgoff, 1, &kaddr, NULL);
Dan Williamscccbce62017-01-27 13:31:42 -08001231 if (rc < 0) {
1232 dax_read_unlock(id);
1233 return rc;
1234 }
Dan Williams81f55872017-05-29 13:12:20 -07001235 memset(kaddr + offset, 0, size);
Mikulas Patockac3ca0152017-08-31 21:47:43 -04001236 dax_flush(dax_dev, kaddr + offset, size);
Dan Williamscccbce62017-01-27 13:31:42 -08001237 dax_read_unlock(id);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001238 }
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001239 return 0;
1240}
1241EXPORT_SYMBOL_GPL(__dax_zero_page_range);
1242
Christoph Hellwiga254e562016-09-19 11:24:49 +10001243static loff_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001244dax_iomap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
Christoph Hellwiga254e562016-09-19 11:24:49 +10001245 struct iomap *iomap)
1246{
Dan Williamscccbce62017-01-27 13:31:42 -08001247 struct block_device *bdev = iomap->bdev;
1248 struct dax_device *dax_dev = iomap->dax_dev;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001249 struct iov_iter *iter = data;
1250 loff_t end = pos + length, done = 0;
1251 ssize_t ret = 0;
Dan Williamsa77d4782018-03-16 17:36:44 -07001252 size_t xfer;
Dan Williamscccbce62017-01-27 13:31:42 -08001253 int id;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001254
1255 if (iov_iter_rw(iter) == READ) {
1256 end = min(end, i_size_read(inode));
1257 if (pos >= end)
1258 return 0;
1259
1260 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
1261 return iov_iter_zero(min(length, end - pos), iter);
1262 }
1263
1264 if (WARN_ON_ONCE(iomap->type != IOMAP_MAPPED))
1265 return -EIO;
1266
Jan Karae3fce682016-08-10 17:10:28 +02001267 /*
1268 * Write can allocate block for an area which has a hole page mapped
1269 * into page tables. We have to tear down these mappings so that data
1270 * written by write(2) is visible in mmap.
1271 */
Jan Karacd656372017-05-12 15:46:50 -07001272 if (iomap->flags & IOMAP_F_NEW) {
Jan Karae3fce682016-08-10 17:10:28 +02001273 invalidate_inode_pages2_range(inode->i_mapping,
1274 pos >> PAGE_SHIFT,
1275 (end - 1) >> PAGE_SHIFT);
1276 }
1277
Dan Williamscccbce62017-01-27 13:31:42 -08001278 id = dax_read_lock();
Christoph Hellwiga254e562016-09-19 11:24:49 +10001279 while (pos < end) {
1280 unsigned offset = pos & (PAGE_SIZE - 1);
Dan Williamscccbce62017-01-27 13:31:42 -08001281 const size_t size = ALIGN(length + offset, PAGE_SIZE);
1282 const sector_t sector = dax_iomap_sector(iomap, pos);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001283 ssize_t map_len;
Dan Williamscccbce62017-01-27 13:31:42 -08001284 pgoff_t pgoff;
1285 void *kaddr;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001286
Michal Hockod1908f52017-02-03 13:13:26 -08001287 if (fatal_signal_pending(current)) {
1288 ret = -EINTR;
1289 break;
1290 }
1291
Dan Williamscccbce62017-01-27 13:31:42 -08001292 ret = bdev_dax_pgoff(bdev, sector, size, &pgoff);
1293 if (ret)
1294 break;
1295
1296 map_len = dax_direct_access(dax_dev, pgoff, PHYS_PFN(size),
Huaisheng Ye86ed9132018-07-30 15:15:48 +08001297 &kaddr, NULL);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001298 if (map_len < 0) {
1299 ret = map_len;
1300 break;
1301 }
1302
Dan Williamscccbce62017-01-27 13:31:42 -08001303 map_len = PFN_PHYS(map_len);
1304 kaddr += offset;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001305 map_len -= offset;
1306 if (map_len > end - pos)
1307 map_len = end - pos;
1308
Ross Zwislera2e050f2017-09-06 16:18:54 -07001309 /*
1310 * The userspace address for the memory copy has already been
1311 * validated via access_ok() in either vfs_read() or
1312 * vfs_write(), depending on which operation we are doing.
1313 */
Christoph Hellwiga254e562016-09-19 11:24:49 +10001314 if (iov_iter_rw(iter) == WRITE)
Dan Williamsa77d4782018-03-16 17:36:44 -07001315 xfer = dax_copy_from_iter(dax_dev, pgoff, kaddr,
Dan Williamsfec53772017-05-29 21:56:49 -07001316 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001317 else
Dan Williamsa77d4782018-03-16 17:36:44 -07001318 xfer = dax_copy_to_iter(dax_dev, pgoff, kaddr,
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07001319 map_len, iter);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001320
Dan Williamsa77d4782018-03-16 17:36:44 -07001321 pos += xfer;
1322 length -= xfer;
1323 done += xfer;
1324
1325 if (xfer == 0)
1326 ret = -EFAULT;
1327 if (xfer < map_len)
1328 break;
Christoph Hellwiga254e562016-09-19 11:24:49 +10001329 }
Dan Williamscccbce62017-01-27 13:31:42 -08001330 dax_read_unlock(id);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001331
1332 return done ? done : ret;
1333}
1334
1335/**
Ross Zwisler11c59c92016-11-08 11:32:46 +11001336 * dax_iomap_rw - Perform I/O to a DAX file
Christoph Hellwiga254e562016-09-19 11:24:49 +10001337 * @iocb: The control block for this I/O
1338 * @iter: The addresses to do I/O from or to
1339 * @ops: iomap ops passed from the file system
1340 *
1341 * This function performs read and write operations to directly mapped
1342 * persistent memory. The callers needs to take care of read/write exclusion
1343 * and evicting any page cache pages in the region under I/O.
1344 */
1345ssize_t
Ross Zwisler11c59c92016-11-08 11:32:46 +11001346dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001347 const struct iomap_ops *ops)
Christoph Hellwiga254e562016-09-19 11:24:49 +10001348{
1349 struct address_space *mapping = iocb->ki_filp->f_mapping;
1350 struct inode *inode = mapping->host;
1351 loff_t pos = iocb->ki_pos, ret = 0, done = 0;
1352 unsigned flags = 0;
1353
Christoph Hellwig168316d2017-02-08 14:43:13 -05001354 if (iov_iter_rw(iter) == WRITE) {
1355 lockdep_assert_held_exclusive(&inode->i_rwsem);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001356 flags |= IOMAP_WRITE;
Christoph Hellwig168316d2017-02-08 14:43:13 -05001357 } else {
1358 lockdep_assert_held(&inode->i_rwsem);
1359 }
Christoph Hellwiga254e562016-09-19 11:24:49 +10001360
Christoph Hellwiga254e562016-09-19 11:24:49 +10001361 while (iov_iter_count(iter)) {
1362 ret = iomap_apply(inode, pos, iov_iter_count(iter), flags, ops,
Ross Zwisler11c59c92016-11-08 11:32:46 +11001363 iter, dax_iomap_actor);
Christoph Hellwiga254e562016-09-19 11:24:49 +10001364 if (ret <= 0)
1365 break;
1366 pos += ret;
1367 done += ret;
1368 }
1369
1370 iocb->ki_pos += done;
1371 return done ? done : ret;
1372}
Ross Zwisler11c59c92016-11-08 11:32:46 +11001373EXPORT_SYMBOL_GPL(dax_iomap_rw);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001374
Souptick Joarderab77dab2018-06-07 17:04:29 -07001375static vm_fault_t dax_fault_return(int error)
Jan Kara9f141d62016-10-19 14:34:31 +02001376{
1377 if (error == 0)
1378 return VM_FAULT_NOPAGE;
1379 if (error == -ENOMEM)
1380 return VM_FAULT_OOM;
1381 return VM_FAULT_SIGBUS;
1382}
1383
Dan Williamsaaa422c2017-11-13 16:38:44 -08001384/*
1385 * MAP_SYNC on a dax mapping guarantees dirty metadata is
1386 * flushed on write-faults (non-cow), but not read-faults.
1387 */
1388static bool dax_fault_is_synchronous(unsigned long flags,
1389 struct vm_area_struct *vma, struct iomap *iomap)
1390{
1391 return (flags & IOMAP_WRITE) && (vma->vm_flags & VM_SYNC)
1392 && (iomap->flags & IOMAP_F_DIRTY);
1393}
1394
Souptick Joarderab77dab2018-06-07 17:04:29 -07001395static vm_fault_t dax_iomap_pte_fault(struct vm_fault *vmf, pfn_t *pfnp,
Jan Karac0b24622018-01-07 16:38:43 -05001396 int *iomap_errp, const struct iomap_ops *ops)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001397{
Jan Karaa0987ad2017-11-01 16:36:34 +01001398 struct vm_area_struct *vma = vmf->vma;
1399 struct address_space *mapping = vma->vm_file->f_mapping;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001400 struct inode *inode = mapping->host;
Jan Kara1a29d852016-12-14 15:07:01 -08001401 unsigned long vaddr = vmf->address;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001402 loff_t pos = (loff_t)vmf->pgoff << PAGE_SHIFT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001403 struct iomap iomap = { 0 };
Jan Kara9484ab12016-11-10 10:26:50 +11001404 unsigned flags = IOMAP_FAULT;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001405 int error, major = 0;
Jan Karad2c43ef2017-11-01 16:36:35 +01001406 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001407 bool sync;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001408 vm_fault_t ret = 0;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001409 void *entry;
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001410 pfn_t pfn;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001411
Souptick Joarderab77dab2018-06-07 17:04:29 -07001412 trace_dax_pte_fault(inode, vmf, ret);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001413 /*
1414 * Check whether offset isn't beyond end of file now. Caller is supposed
1415 * to hold locks serializing us with truncate / punch hole so this is
1416 * a reliable test.
1417 */
Ross Zwislera9c42b32017-05-08 16:00:00 -07001418 if (pos >= i_size_read(inode)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001419 ret = VM_FAULT_SIGBUS;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001420 goto out;
1421 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001422
Jan Karad2c43ef2017-11-01 16:36:35 +01001423 if (write && !vmf->cow_page)
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001424 flags |= IOMAP_WRITE;
1425
Jan Kara13e451f2017-05-12 15:46:57 -07001426 entry = grab_mapping_entry(mapping, vmf->pgoff, 0);
1427 if (IS_ERR(entry)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001428 ret = dax_fault_return(PTR_ERR(entry));
Jan Kara13e451f2017-05-12 15:46:57 -07001429 goto out;
1430 }
1431
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001432 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001433 * It is possible, particularly with mixed reads & writes to private
1434 * mappings, that we have raced with a PMD fault that overlaps with
1435 * the PTE we need to set up. If so just return and the fault will be
1436 * retried.
1437 */
1438 if (pmd_trans_huge(*vmf->pmd) || pmd_devmap(*vmf->pmd)) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001439 ret = VM_FAULT_NOPAGE;
Ross Zwislere2093922017-06-02 14:46:37 -07001440 goto unlock_entry;
1441 }
1442
1443 /*
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001444 * Note that we don't bother to use iomap_apply here: DAX required
1445 * the file system block size to be equal the page size, which means
1446 * that we never have to deal with more than a single extent here.
1447 */
1448 error = ops->iomap_begin(inode, pos, PAGE_SIZE, flags, &iomap);
Jan Karac0b24622018-01-07 16:38:43 -05001449 if (iomap_errp)
1450 *iomap_errp = error;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001451 if (error) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001452 ret = dax_fault_return(error);
Jan Kara13e451f2017-05-12 15:46:57 -07001453 goto unlock_entry;
Ross Zwislera9c42b32017-05-08 16:00:00 -07001454 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001455 if (WARN_ON_ONCE(iomap.offset + iomap.length < pos + PAGE_SIZE)) {
Jan Kara13e451f2017-05-12 15:46:57 -07001456 error = -EIO; /* fs corruption? */
1457 goto error_finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001458 }
1459
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001460 if (vmf->cow_page) {
Jan Kara31a6f1a2017-11-01 16:36:32 +01001461 sector_t sector = dax_iomap_sector(&iomap, pos);
1462
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001463 switch (iomap.type) {
1464 case IOMAP_HOLE:
1465 case IOMAP_UNWRITTEN:
1466 clear_user_highpage(vmf->cow_page, vaddr);
1467 break;
1468 case IOMAP_MAPPED:
Dan Williamscccbce62017-01-27 13:31:42 -08001469 error = copy_user_dax(iomap.bdev, iomap.dax_dev,
1470 sector, PAGE_SIZE, vmf->cow_page, vaddr);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001471 break;
1472 default:
1473 WARN_ON_ONCE(1);
1474 error = -EIO;
1475 break;
1476 }
1477
1478 if (error)
Jan Kara13e451f2017-05-12 15:46:57 -07001479 goto error_finish_iomap;
Jan Karab1aa8122016-12-14 15:07:24 -08001480
1481 __SetPageUptodate(vmf->cow_page);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001482 ret = finish_fault(vmf);
1483 if (!ret)
1484 ret = VM_FAULT_DONE_COW;
Jan Kara13e451f2017-05-12 15:46:57 -07001485 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001486 }
1487
Dan Williamsaaa422c2017-11-13 16:38:44 -08001488 sync = dax_fault_is_synchronous(flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001489
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001490 switch (iomap.type) {
1491 case IOMAP_MAPPED:
1492 if (iomap.flags & IOMAP_F_NEW) {
1493 count_vm_event(PGMAJFAULT);
Jan Karaa0987ad2017-11-01 16:36:34 +01001494 count_memcg_event_mm(vma->vm_mm, PGMAJFAULT);
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001495 major = VM_FAULT_MAJOR;
1496 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001497 error = dax_iomap_pfn(&iomap, pos, PAGE_SIZE, &pfn);
1498 if (error < 0)
1499 goto error_finish_iomap;
1500
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001501 entry = dax_insert_entry(mapping, vmf, entry, pfn,
Jan Karacaa51d22017-11-01 16:36:42 +01001502 0, write && !sync);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001503
Jan Karacaa51d22017-11-01 16:36:42 +01001504 /*
1505 * If we are doing synchronous page fault and inode needs fsync,
1506 * we can insert PTE into page tables only after that happens.
1507 * Skip insertion for now and return the pfn so that caller can
1508 * insert it after fsync is done.
1509 */
1510 if (sync) {
1511 if (WARN_ON_ONCE(!pfnp)) {
1512 error = -EIO;
1513 goto error_finish_iomap;
1514 }
1515 *pfnp = pfn;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001516 ret = VM_FAULT_NEEDDSYNC | major;
Jan Karacaa51d22017-11-01 16:36:42 +01001517 goto finish_iomap;
1518 }
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001519 trace_dax_insert_mapping(inode, vmf, entry);
1520 if (write)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001521 ret = vmf_insert_mixed_mkwrite(vma, vaddr, pfn);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001522 else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001523 ret = vmf_insert_mixed(vma, vaddr, pfn);
Jan Kara1b5a1cb2017-11-01 16:36:36 +01001524
Souptick Joarderab77dab2018-06-07 17:04:29 -07001525 goto finish_iomap;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001526 case IOMAP_UNWRITTEN:
1527 case IOMAP_HOLE:
Jan Karad2c43ef2017-11-01 16:36:35 +01001528 if (!write) {
Souptick Joarderab77dab2018-06-07 17:04:29 -07001529 ret = dax_load_hole(mapping, entry, vmf);
Jan Kara13e451f2017-05-12 15:46:57 -07001530 goto finish_iomap;
Ross Zwisler15502902016-11-08 11:33:26 +11001531 }
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001532 /*FALLTHRU*/
1533 default:
1534 WARN_ON_ONCE(1);
1535 error = -EIO;
1536 break;
1537 }
1538
Jan Kara13e451f2017-05-12 15:46:57 -07001539 error_finish_iomap:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001540 ret = dax_fault_return(error);
Jan Kara9f141d62016-10-19 14:34:31 +02001541 finish_iomap:
1542 if (ops->iomap_end) {
1543 int copied = PAGE_SIZE;
1544
Souptick Joarderab77dab2018-06-07 17:04:29 -07001545 if (ret & VM_FAULT_ERROR)
Jan Kara9f141d62016-10-19 14:34:31 +02001546 copied = 0;
1547 /*
1548 * The fault is done by now and there's no way back (other
1549 * thread may be already happily using PTE we have installed).
1550 * Just ignore error from ->iomap_end since we cannot do much
1551 * with it.
1552 */
1553 ops->iomap_end(inode, pos, PAGE_SIZE, copied, flags, &iomap);
Ross Zwisler15502902016-11-08 11:33:26 +11001554 }
Jan Kara13e451f2017-05-12 15:46:57 -07001555 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001556 put_locked_mapping_entry(mapping, vmf->pgoff);
Jan Kara13e451f2017-05-12 15:46:57 -07001557 out:
Souptick Joarderab77dab2018-06-07 17:04:29 -07001558 trace_dax_pte_fault_done(inode, vmf, ret);
1559 return ret | major;
Christoph Hellwiga7d73fe2016-09-19 11:24:50 +10001560}
Ross Zwisler642261a2016-11-08 11:34:45 +11001561
1562#ifdef CONFIG_FS_DAX_PMD
Souptick Joarderab77dab2018-06-07 17:04:29 -07001563static vm_fault_t dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001564 void *entry)
Ross Zwisler642261a2016-11-08 11:34:45 +11001565{
Dave Jiangf4200392017-02-22 15:40:06 -08001566 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
1567 unsigned long pmd_addr = vmf->address & PMD_MASK;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001568 struct inode *inode = mapping->host;
Ross Zwisler642261a2016-11-08 11:34:45 +11001569 struct page *zero_page;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001570 void *ret = NULL;
Ross Zwisler642261a2016-11-08 11:34:45 +11001571 spinlock_t *ptl;
1572 pmd_t pmd_entry;
Dan Williams3fe07912017-10-14 17:13:45 -07001573 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001574
Dave Jiangf4200392017-02-22 15:40:06 -08001575 zero_page = mm_get_huge_zero_page(vmf->vma->vm_mm);
Ross Zwisler642261a2016-11-08 11:34:45 +11001576
1577 if (unlikely(!zero_page))
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001578 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001579
Dan Williams3fe07912017-10-14 17:13:45 -07001580 pfn = page_to_pfn_t(zero_page);
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001581 ret = dax_insert_entry(mapping, vmf, entry, pfn,
Matthew Wilcox3159f942017-11-03 13:30:42 -04001582 DAX_PMD | DAX_ZERO_PAGE, false);
Ross Zwisler642261a2016-11-08 11:34:45 +11001583
Dave Jiangf4200392017-02-22 15:40:06 -08001584 ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1585 if (!pmd_none(*(vmf->pmd))) {
Ross Zwisler642261a2016-11-08 11:34:45 +11001586 spin_unlock(ptl);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001587 goto fallback;
Ross Zwisler642261a2016-11-08 11:34:45 +11001588 }
1589
Dave Jiangf4200392017-02-22 15:40:06 -08001590 pmd_entry = mk_pmd(zero_page, vmf->vma->vm_page_prot);
Ross Zwisler642261a2016-11-08 11:34:45 +11001591 pmd_entry = pmd_mkhuge(pmd_entry);
Dave Jiangf4200392017-02-22 15:40:06 -08001592 set_pmd_at(vmf->vma->vm_mm, pmd_addr, vmf->pmd, pmd_entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001593 spin_unlock(ptl);
Dave Jiangf4200392017-02-22 15:40:06 -08001594 trace_dax_pmd_load_hole(inode, vmf, zero_page, ret);
Ross Zwisler642261a2016-11-08 11:34:45 +11001595 return VM_FAULT_NOPAGE;
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001596
1597fallback:
Dave Jiangf4200392017-02-22 15:40:06 -08001598 trace_dax_pmd_load_hole_fallback(inode, vmf, zero_page, ret);
Ross Zwisler653b2ea2017-02-22 15:39:57 -08001599 return VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001600}
1601
Souptick Joarderab77dab2018-06-07 17:04:29 -07001602static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Dave Jianga2d58162017-02-24 14:56:59 -08001603 const struct iomap_ops *ops)
Ross Zwisler642261a2016-11-08 11:34:45 +11001604{
Dave Jiangf4200392017-02-22 15:40:06 -08001605 struct vm_area_struct *vma = vmf->vma;
Ross Zwisler642261a2016-11-08 11:34:45 +11001606 struct address_space *mapping = vma->vm_file->f_mapping;
Dave Jiangd8a849e2017-02-22 15:40:03 -08001607 unsigned long pmd_addr = vmf->address & PMD_MASK;
1608 bool write = vmf->flags & FAULT_FLAG_WRITE;
Jan Karacaa51d22017-11-01 16:36:42 +01001609 bool sync;
Jan Kara9484ab12016-11-10 10:26:50 +11001610 unsigned int iomap_flags = (write ? IOMAP_WRITE : 0) | IOMAP_FAULT;
Ross Zwisler642261a2016-11-08 11:34:45 +11001611 struct inode *inode = mapping->host;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001612 vm_fault_t result = VM_FAULT_FALLBACK;
Ross Zwisler642261a2016-11-08 11:34:45 +11001613 struct iomap iomap = { 0 };
1614 pgoff_t max_pgoff, pgoff;
Ross Zwisler642261a2016-11-08 11:34:45 +11001615 void *entry;
1616 loff_t pos;
1617 int error;
Jan Kara302a5e32017-11-01 16:36:37 +01001618 pfn_t pfn;
Ross Zwisler642261a2016-11-08 11:34:45 +11001619
Ross Zwisler282a8e02017-02-22 15:39:50 -08001620 /*
1621 * Check whether offset isn't beyond end of file now. Caller is
1622 * supposed to hold locks serializing us with truncate / punch hole so
1623 * this is a reliable test.
1624 */
1625 pgoff = linear_page_index(vma, pmd_addr);
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001626 max_pgoff = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001627
Dave Jiangf4200392017-02-22 15:40:06 -08001628 trace_dax_pmd_fault(inode, vmf, max_pgoff, 0);
Ross Zwisler282a8e02017-02-22 15:39:50 -08001629
Ross Zwislerfffa2812017-08-25 15:55:36 -07001630 /*
1631 * Make sure that the faulting address's PMD offset (color) matches
1632 * the PMD offset from the start of the file. This is necessary so
1633 * that a PMD range in the page table overlaps exactly with a PMD
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001634 * range in the page cache.
Ross Zwislerfffa2812017-08-25 15:55:36 -07001635 */
1636 if ((vmf->pgoff & PG_PMD_COLOUR) !=
1637 ((vmf->address >> PAGE_SHIFT) & PG_PMD_COLOUR))
1638 goto fallback;
1639
Ross Zwisler642261a2016-11-08 11:34:45 +11001640 /* Fall back to PTEs if we're going to COW */
1641 if (write && !(vma->vm_flags & VM_SHARED))
1642 goto fallback;
1643
1644 /* If the PMD would extend outside the VMA */
1645 if (pmd_addr < vma->vm_start)
1646 goto fallback;
1647 if ((pmd_addr + PMD_SIZE) > vma->vm_end)
1648 goto fallback;
1649
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001650 if (pgoff >= max_pgoff) {
Ross Zwisler282a8e02017-02-22 15:39:50 -08001651 result = VM_FAULT_SIGBUS;
1652 goto out;
1653 }
Ross Zwisler642261a2016-11-08 11:34:45 +11001654
1655 /* If the PMD would extend beyond the file size */
Jeff Moyer957ac8c2017-11-14 20:37:27 -05001656 if ((pgoff | PG_PMD_COLOUR) >= max_pgoff)
Ross Zwisler642261a2016-11-08 11:34:45 +11001657 goto fallback;
1658
1659 /*
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001660 * grab_mapping_entry() will make sure we get a 2MiB empty entry, a
1661 * 2MiB zero page entry or a DAX PMD. If it can't (because a 4k page
1662 * is already in the tree, for instance), it will return -EEXIST and
1663 * we just fall back to 4k entries.
Jan Kara9f141d62016-10-19 14:34:31 +02001664 */
Matthew Wilcox3159f942017-11-03 13:30:42 -04001665 entry = grab_mapping_entry(mapping, pgoff, DAX_PMD);
Jan Kara9f141d62016-10-19 14:34:31 +02001666 if (IS_ERR(entry))
Ross Zwisler876f2942017-05-12 15:47:00 -07001667 goto fallback;
1668
1669 /*
Ross Zwislere2093922017-06-02 14:46:37 -07001670 * It is possible, particularly with mixed reads & writes to private
1671 * mappings, that we have raced with a PTE fault that overlaps with
1672 * the PMD we need to set up. If so just return and the fault will be
1673 * retried.
1674 */
1675 if (!pmd_none(*vmf->pmd) && !pmd_trans_huge(*vmf->pmd) &&
1676 !pmd_devmap(*vmf->pmd)) {
1677 result = 0;
1678 goto unlock_entry;
1679 }
1680
1681 /*
Ross Zwisler876f2942017-05-12 15:47:00 -07001682 * Note that we don't use iomap_apply here. We aren't doing I/O, only
1683 * setting up a mapping, so really we're using iomap_begin() as a way
1684 * to look up our filesystem block.
1685 */
1686 pos = (loff_t)pgoff << PAGE_SHIFT;
1687 error = ops->iomap_begin(inode, pos, PMD_SIZE, iomap_flags, &iomap);
1688 if (error)
1689 goto unlock_entry;
1690
1691 if (iomap.offset + iomap.length < pos + PMD_SIZE)
Jan Kara9f141d62016-10-19 14:34:31 +02001692 goto finish_iomap;
1693
Dan Williamsaaa422c2017-11-13 16:38:44 -08001694 sync = dax_fault_is_synchronous(iomap_flags, vma, &iomap);
Jan Karacaa51d22017-11-01 16:36:42 +01001695
Ross Zwisler642261a2016-11-08 11:34:45 +11001696 switch (iomap.type) {
1697 case IOMAP_MAPPED:
Jan Kara302a5e32017-11-01 16:36:37 +01001698 error = dax_iomap_pfn(&iomap, pos, PMD_SIZE, &pfn);
1699 if (error < 0)
1700 goto finish_iomap;
1701
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001702 entry = dax_insert_entry(mapping, vmf, entry, pfn,
Matthew Wilcox3159f942017-11-03 13:30:42 -04001703 DAX_PMD, write && !sync);
Jan Kara302a5e32017-11-01 16:36:37 +01001704
Jan Karacaa51d22017-11-01 16:36:42 +01001705 /*
1706 * If we are doing synchronous page fault and inode needs fsync,
1707 * we can insert PMD into page tables only after that happens.
1708 * Skip insertion for now and return the pfn so that caller can
1709 * insert it after fsync is done.
1710 */
1711 if (sync) {
1712 if (WARN_ON_ONCE(!pfnp))
1713 goto finish_iomap;
1714 *pfnp = pfn;
1715 result = VM_FAULT_NEEDDSYNC;
1716 goto finish_iomap;
1717 }
1718
Jan Kara302a5e32017-11-01 16:36:37 +01001719 trace_dax_pmd_insert_mapping(inode, vmf, PMD_SIZE, pfn, entry);
1720 result = vmf_insert_pfn_pmd(vma, vmf->address, vmf->pmd, pfn,
1721 write);
Ross Zwisler642261a2016-11-08 11:34:45 +11001722 break;
1723 case IOMAP_UNWRITTEN:
1724 case IOMAP_HOLE:
1725 if (WARN_ON_ONCE(write))
Ross Zwisler876f2942017-05-12 15:47:00 -07001726 break;
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001727 result = dax_pmd_load_hole(vmf, &iomap, entry);
Ross Zwisler642261a2016-11-08 11:34:45 +11001728 break;
1729 default:
1730 WARN_ON_ONCE(1);
1731 break;
1732 }
1733
Jan Kara9f141d62016-10-19 14:34:31 +02001734 finish_iomap:
1735 if (ops->iomap_end) {
1736 int copied = PMD_SIZE;
1737
1738 if (result == VM_FAULT_FALLBACK)
1739 copied = 0;
1740 /*
1741 * The fault is done by now and there's no way back (other
1742 * thread may be already happily using PMD we have installed).
1743 * Just ignore error from ->iomap_end since we cannot do much
1744 * with it.
1745 */
1746 ops->iomap_end(inode, pos, PMD_SIZE, copied, iomap_flags,
1747 &iomap);
1748 }
Ross Zwisler876f2942017-05-12 15:47:00 -07001749 unlock_entry:
Ross Zwisler91d25ba2017-09-06 16:18:43 -07001750 put_locked_mapping_entry(mapping, pgoff);
Ross Zwisler642261a2016-11-08 11:34:45 +11001751 fallback:
1752 if (result == VM_FAULT_FALLBACK) {
Dave Jiangd8a849e2017-02-22 15:40:03 -08001753 split_huge_pmd(vma, vmf->pmd, vmf->address);
Ross Zwisler642261a2016-11-08 11:34:45 +11001754 count_vm_event(THP_FAULT_FALLBACK);
1755 }
Ross Zwisler282a8e02017-02-22 15:39:50 -08001756out:
Dave Jiangf4200392017-02-22 15:40:06 -08001757 trace_dax_pmd_fault_done(inode, vmf, max_pgoff, result);
Ross Zwisler642261a2016-11-08 11:34:45 +11001758 return result;
1759}
Dave Jianga2d58162017-02-24 14:56:59 -08001760#else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001761static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
Arnd Bergmann01cddfe2017-02-27 14:26:44 -08001762 const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001763{
1764 return VM_FAULT_FALLBACK;
1765}
Ross Zwisler642261a2016-11-08 11:34:45 +11001766#endif /* CONFIG_FS_DAX_PMD */
Dave Jianga2d58162017-02-24 14:56:59 -08001767
1768/**
1769 * dax_iomap_fault - handle a page fault on a DAX file
1770 * @vmf: The description of the fault
Jan Karacec04e82017-11-01 16:36:38 +01001771 * @pe_size: Size of the page to fault in
Jan Kara9a0dd422017-11-01 16:36:39 +01001772 * @pfnp: PFN to insert for synchronous faults if fsync is required
Jan Karac0b24622018-01-07 16:38:43 -05001773 * @iomap_errp: Storage for detailed error code in case of error
Jan Karacec04e82017-11-01 16:36:38 +01001774 * @ops: Iomap ops passed from the file system
Dave Jianga2d58162017-02-24 14:56:59 -08001775 *
1776 * When a page fault occurs, filesystems may call this helper in
1777 * their fault handler for DAX files. dax_iomap_fault() assumes the caller
1778 * has done all the necessary locking for page fault to proceed
1779 * successfully.
1780 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001781vm_fault_t dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
Jan Karac0b24622018-01-07 16:38:43 -05001782 pfn_t *pfnp, int *iomap_errp, const struct iomap_ops *ops)
Dave Jianga2d58162017-02-24 14:56:59 -08001783{
Dave Jiangc791ace2017-02-24 14:57:08 -08001784 switch (pe_size) {
1785 case PE_SIZE_PTE:
Jan Karac0b24622018-01-07 16:38:43 -05001786 return dax_iomap_pte_fault(vmf, pfnp, iomap_errp, ops);
Dave Jiangc791ace2017-02-24 14:57:08 -08001787 case PE_SIZE_PMD:
Jan Kara9a0dd422017-11-01 16:36:39 +01001788 return dax_iomap_pmd_fault(vmf, pfnp, ops);
Dave Jianga2d58162017-02-24 14:56:59 -08001789 default:
1790 return VM_FAULT_FALLBACK;
1791 }
1792}
1793EXPORT_SYMBOL_GPL(dax_iomap_fault);
Jan Kara71eab6d2017-11-01 16:36:43 +01001794
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001795/*
Jan Kara71eab6d2017-11-01 16:36:43 +01001796 * dax_insert_pfn_mkwrite - insert PTE or PMD entry into page tables
1797 * @vmf: The description of the fault
Jan Kara71eab6d2017-11-01 16:36:43 +01001798 * @pfn: PFN to insert
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001799 * @order: Order of entry to insert.
Jan Kara71eab6d2017-11-01 16:36:43 +01001800 *
Matthew Wilcoxa77d19f2018-03-27 13:39:38 -04001801 * This function inserts a writeable PTE or PMD entry into the page tables
1802 * for an mmaped DAX file. It also marks the page cache entry as dirty.
Jan Kara71eab6d2017-11-01 16:36:43 +01001803 */
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001804static vm_fault_t
1805dax_insert_pfn_mkwrite(struct vm_fault *vmf, pfn_t pfn, unsigned int order)
Jan Kara71eab6d2017-11-01 16:36:43 +01001806{
1807 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001808 XA_STATE_ORDER(xas, &mapping->i_pages, vmf->pgoff, order);
1809 void *entry;
Souptick Joarderab77dab2018-06-07 17:04:29 -07001810 vm_fault_t ret;
Jan Kara71eab6d2017-11-01 16:36:43 +01001811
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001812 xas_lock_irq(&xas);
1813 entry = get_unlocked_entry(&xas);
Jan Kara71eab6d2017-11-01 16:36:43 +01001814 /* Did we race with someone splitting entry or so? */
1815 if (!entry ||
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001816 (order == 0 && !dax_is_pte_entry(entry)) ||
1817 (order == PMD_ORDER && (xa_is_internal(entry) ||
1818 !dax_is_pmd_entry(entry)))) {
1819 put_unlocked_entry(&xas, entry);
1820 xas_unlock_irq(&xas);
Jan Kara71eab6d2017-11-01 16:36:43 +01001821 trace_dax_insert_pfn_mkwrite_no_entry(mapping->host, vmf,
1822 VM_FAULT_NOPAGE);
1823 return VM_FAULT_NOPAGE;
1824 }
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001825 xas_set_mark(&xas, PAGECACHE_TAG_DIRTY);
1826 dax_lock_entry(&xas, entry);
1827 xas_unlock_irq(&xas);
1828 if (order == 0)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001829 ret = vmf_insert_mixed_mkwrite(vmf->vma, vmf->address, pfn);
Jan Kara71eab6d2017-11-01 16:36:43 +01001830#ifdef CONFIG_FS_DAX_PMD
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001831 else if (order == PMD_ORDER)
Souptick Joarderab77dab2018-06-07 17:04:29 -07001832 ret = vmf_insert_pfn_pmd(vmf->vma, vmf->address, vmf->pmd,
Jan Kara71eab6d2017-11-01 16:36:43 +01001833 pfn, true);
Jan Kara71eab6d2017-11-01 16:36:43 +01001834#endif
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001835 else
Souptick Joarderab77dab2018-06-07 17:04:29 -07001836 ret = VM_FAULT_FALLBACK;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001837 dax_unlock_entry(&xas, entry);
Souptick Joarderab77dab2018-06-07 17:04:29 -07001838 trace_dax_insert_pfn_mkwrite(mapping->host, vmf, ret);
1839 return ret;
Jan Kara71eab6d2017-11-01 16:36:43 +01001840}
1841
1842/**
1843 * dax_finish_sync_fault - finish synchronous page fault
1844 * @vmf: The description of the fault
1845 * @pe_size: Size of entry to be inserted
1846 * @pfn: PFN to insert
1847 *
1848 * This function ensures that the file range touched by the page fault is
1849 * stored persistently on the media and handles inserting of appropriate page
1850 * table entry.
1851 */
Souptick Joarderab77dab2018-06-07 17:04:29 -07001852vm_fault_t dax_finish_sync_fault(struct vm_fault *vmf,
1853 enum page_entry_size pe_size, pfn_t pfn)
Jan Kara71eab6d2017-11-01 16:36:43 +01001854{
1855 int err;
1856 loff_t start = ((loff_t)vmf->pgoff) << PAGE_SHIFT;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001857 unsigned int order = pe_order(pe_size);
1858 size_t len = PAGE_SIZE << order;
Jan Kara71eab6d2017-11-01 16:36:43 +01001859
Jan Kara71eab6d2017-11-01 16:36:43 +01001860 err = vfs_fsync_range(vmf->vma->vm_file, start, start + len - 1, 1);
1861 if (err)
1862 return VM_FAULT_SIGBUS;
Matthew Wilcoxcfc93c62018-03-28 11:48:03 -04001863 return dax_insert_pfn_mkwrite(vmf, pfn, order);
Jan Kara71eab6d2017-11-01 16:36:43 +01001864}
1865EXPORT_SYMBOL_GPL(dax_finish_sync_fault);