blob: 3a7b0a0bf469d63663fd5fbdd2dc16ad138d9b5a [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 Williams7bf7eac2019-05-16 13:26:29 -070076bool __generic_fsdax_supported(struct dax_device *dax_dev,
77 struct block_device *bdev, int blocksize, sector_t start,
78 sector_t sectors)
Dan Williamsef510422017-05-08 10:55:27 -070079{
Dan Williamse76384882018-05-16 11:46:08 -070080 bool dax_enabled = false;
Dan Williamsad428cd2019-02-20 21:12:50 -080081 pgoff_t pgoff, pgoff_end;
Darrick J. Wongba23cba2018-05-30 13:03:45 -070082 char buf[BDEVNAME_SIZE];
Dan Williamsad428cd2019-02-20 21:12:50 -080083 void *kaddr, *end_kaddr;
84 pfn_t pfn, end_pfn;
85 sector_t last_page;
86 long len, len2;
87 int err, id;
Dan Williamsef510422017-05-08 10:55:27 -070088
89 if (blocksize != PAGE_SIZE) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -070090 pr_debug("%s: error: unsupported blocksize for dax\n",
91 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -070092 return false;
Dan Williamsef510422017-05-08 10:55:27 -070093 }
94
Dan Williams7bf7eac2019-05-16 13:26:29 -070095 err = bdev_dax_pgoff(bdev, start, PAGE_SIZE, &pgoff);
Dan Williamsef510422017-05-08 10:55:27 -070096 if (err) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -070097 pr_debug("%s: error: unaligned partition for dax\n",
98 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -070099 return false;
Dan Williamsef510422017-05-08 10:55:27 -0700100 }
101
Dan Williams7bf7eac2019-05-16 13:26:29 -0700102 last_page = PFN_DOWN((start + sectors - 1) * 512) * PAGE_SIZE / 512;
Dan Williamsad428cd2019-02-20 21:12:50 -0800103 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
Dan Williamsef510422017-05-08 10:55:27 -0700110 id = dax_read_lock();
Dan Williamsad428cd2019-02-20 21:12:50 -0800111 len = dax_direct_access(dax_dev, pgoff, 1, &kaddr, &pfn);
112 len2 = dax_direct_access(dax_dev, pgoff_end, 1, &end_kaddr, &end_pfn);
Dan Williamsef510422017-05-08 10:55:27 -0700113 dax_read_unlock(id);
114
Dan Williamsad428cd2019-02-20 21:12:50 -0800115 if (len < 1 || len2 < 1) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -0700116 pr_debug("%s: error: dax access failed (%ld)\n",
Dan Williamsad428cd2019-02-20 21:12:50 -0800117 bdevname(bdev, buf), len < 1 ? len : len2);
Dave Jiang80660f22018-05-30 13:03:46 -0700118 return false;
Dan Williamsef510422017-05-08 10:55:27 -0700119 }
120
Dan Williams3fe07912017-10-14 17:13:45 -0700121 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));
Dan Williamse76384882018-05-16 11:46:08 -0700131 dax_enabled = true;
Dan Williamsad428cd2019-02-20 21:12:50 -0800132 } else if (pfn_t_devmap(pfn) && pfn_t_devmap(end_pfn)) {
133 struct dev_pagemap *pgmap, *end_pgmap;
Dan Williamse76384882018-05-16 11:46:08 -0700134
135 pgmap = get_dev_pagemap(pfn_t_to_pfn(pfn), NULL);
Dan Williamsad428cd2019-02-20 21:12:50 -0800136 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)))
Dan Williamse76384882018-05-16 11:46:08 -0700142 dax_enabled = true;
143 put_dev_pagemap(pgmap);
Dan Williamsad428cd2019-02-20 21:12:50 -0800144 put_dev_pagemap(end_pgmap);
145
Dan Williamse76384882018-05-16 11:46:08 -0700146 }
147
148 if (!dax_enabled) {
Darrick J. Wongba23cba2018-05-30 13:03:45 -0700149 pr_debug("%s: error: dax support not enabled\n",
150 bdevname(bdev, buf));
Dave Jiang80660f22018-05-30 13:03:46 -0700151 return false;
Dan Williams569d0362017-10-14 11:33:32 -0700152 }
Dave Jiang80660f22018-05-30 13:03:46 -0700153 return true;
Dan Williamsef510422017-05-08 10:55:27 -0700154}
Dan Williams7bf7eac2019-05-16 13:26:29 -0700155EXPORT_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}
Dan Williamsef510422017-05-08 10:55:27 -0700198EXPORT_SYMBOL_GPL(__bdev_dax_supported);
Dan Williams9d109082017-05-13 16:18:21 -0700199#endif
Dan Williamsef510422017-05-08 10:55:27 -0700200
Dan Williams9a60c3e2017-06-27 17:59:28 -0700201enum dax_device_flags {
202 /* !alive + rcu grace period == no new operations / mappings */
203 DAXDEV_ALIVE,
Dan Williams6e0c90d2017-06-26 21:28:41 -0700204 /* gate whether dax_flush() calls the low level flush routine */
205 DAXDEV_WRITE_CACHE,
Dan Williams9a60c3e2017-06-27 17:59:28 -0700206};
207
Dan Williams7b6be842017-04-11 09:49:49 -0700208/**
209 * struct dax_device - anchor object for dax services
210 * @inode: core vfs
211 * @cdev: optional character interface for "device dax"
Dan Williams72058002017-04-19 15:14:31 -0700212 * @host: optional name for lookups where the device path is not available
Dan Williams7b6be842017-04-11 09:49:49 -0700213 * @private: dax driver private data
Dan Williams9a60c3e2017-06-27 17:59:28 -0700214 * @flags: state and boolean properties
Dan Williams7b6be842017-04-11 09:49:49 -0700215 */
216struct dax_device {
Dan Williams72058002017-04-19 15:14:31 -0700217 struct hlist_node list;
Dan Williams7b6be842017-04-11 09:49:49 -0700218 struct inode inode;
219 struct cdev cdev;
Dan Williams72058002017-04-19 15:14:31 -0700220 const char *host;
Dan Williams7b6be842017-04-11 09:49:49 -0700221 void *private;
Dan Williams9a60c3e2017-06-27 17:59:28 -0700222 unsigned long flags;
Dan Williams6568b082017-01-24 18:44:18 -0800223 const struct dax_operations *ops;
Dan Williams7b6be842017-04-11 09:49:49 -0700224};
225
Dan Williams6e0c90d2017-06-26 21:28:41 -0700226static 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
Ross Zwisler808c3402018-06-06 10:45:14 -0600236 rc = sprintf(buf, "%d\n", !!dax_write_cache_enabled(dax_dev));
Dan Williams6e0c90d2017-06-26 21:28:41 -0700237 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;
Dan Williams6e0c90d2017-06-26 21:28:41 -0700254 else
Ross Zwisler808c3402018-06-06 10:45:14 -0600255 dax_write_cache(dax_dev, write_cache);
Dan Williams6e0c90d2017-06-26 21:28:41 -0700256
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
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400271#ifndef CONFIG_ARCH_HAS_PMEM_API
272 if (a == &dev_attr_write_cache.attr)
Dan Williams6e0c90d2017-06-26 21:28:41 -0700273 return 0;
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400274#endif
Dan Williams6e0c90d2017-06-26 21:28:41 -0700275 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
Dan Williamsb0686262017-01-26 20:37:35 -0800290/**
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
Dan Williamsb0686262017-01-26 20:37:35 -0800306 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
Dan Williams7bf7eac2019-05-16 13:26:29 -0700323bool 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
Dan Williams7e026c82017-05-29 12:57:56 -0700332size_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
Dan Williams7e026c82017-05-29 12:57:56 -0700338 return dax_dev->ops->copy_from_iter(dax_dev, pgoff, addr, bytes, i);
339}
340EXPORT_SYMBOL_GPL(dax_copy_from_iter);
341
Dan Williamsb3a9a0c2018-05-02 06:46:33 -0700342size_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
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400352#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)
Dan Williamsabebfbe22017-05-29 13:02:52 -0700355{
Ross Zwisler808c3402018-06-06 10:45:14 -0600356 if (unlikely(!dax_write_cache_enabled(dax_dev)))
Dan Williams6e0c90d2017-06-26 21:28:41 -0700357 return;
358
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400359 arch_wb_cache_pmem(addr, size);
Dan Williamsabebfbe22017-05-29 13:02:52 -0700360}
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400361#else
362void dax_flush(struct dax_device *dax_dev, void *addr, size_t size)
363{
364}
365#endif
Dan Williamsabebfbe22017-05-29 13:02:52 -0700366EXPORT_SYMBOL_GPL(dax_flush);
367
Dan Williams6e0c90d2017-06-26 21:28:41 -0700368void 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
Vivek Goyal273752c2017-07-26 09:35:09 -0400377bool 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
Dan Williams7b6be842017-04-11 09:49:49 -0700383bool dax_alive(struct dax_device *dax_dev)
384{
385 lockdep_assert_held(&dax_srcu);
Dan Williams9a60c3e2017-06-27 17:59:28 -0700386 return test_bit(DAXDEV_ALIVE, &dax_dev->flags);
Dan Williams7b6be842017-04-11 09:49:49 -0700387}
388EXPORT_SYMBOL_GPL(dax_alive);
389
Dan Williams72058002017-04-19 15:14:31 -0700390static int dax_host_hash(const char *host)
391{
392 return hashlen_hash(hashlen_string("DAX", host)) % DAX_HASH_SIZE;
393}
394
Dan Williams7b6be842017-04-11 09:49:49 -0700395/*
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
Dan Williams9a60c3e2017-06-27 17:59:28 -0700406 clear_bit(DAXDEV_ALIVE, &dax_dev->flags);
Dan Williams72058002017-04-19 15:14:31 -0700407
Dan Williams7b6be842017-04-11 09:49:49 -0700408 synchronize_srcu(&dax_srcu);
Dan Williams72058002017-04-19 15:14:31 -0700409
410 spin_lock(&dax_host_lock);
411 hlist_del_init(&dax_dev->list);
412 spin_unlock(&dax_host_lock);
Dan Williams7b6be842017-04-11 09:49:49 -0700413}
414EXPORT_SYMBOL_GPL(kill_dax);
415
Dan Williams9567da02017-07-12 17:58:21 -0700416void run_dax(struct dax_device *dax_dev)
417{
418 set_bit(DAXDEV_ALIVE, &dax_dev->flags);
419}
420EXPORT_SYMBOL_GPL(run_dax);
421
Dan Williams7b6be842017-04-11 09:49:49 -0700422static struct inode *dax_alloc_inode(struct super_block *sb)
423{
424 struct dax_device *dax_dev;
Dan Williamsb9d39d12017-06-09 08:50:49 -0700425 struct inode *inode;
Dan Williams7b6be842017-04-11 09:49:49 -0700426
427 dax_dev = kmem_cache_alloc(dax_cache, GFP_KERNEL);
Mikulas Patocka9f586ff2017-11-14 09:59:54 -0500428 if (!dax_dev)
429 return NULL;
430
Dan Williamsb9d39d12017-06-09 08:50:49 -0700431 inode = &dax_dev->inode;
432 inode->i_rdev = 0;
433 return inode;
Dan Williams7b6be842017-04-11 09:49:49 -0700434}
435
436static struct dax_device *to_dax_dev(struct inode *inode)
437{
438 return container_of(inode, struct dax_device, inode);
439}
440
Al Viro53e22822019-04-10 14:57:19 -0400441static void dax_free_inode(struct inode *inode)
Dan Williams7b6be842017-04-11 09:49:49 -0700442{
Dan Williams7b6be842017-04-11 09:49:49 -0700443 struct dax_device *dax_dev = to_dax_dev(inode);
Dan Williams72058002017-04-19 15:14:31 -0700444 kfree(dax_dev->host);
445 dax_dev->host = NULL;
Dan Williamsb9d39d12017-06-09 08:50:49 -0700446 if (inode->i_rdev)
447 ida_simple_remove(&dax_minor_ida, MINOR(inode->i_rdev));
Dan Williams7b6be842017-04-11 09:49:49 -0700448 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);
Dan Williams9a60c3e2017-06-27 17:59:28 -0700454 WARN_ONCE(test_bit(DAXDEV_ALIVE, &dax_dev->flags),
Dan Williams7b6be842017-04-11 09:49:49 -0700455 "kill_dax() must be called before final iput()\n");
Dan Williams7b6be842017-04-11 09:49:49 -0700456}
457
458static const struct super_operations dax_sops = {
459 .statfs = simple_statfs,
460 .alloc_inode = dax_alloc_inode,
461 .destroy_inode = dax_destroy_inode,
Al Viro53e22822019-04-10 14:57:19 -0400462 .free_inode = dax_free_inode,
Dan Williams7b6be842017-04-11 09:49:49 -0700463 .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) {
Dan Williams9a60c3e2017-06-27 17:59:28 -0700506 set_bit(DAXDEV_ALIVE, &dax_dev->flags);
Dan Williams7b6be842017-04-11 09:49:49 -0700507 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
Dan Williams72058002017-04-19 15:14:31 -0700517static 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
Dan Williams6568b082017-01-24 18:44:18 -0800536struct dax_device *alloc_dax(void *private, const char *__host,
537 const struct dax_operations *ops)
Dan Williams7b6be842017-04-11 09:49:49 -0700538{
539 struct dax_device *dax_dev;
Dan Williams72058002017-04-19 15:14:31 -0700540 const char *host;
Dan Williams7b6be842017-04-11 09:49:49 -0700541 dev_t devt;
542 int minor;
543
Dan Williams72058002017-04-19 15:14:31 -0700544 host = kstrdup(__host, GFP_KERNEL);
545 if (__host && !host)
546 return NULL;
547
Dan Williamscf1e2282017-05-08 12:33:53 -0700548 minor = ida_simple_get(&dax_minor_ida, 0, MINORMASK+1, GFP_KERNEL);
Dan Williams7b6be842017-04-11 09:49:49 -0700549 if (minor < 0)
Dan Williams72058002017-04-19 15:14:31 -0700550 goto err_minor;
Dan Williams7b6be842017-04-11 09:49:49 -0700551
552 devt = MKDEV(MAJOR(dax_devt), minor);
553 dax_dev = dax_dev_get(devt);
554 if (!dax_dev)
Dan Williams72058002017-04-19 15:14:31 -0700555 goto err_dev;
Dan Williams7b6be842017-04-11 09:49:49 -0700556
Dan Williams72058002017-04-19 15:14:31 -0700557 dax_add_host(dax_dev, host);
Dan Williams6568b082017-01-24 18:44:18 -0800558 dax_dev->ops = ops;
Dan Williams7b6be842017-04-11 09:49:49 -0700559 dax_dev->private = private;
560 return dax_dev;
561
Dan Williams72058002017-04-19 15:14:31 -0700562 err_dev:
Dan Williams7b6be842017-04-11 09:49:49 -0700563 ida_simple_remove(&dax_minor_ida, minor);
Dan Williams72058002017-04-19 15:14:31 -0700564 err_minor:
565 kfree(host);
Dan Williams7b6be842017-04-11 09:49:49 -0700566 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/**
Dan Williams72058002017-04-19 15:14:31 -0700579 * 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/**
Dan Williams7b6be842017-04-11 09:49:49 -0700611 * 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{
Dan Williams9567da02017-07-12 17:58:21 -0700633 if (!test_bit(DAXDEV_ALIVE, &dax_dev->flags))
634 return NULL;
Dan Williams7b6be842017-04-11 09:49:49 -0700635 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
Dan Williamsb9d39d12017-06-09 08:50:49 -0700644 memset(dax_dev, 0, sizeof(*dax_dev));
Dan Williams7b6be842017-04-11 09:49:49 -0700645 inode_init_once(inode);
646}
647
Dan Williams9567da02017-07-12 17:58:21 -0700648static int dax_fs_init(void)
Dan Williams7b6be842017-04-11 09:49:49 -0700649{
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
Dan Williams9567da02017-07-12 17:58:21 -0700680static void dax_fs_exit(void)
Dan Williams7b6be842017-04-11 09:49:49 -0700681{
682 kern_unmount(dax_mnt);
683 unregister_filesystem(&dax_fs_type);
684 kmem_cache_destroy(dax_cache);
685}
686
Dan Williams9567da02017-07-12 17:58:21 -0700687static int __init dax_core_init(void)
Dan Williams7b6be842017-04-11 09:49:49 -0700688{
689 int rc;
690
Dan Williams9567da02017-07-12 17:58:21 -0700691 rc = dax_fs_init();
Dan Williams7b6be842017-04-11 09:49:49 -0700692 if (rc)
693 return rc;
694
Dan Williamscf1e2282017-05-08 12:33:53 -0700695 rc = alloc_chrdev_region(&dax_devt, 0, MINORMASK+1, "dax");
Dan Williams7b6be842017-04-11 09:49:49 -0700696 if (rc)
Dan Williams9567da02017-07-12 17:58:21 -0700697 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;
Dan Williams7b6be842017-04-11 09:49:49 -0700709}
710
Dan Williams9567da02017-07-12 17:58:21 -0700711static void __exit dax_core_exit(void)
Dan Williams7b6be842017-04-11 09:49:49 -0700712{
Dan Williamscf1e2282017-05-08 12:33:53 -0700713 unregister_chrdev_region(dax_devt, MINORMASK+1);
Dan Williams7b6be842017-04-11 09:49:49 -0700714 ida_destroy(&dax_minor_ida);
Dan Williams9567da02017-07-12 17:58:21 -0700715 dax_fs_exit();
Dan Williams7b6be842017-04-11 09:49:49 -0700716}
717
718MODULE_AUTHOR("Intel Corporation");
719MODULE_LICENSE("GPL v2");
Dan Williams9567da02017-07-12 17:58:21 -0700720subsys_initcall(dax_core_init);
721module_exit(dax_core_exit);