blob: 434f421da66045ba998947bc4d3ed55a473af484 [file] [log] [blame]
Matthew Wilcoxd475c632015-02-16 15:58:56 -08001/*
2 * fs/dax.c - Direct Access filesystem code
3 * Copyright (c) 2013-2014 Intel Corporation
4 * Author: Matthew Wilcox <matthew.r.wilcox@intel.com>
5 * Author: Ross Zwisler <ross.zwisler@linux.intel.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 */
16
17#include <linux/atomic.h>
18#include <linux/blkdev.h>
19#include <linux/buffer_head.h>
Ross Zwislerd77e92e2015-09-09 10:29:40 -060020#include <linux/dax.h>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080021#include <linux/fs.h>
22#include <linux/genhd.h>
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -080023#include <linux/highmem.h>
24#include <linux/memcontrol.h>
25#include <linux/mm.h>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080026#include <linux/mutex.h>
Ross Zwisler9973c982016-01-22 15:10:47 -080027#include <linux/pagevec.h>
Ross Zwisler2765cfb2015-08-18 13:55:40 -060028#include <linux/pmem.h>
Matthew Wilcox289c6ae2015-02-16 15:58:59 -080029#include <linux/sched.h>
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>
Matthew Wilcoxd475c632015-02-16 15:58:56 -080034
Jan Karae8043152016-05-12 18:29:16 +020035/*
36 * We use lowest available bit in exceptional entry for locking, other two
37 * bits to determine entry type. In total 3 special bits.
38 */
39#define RADIX_DAX_SHIFT (RADIX_TREE_EXCEPTIONAL_SHIFT + 3)
40#define RADIX_DAX_PTE (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 1))
41#define RADIX_DAX_PMD (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 2))
42#define RADIX_DAX_TYPE_MASK (RADIX_DAX_PTE | RADIX_DAX_PMD)
43#define RADIX_DAX_TYPE(entry) ((unsigned long)entry & RADIX_DAX_TYPE_MASK)
NeilBrown78a9be02016-05-20 17:03:51 -070044#define RADIX_DAX_SECTOR(entry) (((unsigned long)entry >> RADIX_DAX_SHIFT))
45#define RADIX_DAX_ENTRY(sector, pmd) ((void *)((unsigned long)sector << \
Jan Karae8043152016-05-12 18:29:16 +020046 RADIX_DAX_SHIFT | (pmd ? RADIX_DAX_PMD : RADIX_DAX_PTE) | \
47 RADIX_TREE_EXCEPTIONAL_ENTRY))
NeilBrowne4b27492016-05-11 11:58:47 +020048
Jan Karaac401cc2016-05-12 18:29:18 +020049/* We choose 4096 entries - same as per-zone page wait tables */
50#define DAX_WAIT_TABLE_BITS 12
51#define DAX_WAIT_TABLE_ENTRIES (1 << DAX_WAIT_TABLE_BITS)
52
53wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
54
55static int __init init_dax_wait_table(void)
56{
57 int i;
58
59 for (i = 0; i < DAX_WAIT_TABLE_ENTRIES; i++)
60 init_waitqueue_head(wait_table + i);
61 return 0;
62}
63fs_initcall(init_dax_wait_table);
64
65static wait_queue_head_t *dax_entry_waitqueue(struct address_space *mapping,
66 pgoff_t index)
67{
68 unsigned long hash = hash_long((unsigned long)mapping ^ index,
69 DAX_WAIT_TABLE_BITS);
70 return wait_table + hash;
71}
NeilBrown78a9be02016-05-20 17:03:51 -070072
Dan Williamsb2e0d162016-01-15 16:55:59 -080073static long dax_map_atomic(struct block_device *bdev, struct blk_dax_ctl *dax)
74{
75 struct request_queue *q = bdev->bd_queue;
76 long rc = -EIO;
77
78 dax->addr = (void __pmem *) ERR_PTR(-EIO);
79 if (blk_queue_enter(q, true) != 0)
80 return rc;
81
82 rc = bdev_direct_access(bdev, dax);
83 if (rc < 0) {
84 dax->addr = (void __pmem *) ERR_PTR(rc);
85 blk_queue_exit(q);
86 return rc;
87 }
88 return rc;
89}
90
91static void dax_unmap_atomic(struct block_device *bdev,
92 const struct blk_dax_ctl *dax)
93{
94 if (IS_ERR(dax->addr))
95 return;
96 blk_queue_exit(bdev->bd_queue);
97}
98
Dan Williamsd1a5f2b42016-01-28 20:25:31 -080099struct page *read_dax_sector(struct block_device *bdev, sector_t n)
100{
101 struct page *page = alloc_pages(GFP_KERNEL, 0);
102 struct blk_dax_ctl dax = {
103 .size = PAGE_SIZE,
104 .sector = n & ~((((int) PAGE_SIZE) / 512) - 1),
105 };
106 long rc;
107
108 if (!page)
109 return ERR_PTR(-ENOMEM);
110
111 rc = dax_map_atomic(bdev, &dax);
112 if (rc < 0)
113 return ERR_PTR(rc);
114 memcpy_from_pmem(page_address(page), dax.addr, PAGE_SIZE);
115 dax_unmap_atomic(bdev, &dax);
116 return page;
117}
118
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800119static bool buffer_written(struct buffer_head *bh)
120{
121 return buffer_mapped(bh) && !buffer_unwritten(bh);
122}
123
124/*
125 * When ext4 encounters a hole, it returns without modifying the buffer_head
126 * which means that we can't trust b_size. To cope with this, we set b_state
127 * to 0 before calling get_block and, if any bit is set, we know we can trust
128 * b_size. Unfortunate, really, since ext4 knows precisely how long a hole is
129 * and would save us time calling get_block repeatedly.
130 */
131static bool buffer_size_valid(struct buffer_head *bh)
132{
133 return bh->b_state != 0;
134}
135
Dan Williamsb2e0d162016-01-15 16:55:59 -0800136
137static sector_t to_sector(const struct buffer_head *bh,
138 const struct inode *inode)
139{
140 sector_t sector = bh->b_blocknr << (inode->i_blkbits - 9);
141
142 return sector;
143}
144
Omar Sandovala95cd632015-03-16 04:33:51 -0700145static ssize_t dax_io(struct inode *inode, struct iov_iter *iter,
146 loff_t start, loff_t end, get_block_t get_block,
147 struct buffer_head *bh)
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800148{
Dan Williamsb2e0d162016-01-15 16:55:59 -0800149 loff_t pos = start, max = start, bh_max = start;
Dan Williams14df6a42016-06-01 21:03:32 -0700150 bool hole = false;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800151 struct block_device *bdev = NULL;
152 int rw = iov_iter_rw(iter), rc;
153 long map_len = 0;
154 struct blk_dax_ctl dax = {
155 .addr = (void __pmem *) ERR_PTR(-EIO),
156 };
Jan Kara069c77b2016-05-11 11:58:51 +0200157 unsigned blkbits = inode->i_blkbits;
158 sector_t file_blks = (i_size_read(inode) + (1 << blkbits) - 1)
159 >> blkbits;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800160
Dan Williamsb2e0d162016-01-15 16:55:59 -0800161 if (rw == READ)
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800162 end = min(end, i_size_read(inode));
163
164 while (pos < end) {
Ross Zwisler2765cfb2015-08-18 13:55:40 -0600165 size_t len;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800166 if (pos == max) {
Jeff Moyere94f5a22015-08-14 16:15:31 -0400167 long page = pos >> PAGE_SHIFT;
168 sector_t block = page << (PAGE_SHIFT - blkbits);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800169 unsigned first = pos - (block << blkbits);
170 long size;
171
172 if (pos == bh_max) {
173 bh->b_size = PAGE_ALIGN(end - pos);
174 bh->b_state = 0;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800175 rc = get_block(inode, block, bh, rw == WRITE);
176 if (rc)
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800177 break;
178 if (!buffer_size_valid(bh))
179 bh->b_size = 1 << blkbits;
180 bh_max = pos - first + bh->b_size;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800181 bdev = bh->b_bdev;
Jan Kara069c77b2016-05-11 11:58:51 +0200182 /*
183 * We allow uninitialized buffers for writes
184 * beyond EOF as those cannot race with faults
185 */
186 WARN_ON_ONCE(
187 (buffer_new(bh) && block < file_blks) ||
188 (rw == WRITE && buffer_unwritten(bh)));
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800189 } else {
190 unsigned done = bh->b_size -
191 (bh_max - (pos - first));
192 bh->b_blocknr += done >> blkbits;
193 bh->b_size -= done;
194 }
195
Dan Williamsb2e0d162016-01-15 16:55:59 -0800196 hole = rw == READ && !buffer_written(bh);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800197 if (hole) {
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800198 size = bh->b_size - first;
199 } else {
Dan Williamsb2e0d162016-01-15 16:55:59 -0800200 dax_unmap_atomic(bdev, &dax);
201 dax.sector = to_sector(bh, inode);
202 dax.size = bh->b_size;
203 map_len = dax_map_atomic(bdev, &dax);
204 if (map_len < 0) {
205 rc = map_len;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800206 break;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800207 }
Dan Williamsb2e0d162016-01-15 16:55:59 -0800208 dax.addr += first;
209 size = map_len - first;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800210 }
211 max = min(pos + size, end);
212 }
213
Ross Zwisler2765cfb2015-08-18 13:55:40 -0600214 if (iov_iter_rw(iter) == WRITE) {
Dan Williamsb2e0d162016-01-15 16:55:59 -0800215 len = copy_from_iter_pmem(dax.addr, max - pos, iter);
Ross Zwisler2765cfb2015-08-18 13:55:40 -0600216 } else if (!hole)
Dan Williamsb2e0d162016-01-15 16:55:59 -0800217 len = copy_to_iter((void __force *) dax.addr, max - pos,
Ross Zwislere2e05392015-08-18 13:55:41 -0600218 iter);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800219 else
220 len = iov_iter_zero(max - pos, iter);
221
Al Virocadfbb62015-11-10 19:42:49 -0700222 if (!len) {
Dan Williamsb2e0d162016-01-15 16:55:59 -0800223 rc = -EFAULT;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800224 break;
Al Virocadfbb62015-11-10 19:42:49 -0700225 }
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800226
227 pos += len;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800228 if (!IS_ERR(dax.addr))
229 dax.addr += len;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800230 }
231
Dan Williamsb2e0d162016-01-15 16:55:59 -0800232 dax_unmap_atomic(bdev, &dax);
Ross Zwisler2765cfb2015-08-18 13:55:40 -0600233
Dan Williamsb2e0d162016-01-15 16:55:59 -0800234 return (pos == start) ? rc : pos - start;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800235}
236
237/**
238 * dax_do_io - Perform I/O to a DAX file
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800239 * @iocb: The control block for this I/O
240 * @inode: The file which the I/O is directed at
241 * @iter: The addresses to do I/O from or to
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800242 * @get_block: The filesystem method used to translate file offsets to blocks
243 * @end_io: A filesystem callback for I/O completion
244 * @flags: See below
245 *
246 * This function uses the same locking scheme as do_blockdev_direct_IO:
247 * If @flags has DIO_LOCKING set, we assume that the i_mutex is held by the
248 * caller for writes. For reads, we take and release the i_mutex ourselves.
249 * If DIO_LOCKING is not set, the filesystem takes care of its own locking.
250 * As with do_blockdev_direct_IO(), we increment i_dio_count while the I/O
251 * is in progress.
252 */
Omar Sandovala95cd632015-03-16 04:33:51 -0700253ssize_t dax_do_io(struct kiocb *iocb, struct inode *inode,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700254 struct iov_iter *iter, get_block_t get_block,
Omar Sandovala95cd632015-03-16 04:33:51 -0700255 dio_iodone_t end_io, int flags)
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800256{
257 struct buffer_head bh;
258 ssize_t retval = -EINVAL;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700259 loff_t pos = iocb->ki_pos;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800260 loff_t end = pos + iov_iter_count(iter);
261
262 memset(&bh, 0, sizeof(bh));
Ross Zwislereab95db2016-01-22 15:10:59 -0800263 bh.b_bdev = inode->i_sb->s_bdev;
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800264
Jan Karac3d98e32016-05-11 11:58:52 +0200265 if ((flags & DIO_LOCKING) && iov_iter_rw(iter) == READ)
Al Viro59551022016-01-22 15:40:57 -0500266 inode_lock(inode);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800267
268 /* Protects against truncate */
Matthew Wilcoxbbab37d2015-07-03 10:40:42 -0400269 if (!(flags & DIO_SKIP_DIO_COUNT))
270 inode_dio_begin(inode);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800271
Omar Sandovala95cd632015-03-16 04:33:51 -0700272 retval = dax_io(inode, iter, pos, end, get_block, &bh);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800273
Omar Sandovala95cd632015-03-16 04:33:51 -0700274 if ((flags & DIO_LOCKING) && iov_iter_rw(iter) == READ)
Al Viro59551022016-01-22 15:40:57 -0500275 inode_unlock(inode);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800276
Christoph Hellwig187372a2016-02-08 14:40:51 +1100277 if (end_io) {
278 int err;
279
280 err = end_io(iocb, pos, retval, bh.b_private);
281 if (err)
282 retval = err;
283 }
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800284
Matthew Wilcoxbbab37d2015-07-03 10:40:42 -0400285 if (!(flags & DIO_SKIP_DIO_COUNT))
286 inode_dio_end(inode);
Matthew Wilcoxd475c632015-02-16 15:58:56 -0800287 return retval;
288}
289EXPORT_SYMBOL_GPL(dax_do_io);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800290
291/*
Jan Karaac401cc2016-05-12 18:29:18 +0200292 * DAX radix tree locking
293 */
294struct exceptional_entry_key {
295 struct address_space *mapping;
296 unsigned long index;
297};
298
299struct wait_exceptional_entry_queue {
300 wait_queue_t wait;
301 struct exceptional_entry_key key;
302};
303
304static int wake_exceptional_entry_func(wait_queue_t *wait, unsigned int mode,
305 int sync, void *keyp)
306{
307 struct exceptional_entry_key *key = keyp;
308 struct wait_exceptional_entry_queue *ewait =
309 container_of(wait, struct wait_exceptional_entry_queue, wait);
310
311 if (key->mapping != ewait->key.mapping ||
312 key->index != ewait->key.index)
313 return 0;
314 return autoremove_wake_function(wait, mode, sync, NULL);
315}
316
317/*
318 * Check whether the given slot is locked. The function must be called with
319 * mapping->tree_lock held
320 */
321static inline int slot_locked(struct address_space *mapping, void **slot)
322{
323 unsigned long entry = (unsigned long)
324 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
325 return entry & RADIX_DAX_ENTRY_LOCK;
326}
327
328/*
329 * Mark the given slot is locked. The function must be called with
330 * mapping->tree_lock held
331 */
332static inline void *lock_slot(struct address_space *mapping, void **slot)
333{
334 unsigned long entry = (unsigned long)
335 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
336
337 entry |= RADIX_DAX_ENTRY_LOCK;
338 radix_tree_replace_slot(slot, (void *)entry);
339 return (void *)entry;
340}
341
342/*
343 * Mark the given slot is unlocked. The function must be called with
344 * mapping->tree_lock held
345 */
346static inline void *unlock_slot(struct address_space *mapping, void **slot)
347{
348 unsigned long entry = (unsigned long)
349 radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
350
351 entry &= ~(unsigned long)RADIX_DAX_ENTRY_LOCK;
352 radix_tree_replace_slot(slot, (void *)entry);
353 return (void *)entry;
354}
355
356/*
357 * Lookup entry in radix tree, wait for it to become unlocked if it is
358 * exceptional entry and return it. The caller must call
359 * put_unlocked_mapping_entry() when he decided not to lock the entry or
360 * put_locked_mapping_entry() when he locked the entry and now wants to
361 * unlock it.
362 *
363 * The function must be called with mapping->tree_lock held.
364 */
365static void *get_unlocked_mapping_entry(struct address_space *mapping,
366 pgoff_t index, void ***slotp)
367{
368 void *ret, **slot;
369 struct wait_exceptional_entry_queue ewait;
370 wait_queue_head_t *wq = dax_entry_waitqueue(mapping, index);
371
372 init_wait(&ewait.wait);
373 ewait.wait.func = wake_exceptional_entry_func;
374 ewait.key.mapping = mapping;
375 ewait.key.index = index;
376
377 for (;;) {
378 ret = __radix_tree_lookup(&mapping->page_tree, index, NULL,
379 &slot);
380 if (!ret || !radix_tree_exceptional_entry(ret) ||
381 !slot_locked(mapping, slot)) {
382 if (slotp)
383 *slotp = slot;
384 return ret;
385 }
386 prepare_to_wait_exclusive(wq, &ewait.wait,
387 TASK_UNINTERRUPTIBLE);
388 spin_unlock_irq(&mapping->tree_lock);
389 schedule();
390 finish_wait(wq, &ewait.wait);
391 spin_lock_irq(&mapping->tree_lock);
392 }
393}
394
395/*
396 * Find radix tree entry at given index. If it points to a page, return with
397 * the page locked. If it points to the exceptional entry, return with the
398 * radix tree entry locked. If the radix tree doesn't contain given index,
399 * create empty exceptional entry for the index and return with it locked.
400 *
401 * Note: Unlike filemap_fault() we don't honor FAULT_FLAG_RETRY flags. For
402 * persistent memory the benefit is doubtful. We can add that later if we can
403 * show it helps.
404 */
405static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index)
406{
407 void *ret, **slot;
408
409restart:
410 spin_lock_irq(&mapping->tree_lock);
411 ret = get_unlocked_mapping_entry(mapping, index, &slot);
412 /* No entry for given index? Make sure radix tree is big enough. */
413 if (!ret) {
414 int err;
415
416 spin_unlock_irq(&mapping->tree_lock);
417 err = radix_tree_preload(
418 mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
419 if (err)
420 return ERR_PTR(err);
421 ret = (void *)(RADIX_TREE_EXCEPTIONAL_ENTRY |
422 RADIX_DAX_ENTRY_LOCK);
423 spin_lock_irq(&mapping->tree_lock);
424 err = radix_tree_insert(&mapping->page_tree, index, ret);
425 radix_tree_preload_end();
426 if (err) {
427 spin_unlock_irq(&mapping->tree_lock);
428 /* Someone already created the entry? */
429 if (err == -EEXIST)
430 goto restart;
431 return ERR_PTR(err);
432 }
433 /* Good, we have inserted empty locked entry into the tree. */
434 mapping->nrexceptional++;
435 spin_unlock_irq(&mapping->tree_lock);
436 return ret;
437 }
438 /* Normal page in radix tree? */
439 if (!radix_tree_exceptional_entry(ret)) {
440 struct page *page = ret;
441
442 get_page(page);
443 spin_unlock_irq(&mapping->tree_lock);
444 lock_page(page);
445 /* Page got truncated? Retry... */
446 if (unlikely(page->mapping != mapping)) {
447 unlock_page(page);
448 put_page(page);
449 goto restart;
450 }
451 return page;
452 }
453 ret = lock_slot(mapping, slot);
454 spin_unlock_irq(&mapping->tree_lock);
455 return ret;
456}
457
458void dax_wake_mapping_entry_waiter(struct address_space *mapping,
459 pgoff_t index, bool wake_all)
460{
461 wait_queue_head_t *wq = dax_entry_waitqueue(mapping, index);
462
463 /*
464 * Checking for locked entry and prepare_to_wait_exclusive() happens
465 * under mapping->tree_lock, ditto for entry handling in our callers.
466 * So at this point all tasks that could have seen our entry locked
467 * must be in the waitqueue and the following check will see them.
468 */
469 if (waitqueue_active(wq)) {
470 struct exceptional_entry_key key;
471
472 key.mapping = mapping;
473 key.index = index;
474 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key);
475 }
476}
477
Jan Karabc2466e2016-05-12 18:29:19 +0200478void dax_unlock_mapping_entry(struct address_space *mapping, pgoff_t index)
Jan Karaac401cc2016-05-12 18:29:18 +0200479{
480 void *ret, **slot;
481
482 spin_lock_irq(&mapping->tree_lock);
483 ret = __radix_tree_lookup(&mapping->page_tree, index, NULL, &slot);
484 if (WARN_ON_ONCE(!ret || !radix_tree_exceptional_entry(ret) ||
485 !slot_locked(mapping, slot))) {
486 spin_unlock_irq(&mapping->tree_lock);
487 return;
488 }
489 unlock_slot(mapping, slot);
490 spin_unlock_irq(&mapping->tree_lock);
491 dax_wake_mapping_entry_waiter(mapping, index, false);
492}
493
494static void put_locked_mapping_entry(struct address_space *mapping,
495 pgoff_t index, void *entry)
496{
497 if (!radix_tree_exceptional_entry(entry)) {
498 unlock_page(entry);
499 put_page(entry);
500 } else {
Jan Karabc2466e2016-05-12 18:29:19 +0200501 dax_unlock_mapping_entry(mapping, index);
Jan Karaac401cc2016-05-12 18:29:18 +0200502 }
503}
504
505/*
506 * Called when we are done with radix tree entry we looked up via
507 * get_unlocked_mapping_entry() and which we didn't lock in the end.
508 */
509static void put_unlocked_mapping_entry(struct address_space *mapping,
510 pgoff_t index, void *entry)
511{
512 if (!radix_tree_exceptional_entry(entry))
513 return;
514
515 /* We have to wake up next waiter for the radix tree entry lock */
516 dax_wake_mapping_entry_waiter(mapping, index, false);
517}
518
519/*
520 * Delete exceptional DAX entry at @index from @mapping. Wait for radix tree
521 * entry to get unlocked before deleting it.
522 */
523int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index)
524{
525 void *entry;
526
527 spin_lock_irq(&mapping->tree_lock);
528 entry = get_unlocked_mapping_entry(mapping, index, NULL);
529 /*
530 * This gets called from truncate / punch_hole path. As such, the caller
531 * must hold locks protecting against concurrent modifications of the
532 * radix tree (usually fs-private i_mmap_sem for writing). Since the
533 * caller has seen exceptional entry for this index, we better find it
534 * at that index as well...
535 */
536 if (WARN_ON_ONCE(!entry || !radix_tree_exceptional_entry(entry))) {
537 spin_unlock_irq(&mapping->tree_lock);
538 return 0;
539 }
540 radix_tree_delete(&mapping->page_tree, index);
541 mapping->nrexceptional--;
542 spin_unlock_irq(&mapping->tree_lock);
543 dax_wake_mapping_entry_waiter(mapping, index, true);
544
545 return 1;
546}
547
548/*
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800549 * The user has performed a load from a hole in the file. Allocating
550 * a new page in the file would cause excessive storage usage for
551 * workloads with sparse files. We allocate a page cache page instead.
552 * We'll kick it out of the page cache if it's ever written to,
553 * otherwise it will simply fall out of the page cache under memory
554 * pressure without ever having been dirtied.
555 */
Jan Karaac401cc2016-05-12 18:29:18 +0200556static int dax_load_hole(struct address_space *mapping, void *entry,
557 struct vm_fault *vmf)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800558{
Jan Karaac401cc2016-05-12 18:29:18 +0200559 struct page *page;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800560
Jan Karaac401cc2016-05-12 18:29:18 +0200561 /* Hole page already exists? Return it... */
562 if (!radix_tree_exceptional_entry(entry)) {
563 vmf->page = entry;
564 return VM_FAULT_LOCKED;
565 }
566
567 /* This will replace locked radix tree entry with a hole page */
568 page = find_or_create_page(mapping, vmf->pgoff,
569 vmf->gfp_mask | __GFP_ZERO);
570 if (!page) {
571 put_locked_mapping_entry(mapping, vmf->pgoff, entry);
572 return VM_FAULT_OOM;
573 }
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800574 vmf->page = page;
575 return VM_FAULT_LOCKED;
576}
577
Dan Williamsb2e0d162016-01-15 16:55:59 -0800578static int copy_user_bh(struct page *to, struct inode *inode,
579 struct buffer_head *bh, unsigned long vaddr)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800580{
Dan Williamsb2e0d162016-01-15 16:55:59 -0800581 struct blk_dax_ctl dax = {
582 .sector = to_sector(bh, inode),
583 .size = bh->b_size,
584 };
585 struct block_device *bdev = bh->b_bdev;
Ross Zwislere2e05392015-08-18 13:55:41 -0600586 void *vto;
587
Dan Williamsb2e0d162016-01-15 16:55:59 -0800588 if (dax_map_atomic(bdev, &dax) < 0)
589 return PTR_ERR(dax.addr);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800590 vto = kmap_atomic(to);
Dan Williamsb2e0d162016-01-15 16:55:59 -0800591 copy_user_page(vto, (void __force *)dax.addr, vaddr, to);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800592 kunmap_atomic(vto);
Dan Williamsb2e0d162016-01-15 16:55:59 -0800593 dax_unmap_atomic(bdev, &dax);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800594 return 0;
595}
596
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300597#define DAX_PMD_INDEX(page_index) (page_index & (PMD_MASK >> PAGE_SHIFT))
Ross Zwisler9973c982016-01-22 15:10:47 -0800598
Jan Karaac401cc2016-05-12 18:29:18 +0200599static void *dax_insert_mapping_entry(struct address_space *mapping,
600 struct vm_fault *vmf,
601 void *entry, sector_t sector)
Ross Zwisler9973c982016-01-22 15:10:47 -0800602{
603 struct radix_tree_root *page_tree = &mapping->page_tree;
Jan Karaac401cc2016-05-12 18:29:18 +0200604 int error = 0;
605 bool hole_fill = false;
606 void *new_entry;
607 pgoff_t index = vmf->pgoff;
Ross Zwisler9973c982016-01-22 15:10:47 -0800608
Jan Karaac401cc2016-05-12 18:29:18 +0200609 if (vmf->flags & FAULT_FLAG_WRITE)
Dmitry Monakhovd2b2a282016-02-05 15:36:55 -0800610 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Ross Zwisler9973c982016-01-22 15:10:47 -0800611
Jan Karaac401cc2016-05-12 18:29:18 +0200612 /* Replacing hole page with block mapping? */
613 if (!radix_tree_exceptional_entry(entry)) {
614 hole_fill = true;
615 /*
616 * Unmap the page now before we remove it from page cache below.
617 * The page is locked so it cannot be faulted in again.
618 */
619 unmap_mapping_range(mapping, vmf->pgoff << PAGE_SHIFT,
620 PAGE_SIZE, 0);
621 error = radix_tree_preload(vmf->gfp_mask & ~__GFP_HIGHMEM);
622 if (error)
623 return ERR_PTR(error);
Ross Zwisler9973c982016-01-22 15:10:47 -0800624 }
625
Jan Karaac401cc2016-05-12 18:29:18 +0200626 spin_lock_irq(&mapping->tree_lock);
627 new_entry = (void *)((unsigned long)RADIX_DAX_ENTRY(sector, false) |
628 RADIX_DAX_ENTRY_LOCK);
629 if (hole_fill) {
630 __delete_from_page_cache(entry, NULL);
631 /* Drop pagecache reference */
632 put_page(entry);
633 error = radix_tree_insert(page_tree, index, new_entry);
634 if (error) {
635 new_entry = ERR_PTR(error);
Ross Zwisler9973c982016-01-22 15:10:47 -0800636 goto unlock;
637 }
Jan Karaac401cc2016-05-12 18:29:18 +0200638 mapping->nrexceptional++;
639 } else {
640 void **slot;
641 void *ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800642
Jan Karaac401cc2016-05-12 18:29:18 +0200643 ret = __radix_tree_lookup(page_tree, index, NULL, &slot);
644 WARN_ON_ONCE(ret != entry);
645 radix_tree_replace_slot(slot, new_entry);
Ross Zwisler9973c982016-01-22 15:10:47 -0800646 }
Jan Karaac401cc2016-05-12 18:29:18 +0200647 if (vmf->flags & FAULT_FLAG_WRITE)
Ross Zwisler9973c982016-01-22 15:10:47 -0800648 radix_tree_tag_set(page_tree, index, PAGECACHE_TAG_DIRTY);
649 unlock:
650 spin_unlock_irq(&mapping->tree_lock);
Jan Karaac401cc2016-05-12 18:29:18 +0200651 if (hole_fill) {
652 radix_tree_preload_end();
653 /*
654 * We don't need hole page anymore, it has been replaced with
655 * locked radix tree entry now.
656 */
657 if (mapping->a_ops->freepage)
658 mapping->a_ops->freepage(entry);
659 unlock_page(entry);
660 put_page(entry);
661 }
662 return new_entry;
Ross Zwisler9973c982016-01-22 15:10:47 -0800663}
664
665static int dax_writeback_one(struct block_device *bdev,
666 struct address_space *mapping, pgoff_t index, void *entry)
667{
668 struct radix_tree_root *page_tree = &mapping->page_tree;
669 int type = RADIX_DAX_TYPE(entry);
670 struct radix_tree_node *node;
671 struct blk_dax_ctl dax;
672 void **slot;
673 int ret = 0;
674
675 spin_lock_irq(&mapping->tree_lock);
676 /*
677 * Regular page slots are stabilized by the page lock even
678 * without the tree itself locked. These unlocked entries
679 * need verification under the tree lock.
680 */
681 if (!__radix_tree_lookup(page_tree, index, &node, &slot))
682 goto unlock;
683 if (*slot != entry)
684 goto unlock;
685
686 /* another fsync thread may have already written back this entry */
687 if (!radix_tree_tag_get(page_tree, index, PAGECACHE_TAG_TOWRITE))
688 goto unlock;
689
690 if (WARN_ON_ONCE(type != RADIX_DAX_PTE && type != RADIX_DAX_PMD)) {
691 ret = -EIO;
692 goto unlock;
693 }
694
695 dax.sector = RADIX_DAX_SECTOR(entry);
696 dax.size = (type == RADIX_DAX_PMD ? PMD_SIZE : PAGE_SIZE);
697 spin_unlock_irq(&mapping->tree_lock);
698
699 /*
700 * We cannot hold tree_lock while calling dax_map_atomic() because it
701 * eventually calls cond_resched().
702 */
703 ret = dax_map_atomic(bdev, &dax);
704 if (ret < 0)
705 return ret;
706
707 if (WARN_ON_ONCE(ret < dax.size)) {
708 ret = -EIO;
709 goto unmap;
710 }
711
712 wb_cache_pmem(dax.addr, dax.size);
713
714 spin_lock_irq(&mapping->tree_lock);
715 radix_tree_tag_clear(page_tree, index, PAGECACHE_TAG_TOWRITE);
716 spin_unlock_irq(&mapping->tree_lock);
717 unmap:
718 dax_unmap_atomic(bdev, &dax);
719 return ret;
720
721 unlock:
722 spin_unlock_irq(&mapping->tree_lock);
723 return ret;
724}
725
726/*
727 * Flush the mapping to the persistent domain within the byte range of [start,
728 * end]. This is required by data integrity operations to ensure file data is
729 * on persistent storage prior to completion of the operation.
730 */
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800731int dax_writeback_mapping_range(struct address_space *mapping,
732 struct block_device *bdev, struct writeback_control *wbc)
Ross Zwisler9973c982016-01-22 15:10:47 -0800733{
734 struct inode *inode = mapping->host;
Ross Zwisler9973c982016-01-22 15:10:47 -0800735 pgoff_t start_index, end_index, pmd_index;
736 pgoff_t indices[PAGEVEC_SIZE];
737 struct pagevec pvec;
738 bool done = false;
739 int i, ret = 0;
740 void *entry;
741
742 if (WARN_ON_ONCE(inode->i_blkbits != PAGE_SHIFT))
743 return -EIO;
744
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800745 if (!mapping->nrexceptional || wbc->sync_mode != WB_SYNC_ALL)
746 return 0;
747
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300748 start_index = wbc->range_start >> PAGE_SHIFT;
749 end_index = wbc->range_end >> PAGE_SHIFT;
Ross Zwisler9973c982016-01-22 15:10:47 -0800750 pmd_index = DAX_PMD_INDEX(start_index);
751
752 rcu_read_lock();
753 entry = radix_tree_lookup(&mapping->page_tree, pmd_index);
754 rcu_read_unlock();
755
756 /* see if the start of our range is covered by a PMD entry */
757 if (entry && RADIX_DAX_TYPE(entry) == RADIX_DAX_PMD)
758 start_index = pmd_index;
759
760 tag_pages_for_writeback(mapping, start_index, end_index);
761
762 pagevec_init(&pvec, 0);
763 while (!done) {
764 pvec.nr = find_get_entries_tag(mapping, start_index,
765 PAGECACHE_TAG_TOWRITE, PAGEVEC_SIZE,
766 pvec.pages, indices);
767
768 if (pvec.nr == 0)
769 break;
770
771 for (i = 0; i < pvec.nr; i++) {
772 if (indices[i] > end_index) {
773 done = true;
774 break;
775 }
776
777 ret = dax_writeback_one(bdev, mapping, indices[i],
778 pvec.pages[i]);
779 if (ret < 0)
780 return ret;
781 }
782 }
Ross Zwisler9973c982016-01-22 15:10:47 -0800783 return 0;
784}
785EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
786
Jan Karaac401cc2016-05-12 18:29:18 +0200787static int dax_insert_mapping(struct address_space *mapping,
788 struct buffer_head *bh, void **entryp,
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800789 struct vm_area_struct *vma, struct vm_fault *vmf)
790{
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800791 unsigned long vaddr = (unsigned long)vmf->virtual_address;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800792 struct block_device *bdev = bh->b_bdev;
793 struct blk_dax_ctl dax = {
Jan Karaac401cc2016-05-12 18:29:18 +0200794 .sector = to_sector(bh, mapping->host),
Dan Williamsb2e0d162016-01-15 16:55:59 -0800795 .size = bh->b_size,
796 };
Jan Karaac401cc2016-05-12 18:29:18 +0200797 void *ret;
798 void *entry = *entryp;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800799
Jan Kara4d9a2c82016-05-12 18:29:20 +0200800 if (dax_map_atomic(bdev, &dax) < 0)
801 return PTR_ERR(dax.addr);
Dan Williamsb2e0d162016-01-15 16:55:59 -0800802 dax_unmap_atomic(bdev, &dax);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800803
Jan Karaac401cc2016-05-12 18:29:18 +0200804 ret = dax_insert_mapping_entry(mapping, vmf, entry, dax.sector);
Jan Kara4d9a2c82016-05-12 18:29:20 +0200805 if (IS_ERR(ret))
806 return PTR_ERR(ret);
Jan Karaac401cc2016-05-12 18:29:18 +0200807 *entryp = ret;
Ross Zwisler9973c982016-01-22 15:10:47 -0800808
Jan Kara4d9a2c82016-05-12 18:29:20 +0200809 return vm_insert_mixed(vma, vaddr, dax.pfn);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800810}
811
Dave Chinnerce5c5d52015-06-04 09:18:18 +1000812/**
813 * __dax_fault - handle a page fault on a DAX file
814 * @vma: The virtual memory area where the fault occurred
815 * @vmf: The description of the fault
816 * @get_block: The filesystem method used to translate file offsets to blocks
817 *
818 * When a page fault occurs, filesystems may call this helper in their
819 * fault handler for DAX files. __dax_fault() assumes the caller has done all
820 * the necessary locking for the page fault to proceed successfully.
821 */
822int __dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf,
Jan Kara02fbd132016-05-11 11:58:48 +0200823 get_block_t get_block)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800824{
825 struct file *file = vma->vm_file;
826 struct address_space *mapping = file->f_mapping;
827 struct inode *inode = mapping->host;
Jan Karaac401cc2016-05-12 18:29:18 +0200828 void *entry;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800829 struct buffer_head bh;
830 unsigned long vaddr = (unsigned long)vmf->virtual_address;
831 unsigned blkbits = inode->i_blkbits;
832 sector_t block;
833 pgoff_t size;
834 int error;
835 int major = 0;
836
Jan Karaac401cc2016-05-12 18:29:18 +0200837 /*
838 * Check whether offset isn't beyond end of file now. Caller is supposed
839 * to hold locks serializing us with truncate / punch hole so this is
840 * a reliable test.
841 */
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800842 size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT;
843 if (vmf->pgoff >= size)
844 return VM_FAULT_SIGBUS;
845
846 memset(&bh, 0, sizeof(bh));
847 block = (sector_t)vmf->pgoff << (PAGE_SHIFT - blkbits);
Ross Zwislereab95db2016-01-22 15:10:59 -0800848 bh.b_bdev = inode->i_sb->s_bdev;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800849 bh.b_size = PAGE_SIZE;
850
Jan Karaac401cc2016-05-12 18:29:18 +0200851 entry = grab_mapping_entry(mapping, vmf->pgoff);
852 if (IS_ERR(entry)) {
853 error = PTR_ERR(entry);
854 goto out;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800855 }
856
857 error = get_block(inode, block, &bh, 0);
858 if (!error && (bh.b_size < PAGE_SIZE))
859 error = -EIO; /* fs corruption? */
860 if (error)
Jan Karaac401cc2016-05-12 18:29:18 +0200861 goto unlock_entry;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800862
863 if (vmf->cow_page) {
864 struct page *new_page = vmf->cow_page;
865 if (buffer_written(&bh))
Dan Williamsb2e0d162016-01-15 16:55:59 -0800866 error = copy_user_bh(new_page, inode, &bh, vaddr);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800867 else
868 clear_user_highpage(new_page, vaddr);
869 if (error)
Jan Karaac401cc2016-05-12 18:29:18 +0200870 goto unlock_entry;
871 if (!radix_tree_exceptional_entry(entry)) {
872 vmf->page = entry;
Jan Karabc2466e2016-05-12 18:29:19 +0200873 return VM_FAULT_LOCKED;
Jan Karaac401cc2016-05-12 18:29:18 +0200874 }
Jan Karabc2466e2016-05-12 18:29:19 +0200875 vmf->entry = entry;
876 return VM_FAULT_DAX_LOCKED;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800877 }
878
Jan Karaac401cc2016-05-12 18:29:18 +0200879 if (!buffer_mapped(&bh)) {
880 if (vmf->flags & FAULT_FLAG_WRITE) {
881 error = get_block(inode, block, &bh, 1);
882 count_vm_event(PGMAJFAULT);
883 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
884 major = VM_FAULT_MAJOR;
885 if (!error && (bh.b_size < PAGE_SIZE))
886 error = -EIO;
887 if (error)
888 goto unlock_entry;
889 } else {
890 return dax_load_hole(mapping, entry, vmf);
891 }
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800892 }
893
Jan Kara02fbd132016-05-11 11:58:48 +0200894 /* Filesystem should not return unwritten buffers to us! */
Jan Kara2b109452016-05-11 11:58:50 +0200895 WARN_ON_ONCE(buffer_unwritten(&bh) || buffer_new(&bh));
Jan Karaac401cc2016-05-12 18:29:18 +0200896 error = dax_insert_mapping(mapping, &bh, &entry, vma, vmf);
897 unlock_entry:
898 put_locked_mapping_entry(mapping, vmf->pgoff, entry);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800899 out:
900 if (error == -ENOMEM)
901 return VM_FAULT_OOM | major;
902 /* -EBUSY is fine, somebody else faulted on the same PTE */
903 if ((error < 0) && (error != -EBUSY))
904 return VM_FAULT_SIGBUS | major;
905 return VM_FAULT_NOPAGE | major;
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800906}
Dave Chinnerce5c5d52015-06-04 09:18:18 +1000907EXPORT_SYMBOL(__dax_fault);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800908
909/**
910 * dax_fault - handle a page fault on a DAX file
911 * @vma: The virtual memory area where the fault occurred
912 * @vmf: The description of the fault
913 * @get_block: The filesystem method used to translate file offsets to blocks
914 *
915 * When a page fault occurs, filesystems may call this helper in their
916 * fault handler for DAX files.
917 */
918int dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf,
Jan Kara02fbd132016-05-11 11:58:48 +0200919 get_block_t get_block)
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800920{
921 int result;
922 struct super_block *sb = file_inode(vma->vm_file)->i_sb;
923
924 if (vmf->flags & FAULT_FLAG_WRITE) {
925 sb_start_pagefault(sb);
926 file_update_time(vma->vm_file);
927 }
Jan Kara02fbd132016-05-11 11:58:48 +0200928 result = __dax_fault(vma, vmf, get_block);
Matthew Wilcoxf7ca90b2015-02-16 15:59:02 -0800929 if (vmf->flags & FAULT_FLAG_WRITE)
930 sb_end_pagefault(sb);
931
932 return result;
933}
934EXPORT_SYMBOL_GPL(dax_fault);
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -0800935
Jan Kara348e9672016-05-12 18:29:15 +0200936#if defined(CONFIG_TRANSPARENT_HUGEPAGE)
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700937/*
938 * The 'colour' (ie low bits) within a PMD of a page offset. This comes up
939 * more often than one might expect in the below function.
940 */
941#define PG_PMD_COLOUR ((PMD_SIZE >> PAGE_SHIFT) - 1)
942
Dan Williamscbb38e42016-01-15 16:56:58 -0800943static void __dax_dbg(struct buffer_head *bh, unsigned long address,
944 const char *reason, const char *fn)
945{
946 if (bh) {
947 char bname[BDEVNAME_SIZE];
948 bdevname(bh->b_bdev, bname);
949 pr_debug("%s: %s addr: %lx dev %s state %lx start %lld "
950 "length %zd fallback: %s\n", fn, current->comm,
951 address, bname, bh->b_state, (u64)bh->b_blocknr,
952 bh->b_size, reason);
953 } else {
954 pr_debug("%s: %s addr: %lx fallback: %s\n", fn,
955 current->comm, address, reason);
956 }
957}
958
959#define dax_pmd_dbg(bh, address, reason) __dax_dbg(bh, address, reason, "dax_pmd")
960
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700961int __dax_pmd_fault(struct vm_area_struct *vma, unsigned long address,
Jan Kara02fbd132016-05-11 11:58:48 +0200962 pmd_t *pmd, unsigned int flags, get_block_t get_block)
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700963{
964 struct file *file = vma->vm_file;
965 struct address_space *mapping = file->f_mapping;
966 struct inode *inode = mapping->host;
967 struct buffer_head bh;
968 unsigned blkbits = inode->i_blkbits;
969 unsigned long pmd_addr = address & PMD_MASK;
970 bool write = flags & FAULT_FLAG_WRITE;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800971 struct block_device *bdev;
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700972 pgoff_t size, pgoff;
Dan Williamsb2e0d162016-01-15 16:55:59 -0800973 sector_t block;
Jan Karaac401cc2016-05-12 18:29:18 +0200974 int result = 0;
Ross Zwisler9973c982016-01-22 15:10:47 -0800975 bool alloc = false;
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700976
Dan Williamsc046c322016-01-15 16:57:01 -0800977 /* dax pmd mappings require pfn_t_devmap() */
Dan Williamsee82c9e2015-11-15 16:06:32 -0800978 if (!IS_ENABLED(CONFIG_FS_DAX_PMD))
979 return VM_FAULT_FALLBACK;
980
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700981 /* Fall back to PTEs if we're going to COW */
Toshi Kani59bf4fb2016-01-15 16:56:05 -0800982 if (write && !(vma->vm_flags & VM_SHARED)) {
983 split_huge_pmd(vma, pmd, address);
Dan Williamscbb38e42016-01-15 16:56:58 -0800984 dax_pmd_dbg(NULL, address, "cow write");
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700985 return VM_FAULT_FALLBACK;
Toshi Kani59bf4fb2016-01-15 16:56:05 -0800986 }
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700987 /* If the PMD would extend outside the VMA */
Dan Williamscbb38e42016-01-15 16:56:58 -0800988 if (pmd_addr < vma->vm_start) {
989 dax_pmd_dbg(NULL, address, "vma start unaligned");
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700990 return VM_FAULT_FALLBACK;
Dan Williamscbb38e42016-01-15 16:56:58 -0800991 }
992 if ((pmd_addr + PMD_SIZE) > vma->vm_end) {
993 dax_pmd_dbg(NULL, address, "vma end unaligned");
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700994 return VM_FAULT_FALLBACK;
Dan Williamscbb38e42016-01-15 16:56:58 -0800995 }
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700996
Matthew Wilcox3fdd1b472015-09-08 14:59:39 -0700997 pgoff = linear_page_index(vma, pmd_addr);
Matthew Wilcox844f35d2015-09-08 14:58:57 -0700998 size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT;
999 if (pgoff >= size)
1000 return VM_FAULT_SIGBUS;
1001 /* If the PMD would cover blocks out of the file */
Dan Williamscbb38e42016-01-15 16:56:58 -08001002 if ((pgoff | PG_PMD_COLOUR) >= size) {
1003 dax_pmd_dbg(NULL, address,
1004 "offset + huge page size > file size");
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001005 return VM_FAULT_FALLBACK;
Dan Williamscbb38e42016-01-15 16:56:58 -08001006 }
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001007
1008 memset(&bh, 0, sizeof(bh));
Ross Zwislerd4bbe702016-01-22 15:10:31 -08001009 bh.b_bdev = inode->i_sb->s_bdev;
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001010 block = (sector_t)pgoff << (PAGE_SHIFT - blkbits);
1011
1012 bh.b_size = PMD_SIZE;
Ross Zwisler9973c982016-01-22 15:10:47 -08001013
1014 if (get_block(inode, block, &bh, 0) != 0)
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001015 return VM_FAULT_SIGBUS;
Ross Zwisler9973c982016-01-22 15:10:47 -08001016
1017 if (!buffer_mapped(&bh) && write) {
1018 if (get_block(inode, block, &bh, 1) != 0)
1019 return VM_FAULT_SIGBUS;
1020 alloc = true;
Jan Kara2b109452016-05-11 11:58:50 +02001021 WARN_ON_ONCE(buffer_unwritten(&bh) || buffer_new(&bh));
Ross Zwisler9973c982016-01-22 15:10:47 -08001022 }
1023
Dan Williamsb2e0d162016-01-15 16:55:59 -08001024 bdev = bh.b_bdev;
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001025
1026 /*
1027 * If the filesystem isn't willing to tell us the length of a hole,
1028 * just fall back to PTEs. Calling get_block 512 times in a loop
1029 * would be silly.
1030 */
Dan Williamscbb38e42016-01-15 16:56:58 -08001031 if (!buffer_size_valid(&bh) || bh.b_size < PMD_SIZE) {
1032 dax_pmd_dbg(&bh, address, "allocated block too small");
Ross Zwisler9973c982016-01-22 15:10:47 -08001033 return VM_FAULT_FALLBACK;
Dan Williamscbb38e42016-01-15 16:56:58 -08001034 }
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001035
Ross Zwisler9973c982016-01-22 15:10:47 -08001036 /*
1037 * If we allocated new storage, make sure no process has any
1038 * zero pages covering this hole
1039 */
1040 if (alloc) {
1041 loff_t lstart = pgoff << PAGE_SHIFT;
1042 loff_t lend = lstart + PMD_SIZE - 1; /* inclusive */
1043
1044 truncate_pagecache_range(inode, lstart, lend);
1045 }
1046
Jan Karab9953532016-05-12 18:29:14 +02001047 if (!write && !buffer_mapped(&bh)) {
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001048 spinlock_t *ptl;
Kirill A. Shutemovd295e342015-09-08 14:59:34 -07001049 pmd_t entry;
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001050 struct page *zero_page = get_huge_zero_page();
Kirill A. Shutemovd295e342015-09-08 14:59:34 -07001051
Dan Williamscbb38e42016-01-15 16:56:58 -08001052 if (unlikely(!zero_page)) {
1053 dax_pmd_dbg(&bh, address, "no zero page");
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001054 goto fallback;
Dan Williamscbb38e42016-01-15 16:56:58 -08001055 }
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001056
Kirill A. Shutemovd295e342015-09-08 14:59:34 -07001057 ptl = pmd_lock(vma->vm_mm, pmd);
1058 if (!pmd_none(*pmd)) {
1059 spin_unlock(ptl);
Dan Williamscbb38e42016-01-15 16:56:58 -08001060 dax_pmd_dbg(&bh, address, "pmd already present");
Kirill A. Shutemovd295e342015-09-08 14:59:34 -07001061 goto fallback;
1062 }
1063
Dan Williamscbb38e42016-01-15 16:56:58 -08001064 dev_dbg(part_to_dev(bdev->bd_part),
1065 "%s: %s addr: %lx pfn: <zero> sect: %llx\n",
1066 __func__, current->comm, address,
1067 (unsigned long long) to_sector(&bh, inode));
1068
Kirill A. Shutemovd295e342015-09-08 14:59:34 -07001069 entry = mk_pmd(zero_page, vma->vm_page_prot);
1070 entry = pmd_mkhuge(entry);
1071 set_pmd_at(vma->vm_mm, pmd_addr, pmd, entry);
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001072 result = VM_FAULT_NOPAGE;
Kirill A. Shutemovd295e342015-09-08 14:59:34 -07001073 spin_unlock(ptl);
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001074 } else {
Dan Williamsb2e0d162016-01-15 16:55:59 -08001075 struct blk_dax_ctl dax = {
1076 .sector = to_sector(&bh, inode),
1077 .size = PMD_SIZE,
1078 };
1079 long length = dax_map_atomic(bdev, &dax);
1080
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001081 if (length < 0) {
Dan Williams8b3db9792016-02-24 14:02:06 -08001082 dax_pmd_dbg(&bh, address, "dax-error fallback");
1083 goto fallback;
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001084 }
Dan Williamscbb38e42016-01-15 16:56:58 -08001085 if (length < PMD_SIZE) {
1086 dax_pmd_dbg(&bh, address, "dax-length too small");
1087 dax_unmap_atomic(bdev, &dax);
1088 goto fallback;
1089 }
1090 if (pfn_t_to_pfn(dax.pfn) & PG_PMD_COLOUR) {
1091 dax_pmd_dbg(&bh, address, "pfn unaligned");
Dan Williamsb2e0d162016-01-15 16:55:59 -08001092 dax_unmap_atomic(bdev, &dax);
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001093 goto fallback;
Dan Williamsb2e0d162016-01-15 16:55:59 -08001094 }
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001095
Dan Williamsc046c322016-01-15 16:57:01 -08001096 if (!pfn_t_devmap(dax.pfn)) {
Dan Williamsb2e0d162016-01-15 16:55:59 -08001097 dax_unmap_atomic(bdev, &dax);
Dan Williamscbb38e42016-01-15 16:56:58 -08001098 dax_pmd_dbg(&bh, address, "pfn not in memmap");
Dan Williams152d7bd2015-11-12 18:33:54 -08001099 goto fallback;
Dan Williamsb2e0d162016-01-15 16:55:59 -08001100 }
Dan Williamsb2e0d162016-01-15 16:55:59 -08001101 dax_unmap_atomic(bdev, &dax);
Ross Zwisler0f90cc62015-10-15 15:28:32 -07001102
Ross Zwisler9973c982016-01-22 15:10:47 -08001103 /*
1104 * For PTE faults we insert a radix tree entry for reads, and
1105 * leave it clean. Then on the first write we dirty the radix
1106 * tree entry via the dax_pfn_mkwrite() path. This sequence
1107 * allows the dax_pfn_mkwrite() call to be simpler and avoid a
1108 * call into get_block() to translate the pgoff to a sector in
1109 * order to be able to create a new radix tree entry.
1110 *
1111 * The PMD path doesn't have an equivalent to
1112 * dax_pfn_mkwrite(), though, so for a read followed by a
1113 * write we traverse all the way through __dax_pmd_fault()
1114 * twice. This means we can just skip inserting a radix tree
1115 * entry completely on the initial read and just wait until
1116 * the write to insert a dirty entry.
1117 */
1118 if (write) {
Jan Karaac401cc2016-05-12 18:29:18 +02001119 /*
1120 * We should insert radix-tree entry and dirty it here.
1121 * For now this is broken...
1122 */
Ross Zwisler9973c982016-01-22 15:10:47 -08001123 }
1124
Dan Williamscbb38e42016-01-15 16:56:58 -08001125 dev_dbg(part_to_dev(bdev->bd_part),
1126 "%s: %s addr: %lx pfn: %lx sect: %llx\n",
1127 __func__, current->comm, address,
1128 pfn_t_to_pfn(dax.pfn),
1129 (unsigned long long) dax.sector);
Dan Williams34c0fd52016-01-15 16:56:14 -08001130 result |= vmf_insert_pfn_pmd(vma, address, pmd,
Dan Williamsf25748e32016-01-15 16:56:43 -08001131 dax.pfn, write);
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001132 }
1133
1134 out:
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001135 return result;
1136
1137 fallback:
1138 count_vm_event(THP_FAULT_FALLBACK);
1139 result = VM_FAULT_FALLBACK;
1140 goto out;
1141}
1142EXPORT_SYMBOL_GPL(__dax_pmd_fault);
1143
1144/**
1145 * dax_pmd_fault - handle a PMD fault on a DAX file
1146 * @vma: The virtual memory area where the fault occurred
1147 * @vmf: The description of the fault
1148 * @get_block: The filesystem method used to translate file offsets to blocks
1149 *
1150 * When a page fault occurs, filesystems may call this helper in their
1151 * pmd_fault handler for DAX files.
1152 */
1153int dax_pmd_fault(struct vm_area_struct *vma, unsigned long address,
Jan Kara02fbd132016-05-11 11:58:48 +02001154 pmd_t *pmd, unsigned int flags, get_block_t get_block)
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001155{
1156 int result;
1157 struct super_block *sb = file_inode(vma->vm_file)->i_sb;
1158
1159 if (flags & FAULT_FLAG_WRITE) {
1160 sb_start_pagefault(sb);
1161 file_update_time(vma->vm_file);
1162 }
Jan Kara02fbd132016-05-11 11:58:48 +02001163 result = __dax_pmd_fault(vma, address, pmd, flags, get_block);
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001164 if (flags & FAULT_FLAG_WRITE)
1165 sb_end_pagefault(sb);
1166
1167 return result;
1168}
1169EXPORT_SYMBOL_GPL(dax_pmd_fault);
Valentin Rothbergdd8a2b62015-09-08 14:59:09 -07001170#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Matthew Wilcox844f35d2015-09-08 14:58:57 -07001171
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001172/**
Boaz Harrosh0e3b2102015-04-15 16:15:14 -07001173 * dax_pfn_mkwrite - handle first write to DAX page
1174 * @vma: The virtual memory area where the fault occurred
1175 * @vmf: The description of the fault
Boaz Harrosh0e3b2102015-04-15 16:15:14 -07001176 */
1177int dax_pfn_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
1178{
Ross Zwisler9973c982016-01-22 15:10:47 -08001179 struct file *file = vma->vm_file;
Jan Karaac401cc2016-05-12 18:29:18 +02001180 struct address_space *mapping = file->f_mapping;
1181 void *entry;
1182 pgoff_t index = vmf->pgoff;
Boaz Harrosh0e3b2102015-04-15 16:15:14 -07001183
Jan Karaac401cc2016-05-12 18:29:18 +02001184 spin_lock_irq(&mapping->tree_lock);
1185 entry = get_unlocked_mapping_entry(mapping, index, NULL);
1186 if (!entry || !radix_tree_exceptional_entry(entry))
1187 goto out;
1188 radix_tree_tag_set(&mapping->page_tree, index, PAGECACHE_TAG_DIRTY);
1189 put_unlocked_mapping_entry(mapping, index, entry);
1190out:
1191 spin_unlock_irq(&mapping->tree_lock);
Boaz Harrosh0e3b2102015-04-15 16:15:14 -07001192 return VM_FAULT_NOPAGE;
1193}
1194EXPORT_SYMBOL_GPL(dax_pfn_mkwrite);
1195
Vishal Verma4b0228f2016-04-21 15:13:46 -04001196static bool dax_range_is_aligned(struct block_device *bdev,
1197 unsigned int offset, unsigned int length)
1198{
1199 unsigned short sector_size = bdev_logical_block_size(bdev);
1200
1201 if (!IS_ALIGNED(offset, sector_size))
1202 return false;
1203 if (!IS_ALIGNED(length, sector_size))
1204 return false;
1205
1206 return true;
1207}
1208
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001209int __dax_zero_page_range(struct block_device *bdev, sector_t sector,
1210 unsigned int offset, unsigned int length)
1211{
1212 struct blk_dax_ctl dax = {
1213 .sector = sector,
1214 .size = PAGE_SIZE,
1215 };
1216
Vishal Verma4b0228f2016-04-21 15:13:46 -04001217 if (dax_range_is_aligned(bdev, offset, length)) {
1218 sector_t start_sector = dax.sector + (offset >> 9);
1219
1220 return blkdev_issue_zeroout(bdev, start_sector,
1221 length >> 9, GFP_NOFS, true);
1222 } else {
1223 if (dax_map_atomic(bdev, &dax) < 0)
1224 return PTR_ERR(dax.addr);
1225 clear_pmem(dax.addr + offset, length);
Vishal Verma4b0228f2016-04-21 15:13:46 -04001226 dax_unmap_atomic(bdev, &dax);
1227 }
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001228 return 0;
1229}
1230EXPORT_SYMBOL_GPL(__dax_zero_page_range);
1231
Boaz Harrosh0e3b2102015-04-15 16:15:14 -07001232/**
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001233 * dax_zero_page_range - zero a range within a page of a DAX file
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001234 * @inode: The file being truncated
1235 * @from: The file offset that is being truncated to
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001236 * @length: The number of bytes to zero
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001237 * @get_block: The filesystem method used to translate file offsets to blocks
1238 *
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001239 * This function can be called by a filesystem when it is zeroing part of a
1240 * page in a DAX file. This is intended for hole-punch operations. If
1241 * you are truncating a file, the helper function dax_truncate_page() may be
1242 * more convenient.
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001243 */
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001244int dax_zero_page_range(struct inode *inode, loff_t from, unsigned length,
1245 get_block_t get_block)
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001246{
1247 struct buffer_head bh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001248 pgoff_t index = from >> PAGE_SHIFT;
1249 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001250 int err;
1251
1252 /* Block boundary? Nothing to do */
1253 if (!length)
1254 return 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001255 BUG_ON((offset + length) > PAGE_SIZE);
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001256
1257 memset(&bh, 0, sizeof(bh));
Ross Zwislereab95db2016-01-22 15:10:59 -08001258 bh.b_bdev = inode->i_sb->s_bdev;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001259 bh.b_size = PAGE_SIZE;
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001260 err = get_block(inode, index, &bh, 0);
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001261 if (err < 0 || !buffer_written(&bh))
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001262 return err;
Dan Williamsb2e0d162016-01-15 16:55:59 -08001263
Christoph Hellwig679c8bd2016-05-09 10:47:04 +02001264 return __dax_zero_page_range(bh.b_bdev, to_sector(&bh, inode),
1265 offset, length);
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001266}
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001267EXPORT_SYMBOL_GPL(dax_zero_page_range);
1268
1269/**
1270 * dax_truncate_page - handle a partial page being truncated in a DAX file
1271 * @inode: The file being truncated
1272 * @from: The file offset that is being truncated to
1273 * @get_block: The filesystem method used to translate file offsets to blocks
1274 *
1275 * Similar to block_truncate_page(), this function can be called by a
1276 * filesystem when it is truncating a DAX file to handle the partial page.
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001277 */
1278int dax_truncate_page(struct inode *inode, loff_t from, get_block_t get_block)
1279{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001280 unsigned length = PAGE_ALIGN(from) - from;
Matthew Wilcox25726bc2015-02-16 15:59:35 -08001281 return dax_zero_page_range(inode, from, length, get_block);
1282}
Matthew Wilcox4c0ccfe2015-02-16 15:59:06 -08001283EXPORT_SYMBOL_GPL(dax_truncate_page);