• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright(c) 2013-2015 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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/vmalloc.h>
15 #include <linux/uaccess.h>
16 #include <linux/module.h>
17 #include <linux/blkdev.h>
18 #include <linux/fcntl.h>
19 #include <linux/async.h>
20 #include <linux/genhd.h>
21 #include <linux/ndctl.h>
22 #include <linux/sched.h>
23 #include <linux/slab.h>
24 #include <linux/fs.h>
25 #include <linux/io.h>
26 #include <linux/mm.h>
27 #include <linux/nd.h>
28 #include "nd-core.h"
29 #include "nd.h"
30 
31 int nvdimm_major;
32 static int nvdimm_bus_major;
33 static struct class *nd_class;
34 static DEFINE_IDA(nd_ida);
35 
to_nd_device_type(struct device * dev)36 static int to_nd_device_type(struct device *dev)
37 {
38 	if (is_nvdimm(dev))
39 		return ND_DEVICE_DIMM;
40 	else if (is_nd_pmem(dev))
41 		return ND_DEVICE_REGION_PMEM;
42 	else if (is_nd_blk(dev))
43 		return ND_DEVICE_REGION_BLK;
44 	else if (is_nd_dax(dev))
45 		return ND_DEVICE_DAX_PMEM;
46 	else if (is_nd_pmem(dev->parent) || is_nd_blk(dev->parent))
47 		return nd_region_to_nstype(to_nd_region(dev->parent));
48 
49 	return 0;
50 }
51 
nvdimm_bus_uevent(struct device * dev,struct kobj_uevent_env * env)52 static int nvdimm_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
53 {
54 	/*
55 	 * Ensure that region devices always have their numa node set as
56 	 * early as possible.
57 	 */
58 	if (is_nd_pmem(dev) || is_nd_blk(dev))
59 		set_dev_node(dev, to_nd_region(dev)->numa_node);
60 	return add_uevent_var(env, "MODALIAS=" ND_DEVICE_MODALIAS_FMT,
61 			to_nd_device_type(dev));
62 }
63 
to_bus_provider(struct device * dev)64 static struct module *to_bus_provider(struct device *dev)
65 {
66 	/* pin bus providers while regions are enabled */
67 	if (is_nd_pmem(dev) || is_nd_blk(dev)) {
68 		struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
69 
70 		return nvdimm_bus->nd_desc->module;
71 	}
72 	return NULL;
73 }
74 
nvdimm_bus_probe_start(struct nvdimm_bus * nvdimm_bus)75 static void nvdimm_bus_probe_start(struct nvdimm_bus *nvdimm_bus)
76 {
77 	nvdimm_bus_lock(&nvdimm_bus->dev);
78 	nvdimm_bus->probe_active++;
79 	nvdimm_bus_unlock(&nvdimm_bus->dev);
80 }
81 
nvdimm_bus_probe_end(struct nvdimm_bus * nvdimm_bus)82 static void nvdimm_bus_probe_end(struct nvdimm_bus *nvdimm_bus)
83 {
84 	nvdimm_bus_lock(&nvdimm_bus->dev);
85 	if (--nvdimm_bus->probe_active == 0)
86 		wake_up(&nvdimm_bus->probe_wait);
87 	nvdimm_bus_unlock(&nvdimm_bus->dev);
88 }
89 
nvdimm_bus_probe(struct device * dev)90 static int nvdimm_bus_probe(struct device *dev)
91 {
92 	struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
93 	struct module *provider = to_bus_provider(dev);
94 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
95 	int rc;
96 
97 	if (!try_module_get(provider))
98 		return -ENXIO;
99 
100 	nvdimm_bus_probe_start(nvdimm_bus);
101 	rc = nd_drv->probe(dev);
102 	if (rc == 0)
103 		nd_region_probe_success(nvdimm_bus, dev);
104 	else
105 		nd_region_disable(nvdimm_bus, dev);
106 	nvdimm_bus_probe_end(nvdimm_bus);
107 
108 	dev_dbg(&nvdimm_bus->dev, "%s.probe(%s) = %d\n", dev->driver->name,
109 			dev_name(dev), rc);
110 
111 	if (rc != 0)
112 		module_put(provider);
113 	return rc;
114 }
115 
nvdimm_bus_remove(struct device * dev)116 static int nvdimm_bus_remove(struct device *dev)
117 {
118 	struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
119 	struct module *provider = to_bus_provider(dev);
120 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
121 	int rc = 0;
122 
123 	if (nd_drv->remove)
124 		rc = nd_drv->remove(dev);
125 	nd_region_disable(nvdimm_bus, dev);
126 
127 	dev_dbg(&nvdimm_bus->dev, "%s.remove(%s) = %d\n", dev->driver->name,
128 			dev_name(dev), rc);
129 	module_put(provider);
130 	return rc;
131 }
132 
nvdimm_bus_shutdown(struct device * dev)133 static void nvdimm_bus_shutdown(struct device *dev)
134 {
135 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
136 	struct nd_device_driver *nd_drv = NULL;
137 
138 	if (dev->driver)
139 		nd_drv = to_nd_device_driver(dev->driver);
140 
141 	if (nd_drv && nd_drv->shutdown) {
142 		nd_drv->shutdown(dev);
143 		dev_dbg(&nvdimm_bus->dev, "%s.shutdown(%s)\n",
144 				dev->driver->name, dev_name(dev));
145 	}
146 }
147 
nd_device_notify(struct device * dev,enum nvdimm_event event)148 void nd_device_notify(struct device *dev, enum nvdimm_event event)
149 {
150 	device_lock(dev);
151 	if (dev->driver) {
152 		struct nd_device_driver *nd_drv;
153 
154 		nd_drv = to_nd_device_driver(dev->driver);
155 		if (nd_drv->notify)
156 			nd_drv->notify(dev, event);
157 	}
158 	device_unlock(dev);
159 }
160 EXPORT_SYMBOL(nd_device_notify);
161 
nvdimm_region_notify(struct nd_region * nd_region,enum nvdimm_event event)162 void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event)
163 {
164 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
165 
166 	if (!nvdimm_bus)
167 		return;
168 
169 	/* caller is responsible for holding a reference on the device */
170 	nd_device_notify(&nd_region->dev, event);
171 }
172 EXPORT_SYMBOL_GPL(nvdimm_region_notify);
173 
nvdimm_clear_poison(struct device * dev,phys_addr_t phys,unsigned int len)174 long nvdimm_clear_poison(struct device *dev, phys_addr_t phys,
175 		unsigned int len)
176 {
177 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
178 	struct nvdimm_bus_descriptor *nd_desc;
179 	struct nd_cmd_clear_error clear_err;
180 	struct nd_cmd_ars_cap ars_cap;
181 	u32 clear_err_unit, mask;
182 	int cmd_rc, rc;
183 
184 	if (!nvdimm_bus)
185 		return -ENXIO;
186 
187 	nd_desc = nvdimm_bus->nd_desc;
188 	/*
189 	 * if ndctl does not exist, it's PMEM_LEGACY and
190 	 * we want to just pretend everything is handled.
191 	 */
192 	if (!nd_desc->ndctl)
193 		return len;
194 
195 	memset(&ars_cap, 0, sizeof(ars_cap));
196 	ars_cap.address = phys;
197 	ars_cap.length = len;
198 	rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, &ars_cap,
199 			sizeof(ars_cap), &cmd_rc);
200 	if (rc < 0)
201 		return rc;
202 	if (cmd_rc < 0)
203 		return cmd_rc;
204 	clear_err_unit = ars_cap.clear_err_unit;
205 	if (!clear_err_unit || !is_power_of_2(clear_err_unit))
206 		return -ENXIO;
207 
208 	mask = clear_err_unit - 1;
209 	if ((phys | len) & mask)
210 		return -ENXIO;
211 	memset(&clear_err, 0, sizeof(clear_err));
212 	clear_err.address = phys;
213 	clear_err.length = len;
214 	rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_CLEAR_ERROR, &clear_err,
215 			sizeof(clear_err), &cmd_rc);
216 	if (rc < 0)
217 		return rc;
218 	if (cmd_rc < 0)
219 		return cmd_rc;
220 
221 	if (clear_err.cleared > 0)
222 		nvdimm_clear_from_poison_list(nvdimm_bus, phys,
223 					      clear_err.cleared);
224 
225 	return clear_err.cleared;
226 }
227 EXPORT_SYMBOL_GPL(nvdimm_clear_poison);
228 
229 static int nvdimm_bus_match(struct device *dev, struct device_driver *drv);
230 
231 static struct bus_type nvdimm_bus_type = {
232 	.name = "nd",
233 	.uevent = nvdimm_bus_uevent,
234 	.match = nvdimm_bus_match,
235 	.probe = nvdimm_bus_probe,
236 	.remove = nvdimm_bus_remove,
237 	.shutdown = nvdimm_bus_shutdown,
238 };
239 
nvdimm_bus_release(struct device * dev)240 static void nvdimm_bus_release(struct device *dev)
241 {
242 	struct nvdimm_bus *nvdimm_bus;
243 
244 	nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
245 	ida_simple_remove(&nd_ida, nvdimm_bus->id);
246 	kfree(nvdimm_bus);
247 }
248 
is_nvdimm_bus(struct device * dev)249 static bool is_nvdimm_bus(struct device *dev)
250 {
251 	return dev->release == nvdimm_bus_release;
252 }
253 
walk_to_nvdimm_bus(struct device * nd_dev)254 struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev)
255 {
256 	struct device *dev;
257 
258 	for (dev = nd_dev; dev; dev = dev->parent)
259 		if (is_nvdimm_bus(dev))
260 			break;
261 	dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n");
262 	if (dev)
263 		return to_nvdimm_bus(dev);
264 	return NULL;
265 }
266 
to_nvdimm_bus(struct device * dev)267 struct nvdimm_bus *to_nvdimm_bus(struct device *dev)
268 {
269 	struct nvdimm_bus *nvdimm_bus;
270 
271 	nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
272 	WARN_ON(!is_nvdimm_bus(dev));
273 	return nvdimm_bus;
274 }
275 EXPORT_SYMBOL_GPL(to_nvdimm_bus);
276 
nvdimm_bus_register(struct device * parent,struct nvdimm_bus_descriptor * nd_desc)277 struct nvdimm_bus *nvdimm_bus_register(struct device *parent,
278 		struct nvdimm_bus_descriptor *nd_desc)
279 {
280 	struct nvdimm_bus *nvdimm_bus;
281 	int rc;
282 
283 	nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL);
284 	if (!nvdimm_bus)
285 		return NULL;
286 	INIT_LIST_HEAD(&nvdimm_bus->list);
287 	INIT_LIST_HEAD(&nvdimm_bus->mapping_list);
288 	INIT_LIST_HEAD(&nvdimm_bus->poison_list);
289 	init_waitqueue_head(&nvdimm_bus->probe_wait);
290 	nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL);
291 	mutex_init(&nvdimm_bus->reconfig_mutex);
292 	if (nvdimm_bus->id < 0) {
293 		kfree(nvdimm_bus);
294 		return NULL;
295 	}
296 	nvdimm_bus->nd_desc = nd_desc;
297 	nvdimm_bus->dev.parent = parent;
298 	nvdimm_bus->dev.release = nvdimm_bus_release;
299 	nvdimm_bus->dev.groups = nd_desc->attr_groups;
300 	nvdimm_bus->dev.bus = &nvdimm_bus_type;
301 	dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id);
302 	rc = device_register(&nvdimm_bus->dev);
303 	if (rc) {
304 		dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc);
305 		goto err;
306 	}
307 
308 	return nvdimm_bus;
309  err:
310 	put_device(&nvdimm_bus->dev);
311 	return NULL;
312 }
313 EXPORT_SYMBOL_GPL(nvdimm_bus_register);
314 
nvdimm_bus_unregister(struct nvdimm_bus * nvdimm_bus)315 void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus)
316 {
317 	if (!nvdimm_bus)
318 		return;
319 	device_unregister(&nvdimm_bus->dev);
320 }
321 EXPORT_SYMBOL_GPL(nvdimm_bus_unregister);
322 
child_unregister(struct device * dev,void * data)323 static int child_unregister(struct device *dev, void *data)
324 {
325 	/*
326 	 * the singular ndctl class device per bus needs to be
327 	 * "device_destroy"ed, so skip it here
328 	 *
329 	 * i.e. remove classless children
330 	 */
331 	if (dev->class)
332 		/* pass */;
333 	else
334 		nd_device_unregister(dev, ND_SYNC);
335 	return 0;
336 }
337 
free_poison_list(struct list_head * poison_list)338 static void free_poison_list(struct list_head *poison_list)
339 {
340 	struct nd_poison *pl, *next;
341 
342 	list_for_each_entry_safe(pl, next, poison_list, list) {
343 		list_del(&pl->list);
344 		kfree(pl);
345 	}
346 	list_del_init(poison_list);
347 }
348 
nd_bus_remove(struct device * dev)349 static int nd_bus_remove(struct device *dev)
350 {
351 	struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
352 
353 	mutex_lock(&nvdimm_bus_list_mutex);
354 	list_del_init(&nvdimm_bus->list);
355 	mutex_unlock(&nvdimm_bus_list_mutex);
356 
357 	nd_synchronize();
358 	device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister);
359 
360 	nvdimm_bus_lock(&nvdimm_bus->dev);
361 	free_poison_list(&nvdimm_bus->poison_list);
362 	nvdimm_bus_unlock(&nvdimm_bus->dev);
363 
364 	nvdimm_bus_destroy_ndctl(nvdimm_bus);
365 
366 	return 0;
367 }
368 
nd_bus_probe(struct device * dev)369 static int nd_bus_probe(struct device *dev)
370 {
371 	struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
372 	int rc;
373 
374 	rc = nvdimm_bus_create_ndctl(nvdimm_bus);
375 	if (rc)
376 		return rc;
377 
378 	mutex_lock(&nvdimm_bus_list_mutex);
379 	list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list);
380 	mutex_unlock(&nvdimm_bus_list_mutex);
381 
382 	/* enable bus provider attributes to look up their local context */
383 	dev_set_drvdata(dev, nvdimm_bus->nd_desc);
384 
385 	return 0;
386 }
387 
388 static struct nd_device_driver nd_bus_driver = {
389 	.probe = nd_bus_probe,
390 	.remove = nd_bus_remove,
391 	.drv = {
392 		.name = "nd_bus",
393 		.suppress_bind_attrs = true,
394 		.bus = &nvdimm_bus_type,
395 		.owner = THIS_MODULE,
396 		.mod_name = KBUILD_MODNAME,
397 	},
398 };
399 
nvdimm_bus_match(struct device * dev,struct device_driver * drv)400 static int nvdimm_bus_match(struct device *dev, struct device_driver *drv)
401 {
402 	struct nd_device_driver *nd_drv = to_nd_device_driver(drv);
403 
404 	if (is_nvdimm_bus(dev) && nd_drv == &nd_bus_driver)
405 		return true;
406 
407 	return !!test_bit(to_nd_device_type(dev), &nd_drv->type);
408 }
409 
410 static ASYNC_DOMAIN_EXCLUSIVE(nd_async_domain);
411 
nd_synchronize(void)412 void nd_synchronize(void)
413 {
414 	async_synchronize_full_domain(&nd_async_domain);
415 }
416 EXPORT_SYMBOL_GPL(nd_synchronize);
417 
nd_async_device_register(void * d,async_cookie_t cookie)418 static void nd_async_device_register(void *d, async_cookie_t cookie)
419 {
420 	struct device *dev = d;
421 
422 	if (device_add(dev) != 0) {
423 		dev_err(dev, "%s: failed\n", __func__);
424 		put_device(dev);
425 	}
426 	put_device(dev);
427 }
428 
nd_async_device_unregister(void * d,async_cookie_t cookie)429 static void nd_async_device_unregister(void *d, async_cookie_t cookie)
430 {
431 	struct device *dev = d;
432 
433 	/* flush bus operations before delete */
434 	nvdimm_bus_lock(dev);
435 	nvdimm_bus_unlock(dev);
436 
437 	device_unregister(dev);
438 	put_device(dev);
439 }
440 
__nd_device_register(struct device * dev)441 void __nd_device_register(struct device *dev)
442 {
443 	if (!dev)
444 		return;
445 	dev->bus = &nvdimm_bus_type;
446 	get_device(dev);
447 	async_schedule_domain(nd_async_device_register, dev,
448 			&nd_async_domain);
449 }
450 
nd_device_register(struct device * dev)451 void nd_device_register(struct device *dev)
452 {
453 	device_initialize(dev);
454 	__nd_device_register(dev);
455 }
456 EXPORT_SYMBOL(nd_device_register);
457 
nd_device_unregister(struct device * dev,enum nd_async_mode mode)458 void nd_device_unregister(struct device *dev, enum nd_async_mode mode)
459 {
460 	switch (mode) {
461 	case ND_ASYNC:
462 		get_device(dev);
463 		async_schedule_domain(nd_async_device_unregister, dev,
464 				&nd_async_domain);
465 		break;
466 	case ND_SYNC:
467 		nd_synchronize();
468 		device_unregister(dev);
469 		break;
470 	}
471 }
472 EXPORT_SYMBOL(nd_device_unregister);
473 
474 /**
475  * __nd_driver_register() - register a region or a namespace driver
476  * @nd_drv: driver to register
477  * @owner: automatically set by nd_driver_register() macro
478  * @mod_name: automatically set by nd_driver_register() macro
479  */
__nd_driver_register(struct nd_device_driver * nd_drv,struct module * owner,const char * mod_name)480 int __nd_driver_register(struct nd_device_driver *nd_drv, struct module *owner,
481 		const char *mod_name)
482 {
483 	struct device_driver *drv = &nd_drv->drv;
484 
485 	if (!nd_drv->type) {
486 		pr_debug("driver type bitmask not set (%pf)\n",
487 				__builtin_return_address(0));
488 		return -EINVAL;
489 	}
490 
491 	if (!nd_drv->probe) {
492 		pr_debug("%s ->probe() must be specified\n", mod_name);
493 		return -EINVAL;
494 	}
495 
496 	drv->bus = &nvdimm_bus_type;
497 	drv->owner = owner;
498 	drv->mod_name = mod_name;
499 
500 	return driver_register(drv);
501 }
502 EXPORT_SYMBOL(__nd_driver_register);
503 
nvdimm_revalidate_disk(struct gendisk * disk)504 int nvdimm_revalidate_disk(struct gendisk *disk)
505 {
506 	struct device *dev = disk_to_dev(disk)->parent;
507 	struct nd_region *nd_region = to_nd_region(dev->parent);
508 	const char *pol = nd_region->ro ? "only" : "write";
509 
510 	if (nd_region->ro == get_disk_ro(disk))
511 		return 0;
512 
513 	dev_info(dev, "%s read-%s, marking %s read-%s\n",
514 			dev_name(&nd_region->dev), pol, disk->disk_name, pol);
515 	set_disk_ro(disk, nd_region->ro);
516 
517 	return 0;
518 
519 }
520 EXPORT_SYMBOL(nvdimm_revalidate_disk);
521 
modalias_show(struct device * dev,struct device_attribute * attr,char * buf)522 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
523 		char *buf)
524 {
525 	return sprintf(buf, ND_DEVICE_MODALIAS_FMT "\n",
526 			to_nd_device_type(dev));
527 }
528 static DEVICE_ATTR_RO(modalias);
529 
devtype_show(struct device * dev,struct device_attribute * attr,char * buf)530 static ssize_t devtype_show(struct device *dev, struct device_attribute *attr,
531 		char *buf)
532 {
533 	return sprintf(buf, "%s\n", dev->type->name);
534 }
535 static DEVICE_ATTR_RO(devtype);
536 
537 static struct attribute *nd_device_attributes[] = {
538 	&dev_attr_modalias.attr,
539 	&dev_attr_devtype.attr,
540 	NULL,
541 };
542 
543 /**
544  * nd_device_attribute_group - generic attributes for all devices on an nd bus
545  */
546 struct attribute_group nd_device_attribute_group = {
547 	.attrs = nd_device_attributes,
548 };
549 EXPORT_SYMBOL_GPL(nd_device_attribute_group);
550 
numa_node_show(struct device * dev,struct device_attribute * attr,char * buf)551 static ssize_t numa_node_show(struct device *dev,
552 		struct device_attribute *attr, char *buf)
553 {
554 	return sprintf(buf, "%d\n", dev_to_node(dev));
555 }
556 static DEVICE_ATTR_RO(numa_node);
557 
558 static struct attribute *nd_numa_attributes[] = {
559 	&dev_attr_numa_node.attr,
560 	NULL,
561 };
562 
nd_numa_attr_visible(struct kobject * kobj,struct attribute * a,int n)563 static umode_t nd_numa_attr_visible(struct kobject *kobj, struct attribute *a,
564 		int n)
565 {
566 	if (!IS_ENABLED(CONFIG_NUMA))
567 		return 0;
568 
569 	return a->mode;
570 }
571 
572 /**
573  * nd_numa_attribute_group - NUMA attributes for all devices on an nd bus
574  */
575 struct attribute_group nd_numa_attribute_group = {
576 	.attrs = nd_numa_attributes,
577 	.is_visible = nd_numa_attr_visible,
578 };
579 EXPORT_SYMBOL_GPL(nd_numa_attribute_group);
580 
nvdimm_bus_create_ndctl(struct nvdimm_bus * nvdimm_bus)581 int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus)
582 {
583 	dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id);
584 	struct device *dev;
585 
586 	dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus,
587 			"ndctl%d", nvdimm_bus->id);
588 
589 	if (IS_ERR(dev))
590 		dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n",
591 				nvdimm_bus->id, PTR_ERR(dev));
592 	return PTR_ERR_OR_ZERO(dev);
593 }
594 
nvdimm_bus_destroy_ndctl(struct nvdimm_bus * nvdimm_bus)595 void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus)
596 {
597 	device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id));
598 }
599 
600 static const struct nd_cmd_desc __nd_cmd_dimm_descs[] = {
601 	[ND_CMD_IMPLEMENTED] = { },
602 	[ND_CMD_SMART] = {
603 		.out_num = 2,
604 		.out_sizes = { 4, 128, },
605 	},
606 	[ND_CMD_SMART_THRESHOLD] = {
607 		.out_num = 2,
608 		.out_sizes = { 4, 8, },
609 	},
610 	[ND_CMD_DIMM_FLAGS] = {
611 		.out_num = 2,
612 		.out_sizes = { 4, 4 },
613 	},
614 	[ND_CMD_GET_CONFIG_SIZE] = {
615 		.out_num = 3,
616 		.out_sizes = { 4, 4, 4, },
617 	},
618 	[ND_CMD_GET_CONFIG_DATA] = {
619 		.in_num = 2,
620 		.in_sizes = { 4, 4, },
621 		.out_num = 2,
622 		.out_sizes = { 4, UINT_MAX, },
623 	},
624 	[ND_CMD_SET_CONFIG_DATA] = {
625 		.in_num = 3,
626 		.in_sizes = { 4, 4, UINT_MAX, },
627 		.out_num = 1,
628 		.out_sizes = { 4, },
629 	},
630 	[ND_CMD_VENDOR] = {
631 		.in_num = 3,
632 		.in_sizes = { 4, 4, UINT_MAX, },
633 		.out_num = 3,
634 		.out_sizes = { 4, 4, UINT_MAX, },
635 	},
636 	[ND_CMD_CALL] = {
637 		.in_num = 2,
638 		.in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
639 		.out_num = 1,
640 		.out_sizes = { UINT_MAX, },
641 	},
642 };
643 
nd_cmd_dimm_desc(int cmd)644 const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd)
645 {
646 	if (cmd < ARRAY_SIZE(__nd_cmd_dimm_descs))
647 		return &__nd_cmd_dimm_descs[cmd];
648 	return NULL;
649 }
650 EXPORT_SYMBOL_GPL(nd_cmd_dimm_desc);
651 
652 static const struct nd_cmd_desc __nd_cmd_bus_descs[] = {
653 	[ND_CMD_IMPLEMENTED] = { },
654 	[ND_CMD_ARS_CAP] = {
655 		.in_num = 2,
656 		.in_sizes = { 8, 8, },
657 		.out_num = 4,
658 		.out_sizes = { 4, 4, 4, 4, },
659 	},
660 	[ND_CMD_ARS_START] = {
661 		.in_num = 5,
662 		.in_sizes = { 8, 8, 2, 1, 5, },
663 		.out_num = 2,
664 		.out_sizes = { 4, 4, },
665 	},
666 	[ND_CMD_ARS_STATUS] = {
667 		.out_num = 3,
668 		.out_sizes = { 4, 4, UINT_MAX, },
669 	},
670 	[ND_CMD_CLEAR_ERROR] = {
671 		.in_num = 2,
672 		.in_sizes = { 8, 8, },
673 		.out_num = 3,
674 		.out_sizes = { 4, 4, 8, },
675 	},
676 	[ND_CMD_CALL] = {
677 		.in_num = 2,
678 		.in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
679 		.out_num = 1,
680 		.out_sizes = { UINT_MAX, },
681 	},
682 };
683 
nd_cmd_bus_desc(int cmd)684 const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd)
685 {
686 	if (cmd < ARRAY_SIZE(__nd_cmd_bus_descs))
687 		return &__nd_cmd_bus_descs[cmd];
688 	return NULL;
689 }
690 EXPORT_SYMBOL_GPL(nd_cmd_bus_desc);
691 
nd_cmd_in_size(struct nvdimm * nvdimm,int cmd,const struct nd_cmd_desc * desc,int idx,void * buf)692 u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
693 		const struct nd_cmd_desc *desc, int idx, void *buf)
694 {
695 	if (idx >= desc->in_num)
696 		return UINT_MAX;
697 
698 	if (desc->in_sizes[idx] < UINT_MAX)
699 		return desc->in_sizes[idx];
700 
701 	if (nvdimm && cmd == ND_CMD_SET_CONFIG_DATA && idx == 2) {
702 		struct nd_cmd_set_config_hdr *hdr = buf;
703 
704 		return hdr->in_length;
705 	} else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) {
706 		struct nd_cmd_vendor_hdr *hdr = buf;
707 
708 		return hdr->in_length;
709 	} else if (cmd == ND_CMD_CALL) {
710 		struct nd_cmd_pkg *pkg = buf;
711 
712 		return pkg->nd_size_in;
713 	}
714 
715 	return UINT_MAX;
716 }
717 EXPORT_SYMBOL_GPL(nd_cmd_in_size);
718 
nd_cmd_out_size(struct nvdimm * nvdimm,int cmd,const struct nd_cmd_desc * desc,int idx,const u32 * in_field,const u32 * out_field,unsigned long remainder)719 u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
720 		const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
721 		const u32 *out_field, unsigned long remainder)
722 {
723 	if (idx >= desc->out_num)
724 		return UINT_MAX;
725 
726 	if (desc->out_sizes[idx] < UINT_MAX)
727 		return desc->out_sizes[idx];
728 
729 	if (nvdimm && cmd == ND_CMD_GET_CONFIG_DATA && idx == 1)
730 		return in_field[1];
731 	else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2)
732 		return out_field[1];
733 	else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) {
734 		/*
735 		 * Per table 9-276 ARS Data in ACPI 6.1, out_field[1] is
736 		 * "Size of Output Buffer in bytes, including this
737 		 * field."
738 		 */
739 		if (out_field[1] < 4)
740 			return 0;
741 		/*
742 		 * ACPI 6.1 is ambiguous if 'status' is included in the
743 		 * output size. If we encounter an output size that
744 		 * overshoots the remainder by 4 bytes, assume it was
745 		 * including 'status'.
746 		 */
747 		if (out_field[1] - 8 == remainder)
748 			return remainder;
749 		return out_field[1] - 4;
750 	} else if (cmd == ND_CMD_CALL) {
751 		struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field;
752 
753 		return pkg->nd_size_out;
754 	}
755 
756 
757 	return UINT_MAX;
758 }
759 EXPORT_SYMBOL_GPL(nd_cmd_out_size);
760 
wait_nvdimm_bus_probe_idle(struct device * dev)761 void wait_nvdimm_bus_probe_idle(struct device *dev)
762 {
763 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
764 
765 	do {
766 		if (nvdimm_bus->probe_active == 0)
767 			break;
768 		nvdimm_bus_unlock(&nvdimm_bus->dev);
769 		wait_event(nvdimm_bus->probe_wait,
770 				nvdimm_bus->probe_active == 0);
771 		nvdimm_bus_lock(&nvdimm_bus->dev);
772 	} while (true);
773 }
774 
pmem_active(struct device * dev,void * data)775 static int pmem_active(struct device *dev, void *data)
776 {
777 	if (is_nd_pmem(dev) && dev->driver)
778 		return -EBUSY;
779 	return 0;
780 }
781 
782 /* set_config requires an idle interleave set */
nd_cmd_clear_to_send(struct nvdimm_bus * nvdimm_bus,struct nvdimm * nvdimm,unsigned int cmd)783 static int nd_cmd_clear_to_send(struct nvdimm_bus *nvdimm_bus,
784 		struct nvdimm *nvdimm, unsigned int cmd)
785 {
786 	struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
787 
788 	/* ask the bus provider if it would like to block this request */
789 	if (nd_desc->clear_to_send) {
790 		int rc = nd_desc->clear_to_send(nd_desc, nvdimm, cmd);
791 
792 		if (rc)
793 			return rc;
794 	}
795 
796 	/* require clear error to go through the pmem driver */
797 	if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR)
798 		return device_for_each_child(&nvdimm_bus->dev, NULL,
799 				pmem_active);
800 
801 	if (!nvdimm || cmd != ND_CMD_SET_CONFIG_DATA)
802 		return 0;
803 
804 	/* prevent label manipulation while the kernel owns label updates */
805 	wait_nvdimm_bus_probe_idle(&nvdimm_bus->dev);
806 	if (atomic_read(&nvdimm->busy))
807 		return -EBUSY;
808 	return 0;
809 }
810 
__nd_ioctl(struct nvdimm_bus * nvdimm_bus,struct nvdimm * nvdimm,int read_only,unsigned int ioctl_cmd,unsigned long arg)811 static int __nd_ioctl(struct nvdimm_bus *nvdimm_bus, struct nvdimm *nvdimm,
812 		int read_only, unsigned int ioctl_cmd, unsigned long arg)
813 {
814 	struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
815 	static char out_env[ND_CMD_MAX_ENVELOPE];
816 	static char in_env[ND_CMD_MAX_ENVELOPE];
817 	const struct nd_cmd_desc *desc = NULL;
818 	unsigned int cmd = _IOC_NR(ioctl_cmd);
819 	void __user *p = (void __user *) arg;
820 	struct device *dev = &nvdimm_bus->dev;
821 	const char *cmd_name, *dimm_name;
822 	u32 in_len = 0, out_len = 0;
823 	unsigned long cmd_mask;
824 	struct nd_cmd_pkg pkg;
825 	u64 buf_len = 0;
826 	void *buf;
827 	int rc, i;
828 
829 	if (nvdimm) {
830 		desc = nd_cmd_dimm_desc(cmd);
831 		cmd_name = nvdimm_cmd_name(cmd);
832 		cmd_mask = nvdimm->cmd_mask;
833 		dimm_name = dev_name(&nvdimm->dev);
834 	} else {
835 		desc = nd_cmd_bus_desc(cmd);
836 		cmd_name = nvdimm_bus_cmd_name(cmd);
837 		cmd_mask = nd_desc->cmd_mask;
838 		dimm_name = "bus";
839 	}
840 
841 	if (cmd == ND_CMD_CALL) {
842 		if (copy_from_user(&pkg, p, sizeof(pkg)))
843 			return -EFAULT;
844 	}
845 
846 	if (!desc || (desc->out_num + desc->in_num == 0) ||
847 			!test_bit(cmd, &cmd_mask))
848 		return -ENOTTY;
849 
850 	/* fail write commands (when read-only) */
851 	if (read_only)
852 		switch (cmd) {
853 		case ND_CMD_VENDOR:
854 		case ND_CMD_SET_CONFIG_DATA:
855 		case ND_CMD_ARS_START:
856 		case ND_CMD_CLEAR_ERROR:
857 		case ND_CMD_CALL:
858 			dev_dbg(&nvdimm_bus->dev, "'%s' command while read-only.\n",
859 					nvdimm ? nvdimm_cmd_name(cmd)
860 					: nvdimm_bus_cmd_name(cmd));
861 			return -EPERM;
862 		default:
863 			break;
864 		}
865 
866 	/* process an input envelope */
867 	for (i = 0; i < desc->in_num; i++) {
868 		u32 in_size, copy;
869 
870 		in_size = nd_cmd_in_size(nvdimm, cmd, desc, i, in_env);
871 		if (in_size == UINT_MAX) {
872 			dev_err(dev, "%s:%s unknown input size cmd: %s field: %d\n",
873 					__func__, dimm_name, cmd_name, i);
874 			return -ENXIO;
875 		}
876 		if (in_len < sizeof(in_env))
877 			copy = min_t(u32, sizeof(in_env) - in_len, in_size);
878 		else
879 			copy = 0;
880 		if (copy && copy_from_user(&in_env[in_len], p + in_len, copy))
881 			return -EFAULT;
882 		in_len += in_size;
883 	}
884 
885 	if (cmd == ND_CMD_CALL) {
886 		dev_dbg(dev, "%s:%s, idx: %llu, in: %u, out: %u, len %llu\n",
887 				__func__, dimm_name, pkg.nd_command,
888 				in_len, out_len, buf_len);
889 
890 		for (i = 0; i < ARRAY_SIZE(pkg.nd_reserved2); i++)
891 			if (pkg.nd_reserved2[i])
892 				return -EINVAL;
893 	}
894 
895 	/* process an output envelope */
896 	for (i = 0; i < desc->out_num; i++) {
897 		u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i,
898 				(u32 *) in_env, (u32 *) out_env, 0);
899 		u32 copy;
900 
901 		if (out_size == UINT_MAX) {
902 			dev_dbg(dev, "%s:%s unknown output size cmd: %s field: %d\n",
903 					__func__, dimm_name, cmd_name, i);
904 			return -EFAULT;
905 		}
906 		if (out_len < sizeof(out_env))
907 			copy = min_t(u32, sizeof(out_env) - out_len, out_size);
908 		else
909 			copy = 0;
910 		if (copy && copy_from_user(&out_env[out_len],
911 					p + in_len + out_len, copy))
912 			return -EFAULT;
913 		out_len += out_size;
914 	}
915 
916 	buf_len = (u64) out_len + (u64) in_len;
917 	if (buf_len > ND_IOCTL_MAX_BUFLEN) {
918 		dev_dbg(dev, "%s:%s cmd: %s buf_len: %llu > %d\n", __func__,
919 				dimm_name, cmd_name, buf_len,
920 				ND_IOCTL_MAX_BUFLEN);
921 		return -EINVAL;
922 	}
923 
924 	buf = vmalloc(buf_len);
925 	if (!buf)
926 		return -ENOMEM;
927 
928 	if (copy_from_user(buf, p, buf_len)) {
929 		rc = -EFAULT;
930 		goto out;
931 	}
932 
933 	nvdimm_bus_lock(&nvdimm_bus->dev);
934 	rc = nd_cmd_clear_to_send(nvdimm_bus, nvdimm, cmd);
935 	if (rc)
936 		goto out_unlock;
937 
938 	rc = nd_desc->ndctl(nd_desc, nvdimm, cmd, buf, buf_len, NULL);
939 	if (rc < 0)
940 		goto out_unlock;
941 	nvdimm_bus_unlock(&nvdimm_bus->dev);
942 
943 	if (copy_to_user(p, buf, buf_len))
944 		rc = -EFAULT;
945 
946 	vfree(buf);
947 	return rc;
948 
949  out_unlock:
950 	nvdimm_bus_unlock(&nvdimm_bus->dev);
951  out:
952 	vfree(buf);
953 	return rc;
954 }
955 
nd_ioctl(struct file * file,unsigned int cmd,unsigned long arg)956 static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
957 {
958 	long id = (long) file->private_data;
959 	int rc = -ENXIO, ro;
960 	struct nvdimm_bus *nvdimm_bus;
961 
962 	ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
963 	mutex_lock(&nvdimm_bus_list_mutex);
964 	list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
965 		if (nvdimm_bus->id == id) {
966 			rc = __nd_ioctl(nvdimm_bus, NULL, ro, cmd, arg);
967 			break;
968 		}
969 	}
970 	mutex_unlock(&nvdimm_bus_list_mutex);
971 
972 	return rc;
973 }
974 
match_dimm(struct device * dev,void * data)975 static int match_dimm(struct device *dev, void *data)
976 {
977 	long id = (long) data;
978 
979 	if (is_nvdimm(dev)) {
980 		struct nvdimm *nvdimm = to_nvdimm(dev);
981 
982 		return nvdimm->id == id;
983 	}
984 
985 	return 0;
986 }
987 
nvdimm_ioctl(struct file * file,unsigned int cmd,unsigned long arg)988 static long nvdimm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
989 {
990 	int rc = -ENXIO, ro;
991 	struct nvdimm_bus *nvdimm_bus;
992 
993 	ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
994 	mutex_lock(&nvdimm_bus_list_mutex);
995 	list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
996 		struct device *dev = device_find_child(&nvdimm_bus->dev,
997 				file->private_data, match_dimm);
998 		struct nvdimm *nvdimm;
999 
1000 		if (!dev)
1001 			continue;
1002 
1003 		nvdimm = to_nvdimm(dev);
1004 		rc = __nd_ioctl(nvdimm_bus, nvdimm, ro, cmd, arg);
1005 		put_device(dev);
1006 		break;
1007 	}
1008 	mutex_unlock(&nvdimm_bus_list_mutex);
1009 
1010 	return rc;
1011 }
1012 
nd_open(struct inode * inode,struct file * file)1013 static int nd_open(struct inode *inode, struct file *file)
1014 {
1015 	long minor = iminor(inode);
1016 
1017 	file->private_data = (void *) minor;
1018 	return 0;
1019 }
1020 
1021 static const struct file_operations nvdimm_bus_fops = {
1022 	.owner = THIS_MODULE,
1023 	.open = nd_open,
1024 	.unlocked_ioctl = nd_ioctl,
1025 	.compat_ioctl = nd_ioctl,
1026 	.llseek = noop_llseek,
1027 };
1028 
1029 static const struct file_operations nvdimm_fops = {
1030 	.owner = THIS_MODULE,
1031 	.open = nd_open,
1032 	.unlocked_ioctl = nvdimm_ioctl,
1033 	.compat_ioctl = nvdimm_ioctl,
1034 	.llseek = noop_llseek,
1035 };
1036 
nvdimm_bus_init(void)1037 int __init nvdimm_bus_init(void)
1038 {
1039 	int rc;
1040 
1041 	BUILD_BUG_ON(sizeof(struct nd_smart_payload) != 128);
1042 	BUILD_BUG_ON(sizeof(struct nd_smart_threshold_payload) != 8);
1043 
1044 	rc = bus_register(&nvdimm_bus_type);
1045 	if (rc)
1046 		return rc;
1047 
1048 	rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops);
1049 	if (rc < 0)
1050 		goto err_bus_chrdev;
1051 	nvdimm_bus_major = rc;
1052 
1053 	rc = register_chrdev(0, "dimmctl", &nvdimm_fops);
1054 	if (rc < 0)
1055 		goto err_dimm_chrdev;
1056 	nvdimm_major = rc;
1057 
1058 	nd_class = class_create(THIS_MODULE, "nd");
1059 	if (IS_ERR(nd_class)) {
1060 		rc = PTR_ERR(nd_class);
1061 		goto err_class;
1062 	}
1063 
1064 	rc = driver_register(&nd_bus_driver.drv);
1065 	if (rc)
1066 		goto err_nd_bus;
1067 
1068 	return 0;
1069 
1070  err_nd_bus:
1071 	class_destroy(nd_class);
1072  err_class:
1073 	unregister_chrdev(nvdimm_major, "dimmctl");
1074  err_dimm_chrdev:
1075 	unregister_chrdev(nvdimm_bus_major, "ndctl");
1076  err_bus_chrdev:
1077 	bus_unregister(&nvdimm_bus_type);
1078 
1079 	return rc;
1080 }
1081 
nvdimm_bus_exit(void)1082 void nvdimm_bus_exit(void)
1083 {
1084 	driver_unregister(&nd_bus_driver.drv);
1085 	class_destroy(nd_class);
1086 	unregister_chrdev(nvdimm_bus_major, "ndctl");
1087 	unregister_chrdev(nvdimm_major, "dimmctl");
1088 	bus_unregister(&nvdimm_bus_type);
1089 	ida_destroy(&nd_ida);
1090 }
1091