]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/dax/super.c
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-eoan-kernel.git] / drivers / dax / super.c
CommitLineData
7b6be844
DW
1/*
2 * Copyright(c) 2017 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 */
13#include <linux/pagemap.h>
14#include <linux/module.h>
15#include <linux/mount.h>
16#include <linux/magic.h>
ef510424 17#include <linux/genhd.h>
569d0365 18#include <linux/pfn_t.h>
7b6be844
DW
19#include <linux/cdev.h>
20#include <linux/hash.h>
21#include <linux/slab.h>
7e026c8c 22#include <linux/uio.h>
6568b08b 23#include <linux/dax.h>
7b6be844
DW
24#include <linux/fs.h>
25
7b6be844
DW
26static dev_t dax_devt;
27DEFINE_STATIC_SRCU(dax_srcu);
28static struct vfsmount *dax_mnt;
29static DEFINE_IDA(dax_minor_ida);
30static struct kmem_cache *dax_cache __read_mostly;
31static struct super_block *dax_superblock __read_mostly;
32
72058005
DW
33#define DAX_HASH_SIZE (PAGE_SIZE / sizeof(struct hlist_head))
34static struct hlist_head dax_host_list[DAX_HASH_SIZE];
35static DEFINE_SPINLOCK(dax_host_lock);
36
7b6be844
DW
37int dax_read_lock(void)
38{
39 return srcu_read_lock(&dax_srcu);
40}
41EXPORT_SYMBOL_GPL(dax_read_lock);
42
43void dax_read_unlock(int id)
44{
45 srcu_read_unlock(&dax_srcu, id);
46}
47EXPORT_SYMBOL_GPL(dax_read_unlock);
48
9d109081 49#ifdef CONFIG_BLOCK
78f35473
DW
50#include <linux/blkdev.h>
51
ef510424
DW
52int bdev_dax_pgoff(struct block_device *bdev, sector_t sector, size_t size,
53 pgoff_t *pgoff)
54{
55 phys_addr_t phys_off = (get_start_sect(bdev) + sector) * 512;
56
57 if (pgoff)
58 *pgoff = PHYS_PFN(phys_off);
59 if (phys_off % PAGE_SIZE || size % PAGE_SIZE)
60 return -EINVAL;
61 return 0;
62}
63EXPORT_SYMBOL(bdev_dax_pgoff);
64
26f2f4de 65#if IS_ENABLED(CONFIG_FS_DAX)
78f35473
DW
66struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev)
67{
68 if (!blk_queue_dax(bdev->bd_queue))
69 return NULL;
70 return fs_dax_get_by_host(bdev->bd_disk->disk_name);
71}
72EXPORT_SYMBOL_GPL(fs_dax_get_by_bdev);
26f2f4de 73#endif
78f35473 74
ef510424
DW
75/**
76 * __bdev_dax_supported() - Check if the device supports dax for filesystem
ba23cba9 77 * @bdev: block device to check
ef510424
DW
78 * @blocksize: The block size of the device
79 *
80 * This is a library function for filesystems to check if the block device
81 * can be mounted with dax option.
82 *
80660f20 83 * Return: true if supported, false if unsupported
ef510424 84 */
80660f20 85bool __bdev_dax_supported(struct block_device *bdev, int blocksize)
ef510424 86{
ef510424 87 struct dax_device *dax_dev;
e7638488 88 bool dax_enabled = false;
ef510424
DW
89 pgoff_t pgoff;
90 int err, id;
91 void *kaddr;
92 pfn_t pfn;
93 long len;
ba23cba9 94 char buf[BDEVNAME_SIZE];
ef510424
DW
95
96 if (blocksize != PAGE_SIZE) {
ba23cba9
DW
97 pr_debug("%s: error: unsupported blocksize for dax\n",
98 bdevname(bdev, buf));
80660f20 99 return false;
ef510424
DW
100 }
101
102 err = bdev_dax_pgoff(bdev, 0, PAGE_SIZE, &pgoff);
103 if (err) {
ba23cba9
DW
104 pr_debug("%s: error: unaligned partition for dax\n",
105 bdevname(bdev, buf));
80660f20 106 return false;
ef510424
DW
107 }
108
109 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
110 if (!dax_dev) {
ba23cba9
DW
111 pr_debug("%s: error: device does not support dax\n",
112 bdevname(bdev, buf));
80660f20 113 return false;
ef510424
DW
114 }
115
116 id = dax_read_lock();
117 len = dax_direct_access(dax_dev, pgoff, 1, &kaddr, &pfn);
118 dax_read_unlock(id);
119
120 put_dax(dax_dev);
121
122 if (len < 1) {
ba23cba9
DW
123 pr_debug("%s: error: dax access failed (%ld)\n",
124 bdevname(bdev, buf), len);
80660f20 125 return false;
ef510424
DW
126 }
127
3fe0791c
DW
128 if (IS_ENABLED(CONFIG_FS_DAX_LIMITED) && pfn_t_special(pfn)) {
129 /*
130 * An arch that has enabled the pmem api should also
131 * have its drivers support pfn_t_devmap()
132 *
133 * This is a developer warning and should not trigger in
134 * production. dax_flush() will crash since it depends
135 * on being able to do (page_address(pfn_to_page())).
136 */
137 WARN_ON(IS_ENABLED(CONFIG_ARCH_HAS_PMEM_API));
e7638488 138 dax_enabled = true;
3fe0791c 139 } else if (pfn_t_devmap(pfn)) {
e7638488
DW
140 struct dev_pagemap *pgmap;
141
142 pgmap = get_dev_pagemap(pfn_t_to_pfn(pfn), NULL);
143 if (pgmap && pgmap->type == MEMORY_DEVICE_FS_DAX)
144 dax_enabled = true;
145 put_dev_pagemap(pgmap);
146 }
147
148 if (!dax_enabled) {
ba23cba9
DW
149 pr_debug("%s: error: dax support not enabled\n",
150 bdevname(bdev, buf));
80660f20 151 return false;
569d0365 152 }
80660f20 153 return true;
ef510424
DW
154}
155EXPORT_SYMBOL_GPL(__bdev_dax_supported);
9d109081 156#endif
ef510424 157
9a60c3ef
DW
158enum dax_device_flags {
159 /* !alive + rcu grace period == no new operations / mappings */
160 DAXDEV_ALIVE,
6e0c90d6
DW
161 /* gate whether dax_flush() calls the low level flush routine */
162 DAXDEV_WRITE_CACHE,
9a60c3ef
DW
163};
164
7b6be844
DW
165/**
166 * struct dax_device - anchor object for dax services
167 * @inode: core vfs
168 * @cdev: optional character interface for "device dax"
72058005 169 * @host: optional name for lookups where the device path is not available
7b6be844 170 * @private: dax driver private data
9a60c3ef 171 * @flags: state and boolean properties
7b6be844
DW
172 */
173struct dax_device {
72058005 174 struct hlist_node list;
7b6be844
DW
175 struct inode inode;
176 struct cdev cdev;
72058005 177 const char *host;
7b6be844 178 void *private;
9a60c3ef 179 unsigned long flags;
6568b08b 180 const struct dax_operations *ops;
7b6be844
DW
181};
182
6e0c90d6
DW
183static ssize_t write_cache_show(struct device *dev,
184 struct device_attribute *attr, char *buf)
185{
186 struct dax_device *dax_dev = dax_get_by_host(dev_name(dev));
187 ssize_t rc;
188
189 WARN_ON_ONCE(!dax_dev);
190 if (!dax_dev)
191 return -ENXIO;
192
808c340b 193 rc = sprintf(buf, "%d\n", !!dax_write_cache_enabled(dax_dev));
6e0c90d6
DW
194 put_dax(dax_dev);
195 return rc;
196}
197
198static ssize_t write_cache_store(struct device *dev,
199 struct device_attribute *attr, const char *buf, size_t len)
200{
201 bool write_cache;
202 int rc = strtobool(buf, &write_cache);
203 struct dax_device *dax_dev = dax_get_by_host(dev_name(dev));
204
205 WARN_ON_ONCE(!dax_dev);
206 if (!dax_dev)
207 return -ENXIO;
208
209 if (rc)
210 len = rc;
6e0c90d6 211 else
808c340b 212 dax_write_cache(dax_dev, write_cache);
6e0c90d6
DW
213
214 put_dax(dax_dev);
215 return len;
216}
217static DEVICE_ATTR_RW(write_cache);
218
219static umode_t dax_visible(struct kobject *kobj, struct attribute *a, int n)
220{
221 struct device *dev = container_of(kobj, typeof(*dev), kobj);
222 struct dax_device *dax_dev = dax_get_by_host(dev_name(dev));
223
224 WARN_ON_ONCE(!dax_dev);
225 if (!dax_dev)
226 return 0;
227
c3ca015f
MP
228#ifndef CONFIG_ARCH_HAS_PMEM_API
229 if (a == &dev_attr_write_cache.attr)
6e0c90d6 230 return 0;
c3ca015f 231#endif
6e0c90d6
DW
232 return a->mode;
233}
234
235static struct attribute *dax_attributes[] = {
236 &dev_attr_write_cache.attr,
237 NULL,
238};
239
240struct attribute_group dax_attribute_group = {
241 .name = "dax",
242 .attrs = dax_attributes,
243 .is_visible = dax_visible,
244};
245EXPORT_SYMBOL_GPL(dax_attribute_group);
246
b0686260
DW
247/**
248 * dax_direct_access() - translate a device pgoff to an absolute pfn
249 * @dax_dev: a dax_device instance representing the logical memory range
250 * @pgoff: offset in pages from the start of the device to translate
251 * @nr_pages: number of consecutive pages caller can handle relative to @pfn
252 * @kaddr: output parameter that returns a virtual address mapping of pfn
253 * @pfn: output parameter that returns an absolute pfn translation of @pgoff
254 *
255 * Return: negative errno if an error occurs, otherwise the number of
256 * pages accessible at the device relative @pgoff.
257 */
258long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
259 void **kaddr, pfn_t *pfn)
260{
261 long avail;
262
b0686260
DW
263 if (!dax_dev)
264 return -EOPNOTSUPP;
265
266 if (!dax_alive(dax_dev))
267 return -ENXIO;
268
269 if (nr_pages < 0)
270 return nr_pages;
271
272 avail = dax_dev->ops->direct_access(dax_dev, pgoff, nr_pages,
273 kaddr, pfn);
274 if (!avail)
275 return -ERANGE;
276 return min(avail, nr_pages);
277}
278EXPORT_SYMBOL_GPL(dax_direct_access);
279
7e026c8c
DW
280size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
281 size_t bytes, struct iov_iter *i)
282{
283 if (!dax_alive(dax_dev))
284 return 0;
285
7e026c8c
DW
286 return dax_dev->ops->copy_from_iter(dax_dev, pgoff, addr, bytes, i);
287}
288EXPORT_SYMBOL_GPL(dax_copy_from_iter);
289
b3a9a0c3
DW
290size_t dax_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
291 size_t bytes, struct iov_iter *i)
292{
293 if (!dax_alive(dax_dev))
294 return 0;
295
296 return dax_dev->ops->copy_to_iter(dax_dev, pgoff, addr, bytes, i);
297}
298EXPORT_SYMBOL_GPL(dax_copy_to_iter);
299
c3ca015f
MP
300#ifdef CONFIG_ARCH_HAS_PMEM_API
301void arch_wb_cache_pmem(void *addr, size_t size);
302void dax_flush(struct dax_device *dax_dev, void *addr, size_t size)
abebfbe2 303{
808c340b 304 if (unlikely(!dax_write_cache_enabled(dax_dev)))
6e0c90d6
DW
305 return;
306
c3ca015f 307 arch_wb_cache_pmem(addr, size);
abebfbe2 308}
c3ca015f
MP
309#else
310void dax_flush(struct dax_device *dax_dev, void *addr, size_t size)
311{
312}
313#endif
abebfbe2
DW
314EXPORT_SYMBOL_GPL(dax_flush);
315
6e0c90d6
DW
316void dax_write_cache(struct dax_device *dax_dev, bool wc)
317{
318 if (wc)
319 set_bit(DAXDEV_WRITE_CACHE, &dax_dev->flags);
320 else
321 clear_bit(DAXDEV_WRITE_CACHE, &dax_dev->flags);
322}
323EXPORT_SYMBOL_GPL(dax_write_cache);
324
273752c9
VG
325bool dax_write_cache_enabled(struct dax_device *dax_dev)
326{
327 return test_bit(DAXDEV_WRITE_CACHE, &dax_dev->flags);
328}
329EXPORT_SYMBOL_GPL(dax_write_cache_enabled);
330
7b6be844
DW
331bool dax_alive(struct dax_device *dax_dev)
332{
333 lockdep_assert_held(&dax_srcu);
9a60c3ef 334 return test_bit(DAXDEV_ALIVE, &dax_dev->flags);
7b6be844
DW
335}
336EXPORT_SYMBOL_GPL(dax_alive);
337
72058005
DW
338static int dax_host_hash(const char *host)
339{
340 return hashlen_hash(hashlen_string("DAX", host)) % DAX_HASH_SIZE;
341}
342
7b6be844
DW
343/*
344 * Note, rcu is not protecting the liveness of dax_dev, rcu is ensuring
345 * that any fault handlers or operations that might have seen
346 * dax_alive(), have completed. Any operations that start after
347 * synchronize_srcu() has run will abort upon seeing !dax_alive().
348 */
349void kill_dax(struct dax_device *dax_dev)
350{
351 if (!dax_dev)
352 return;
353
9a60c3ef 354 clear_bit(DAXDEV_ALIVE, &dax_dev->flags);
72058005 355
7b6be844 356 synchronize_srcu(&dax_srcu);
72058005
DW
357
358 spin_lock(&dax_host_lock);
359 hlist_del_init(&dax_dev->list);
360 spin_unlock(&dax_host_lock);
361
7b6be844
DW
362 dax_dev->private = NULL;
363}
364EXPORT_SYMBOL_GPL(kill_dax);
365
366static struct inode *dax_alloc_inode(struct super_block *sb)
367{
368 struct dax_device *dax_dev;
b9d39d17 369 struct inode *inode;
7b6be844
DW
370
371 dax_dev = kmem_cache_alloc(dax_cache, GFP_KERNEL);
9f586fff
MP
372 if (!dax_dev)
373 return NULL;
374
b9d39d17
DW
375 inode = &dax_dev->inode;
376 inode->i_rdev = 0;
377 return inode;
7b6be844
DW
378}
379
380static struct dax_device *to_dax_dev(struct inode *inode)
381{
382 return container_of(inode, struct dax_device, inode);
383}
384
385static void dax_i_callback(struct rcu_head *head)
386{
387 struct inode *inode = container_of(head, struct inode, i_rcu);
388 struct dax_device *dax_dev = to_dax_dev(inode);
389
72058005
DW
390 kfree(dax_dev->host);
391 dax_dev->host = NULL;
b9d39d17
DW
392 if (inode->i_rdev)
393 ida_simple_remove(&dax_minor_ida, MINOR(inode->i_rdev));
7b6be844
DW
394 kmem_cache_free(dax_cache, dax_dev);
395}
396
397static void dax_destroy_inode(struct inode *inode)
398{
399 struct dax_device *dax_dev = to_dax_dev(inode);
400
9a60c3ef 401 WARN_ONCE(test_bit(DAXDEV_ALIVE, &dax_dev->flags),
7b6be844
DW
402 "kill_dax() must be called before final iput()\n");
403 call_rcu(&inode->i_rcu, dax_i_callback);
404}
405
406static const struct super_operations dax_sops = {
407 .statfs = simple_statfs,
408 .alloc_inode = dax_alloc_inode,
409 .destroy_inode = dax_destroy_inode,
410 .drop_inode = generic_delete_inode,
411};
412
413static struct dentry *dax_mount(struct file_system_type *fs_type,
414 int flags, const char *dev_name, void *data)
415{
416 return mount_pseudo(fs_type, "dax:", &dax_sops, NULL, DAXFS_MAGIC);
417}
418
419static struct file_system_type dax_fs_type = {
420 .name = "dax",
421 .mount = dax_mount,
422 .kill_sb = kill_anon_super,
423};
424
425static int dax_test(struct inode *inode, void *data)
426{
427 dev_t devt = *(dev_t *) data;
428
429 return inode->i_rdev == devt;
430}
431
432static int dax_set(struct inode *inode, void *data)
433{
434 dev_t devt = *(dev_t *) data;
435
436 inode->i_rdev = devt;
437 return 0;
438}
439
440static struct dax_device *dax_dev_get(dev_t devt)
441{
442 struct dax_device *dax_dev;
443 struct inode *inode;
444
445 inode = iget5_locked(dax_superblock, hash_32(devt + DAXFS_MAGIC, 31),
446 dax_test, dax_set, &devt);
447
448 if (!inode)
449 return NULL;
450
451 dax_dev = to_dax_dev(inode);
452 if (inode->i_state & I_NEW) {
9a60c3ef 453 set_bit(DAXDEV_ALIVE, &dax_dev->flags);
7b6be844
DW
454 inode->i_cdev = &dax_dev->cdev;
455 inode->i_mode = S_IFCHR;
456 inode->i_flags = S_DAX;
457 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
458 unlock_new_inode(inode);
459 }
460
461 return dax_dev;
462}
463
72058005
DW
464static void dax_add_host(struct dax_device *dax_dev, const char *host)
465{
466 int hash;
467
468 /*
469 * Unconditionally init dax_dev since it's coming from a
470 * non-zeroed slab cache
471 */
472 INIT_HLIST_NODE(&dax_dev->list);
473 dax_dev->host = host;
474 if (!host)
475 return;
476
477 hash = dax_host_hash(host);
478 spin_lock(&dax_host_lock);
479 hlist_add_head(&dax_dev->list, &dax_host_list[hash]);
480 spin_unlock(&dax_host_lock);
481}
482
6568b08b
DW
483struct dax_device *alloc_dax(void *private, const char *__host,
484 const struct dax_operations *ops)
7b6be844
DW
485{
486 struct dax_device *dax_dev;
72058005 487 const char *host;
7b6be844
DW
488 dev_t devt;
489 int minor;
490
72058005
DW
491 host = kstrdup(__host, GFP_KERNEL);
492 if (__host && !host)
493 return NULL;
494
cf1e2289 495 minor = ida_simple_get(&dax_minor_ida, 0, MINORMASK+1, GFP_KERNEL);
7b6be844 496 if (minor < 0)
72058005 497 goto err_minor;
7b6be844
DW
498
499 devt = MKDEV(MAJOR(dax_devt), minor);
500 dax_dev = dax_dev_get(devt);
501 if (!dax_dev)
72058005 502 goto err_dev;
7b6be844 503
72058005 504 dax_add_host(dax_dev, host);
6568b08b 505 dax_dev->ops = ops;
7b6be844
DW
506 dax_dev->private = private;
507 return dax_dev;
508
72058005 509 err_dev:
7b6be844 510 ida_simple_remove(&dax_minor_ida, minor);
72058005
DW
511 err_minor:
512 kfree(host);
7b6be844
DW
513 return NULL;
514}
515EXPORT_SYMBOL_GPL(alloc_dax);
516
517void put_dax(struct dax_device *dax_dev)
518{
519 if (!dax_dev)
520 return;
521 iput(&dax_dev->inode);
522}
523EXPORT_SYMBOL_GPL(put_dax);
524
72058005
DW
525/**
526 * dax_get_by_host() - temporary lookup mechanism for filesystem-dax
527 * @host: alternate name for the device registered by a dax driver
528 */
529struct dax_device *dax_get_by_host(const char *host)
530{
531 struct dax_device *dax_dev, *found = NULL;
532 int hash, id;
533
534 if (!host)
535 return NULL;
536
537 hash = dax_host_hash(host);
538
539 id = dax_read_lock();
540 spin_lock(&dax_host_lock);
541 hlist_for_each_entry(dax_dev, &dax_host_list[hash], list) {
542 if (!dax_alive(dax_dev)
543 || strcmp(host, dax_dev->host) != 0)
544 continue;
545
546 if (igrab(&dax_dev->inode))
547 found = dax_dev;
548 break;
549 }
550 spin_unlock(&dax_host_lock);
551 dax_read_unlock(id);
552
553 return found;
554}
555EXPORT_SYMBOL_GPL(dax_get_by_host);
556
7b6be844
DW
557/**
558 * inode_dax: convert a public inode into its dax_dev
559 * @inode: An inode with i_cdev pointing to a dax_dev
560 *
561 * Note this is not equivalent to to_dax_dev() which is for private
562 * internal use where we know the inode filesystem type == dax_fs_type.
563 */
564struct dax_device *inode_dax(struct inode *inode)
565{
566 struct cdev *cdev = inode->i_cdev;
567
568 return container_of(cdev, struct dax_device, cdev);
569}
570EXPORT_SYMBOL_GPL(inode_dax);
571
572struct inode *dax_inode(struct dax_device *dax_dev)
573{
574 return &dax_dev->inode;
575}
576EXPORT_SYMBOL_GPL(dax_inode);
577
578void *dax_get_private(struct dax_device *dax_dev)
579{
580 return dax_dev->private;
581}
582EXPORT_SYMBOL_GPL(dax_get_private);
583
584static void init_once(void *_dax_dev)
585{
586 struct dax_device *dax_dev = _dax_dev;
587 struct inode *inode = &dax_dev->inode;
588
b9d39d17 589 memset(dax_dev, 0, sizeof(*dax_dev));
7b6be844
DW
590 inode_init_once(inode);
591}
592
593static int __dax_fs_init(void)
594{
595 int rc;
596
597 dax_cache = kmem_cache_create("dax_cache", sizeof(struct dax_device), 0,
598 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
599 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
600 init_once);
601 if (!dax_cache)
602 return -ENOMEM;
603
604 rc = register_filesystem(&dax_fs_type);
605 if (rc)
606 goto err_register_fs;
607
608 dax_mnt = kern_mount(&dax_fs_type);
609 if (IS_ERR(dax_mnt)) {
610 rc = PTR_ERR(dax_mnt);
611 goto err_mount;
612 }
613 dax_superblock = dax_mnt->mnt_sb;
614
615 return 0;
616
617 err_mount:
618 unregister_filesystem(&dax_fs_type);
619 err_register_fs:
620 kmem_cache_destroy(dax_cache);
621
622 return rc;
623}
624
625static void __dax_fs_exit(void)
626{
627 kern_unmount(dax_mnt);
628 unregister_filesystem(&dax_fs_type);
629 kmem_cache_destroy(dax_cache);
630}
631
632static int __init dax_fs_init(void)
633{
634 int rc;
635
636 rc = __dax_fs_init();
637 if (rc)
638 return rc;
639
cf1e2289 640 rc = alloc_chrdev_region(&dax_devt, 0, MINORMASK+1, "dax");
7b6be844
DW
641 if (rc)
642 __dax_fs_exit();
643 return rc;
644}
645
646static void __exit dax_fs_exit(void)
647{
cf1e2289 648 unregister_chrdev_region(dax_devt, MINORMASK+1);
7b6be844
DW
649 ida_destroy(&dax_minor_ida);
650 __dax_fs_exit();
651}
652
653MODULE_AUTHOR("Intel Corporation");
654MODULE_LICENSE("GPL v2");
655subsys_initcall(dax_fs_init);
656module_exit(dax_fs_exit);