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