nfit, libnvdimm: limited/whitelisted dimm command marshaling mechanism
[deliverable/linux.git] / drivers / nvdimm / bus.c
CommitLineData
45def22c
DW
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
62232e45 14#include <linux/vmalloc.h>
45def22c 15#include <linux/uaccess.h>
3d88002e 16#include <linux/module.h>
8c2f7e86 17#include <linux/blkdev.h>
45def22c 18#include <linux/fcntl.h>
e6dfb2de 19#include <linux/async.h>
8c2f7e86 20#include <linux/genhd.h>
62232e45 21#include <linux/ndctl.h>
4d88a97a 22#include <linux/sched.h>
45def22c
DW
23#include <linux/slab.h>
24#include <linux/fs.h>
25#include <linux/io.h>
62232e45 26#include <linux/mm.h>
4d88a97a 27#include <linux/nd.h>
45def22c 28#include "nd-core.h"
4d88a97a 29#include "nd.h"
45def22c 30
62232e45 31int nvdimm_major;
45def22c
DW
32static int nvdimm_bus_major;
33static struct class *nd_class;
34
4d88a97a
DW
35static int to_nd_device_type(struct device *dev)
36{
37 if (is_nvdimm(dev))
38 return ND_DEVICE_DIMM;
3d88002e
DW
39 else if (is_nd_pmem(dev))
40 return ND_DEVICE_REGION_PMEM;
41 else if (is_nd_blk(dev))
42 return ND_DEVICE_REGION_BLK;
43 else if (is_nd_pmem(dev->parent) || is_nd_blk(dev->parent))
44 return nd_region_to_nstype(to_nd_region(dev->parent));
4d88a97a
DW
45
46 return 0;
47}
48
49static int nvdimm_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
50{
41d7a6d6
TK
51 /*
52 * Ensure that region devices always have their numa node set as
53 * early as possible.
54 */
55 if (is_nd_pmem(dev) || is_nd_blk(dev))
56 set_dev_node(dev, to_nd_region(dev)->numa_node);
4d88a97a
DW
57 return add_uevent_var(env, "MODALIAS=" ND_DEVICE_MODALIAS_FMT,
58 to_nd_device_type(dev));
59}
60
61static int nvdimm_bus_match(struct device *dev, struct device_driver *drv)
62{
63 struct nd_device_driver *nd_drv = to_nd_device_driver(drv);
64
82ec2ba2 65 return !!test_bit(to_nd_device_type(dev), &nd_drv->type);
4d88a97a
DW
66}
67
3d88002e
DW
68static struct module *to_bus_provider(struct device *dev)
69{
70 /* pin bus providers while regions are enabled */
71 if (is_nd_pmem(dev) || is_nd_blk(dev)) {
72 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
73
74 return nvdimm_bus->module;
75 }
76 return NULL;
77}
78
eaf96153
DW
79static void nvdimm_bus_probe_start(struct nvdimm_bus *nvdimm_bus)
80{
81 nvdimm_bus_lock(&nvdimm_bus->dev);
82 nvdimm_bus->probe_active++;
83 nvdimm_bus_unlock(&nvdimm_bus->dev);
84}
85
86static void nvdimm_bus_probe_end(struct nvdimm_bus *nvdimm_bus)
87{
88 nvdimm_bus_lock(&nvdimm_bus->dev);
89 if (--nvdimm_bus->probe_active == 0)
90 wake_up(&nvdimm_bus->probe_wait);
91 nvdimm_bus_unlock(&nvdimm_bus->dev);
92}
93
4d88a97a
DW
94static int nvdimm_bus_probe(struct device *dev)
95{
96 struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
3d88002e 97 struct module *provider = to_bus_provider(dev);
4d88a97a
DW
98 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
99 int rc;
100
3d88002e
DW
101 if (!try_module_get(provider))
102 return -ENXIO;
103
eaf96153 104 nvdimm_bus_probe_start(nvdimm_bus);
4d88a97a 105 rc = nd_drv->probe(dev);
eaf96153
DW
106 if (rc == 0)
107 nd_region_probe_success(nvdimm_bus, dev);
bf9bccc1
DW
108 else
109 nd_region_disable(nvdimm_bus, dev);
eaf96153
DW
110 nvdimm_bus_probe_end(nvdimm_bus);
111
4d88a97a
DW
112 dev_dbg(&nvdimm_bus->dev, "%s.probe(%s) = %d\n", dev->driver->name,
113 dev_name(dev), rc);
8c2f7e86 114
3d88002e
DW
115 if (rc != 0)
116 module_put(provider);
4d88a97a
DW
117 return rc;
118}
119
120static int nvdimm_bus_remove(struct device *dev)
121{
122 struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
3d88002e 123 struct module *provider = to_bus_provider(dev);
4d88a97a
DW
124 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
125 int rc;
126
127 rc = nd_drv->remove(dev);
eaf96153
DW
128 nd_region_disable(nvdimm_bus, dev);
129
4d88a97a
DW
130 dev_dbg(&nvdimm_bus->dev, "%s.remove(%s) = %d\n", dev->driver->name,
131 dev_name(dev), rc);
3d88002e 132 module_put(provider);
4d88a97a
DW
133 return rc;
134}
135
71999466
DW
136void nd_device_notify(struct device *dev, enum nvdimm_event event)
137{
138 device_lock(dev);
139 if (dev->driver) {
140 struct nd_device_driver *nd_drv;
141
142 nd_drv = to_nd_device_driver(dev->driver);
143 if (nd_drv->notify)
144 nd_drv->notify(dev, event);
145 }
146 device_unlock(dev);
147}
148EXPORT_SYMBOL(nd_device_notify);
149
150void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event)
151{
152 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
153
154 if (!nvdimm_bus)
155 return;
156
157 /* caller is responsible for holding a reference on the device */
158 nd_device_notify(&nd_region->dev, event);
159}
160EXPORT_SYMBOL_GPL(nvdimm_region_notify);
161
59e64739
DW
162long nvdimm_clear_poison(struct device *dev, phys_addr_t phys,
163 unsigned int len)
164{
165 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
166 struct nvdimm_bus_descriptor *nd_desc;
167 struct nd_cmd_clear_error clear_err;
168 struct nd_cmd_ars_cap ars_cap;
169 u32 clear_err_unit, mask;
170 int cmd_rc, rc;
171
172 if (!nvdimm_bus)
173 return -ENXIO;
174
175 nd_desc = nvdimm_bus->nd_desc;
176 if (!nd_desc->ndctl)
177 return -ENXIO;
178
179 memset(&ars_cap, 0, sizeof(ars_cap));
180 ars_cap.address = phys;
181 ars_cap.length = len;
182 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, &ars_cap,
183 sizeof(ars_cap), &cmd_rc);
184 if (rc < 0)
185 return rc;
186 if (cmd_rc < 0)
187 return cmd_rc;
188 clear_err_unit = ars_cap.clear_err_unit;
189 if (!clear_err_unit || !is_power_of_2(clear_err_unit))
190 return -ENXIO;
191
192 mask = clear_err_unit - 1;
193 if ((phys | len) & mask)
194 return -ENXIO;
195 memset(&clear_err, 0, sizeof(clear_err));
196 clear_err.address = phys;
197 clear_err.length = len;
198 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_CLEAR_ERROR, &clear_err,
199 sizeof(clear_err), &cmd_rc);
200 if (rc < 0)
201 return rc;
202 if (cmd_rc < 0)
203 return cmd_rc;
204 return clear_err.cleared;
205}
206EXPORT_SYMBOL_GPL(nvdimm_clear_poison);
207
4d88a97a 208static struct bus_type nvdimm_bus_type = {
e6dfb2de 209 .name = "nd",
4d88a97a
DW
210 .uevent = nvdimm_bus_uevent,
211 .match = nvdimm_bus_match,
212 .probe = nvdimm_bus_probe,
213 .remove = nvdimm_bus_remove,
214};
215
216static ASYNC_DOMAIN_EXCLUSIVE(nd_async_domain);
217
218void nd_synchronize(void)
219{
220 async_synchronize_full_domain(&nd_async_domain);
221}
222EXPORT_SYMBOL_GPL(nd_synchronize);
223
224static void nd_async_device_register(void *d, async_cookie_t cookie)
225{
226 struct device *dev = d;
227
228 if (device_add(dev) != 0) {
229 dev_err(dev, "%s: failed\n", __func__);
230 put_device(dev);
231 }
232 put_device(dev);
233}
234
235static void nd_async_device_unregister(void *d, async_cookie_t cookie)
236{
237 struct device *dev = d;
238
0ba1c634
DW
239 /* flush bus operations before delete */
240 nvdimm_bus_lock(dev);
241 nvdimm_bus_unlock(dev);
242
4d88a97a
DW
243 device_unregister(dev);
244 put_device(dev);
245}
246
8c2f7e86 247void __nd_device_register(struct device *dev)
4d88a97a
DW
248{
249 dev->bus = &nvdimm_bus_type;
4d88a97a
DW
250 get_device(dev);
251 async_schedule_domain(nd_async_device_register, dev,
252 &nd_async_domain);
253}
8c2f7e86
DW
254
255void nd_device_register(struct device *dev)
256{
257 device_initialize(dev);
258 __nd_device_register(dev);
259}
4d88a97a
DW
260EXPORT_SYMBOL(nd_device_register);
261
262void nd_device_unregister(struct device *dev, enum nd_async_mode mode)
263{
264 switch (mode) {
265 case ND_ASYNC:
266 get_device(dev);
267 async_schedule_domain(nd_async_device_unregister, dev,
268 &nd_async_domain);
269 break;
270 case ND_SYNC:
271 nd_synchronize();
272 device_unregister(dev);
273 break;
274 }
275}
276EXPORT_SYMBOL(nd_device_unregister);
277
278/**
279 * __nd_driver_register() - register a region or a namespace driver
280 * @nd_drv: driver to register
281 * @owner: automatically set by nd_driver_register() macro
282 * @mod_name: automatically set by nd_driver_register() macro
283 */
284int __nd_driver_register(struct nd_device_driver *nd_drv, struct module *owner,
285 const char *mod_name)
286{
287 struct device_driver *drv = &nd_drv->drv;
288
289 if (!nd_drv->type) {
290 pr_debug("driver type bitmask not set (%pf)\n",
291 __builtin_return_address(0));
292 return -EINVAL;
293 }
294
295 if (!nd_drv->probe || !nd_drv->remove) {
296 pr_debug("->probe() and ->remove() must be specified\n");
297 return -EINVAL;
298 }
299
300 drv->bus = &nvdimm_bus_type;
301 drv->owner = owner;
302 drv->mod_name = mod_name;
303
304 return driver_register(drv);
305}
306EXPORT_SYMBOL(__nd_driver_register);
307
58138820
DW
308int nvdimm_revalidate_disk(struct gendisk *disk)
309{
310 struct device *dev = disk->driverfs_dev;
311 struct nd_region *nd_region = to_nd_region(dev->parent);
312 const char *pol = nd_region->ro ? "only" : "write";
313
314 if (nd_region->ro == get_disk_ro(disk))
315 return 0;
316
317 dev_info(dev, "%s read-%s, marking %s read-%s\n",
318 dev_name(&nd_region->dev), pol, disk->disk_name, pol);
319 set_disk_ro(disk, nd_region->ro);
320
321 return 0;
322
323}
324EXPORT_SYMBOL(nvdimm_revalidate_disk);
325
4d88a97a
DW
326static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
327 char *buf)
328{
329 return sprintf(buf, ND_DEVICE_MODALIAS_FMT "\n",
330 to_nd_device_type(dev));
331}
332static DEVICE_ATTR_RO(modalias);
333
334static ssize_t devtype_show(struct device *dev, struct device_attribute *attr,
335 char *buf)
336{
337 return sprintf(buf, "%s\n", dev->type->name);
338}
339static DEVICE_ATTR_RO(devtype);
340
341static struct attribute *nd_device_attributes[] = {
342 &dev_attr_modalias.attr,
343 &dev_attr_devtype.attr,
344 NULL,
345};
346
347/**
348 * nd_device_attribute_group - generic attributes for all devices on an nd bus
349 */
350struct attribute_group nd_device_attribute_group = {
351 .attrs = nd_device_attributes,
e6dfb2de 352};
4d88a97a 353EXPORT_SYMBOL_GPL(nd_device_attribute_group);
e6dfb2de 354
74ae66c3
TK
355static ssize_t numa_node_show(struct device *dev,
356 struct device_attribute *attr, char *buf)
357{
358 return sprintf(buf, "%d\n", dev_to_node(dev));
359}
360static DEVICE_ATTR_RO(numa_node);
361
362static struct attribute *nd_numa_attributes[] = {
363 &dev_attr_numa_node.attr,
364 NULL,
365};
366
367static umode_t nd_numa_attr_visible(struct kobject *kobj, struct attribute *a,
368 int n)
369{
370 if (!IS_ENABLED(CONFIG_NUMA))
371 return 0;
372
373 return a->mode;
374}
375
376/**
377 * nd_numa_attribute_group - NUMA attributes for all devices on an nd bus
378 */
379struct attribute_group nd_numa_attribute_group = {
380 .attrs = nd_numa_attributes,
381 .is_visible = nd_numa_attr_visible,
382};
383EXPORT_SYMBOL_GPL(nd_numa_attribute_group);
384
45def22c
DW
385int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus)
386{
387 dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id);
388 struct device *dev;
389
390 dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus,
391 "ndctl%d", nvdimm_bus->id);
392
393 if (IS_ERR(dev)) {
394 dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n",
395 nvdimm_bus->id, PTR_ERR(dev));
396 return PTR_ERR(dev);
397 }
398 return 0;
399}
400
401void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus)
402{
403 device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id));
404}
405
62232e45
DW
406static const struct nd_cmd_desc __nd_cmd_dimm_descs[] = {
407 [ND_CMD_IMPLEMENTED] = { },
408 [ND_CMD_SMART] = {
409 .out_num = 2,
21129112 410 .out_sizes = { 4, 128, },
62232e45
DW
411 },
412 [ND_CMD_SMART_THRESHOLD] = {
413 .out_num = 2,
414 .out_sizes = { 4, 8, },
415 },
416 [ND_CMD_DIMM_FLAGS] = {
417 .out_num = 2,
418 .out_sizes = { 4, 4 },
419 },
420 [ND_CMD_GET_CONFIG_SIZE] = {
421 .out_num = 3,
422 .out_sizes = { 4, 4, 4, },
423 },
424 [ND_CMD_GET_CONFIG_DATA] = {
425 .in_num = 2,
426 .in_sizes = { 4, 4, },
427 .out_num = 2,
428 .out_sizes = { 4, UINT_MAX, },
429 },
430 [ND_CMD_SET_CONFIG_DATA] = {
431 .in_num = 3,
432 .in_sizes = { 4, 4, UINT_MAX, },
433 .out_num = 1,
434 .out_sizes = { 4, },
435 },
436 [ND_CMD_VENDOR] = {
437 .in_num = 3,
438 .in_sizes = { 4, 4, UINT_MAX, },
439 .out_num = 3,
440 .out_sizes = { 4, 4, UINT_MAX, },
441 },
31eca76b
DW
442 [ND_CMD_CALL] = {
443 .in_num = 2,
444 .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
445 .out_num = 1,
446 .out_sizes = { UINT_MAX, },
447 },
62232e45
DW
448};
449
450const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd)
451{
452 if (cmd < ARRAY_SIZE(__nd_cmd_dimm_descs))
453 return &__nd_cmd_dimm_descs[cmd];
454 return NULL;
455}
456EXPORT_SYMBOL_GPL(nd_cmd_dimm_desc);
457
458static const struct nd_cmd_desc __nd_cmd_bus_descs[] = {
459 [ND_CMD_IMPLEMENTED] = { },
460 [ND_CMD_ARS_CAP] = {
461 .in_num = 2,
462 .in_sizes = { 8, 8, },
4577b066
DW
463 .out_num = 4,
464 .out_sizes = { 4, 4, 4, 4, },
62232e45
DW
465 },
466 [ND_CMD_ARS_START] = {
4577b066
DW
467 .in_num = 5,
468 .in_sizes = { 8, 8, 2, 1, 5, },
469 .out_num = 2,
470 .out_sizes = { 4, 4, },
62232e45
DW
471 },
472 [ND_CMD_ARS_STATUS] = {
747ffe11
DW
473 .out_num = 3,
474 .out_sizes = { 4, 4, UINT_MAX, },
62232e45 475 },
d4f32367
DW
476 [ND_CMD_CLEAR_ERROR] = {
477 .in_num = 2,
478 .in_sizes = { 8, 8, },
479 .out_num = 3,
480 .out_sizes = { 4, 4, 8, },
481 },
31eca76b
DW
482 [ND_CMD_CALL] = {
483 .in_num = 2,
484 .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
485 .out_num = 1,
486 .out_sizes = { UINT_MAX, },
487 },
62232e45
DW
488};
489
490const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd)
491{
492 if (cmd < ARRAY_SIZE(__nd_cmd_bus_descs))
493 return &__nd_cmd_bus_descs[cmd];
494 return NULL;
495}
496EXPORT_SYMBOL_GPL(nd_cmd_bus_desc);
497
498u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
499 const struct nd_cmd_desc *desc, int idx, void *buf)
500{
501 if (idx >= desc->in_num)
502 return UINT_MAX;
503
504 if (desc->in_sizes[idx] < UINT_MAX)
505 return desc->in_sizes[idx];
506
507 if (nvdimm && cmd == ND_CMD_SET_CONFIG_DATA && idx == 2) {
508 struct nd_cmd_set_config_hdr *hdr = buf;
509
510 return hdr->in_length;
511 } else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) {
512 struct nd_cmd_vendor_hdr *hdr = buf;
513
514 return hdr->in_length;
31eca76b
DW
515 } else if (cmd == ND_CMD_CALL) {
516 struct nd_cmd_pkg *pkg = buf;
517
518 return pkg->nd_size_in;
62232e45
DW
519 }
520
521 return UINT_MAX;
522}
523EXPORT_SYMBOL_GPL(nd_cmd_in_size);
524
525u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
526 const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
527 const u32 *out_field)
528{
529 if (idx >= desc->out_num)
530 return UINT_MAX;
531
532 if (desc->out_sizes[idx] < UINT_MAX)
533 return desc->out_sizes[idx];
534
535 if (nvdimm && cmd == ND_CMD_GET_CONFIG_DATA && idx == 1)
536 return in_field[1];
537 else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2)
538 return out_field[1];
747ffe11
DW
539 else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2)
540 return out_field[1] - 8;
31eca76b
DW
541 else if (cmd == ND_CMD_CALL) {
542 struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field;
543
544 return pkg->nd_size_out;
545 }
546
62232e45
DW
547
548 return UINT_MAX;
549}
550EXPORT_SYMBOL_GPL(nd_cmd_out_size);
551
bf9bccc1 552void wait_nvdimm_bus_probe_idle(struct device *dev)
eaf96153 553{
bf9bccc1
DW
554 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
555
eaf96153
DW
556 do {
557 if (nvdimm_bus->probe_active == 0)
558 break;
559 nvdimm_bus_unlock(&nvdimm_bus->dev);
560 wait_event(nvdimm_bus->probe_wait,
561 nvdimm_bus->probe_active == 0);
562 nvdimm_bus_lock(&nvdimm_bus->dev);
563 } while (true);
564}
565
d4f32367
DW
566static int pmem_active(struct device *dev, void *data)
567{
568 if (is_nd_pmem(dev) && dev->driver)
569 return -EBUSY;
570 return 0;
571}
572
eaf96153 573/* set_config requires an idle interleave set */
87bf572e
DW
574static int nd_cmd_clear_to_send(struct nvdimm_bus *nvdimm_bus,
575 struct nvdimm *nvdimm, unsigned int cmd)
eaf96153 576{
87bf572e
DW
577 struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
578
579 /* ask the bus provider if it would like to block this request */
580 if (nd_desc->clear_to_send) {
581 int rc = nd_desc->clear_to_send(nd_desc, nvdimm, cmd);
582
583 if (rc)
584 return rc;
585 }
eaf96153 586
d4f32367
DW
587 /* require clear error to go through the pmem driver */
588 if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR)
589 return device_for_each_child(&nvdimm_bus->dev, NULL,
590 pmem_active);
591
eaf96153
DW
592 if (!nvdimm || cmd != ND_CMD_SET_CONFIG_DATA)
593 return 0;
594
87bf572e 595 /* prevent label manipulation while the kernel owns label updates */
bf9bccc1 596 wait_nvdimm_bus_probe_idle(&nvdimm_bus->dev);
eaf96153
DW
597 if (atomic_read(&nvdimm->busy))
598 return -EBUSY;
599 return 0;
600}
601
62232e45
DW
602static int __nd_ioctl(struct nvdimm_bus *nvdimm_bus, struct nvdimm *nvdimm,
603 int read_only, unsigned int ioctl_cmd, unsigned long arg)
604{
605 struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
606 size_t buf_len = 0, in_len = 0, out_len = 0;
607 static char out_env[ND_CMD_MAX_ENVELOPE];
608 static char in_env[ND_CMD_MAX_ENVELOPE];
609 const struct nd_cmd_desc *desc = NULL;
610 unsigned int cmd = _IOC_NR(ioctl_cmd);
611 void __user *p = (void __user *) arg;
612 struct device *dev = &nvdimm_bus->dev;
31eca76b 613 struct nd_cmd_pkg pkg;
62232e45 614 const char *cmd_name, *dimm_name;
e3654eca 615 unsigned long cmd_mask;
62232e45
DW
616 void *buf;
617 int rc, i;
618
619 if (nvdimm) {
620 desc = nd_cmd_dimm_desc(cmd);
621 cmd_name = nvdimm_cmd_name(cmd);
e3654eca 622 cmd_mask = nvdimm->cmd_mask;
62232e45
DW
623 dimm_name = dev_name(&nvdimm->dev);
624 } else {
625 desc = nd_cmd_bus_desc(cmd);
626 cmd_name = nvdimm_bus_cmd_name(cmd);
e3654eca 627 cmd_mask = nd_desc->cmd_mask;
62232e45
DW
628 dimm_name = "bus";
629 }
630
31eca76b
DW
631 if (cmd == ND_CMD_CALL) {
632 if (copy_from_user(&pkg, p, sizeof(pkg)))
633 return -EFAULT;
634 }
635
62232e45 636 if (!desc || (desc->out_num + desc->in_num == 0) ||
e3654eca 637 !test_bit(cmd, &cmd_mask))
62232e45
DW
638 return -ENOTTY;
639
640 /* fail write commands (when read-only) */
641 if (read_only)
07accfa9
JH
642 switch (cmd) {
643 case ND_CMD_VENDOR:
644 case ND_CMD_SET_CONFIG_DATA:
645 case ND_CMD_ARS_START:
d4f32367 646 case ND_CMD_CLEAR_ERROR:
31eca76b 647 case ND_CMD_CALL:
62232e45
DW
648 dev_dbg(&nvdimm_bus->dev, "'%s' command while read-only.\n",
649 nvdimm ? nvdimm_cmd_name(cmd)
650 : nvdimm_bus_cmd_name(cmd));
651 return -EPERM;
652 default:
653 break;
654 }
655
656 /* process an input envelope */
657 for (i = 0; i < desc->in_num; i++) {
658 u32 in_size, copy;
659
660 in_size = nd_cmd_in_size(nvdimm, cmd, desc, i, in_env);
661 if (in_size == UINT_MAX) {
662 dev_err(dev, "%s:%s unknown input size cmd: %s field: %d\n",
663 __func__, dimm_name, cmd_name, i);
664 return -ENXIO;
665 }
62232e45
DW
666 if (in_len < sizeof(in_env))
667 copy = min_t(u32, sizeof(in_env) - in_len, in_size);
668 else
669 copy = 0;
670 if (copy && copy_from_user(&in_env[in_len], p + in_len, copy))
671 return -EFAULT;
672 in_len += in_size;
673 }
674
31eca76b
DW
675 if (cmd == ND_CMD_CALL) {
676 dev_dbg(dev, "%s:%s, idx: %llu, in: %zu, out: %zu, len %zu\n",
677 __func__, dimm_name, pkg.nd_command,
678 in_len, out_len, buf_len);
679
680 for (i = 0; i < ARRAY_SIZE(pkg.nd_reserved2); i++)
681 if (pkg.nd_reserved2[i])
682 return -EINVAL;
683 }
684
62232e45
DW
685 /* process an output envelope */
686 for (i = 0; i < desc->out_num; i++) {
687 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i,
688 (u32 *) in_env, (u32 *) out_env);
689 u32 copy;
690
691 if (out_size == UINT_MAX) {
692 dev_dbg(dev, "%s:%s unknown output size cmd: %s field: %d\n",
693 __func__, dimm_name, cmd_name, i);
694 return -EFAULT;
695 }
62232e45
DW
696 if (out_len < sizeof(out_env))
697 copy = min_t(u32, sizeof(out_env) - out_len, out_size);
698 else
699 copy = 0;
700 if (copy && copy_from_user(&out_env[out_len],
701 p + in_len + out_len, copy))
702 return -EFAULT;
703 out_len += out_size;
704 }
705
706 buf_len = out_len + in_len;
62232e45
DW
707 if (buf_len > ND_IOCTL_MAX_BUFLEN) {
708 dev_dbg(dev, "%s:%s cmd: %s buf_len: %zu > %d\n", __func__,
709 dimm_name, cmd_name, buf_len,
710 ND_IOCTL_MAX_BUFLEN);
711 return -EINVAL;
712 }
713
714 buf = vmalloc(buf_len);
715 if (!buf)
716 return -ENOMEM;
717
718 if (copy_from_user(buf, p, buf_len)) {
719 rc = -EFAULT;
720 goto out;
721 }
722
eaf96153 723 nvdimm_bus_lock(&nvdimm_bus->dev);
87bf572e 724 rc = nd_cmd_clear_to_send(nvdimm_bus, nvdimm, cmd);
eaf96153
DW
725 if (rc)
726 goto out_unlock;
727
aef25338 728 rc = nd_desc->ndctl(nd_desc, nvdimm, cmd, buf, buf_len, NULL);
62232e45 729 if (rc < 0)
eaf96153 730 goto out_unlock;
62232e45
DW
731 if (copy_to_user(p, buf, buf_len))
732 rc = -EFAULT;
eaf96153
DW
733 out_unlock:
734 nvdimm_bus_unlock(&nvdimm_bus->dev);
62232e45
DW
735 out:
736 vfree(buf);
737 return rc;
738}
739
45def22c
DW
740static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
741{
62232e45 742 long id = (long) file->private_data;
4dc0e7be 743 int rc = -ENXIO, ro;
62232e45
DW
744 struct nvdimm_bus *nvdimm_bus;
745
4dc0e7be 746 ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
62232e45
DW
747 mutex_lock(&nvdimm_bus_list_mutex);
748 list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
749 if (nvdimm_bus->id == id) {
4dc0e7be 750 rc = __nd_ioctl(nvdimm_bus, NULL, ro, cmd, arg);
62232e45
DW
751 break;
752 }
753 }
754 mutex_unlock(&nvdimm_bus_list_mutex);
755
756 return rc;
757}
758
759static int match_dimm(struct device *dev, void *data)
760{
761 long id = (long) data;
762
763 if (is_nvdimm(dev)) {
764 struct nvdimm *nvdimm = to_nvdimm(dev);
765
766 return nvdimm->id == id;
767 }
768
769 return 0;
770}
771
772static long nvdimm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
773{
4dc0e7be 774 int rc = -ENXIO, ro;
62232e45
DW
775 struct nvdimm_bus *nvdimm_bus;
776
4dc0e7be 777 ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
62232e45
DW
778 mutex_lock(&nvdimm_bus_list_mutex);
779 list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
780 struct device *dev = device_find_child(&nvdimm_bus->dev,
781 file->private_data, match_dimm);
782 struct nvdimm *nvdimm;
783
784 if (!dev)
785 continue;
786
787 nvdimm = to_nvdimm(dev);
4dc0e7be 788 rc = __nd_ioctl(nvdimm_bus, nvdimm, ro, cmd, arg);
62232e45
DW
789 put_device(dev);
790 break;
791 }
792 mutex_unlock(&nvdimm_bus_list_mutex);
793
794 return rc;
795}
796
797static int nd_open(struct inode *inode, struct file *file)
798{
799 long minor = iminor(inode);
800
801 file->private_data = (void *) minor;
802 return 0;
45def22c
DW
803}
804
805static const struct file_operations nvdimm_bus_fops = {
806 .owner = THIS_MODULE,
62232e45 807 .open = nd_open,
45def22c
DW
808 .unlocked_ioctl = nd_ioctl,
809 .compat_ioctl = nd_ioctl,
810 .llseek = noop_llseek,
811};
812
62232e45
DW
813static const struct file_operations nvdimm_fops = {
814 .owner = THIS_MODULE,
815 .open = nd_open,
816 .unlocked_ioctl = nvdimm_ioctl,
817 .compat_ioctl = nvdimm_ioctl,
818 .llseek = noop_llseek,
819};
820
45def22c
DW
821int __init nvdimm_bus_init(void)
822{
823 int rc;
824
e6dfb2de
DW
825 rc = bus_register(&nvdimm_bus_type);
826 if (rc)
827 return rc;
828
45def22c
DW
829 rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops);
830 if (rc < 0)
62232e45 831 goto err_bus_chrdev;
45def22c
DW
832 nvdimm_bus_major = rc;
833
62232e45
DW
834 rc = register_chrdev(0, "dimmctl", &nvdimm_fops);
835 if (rc < 0)
836 goto err_dimm_chrdev;
837 nvdimm_major = rc;
838
45def22c 839 nd_class = class_create(THIS_MODULE, "nd");
daa1dee4
AL
840 if (IS_ERR(nd_class)) {
841 rc = PTR_ERR(nd_class);
45def22c 842 goto err_class;
daa1dee4 843 }
45def22c
DW
844
845 return 0;
846
847 err_class:
62232e45
DW
848 unregister_chrdev(nvdimm_major, "dimmctl");
849 err_dimm_chrdev:
45def22c 850 unregister_chrdev(nvdimm_bus_major, "ndctl");
62232e45 851 err_bus_chrdev:
e6dfb2de 852 bus_unregister(&nvdimm_bus_type);
45def22c
DW
853
854 return rc;
855}
856
4d88a97a 857void nvdimm_bus_exit(void)
45def22c
DW
858{
859 class_destroy(nd_class);
860 unregister_chrdev(nvdimm_bus_major, "ndctl");
62232e45 861 unregister_chrdev(nvdimm_major, "dimmctl");
e6dfb2de 862 bus_unregister(&nvdimm_bus_type);
45def22c 863}
This page took 0.134837 seconds and 5 git commands to generate.