blob: 0ecc1a2cf1ccd6524140a3171cb6b752b6a6b4e1 [file] [log] [blame]
Dan Williams7b6be842017-04-11 09:49:49 -07001/*
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>
Dan Williamsef510422017-05-08 10:55:27 -070017#include <linux/genhd.h>
Dan Williams569d0362017-10-14 11:33:32 -070018#include <linux/pfn_t.h>
Dan Williams7b6be842017-04-11 09:49:49 -070019#include <linux/cdev.h>
20#include <linux/hash.h>
21#include <linux/slab.h>
Dan Williams7e026c82017-05-29 12:57:56 -070022#include <linux/uio.h>
Dan Williams6568b082017-01-24 18:44:18 -080023#include <linux/dax.h>
Dan Williams7b6be842017-04-11 09:49:49 -070024#include <linux/fs.h>
Dan Williams51cf7842017-07-12 17:58:21 -070025#include "dax-private.h"
Dan Williams7b6be842017-04-11 09:49:49 -070026
Dan Williams7b6be842017-04-11 09:49:49 -070027static 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
Dan Williams72058002017-04-19 15:14:31 -070034#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
Dan Williams7b6be842017-04-11 09:49:49 -070038int 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
Dan Williams9d109082017-05-13 16:18:21 -070050#ifdef CONFIG_BLOCK
Dan Williams78f35472017-08-30 09:16:38 -070051#include <linux/blkdev.h>
52
Dan Williamsef510422017-05-08 10:55:27 -070053int 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
Dan Williams26f2f4d2017-09-03 10:17:53 -070066#if IS_ENABLED(CONFIG_FS_DAX)
Dan Williams78f35472017-08-30 09:16:38 -070067struct 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);
Dan Williams26f2f4d2017-09-03 10:17:53 -070074#endif
Dan Williams78f35472017-08-30 09:16:38 -070075
Dan Williamsef510422017-05-08 10:55:27 -070076/**
77 * __bdev_dax_supported() - Check if the device supports dax for filesystem
Darrick J. Wongba23cba2018-05-30 13:03:45 -070078 * @bdev: block device to check
Dan Williamsef510422017-05-08 10:55:27 -070079 * @blocksize: The block size of the device
80 *
81 * This is a library function for filesystems to check if the block device
82 * can be mounted with dax option.
83 *
Dave Jiang80660f22018-05-30 13:03:46 -070084 * Return: true if supported, false if unsupported
Dan Williamsef510422017-05-08 10:55:27 -070085 */
Dave Jiang80660f22018-05-30 13:03:46 -070086bool __bdev_dax_supported(struct block_device *bdev, int blocksize)
Dan Williamsef510422017-05-08 10:55:27 -070087{
Dan Williamsef510422017-05-08 10:55:27 -070088 struct dax_device *dax_dev;
Dan Williamse76384882018-05-16 11:46:08 -070089 bool dax_enabled = false;
Ross Zwisler15256f62018-06-26 16:30:40 -060090 struct request_queue *q;
Dan Williamsef510422017-05-08 10:55:27 -070091 pgoff_t pgoff;
92 int err, id;
Dan Williamsef510422017-05-08 10:55:27 -070093 pfn_t pfn;
94 long len;
Darrick J. Wongba23cba2018-05-30 13:03:45 -070095 char buf[BDEVNAME_SIZE];
Dan Williamsef510422017-05-08 10:55:27 -070096
97 if (blocksize != PAGE_SIZE) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -070098 pr_debug("%s: error: unsupported blocksize for dax\n",
99 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -0700100 return false;
Dan Williamsef510422017-05-08 10:55:27 -0700101 }
102
Ross Zwisler15256f62018-06-26 16:30:40 -0600103 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
Dan Williamsef510422017-05-08 10:55:27 -0700110 err = bdev_dax_pgoff(bdev, 0, PAGE_SIZE, &pgoff);
111 if (err) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -0700112 pr_debug("%s: error: unaligned partition for dax\n",
113 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -0700114 return false;
Dan Williamsef510422017-05-08 10:55:27 -0700115 }
116
117 dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
118 if (!dax_dev) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -0700119 pr_debug("%s: error: device does not support dax\n",
120 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -0700121 return false;
Dan Williamsef510422017-05-08 10:55:27 -0700122 }
123
124 id = dax_read_lock();
Huaisheng Yee0b401e2018-07-30 15:15:46 +0800125 len = dax_direct_access(dax_dev, pgoff, 1, NULL, &pfn);
Dan Williamsef510422017-05-08 10:55:27 -0700126 dax_read_unlock(id);
127
128 put_dax(dax_dev);
129
130 if (len < 1) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -0700131 pr_debug("%s: error: dax access failed (%ld)\n",
132 bdevname(bdev, buf), len);
Dave Jiang80660f22018-05-30 13:03:46 -0700133 return false;
Dan Williamsef510422017-05-08 10:55:27 -0700134 }
135
Dan Williams3fe07912017-10-14 17:13:45 -0700136 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));
Dan Williamse76384882018-05-16 11:46:08 -0700146 dax_enabled = true;
Dan Williams3fe07912017-10-14 17:13:45 -0700147 } else if (pfn_t_devmap(pfn)) {
Dan Williamse76384882018-05-16 11:46:08 -0700148 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) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -0700157 pr_debug("%s: error: dax support not enabled\n",
158 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -0700159 return false;
Dan Williams569d0362017-10-14 11:33:32 -0700160 }
Dave Jiang80660f22018-05-30 13:03:46 -0700161 return true;
Dan Williamsef510422017-05-08 10:55:27 -0700162}
163EXPORT_SYMBOL_GPL(__bdev_dax_supported);
Dan Williams9d109082017-05-13 16:18:21 -0700164#endif
Dan Williamsef510422017-05-08 10:55:27 -0700165
Dan Williams9a60c3e2017-06-27 17:59:28 -0700166enum dax_device_flags {
167 /* !alive + rcu grace period == no new operations / mappings */
168 DAXDEV_ALIVE,
Dan Williams6e0c90d2017-06-26 21:28:41 -0700169 /* gate whether dax_flush() calls the low level flush routine */
170 DAXDEV_WRITE_CACHE,
Dan Williams9a60c3e2017-06-27 17:59:28 -0700171};
172
Dan Williams7b6be842017-04-11 09:49:49 -0700173/**
174 * struct dax_device - anchor object for dax services
175 * @inode: core vfs
176 * @cdev: optional character interface for "device dax"
Dan Williams72058002017-04-19 15:14:31 -0700177 * @host: optional name for lookups where the device path is not available
Dan Williams7b6be842017-04-11 09:49:49 -0700178 * @private: dax driver private data
Dan Williams9a60c3e2017-06-27 17:59:28 -0700179 * @flags: state and boolean properties
Dan Williams7b6be842017-04-11 09:49:49 -0700180 */
181struct dax_device {
Dan Williams72058002017-04-19 15:14:31 -0700182 struct hlist_node list;
Dan Williams7b6be842017-04-11 09:49:49 -0700183 struct inode inode;
184 struct cdev cdev;
Dan Williams72058002017-04-19 15:14:31 -0700185 const char *host;
Dan Williams7b6be842017-04-11 09:49:49 -0700186 void *private;
Dan Williams9a60c3e2017-06-27 17:59:28 -0700187 unsigned long flags;
Dan Williams6568b082017-01-24 18:44:18 -0800188 const struct dax_operations *ops;
Dan Williams7b6be842017-04-11 09:49:49 -0700189};
190
Dan Williams6e0c90d2017-06-26 21:28:41 -0700191static 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
Ross Zwisler808c3402018-06-06 10:45:14 -0600201 rc = sprintf(buf, "%d\n", !!dax_write_cache_enabled(dax_dev));
Dan Williams6e0c90d2017-06-26 21:28:41 -0700202 put_dax(dax_dev);
203 return rc;
204}
205
206static 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;
Dan Williams6e0c90d2017-06-26 21:28:41 -0700219 else
Ross Zwisler808c3402018-06-06 10:45:14 -0600220 dax_write_cache(dax_dev, write_cache);
Dan Williams6e0c90d2017-06-26 21:28:41 -0700221
222 put_dax(dax_dev);
223 return len;
224}
225static DEVICE_ATTR_RW(write_cache);
226
227static 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
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400236#ifndef CONFIG_ARCH_HAS_PMEM_API
237 if (a == &dev_attr_write_cache.attr)
Dan Williams6e0c90d2017-06-26 21:28:41 -0700238 return 0;
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400239#endif
Dan Williams6e0c90d2017-06-26 21:28:41 -0700240 return a->mode;
241}
242
243static struct attribute *dax_attributes[] = {
244 &dev_attr_write_cache.attr,
245 NULL,
246};
247
248struct attribute_group dax_attribute_group = {
249 .name = "dax",
250 .attrs = dax_attributes,
251 .is_visible = dax_visible,
252};
253EXPORT_SYMBOL_GPL(dax_attribute_group);
254
Dan Williamsb0686262017-01-26 20:37:35 -0800255/**
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 */
266long 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
Dan Williamsb0686262017-01-26 20:37:35 -0800271 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}
286EXPORT_SYMBOL_GPL(dax_direct_access);
287
Dan Williams7e026c82017-05-29 12:57:56 -0700288size_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
Dan Williams7e026c82017-05-29 12:57:56 -0700294 return dax_dev->ops->copy_from_iter(dax_dev, pgoff, addr, bytes, i);
295}
296EXPORT_SYMBOL_GPL(dax_copy_from_iter);
297
Dan Williamsb3a9a0c2018-05-02 06:46:33 -0700298size_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}
306EXPORT_SYMBOL_GPL(dax_copy_to_iter);
307
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400308#ifdef CONFIG_ARCH_HAS_PMEM_API
309void arch_wb_cache_pmem(void *addr, size_t size);
310void dax_flush(struct dax_device *dax_dev, void *addr, size_t size)
Dan Williamsabebfbe22017-05-29 13:02:52 -0700311{
Ross Zwisler808c3402018-06-06 10:45:14 -0600312 if (unlikely(!dax_write_cache_enabled(dax_dev)))
Dan Williams6e0c90d2017-06-26 21:28:41 -0700313 return;
314
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400315 arch_wb_cache_pmem(addr, size);
Dan Williamsabebfbe22017-05-29 13:02:52 -0700316}
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400317#else
318void dax_flush(struct dax_device *dax_dev, void *addr, size_t size)
319{
320}
321#endif
Dan Williamsabebfbe22017-05-29 13:02:52 -0700322EXPORT_SYMBOL_GPL(dax_flush);
323
Dan Williams6e0c90d2017-06-26 21:28:41 -0700324void 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}
331EXPORT_SYMBOL_GPL(dax_write_cache);
332
Vivek Goyal273752c2017-07-26 09:35:09 -0400333bool dax_write_cache_enabled(struct dax_device *dax_dev)
334{
335 return test_bit(DAXDEV_WRITE_CACHE, &dax_dev->flags);
336}
337EXPORT_SYMBOL_GPL(dax_write_cache_enabled);
338
Dan Williams7b6be842017-04-11 09:49:49 -0700339bool dax_alive(struct dax_device *dax_dev)
340{
341 lockdep_assert_held(&dax_srcu);
Dan Williams9a60c3e2017-06-27 17:59:28 -0700342 return test_bit(DAXDEV_ALIVE, &dax_dev->flags);
Dan Williams7b6be842017-04-11 09:49:49 -0700343}
344EXPORT_SYMBOL_GPL(dax_alive);
345
Dan Williams72058002017-04-19 15:14:31 -0700346static int dax_host_hash(const char *host)
347{
348 return hashlen_hash(hashlen_string("DAX", host)) % DAX_HASH_SIZE;
349}
350
Dan Williams7b6be842017-04-11 09:49:49 -0700351/*
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 */
357void kill_dax(struct dax_device *dax_dev)
358{
359 if (!dax_dev)
360 return;
361
Dan Williams9a60c3e2017-06-27 17:59:28 -0700362 clear_bit(DAXDEV_ALIVE, &dax_dev->flags);
Dan Williams72058002017-04-19 15:14:31 -0700363
Dan Williams7b6be842017-04-11 09:49:49 -0700364 synchronize_srcu(&dax_srcu);
Dan Williams72058002017-04-19 15:14:31 -0700365
366 spin_lock(&dax_host_lock);
367 hlist_del_init(&dax_dev->list);
368 spin_unlock(&dax_host_lock);
369
Dan Williams7b6be842017-04-11 09:49:49 -0700370 dax_dev->private = NULL;
371}
372EXPORT_SYMBOL_GPL(kill_dax);
373
374static struct inode *dax_alloc_inode(struct super_block *sb)
375{
376 struct dax_device *dax_dev;
Dan Williamsb9d39d12017-06-09 08:50:49 -0700377 struct inode *inode;
Dan Williams7b6be842017-04-11 09:49:49 -0700378
379 dax_dev = kmem_cache_alloc(dax_cache, GFP_KERNEL);
Mikulas Patocka9f586ff2017-11-14 09:59:54 -0500380 if (!dax_dev)
381 return NULL;
382
Dan Williamsb9d39d12017-06-09 08:50:49 -0700383 inode = &dax_dev->inode;
384 inode->i_rdev = 0;
385 return inode;
Dan Williams7b6be842017-04-11 09:49:49 -0700386}
387
388static struct dax_device *to_dax_dev(struct inode *inode)
389{
390 return container_of(inode, struct dax_device, inode);
391}
392
393static 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
Dan Williams72058002017-04-19 15:14:31 -0700398 kfree(dax_dev->host);
399 dax_dev->host = NULL;
Dan Williamsb9d39d12017-06-09 08:50:49 -0700400 if (inode->i_rdev)
401 ida_simple_remove(&dax_minor_ida, MINOR(inode->i_rdev));
Dan Williams7b6be842017-04-11 09:49:49 -0700402 kmem_cache_free(dax_cache, dax_dev);
403}
404
405static void dax_destroy_inode(struct inode *inode)
406{
407 struct dax_device *dax_dev = to_dax_dev(inode);
408
Dan Williams9a60c3e2017-06-27 17:59:28 -0700409 WARN_ONCE(test_bit(DAXDEV_ALIVE, &dax_dev->flags),
Dan Williams7b6be842017-04-11 09:49:49 -0700410 "kill_dax() must be called before final iput()\n");
411 call_rcu(&inode->i_rcu, dax_i_callback);
412}
413
414static 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
421static 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
427static struct file_system_type dax_fs_type = {
428 .name = "dax",
429 .mount = dax_mount,
430 .kill_sb = kill_anon_super,
431};
432
433static 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
440static 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
448static 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) {
Dan Williams9a60c3e2017-06-27 17:59:28 -0700461 set_bit(DAXDEV_ALIVE, &dax_dev->flags);
Dan Williams7b6be842017-04-11 09:49:49 -0700462 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
Dan Williams72058002017-04-19 15:14:31 -0700472static 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
Dan Williams6568b082017-01-24 18:44:18 -0800491struct dax_device *alloc_dax(void *private, const char *__host,
492 const struct dax_operations *ops)
Dan Williams7b6be842017-04-11 09:49:49 -0700493{
494 struct dax_device *dax_dev;
Dan Williams72058002017-04-19 15:14:31 -0700495 const char *host;
Dan Williams7b6be842017-04-11 09:49:49 -0700496 dev_t devt;
497 int minor;
498
Dan Williams72058002017-04-19 15:14:31 -0700499 host = kstrdup(__host, GFP_KERNEL);
500 if (__host && !host)
501 return NULL;
502
Dan Williamscf1e2282017-05-08 12:33:53 -0700503 minor = ida_simple_get(&dax_minor_ida, 0, MINORMASK+1, GFP_KERNEL);
Dan Williams7b6be842017-04-11 09:49:49 -0700504 if (minor < 0)
Dan Williams72058002017-04-19 15:14:31 -0700505 goto err_minor;
Dan Williams7b6be842017-04-11 09:49:49 -0700506
507 devt = MKDEV(MAJOR(dax_devt), minor);
508 dax_dev = dax_dev_get(devt);
509 if (!dax_dev)
Dan Williams72058002017-04-19 15:14:31 -0700510 goto err_dev;
Dan Williams7b6be842017-04-11 09:49:49 -0700511
Dan Williams72058002017-04-19 15:14:31 -0700512 dax_add_host(dax_dev, host);
Dan Williams6568b082017-01-24 18:44:18 -0800513 dax_dev->ops = ops;
Dan Williams7b6be842017-04-11 09:49:49 -0700514 dax_dev->private = private;
515 return dax_dev;
516
Dan Williams72058002017-04-19 15:14:31 -0700517 err_dev:
Dan Williams7b6be842017-04-11 09:49:49 -0700518 ida_simple_remove(&dax_minor_ida, minor);
Dan Williams72058002017-04-19 15:14:31 -0700519 err_minor:
520 kfree(host);
Dan Williams7b6be842017-04-11 09:49:49 -0700521 return NULL;
522}
523EXPORT_SYMBOL_GPL(alloc_dax);
524
525void put_dax(struct dax_device *dax_dev)
526{
527 if (!dax_dev)
528 return;
529 iput(&dax_dev->inode);
530}
531EXPORT_SYMBOL_GPL(put_dax);
532
533/**
Dan Williams72058002017-04-19 15:14:31 -0700534 * dax_get_by_host() - temporary lookup mechanism for filesystem-dax
535 * @host: alternate name for the device registered by a dax driver
536 */
537struct 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}
563EXPORT_SYMBOL_GPL(dax_get_by_host);
564
565/**
Dan Williams7b6be842017-04-11 09:49:49 -0700566 * 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 */
572struct 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}
578EXPORT_SYMBOL_GPL(inode_dax);
579
580struct inode *dax_inode(struct dax_device *dax_dev)
581{
582 return &dax_dev->inode;
583}
584EXPORT_SYMBOL_GPL(dax_inode);
585
586void *dax_get_private(struct dax_device *dax_dev)
587{
588 return dax_dev->private;
589}
590EXPORT_SYMBOL_GPL(dax_get_private);
591
592static void init_once(void *_dax_dev)
593{
594 struct dax_device *dax_dev = _dax_dev;
595 struct inode *inode = &dax_dev->inode;
596
Dan Williamsb9d39d12017-06-09 08:50:49 -0700597 memset(dax_dev, 0, sizeof(*dax_dev));
Dan Williams7b6be842017-04-11 09:49:49 -0700598 inode_init_once(inode);
599}
600
601static 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
633static 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
640static int __init dax_fs_init(void)
641{
642 int rc;
643
644 rc = __dax_fs_init();
645 if (rc)
646 return rc;
647
Dan Williamscf1e2282017-05-08 12:33:53 -0700648 rc = alloc_chrdev_region(&dax_devt, 0, MINORMASK+1, "dax");
Dan Williams7b6be842017-04-11 09:49:49 -0700649 if (rc)
650 __dax_fs_exit();
651 return rc;
652}
653
654static void __exit dax_fs_exit(void)
655{
Dan Williamscf1e2282017-05-08 12:33:53 -0700656 unregister_chrdev_region(dax_devt, MINORMASK+1);
Dan Williams7b6be842017-04-11 09:49:49 -0700657 ida_destroy(&dax_minor_ida);
658 __dax_fs_exit();
659}
660
661MODULE_AUTHOR("Intel Corporation");
662MODULE_LICENSE("GPL v2");
663subsys_initcall(dax_fs_init);
664module_exit(dax_fs_exit);