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