Thomas Gleixner | 5b497af | 2019-05-29 07:18:09 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright(c) 2013-2015 Intel Corporation. All rights reserved. |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 4 | */ |
| 5 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 6 | #include <linux/libnvdimm.h> |
Vishal Verma | 0930a75 | 2017-08-30 19:36:02 -0600 | [diff] [blame] | 7 | #include <linux/sched/mm.h> |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 8 | #include <linux/vmalloc.h> |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 9 | #include <linux/uaccess.h> |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 10 | #include <linux/module.h> |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 11 | #include <linux/blkdev.h> |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 12 | #include <linux/fcntl.h> |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 13 | #include <linux/async.h> |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 14 | #include <linux/genhd.h> |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 15 | #include <linux/ndctl.h> |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 16 | #include <linux/sched.h> |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 17 | #include <linux/slab.h> |
Alexander Duyck | af87b9a | 2019-01-22 10:39:47 -0800 | [diff] [blame] | 18 | #include <linux/cpu.h> |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 19 | #include <linux/fs.h> |
| 20 | #include <linux/io.h> |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 21 | #include <linux/mm.h> |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 22 | #include <linux/nd.h> |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 23 | #include "nd-core.h" |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 24 | #include "nd.h" |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 25 | #include "pfn.h" |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 26 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 27 | int nvdimm_major; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 28 | static int nvdimm_bus_major; |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 29 | struct class *nd_class; |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 30 | static DEFINE_IDA(nd_ida); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 31 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 32 | static int to_nd_device_type(struct device *dev) |
| 33 | { |
| 34 | if (is_nvdimm(dev)) |
| 35 | return ND_DEVICE_DIMM; |
Dan Williams | c9e582a | 2017-05-29 23:12:19 -0700 | [diff] [blame] | 36 | else if (is_memory(dev)) |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 37 | return ND_DEVICE_REGION_PMEM; |
| 38 | else if (is_nd_blk(dev)) |
| 39 | return ND_DEVICE_REGION_BLK; |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 40 | else if (is_nd_dax(dev)) |
| 41 | return ND_DEVICE_DAX_PMEM; |
Dan Williams | c9e582a | 2017-05-29 23:12:19 -0700 | [diff] [blame] | 42 | else if (is_nd_region(dev->parent)) |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 43 | return nd_region_to_nstype(to_nd_region(dev->parent)); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 44 | |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | static int nvdimm_bus_uevent(struct device *dev, struct kobj_uevent_env *env) |
| 49 | { |
| 50 | return add_uevent_var(env, "MODALIAS=" ND_DEVICE_MODALIAS_FMT, |
| 51 | to_nd_device_type(dev)); |
| 52 | } |
| 53 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 54 | static struct module *to_bus_provider(struct device *dev) |
| 55 | { |
| 56 | /* pin bus providers while regions are enabled */ |
Dan Williams | c9e582a | 2017-05-29 23:12:19 -0700 | [diff] [blame] | 57 | if (is_nd_region(dev)) { |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 58 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 59 | |
Dan Williams | bc9775d | 2016-07-21 20:03:19 -0700 | [diff] [blame] | 60 | return nvdimm_bus->nd_desc->module; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 61 | } |
| 62 | return NULL; |
| 63 | } |
| 64 | |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 65 | static void nvdimm_bus_probe_start(struct nvdimm_bus *nvdimm_bus) |
| 66 | { |
| 67 | nvdimm_bus_lock(&nvdimm_bus->dev); |
| 68 | nvdimm_bus->probe_active++; |
| 69 | nvdimm_bus_unlock(&nvdimm_bus->dev); |
| 70 | } |
| 71 | |
| 72 | static void nvdimm_bus_probe_end(struct nvdimm_bus *nvdimm_bus) |
| 73 | { |
| 74 | nvdimm_bus_lock(&nvdimm_bus->dev); |
| 75 | if (--nvdimm_bus->probe_active == 0) |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 76 | wake_up(&nvdimm_bus->wait); |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 77 | nvdimm_bus_unlock(&nvdimm_bus->dev); |
| 78 | } |
| 79 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 80 | static int nvdimm_bus_probe(struct device *dev) |
| 81 | { |
| 82 | struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 83 | struct module *provider = to_bus_provider(dev); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 84 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 85 | int rc; |
| 86 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 87 | if (!try_module_get(provider)) |
| 88 | return -ENXIO; |
| 89 | |
Dan Williams | 3f46833 | 2018-06-01 14:10:58 -0700 | [diff] [blame] | 90 | dev_dbg(&nvdimm_bus->dev, "START: %s.probe(%s)\n", |
| 91 | dev->driver->name, dev_name(dev)); |
| 92 | |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 93 | nvdimm_bus_probe_start(nvdimm_bus); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 94 | debug_nvdimm_lock(dev); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 95 | rc = nd_drv->probe(dev); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 96 | debug_nvdimm_unlock(dev); |
| 97 | |
Aneesh Kumar K.V | 1c97afa | 2019-09-05 21:15:58 +0530 | [diff] [blame] | 98 | if ((rc == 0 || rc == -EOPNOTSUPP) && |
| 99 | dev->parent && is_nd_region(dev->parent)) |
Dan Williams | a2d1c7a | 2019-09-05 21:15:57 +0530 | [diff] [blame] | 100 | nd_region_advance_seeds(to_nd_region(dev->parent), dev); |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 101 | nvdimm_bus_probe_end(nvdimm_bus); |
| 102 | |
Dan Williams | 3f46833 | 2018-06-01 14:10:58 -0700 | [diff] [blame] | 103 | dev_dbg(&nvdimm_bus->dev, "END: %s.probe(%s) = %d\n", dev->driver->name, |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 104 | dev_name(dev), rc); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 105 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 106 | if (rc != 0) |
| 107 | module_put(provider); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 108 | return rc; |
| 109 | } |
| 110 | |
| 111 | static int nvdimm_bus_remove(struct device *dev) |
| 112 | { |
| 113 | struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 114 | struct module *provider = to_bus_provider(dev); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 115 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
Dan Williams | 6cf9c5b | 2016-05-18 09:13:13 -0700 | [diff] [blame] | 116 | int rc = 0; |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 117 | |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 118 | if (nd_drv->remove) { |
| 119 | debug_nvdimm_lock(dev); |
Dan Williams | 6cf9c5b | 2016-05-18 09:13:13 -0700 | [diff] [blame] | 120 | rc = nd_drv->remove(dev); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 121 | debug_nvdimm_unlock(dev); |
| 122 | } |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 123 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 124 | dev_dbg(&nvdimm_bus->dev, "%s.remove(%s) = %d\n", dev->driver->name, |
| 125 | dev_name(dev), rc); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 126 | module_put(provider); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 127 | return rc; |
| 128 | } |
| 129 | |
Dan Williams | 476f848 | 2016-07-09 00:12:52 -0700 | [diff] [blame] | 130 | static void nvdimm_bus_shutdown(struct device *dev) |
| 131 | { |
| 132 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 133 | struct nd_device_driver *nd_drv = NULL; |
| 134 | |
| 135 | if (dev->driver) |
| 136 | nd_drv = to_nd_device_driver(dev->driver); |
| 137 | |
| 138 | if (nd_drv && nd_drv->shutdown) { |
| 139 | nd_drv->shutdown(dev); |
| 140 | dev_dbg(&nvdimm_bus->dev, "%s.shutdown(%s)\n", |
| 141 | dev->driver->name, dev_name(dev)); |
| 142 | } |
| 143 | } |
| 144 | |
Dan Williams | 7199946 | 2016-02-18 10:29:49 -0800 | [diff] [blame] | 145 | void nd_device_notify(struct device *dev, enum nvdimm_event event) |
| 146 | { |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 147 | nd_device_lock(dev); |
Dan Williams | 7199946 | 2016-02-18 10:29:49 -0800 | [diff] [blame] | 148 | if (dev->driver) { |
| 149 | struct nd_device_driver *nd_drv; |
| 150 | |
| 151 | nd_drv = to_nd_device_driver(dev->driver); |
| 152 | if (nd_drv->notify) |
| 153 | nd_drv->notify(dev, event); |
| 154 | } |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 155 | nd_device_unlock(dev); |
Dan Williams | 7199946 | 2016-02-18 10:29:49 -0800 | [diff] [blame] | 156 | } |
| 157 | EXPORT_SYMBOL(nd_device_notify); |
| 158 | |
| 159 | void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event) |
| 160 | { |
| 161 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev); |
| 162 | |
| 163 | if (!nvdimm_bus) |
| 164 | return; |
| 165 | |
| 166 | /* caller is responsible for holding a reference on the device */ |
| 167 | nd_device_notify(&nd_region->dev, event); |
| 168 | } |
| 169 | EXPORT_SYMBOL_GPL(nvdimm_region_notify); |
| 170 | |
Dan Williams | 23f4984 | 2017-04-29 15:24:03 -0700 | [diff] [blame] | 171 | struct clear_badblocks_context { |
| 172 | resource_size_t phys, cleared; |
| 173 | }; |
| 174 | |
| 175 | static int nvdimm_clear_badblocks_region(struct device *dev, void *data) |
| 176 | { |
| 177 | struct clear_badblocks_context *ctx = data; |
| 178 | struct nd_region *nd_region; |
| 179 | resource_size_t ndr_end; |
| 180 | sector_t sector; |
| 181 | |
| 182 | /* make sure device is a region */ |
Aneesh Kumar K.V | c42adf8 | 2019-09-19 14:03:55 +0530 | [diff] [blame] | 183 | if (!is_memory(dev)) |
Dan Williams | 23f4984 | 2017-04-29 15:24:03 -0700 | [diff] [blame] | 184 | return 0; |
| 185 | |
| 186 | nd_region = to_nd_region(dev); |
| 187 | ndr_end = nd_region->ndr_start + nd_region->ndr_size - 1; |
| 188 | |
| 189 | /* make sure we are in the region */ |
| 190 | if (ctx->phys < nd_region->ndr_start |
| 191 | || (ctx->phys + ctx->cleared) > ndr_end) |
| 192 | return 0; |
| 193 | |
| 194 | sector = (ctx->phys - nd_region->ndr_start) / 512; |
| 195 | badblocks_clear(&nd_region->bb, sector, ctx->cleared / 512); |
| 196 | |
Toshi Kani | 975750a | 2017-06-12 16:25:11 -0600 | [diff] [blame] | 197 | if (nd_region->bb_state) |
| 198 | sysfs_notify_dirent(nd_region->bb_state); |
| 199 | |
Dan Williams | 23f4984 | 2017-04-29 15:24:03 -0700 | [diff] [blame] | 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | static void nvdimm_clear_badblocks_regions(struct nvdimm_bus *nvdimm_bus, |
| 204 | phys_addr_t phys, u64 cleared) |
| 205 | { |
| 206 | struct clear_badblocks_context ctx = { |
| 207 | .phys = phys, |
| 208 | .cleared = cleared, |
| 209 | }; |
| 210 | |
| 211 | device_for_each_child(&nvdimm_bus->dev, &ctx, |
| 212 | nvdimm_clear_badblocks_region); |
| 213 | } |
| 214 | |
| 215 | static void nvdimm_account_cleared_poison(struct nvdimm_bus *nvdimm_bus, |
| 216 | phys_addr_t phys, u64 cleared) |
| 217 | { |
| 218 | if (cleared > 0) |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 219 | badrange_forget(&nvdimm_bus->badrange, phys, cleared); |
Dan Williams | 23f4984 | 2017-04-29 15:24:03 -0700 | [diff] [blame] | 220 | |
| 221 | if (cleared > 0 && cleared / 512) |
| 222 | nvdimm_clear_badblocks_regions(nvdimm_bus, phys, cleared); |
| 223 | } |
| 224 | |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 225 | long nvdimm_clear_poison(struct device *dev, phys_addr_t phys, |
| 226 | unsigned int len) |
| 227 | { |
| 228 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 229 | struct nvdimm_bus_descriptor *nd_desc; |
| 230 | struct nd_cmd_clear_error clear_err; |
| 231 | struct nd_cmd_ars_cap ars_cap; |
| 232 | u32 clear_err_unit, mask; |
Vishal Verma | 0930a75 | 2017-08-30 19:36:02 -0600 | [diff] [blame] | 233 | unsigned int noio_flag; |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 234 | int cmd_rc, rc; |
| 235 | |
| 236 | if (!nvdimm_bus) |
| 237 | return -ENXIO; |
| 238 | |
| 239 | nd_desc = nvdimm_bus->nd_desc; |
Dave Jiang | 1e8b8d9 | 2016-09-09 09:10:08 -0700 | [diff] [blame] | 240 | /* |
| 241 | * if ndctl does not exist, it's PMEM_LEGACY and |
| 242 | * we want to just pretend everything is handled. |
| 243 | */ |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 244 | if (!nd_desc->ndctl) |
Dave Jiang | 1e8b8d9 | 2016-09-09 09:10:08 -0700 | [diff] [blame] | 245 | return len; |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 246 | |
| 247 | memset(&ars_cap, 0, sizeof(ars_cap)); |
| 248 | ars_cap.address = phys; |
| 249 | ars_cap.length = len; |
Vishal Verma | 0930a75 | 2017-08-30 19:36:02 -0600 | [diff] [blame] | 250 | noio_flag = memalloc_noio_save(); |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 251 | rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, &ars_cap, |
| 252 | sizeof(ars_cap), &cmd_rc); |
Vishal Verma | 0930a75 | 2017-08-30 19:36:02 -0600 | [diff] [blame] | 253 | memalloc_noio_restore(noio_flag); |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 254 | if (rc < 0) |
| 255 | return rc; |
| 256 | if (cmd_rc < 0) |
| 257 | return cmd_rc; |
| 258 | clear_err_unit = ars_cap.clear_err_unit; |
| 259 | if (!clear_err_unit || !is_power_of_2(clear_err_unit)) |
| 260 | return -ENXIO; |
| 261 | |
| 262 | mask = clear_err_unit - 1; |
| 263 | if ((phys | len) & mask) |
| 264 | return -ENXIO; |
| 265 | memset(&clear_err, 0, sizeof(clear_err)); |
| 266 | clear_err.address = phys; |
| 267 | clear_err.length = len; |
Vishal Verma | 0930a75 | 2017-08-30 19:36:02 -0600 | [diff] [blame] | 268 | noio_flag = memalloc_noio_save(); |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 269 | rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_CLEAR_ERROR, &clear_err, |
| 270 | sizeof(clear_err), &cmd_rc); |
Vishal Verma | 0930a75 | 2017-08-30 19:36:02 -0600 | [diff] [blame] | 271 | memalloc_noio_restore(noio_flag); |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 272 | if (rc < 0) |
| 273 | return rc; |
| 274 | if (cmd_rc < 0) |
| 275 | return cmd_rc; |
Vishal Verma | e046114 | 2016-09-30 17:19:31 -0600 | [diff] [blame] | 276 | |
Dan Williams | 23f4984 | 2017-04-29 15:24:03 -0700 | [diff] [blame] | 277 | nvdimm_account_cleared_poison(nvdimm_bus, phys, clear_err.cleared); |
Toshi Kani | 8d13c02 | 2017-04-27 16:57:05 -0600 | [diff] [blame] | 278 | |
Dan Williams | 59e6473 | 2016-03-08 07:16:07 -0800 | [diff] [blame] | 279 | return clear_err.cleared; |
| 280 | } |
| 281 | EXPORT_SYMBOL_GPL(nvdimm_clear_poison); |
| 282 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 283 | static int nvdimm_bus_match(struct device *dev, struct device_driver *drv); |
| 284 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 285 | static struct bus_type nvdimm_bus_type = { |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 286 | .name = "nd", |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 287 | .uevent = nvdimm_bus_uevent, |
| 288 | .match = nvdimm_bus_match, |
| 289 | .probe = nvdimm_bus_probe, |
| 290 | .remove = nvdimm_bus_remove, |
Dan Williams | 476f848 | 2016-07-09 00:12:52 -0700 | [diff] [blame] | 291 | .shutdown = nvdimm_bus_shutdown, |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 292 | }; |
| 293 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 294 | static void nvdimm_bus_release(struct device *dev) |
| 295 | { |
| 296 | struct nvdimm_bus *nvdimm_bus; |
| 297 | |
| 298 | nvdimm_bus = container_of(dev, struct nvdimm_bus, dev); |
| 299 | ida_simple_remove(&nd_ida, nvdimm_bus->id); |
| 300 | kfree(nvdimm_bus); |
| 301 | } |
| 302 | |
Dan Williams | e755799a | 2019-11-12 17:08:56 -0800 | [diff] [blame] | 303 | static const struct device_type nvdimm_bus_dev_type = { |
| 304 | .release = nvdimm_bus_release, |
| 305 | .groups = nvdimm_bus_attribute_groups, |
| 306 | }; |
| 307 | |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 308 | bool is_nvdimm_bus(struct device *dev) |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 309 | { |
Dan Williams | e755799a | 2019-11-12 17:08:56 -0800 | [diff] [blame] | 310 | return dev->type == &nvdimm_bus_dev_type; |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev) |
| 314 | { |
| 315 | struct device *dev; |
| 316 | |
| 317 | for (dev = nd_dev; dev; dev = dev->parent) |
| 318 | if (is_nvdimm_bus(dev)) |
| 319 | break; |
| 320 | dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n"); |
| 321 | if (dev) |
| 322 | return to_nvdimm_bus(dev); |
| 323 | return NULL; |
| 324 | } |
| 325 | |
| 326 | struct nvdimm_bus *to_nvdimm_bus(struct device *dev) |
| 327 | { |
| 328 | struct nvdimm_bus *nvdimm_bus; |
| 329 | |
| 330 | nvdimm_bus = container_of(dev, struct nvdimm_bus, dev); |
| 331 | WARN_ON(!is_nvdimm_bus(dev)); |
| 332 | return nvdimm_bus; |
| 333 | } |
| 334 | EXPORT_SYMBOL_GPL(to_nvdimm_bus); |
| 335 | |
Dave Jiang | f298939 | 2018-12-05 23:39:29 -0800 | [diff] [blame] | 336 | struct nvdimm_bus *nvdimm_to_bus(struct nvdimm *nvdimm) |
| 337 | { |
| 338 | return to_nvdimm_bus(nvdimm->dev.parent); |
| 339 | } |
| 340 | EXPORT_SYMBOL_GPL(nvdimm_to_bus); |
| 341 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 342 | struct nvdimm_bus *nvdimm_bus_register(struct device *parent, |
| 343 | struct nvdimm_bus_descriptor *nd_desc) |
| 344 | { |
| 345 | struct nvdimm_bus *nvdimm_bus; |
| 346 | int rc; |
| 347 | |
| 348 | nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL); |
| 349 | if (!nvdimm_bus) |
| 350 | return NULL; |
| 351 | INIT_LIST_HEAD(&nvdimm_bus->list); |
| 352 | INIT_LIST_HEAD(&nvdimm_bus->mapping_list); |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 353 | init_waitqueue_head(&nvdimm_bus->wait); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 354 | nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 355 | if (nvdimm_bus->id < 0) { |
| 356 | kfree(nvdimm_bus); |
| 357 | return NULL; |
| 358 | } |
Ocean He | 9bf3aa4 | 2018-08-03 08:08:33 -0400 | [diff] [blame] | 359 | mutex_init(&nvdimm_bus->reconfig_mutex); |
| 360 | badrange_init(&nvdimm_bus->badrange); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 361 | nvdimm_bus->nd_desc = nd_desc; |
| 362 | nvdimm_bus->dev.parent = parent; |
Dan Williams | e755799a | 2019-11-12 17:08:56 -0800 | [diff] [blame] | 363 | nvdimm_bus->dev.type = &nvdimm_bus_dev_type; |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 364 | nvdimm_bus->dev.groups = nd_desc->attr_groups; |
| 365 | nvdimm_bus->dev.bus = &nvdimm_bus_type; |
Oliver O'Halloran | 1ff19f4 | 2018-04-06 15:21:13 +1000 | [diff] [blame] | 366 | nvdimm_bus->dev.of_node = nd_desc->of_node; |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 367 | dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id); |
| 368 | rc = device_register(&nvdimm_bus->dev); |
| 369 | if (rc) { |
| 370 | dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc); |
| 371 | goto err; |
| 372 | } |
| 373 | |
| 374 | return nvdimm_bus; |
| 375 | err: |
| 376 | put_device(&nvdimm_bus->dev); |
| 377 | return NULL; |
| 378 | } |
| 379 | EXPORT_SYMBOL_GPL(nvdimm_bus_register); |
| 380 | |
| 381 | void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus) |
| 382 | { |
| 383 | if (!nvdimm_bus) |
| 384 | return; |
| 385 | device_unregister(&nvdimm_bus->dev); |
| 386 | } |
| 387 | EXPORT_SYMBOL_GPL(nvdimm_bus_unregister); |
| 388 | |
| 389 | static int child_unregister(struct device *dev, void *data) |
| 390 | { |
| 391 | /* |
| 392 | * the singular ndctl class device per bus needs to be |
| 393 | * "device_destroy"ed, so skip it here |
| 394 | * |
| 395 | * i.e. remove classless children |
| 396 | */ |
| 397 | if (dev->class) |
Dave Jiang | 7d98809 | 2018-12-13 15:36:18 -0700 | [diff] [blame] | 398 | return 0; |
| 399 | |
| 400 | if (is_nvdimm(dev)) { |
| 401 | struct nvdimm *nvdimm = to_nvdimm(dev); |
| 402 | bool dev_put = false; |
| 403 | |
| 404 | /* We are shutting down. Make state frozen artificially. */ |
| 405 | nvdimm_bus_lock(dev); |
Dan Williams | d78c620 | 2019-08-26 17:54:54 -0700 | [diff] [blame] | 406 | set_bit(NVDIMM_SECURITY_FROZEN, &nvdimm->sec.flags); |
Dave Jiang | 7d98809 | 2018-12-13 15:36:18 -0700 | [diff] [blame] | 407 | if (test_and_clear_bit(NDD_WORK_PENDING, &nvdimm->flags)) |
| 408 | dev_put = true; |
| 409 | nvdimm_bus_unlock(dev); |
| 410 | cancel_delayed_work_sync(&nvdimm->dwork); |
| 411 | if (dev_put) |
| 412 | put_device(dev); |
| 413 | } |
| 414 | nd_device_unregister(dev, ND_SYNC); |
| 415 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 416 | return 0; |
| 417 | } |
| 418 | |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 419 | static void free_badrange_list(struct list_head *badrange_list) |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 420 | { |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 421 | struct badrange_entry *bre, *next; |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 422 | |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 423 | list_for_each_entry_safe(bre, next, badrange_list, list) { |
| 424 | list_del(&bre->list); |
| 425 | kfree(bre); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 426 | } |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 427 | list_del_init(badrange_list); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | static int nd_bus_remove(struct device *dev) |
| 431 | { |
| 432 | struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev); |
| 433 | |
| 434 | mutex_lock(&nvdimm_bus_list_mutex); |
| 435 | list_del_init(&nvdimm_bus->list); |
| 436 | mutex_unlock(&nvdimm_bus_list_mutex); |
| 437 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 438 | wait_event(nvdimm_bus->wait, |
| 439 | atomic_read(&nvdimm_bus->ioctl_active) == 0); |
| 440 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 441 | nd_synchronize(); |
| 442 | device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister); |
| 443 | |
Dave Jiang | aa9ad44 | 2017-08-23 12:48:26 -0700 | [diff] [blame] | 444 | spin_lock(&nvdimm_bus->badrange.lock); |
| 445 | free_badrange_list(&nvdimm_bus->badrange.list); |
| 446 | spin_unlock(&nvdimm_bus->badrange.lock); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 447 | |
| 448 | nvdimm_bus_destroy_ndctl(nvdimm_bus); |
| 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | |
| 453 | static int nd_bus_probe(struct device *dev) |
| 454 | { |
| 455 | struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev); |
| 456 | int rc; |
| 457 | |
| 458 | rc = nvdimm_bus_create_ndctl(nvdimm_bus); |
| 459 | if (rc) |
| 460 | return rc; |
| 461 | |
| 462 | mutex_lock(&nvdimm_bus_list_mutex); |
| 463 | list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list); |
| 464 | mutex_unlock(&nvdimm_bus_list_mutex); |
| 465 | |
| 466 | /* enable bus provider attributes to look up their local context */ |
| 467 | dev_set_drvdata(dev, nvdimm_bus->nd_desc); |
| 468 | |
| 469 | return 0; |
| 470 | } |
| 471 | |
| 472 | static struct nd_device_driver nd_bus_driver = { |
| 473 | .probe = nd_bus_probe, |
| 474 | .remove = nd_bus_remove, |
| 475 | .drv = { |
| 476 | .name = "nd_bus", |
| 477 | .suppress_bind_attrs = true, |
| 478 | .bus = &nvdimm_bus_type, |
| 479 | .owner = THIS_MODULE, |
| 480 | .mod_name = KBUILD_MODNAME, |
| 481 | }, |
| 482 | }; |
| 483 | |
| 484 | static int nvdimm_bus_match(struct device *dev, struct device_driver *drv) |
| 485 | { |
| 486 | struct nd_device_driver *nd_drv = to_nd_device_driver(drv); |
| 487 | |
| 488 | if (is_nvdimm_bus(dev) && nd_drv == &nd_bus_driver) |
| 489 | return true; |
| 490 | |
| 491 | return !!test_bit(to_nd_device_type(dev), &nd_drv->type); |
| 492 | } |
| 493 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 494 | static ASYNC_DOMAIN_EXCLUSIVE(nd_async_domain); |
| 495 | |
| 496 | void nd_synchronize(void) |
| 497 | { |
| 498 | async_synchronize_full_domain(&nd_async_domain); |
| 499 | } |
| 500 | EXPORT_SYMBOL_GPL(nd_synchronize); |
| 501 | |
| 502 | static void nd_async_device_register(void *d, async_cookie_t cookie) |
| 503 | { |
| 504 | struct device *dev = d; |
| 505 | |
| 506 | if (device_add(dev) != 0) { |
| 507 | dev_err(dev, "%s: failed\n", __func__); |
| 508 | put_device(dev); |
| 509 | } |
| 510 | put_device(dev); |
Alexander Duyck | b6eae0f | 2018-09-25 13:53:02 -0700 | [diff] [blame] | 511 | if (dev->parent) |
| 512 | put_device(dev->parent); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | static void nd_async_device_unregister(void *d, async_cookie_t cookie) |
| 516 | { |
| 517 | struct device *dev = d; |
| 518 | |
Dan Williams | 0ba1c63 | 2015-05-30 12:35:36 -0400 | [diff] [blame] | 519 | /* flush bus operations before delete */ |
| 520 | nvdimm_bus_lock(dev); |
| 521 | nvdimm_bus_unlock(dev); |
| 522 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 523 | device_unregister(dev); |
| 524 | put_device(dev); |
| 525 | } |
| 526 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 527 | void __nd_device_register(struct device *dev) |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 528 | { |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 529 | if (!dev) |
| 530 | return; |
Alexander Duyck | 1a091d1 | 2018-09-25 13:53:07 -0700 | [diff] [blame] | 531 | |
| 532 | /* |
| 533 | * Ensure that region devices always have their NUMA node set as |
| 534 | * early as possible. This way we are able to make certain that |
| 535 | * any memory associated with the creation and the creation |
| 536 | * itself of the region is associated with the correct node. |
| 537 | */ |
| 538 | if (is_nd_region(dev)) |
| 539 | set_dev_node(dev, to_nd_region(dev)->numa_node); |
| 540 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 541 | dev->bus = &nvdimm_bus_type; |
Alexander Duyck | af87b9a | 2019-01-22 10:39:47 -0800 | [diff] [blame] | 542 | if (dev->parent) { |
Alexander Duyck | b6eae0f | 2018-09-25 13:53:02 -0700 | [diff] [blame] | 543 | get_device(dev->parent); |
Alexander Duyck | af87b9a | 2019-01-22 10:39:47 -0800 | [diff] [blame] | 544 | if (dev_to_node(dev) == NUMA_NO_NODE) |
| 545 | set_dev_node(dev, dev_to_node(dev->parent)); |
| 546 | } |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 547 | get_device(dev); |
Alexander Duyck | af87b9a | 2019-01-22 10:39:47 -0800 | [diff] [blame] | 548 | |
| 549 | async_schedule_dev_domain(nd_async_device_register, dev, |
| 550 | &nd_async_domain); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 551 | } |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 552 | |
| 553 | void nd_device_register(struct device *dev) |
| 554 | { |
| 555 | device_initialize(dev); |
| 556 | __nd_device_register(dev); |
| 557 | } |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 558 | EXPORT_SYMBOL(nd_device_register); |
| 559 | |
| 560 | void nd_device_unregister(struct device *dev, enum nd_async_mode mode) |
| 561 | { |
Dan Williams | 8aac0e2 | 2019-07-17 18:07:58 -0700 | [diff] [blame] | 562 | bool killed; |
| 563 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 564 | switch (mode) { |
| 565 | case ND_ASYNC: |
Dan Williams | 8aac0e2 | 2019-07-17 18:07:58 -0700 | [diff] [blame] | 566 | /* |
| 567 | * In the async case this is being triggered with the |
| 568 | * device lock held and the unregistration work needs to |
| 569 | * be moved out of line iff this is thread has won the |
| 570 | * race to schedule the deletion. |
| 571 | */ |
| 572 | if (!kill_device(dev)) |
| 573 | return; |
| 574 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 575 | get_device(dev); |
| 576 | async_schedule_domain(nd_async_device_unregister, dev, |
| 577 | &nd_async_domain); |
| 578 | break; |
| 579 | case ND_SYNC: |
Dan Williams | 8aac0e2 | 2019-07-17 18:07:58 -0700 | [diff] [blame] | 580 | /* |
| 581 | * In the sync case the device is being unregistered due |
| 582 | * to a state change of the parent. Claim the kill state |
| 583 | * to synchronize against other unregistration requests, |
| 584 | * or otherwise let the async path handle it if the |
| 585 | * unregistration was already queued. |
| 586 | */ |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 587 | nd_device_lock(dev); |
Dan Williams | 8aac0e2 | 2019-07-17 18:07:58 -0700 | [diff] [blame] | 588 | killed = kill_device(dev); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 589 | nd_device_unlock(dev); |
Dan Williams | 8aac0e2 | 2019-07-17 18:07:58 -0700 | [diff] [blame] | 590 | |
| 591 | if (!killed) |
| 592 | return; |
| 593 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 594 | nd_synchronize(); |
| 595 | device_unregister(dev); |
| 596 | break; |
| 597 | } |
| 598 | } |
| 599 | EXPORT_SYMBOL(nd_device_unregister); |
| 600 | |
| 601 | /** |
| 602 | * __nd_driver_register() - register a region or a namespace driver |
| 603 | * @nd_drv: driver to register |
| 604 | * @owner: automatically set by nd_driver_register() macro |
| 605 | * @mod_name: automatically set by nd_driver_register() macro |
| 606 | */ |
| 607 | int __nd_driver_register(struct nd_device_driver *nd_drv, struct module *owner, |
| 608 | const char *mod_name) |
| 609 | { |
| 610 | struct device_driver *drv = &nd_drv->drv; |
| 611 | |
| 612 | if (!nd_drv->type) { |
Sakari Ailus | d75f773 | 2019-03-25 21:32:28 +0200 | [diff] [blame] | 613 | pr_debug("driver type bitmask not set (%ps)\n", |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 614 | __builtin_return_address(0)); |
| 615 | return -EINVAL; |
| 616 | } |
| 617 | |
Dan Williams | 6cf9c5b | 2016-05-18 09:13:13 -0700 | [diff] [blame] | 618 | if (!nd_drv->probe) { |
| 619 | pr_debug("%s ->probe() must be specified\n", mod_name); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 620 | return -EINVAL; |
| 621 | } |
| 622 | |
| 623 | drv->bus = &nvdimm_bus_type; |
| 624 | drv->owner = owner; |
| 625 | drv->mod_name = mod_name; |
| 626 | |
| 627 | return driver_register(drv); |
| 628 | } |
| 629 | EXPORT_SYMBOL(__nd_driver_register); |
| 630 | |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 631 | int nvdimm_revalidate_disk(struct gendisk *disk) |
| 632 | { |
Dan Williams | 52c44d9 | 2016-06-15 19:43:07 -0700 | [diff] [blame] | 633 | struct device *dev = disk_to_dev(disk)->parent; |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 634 | struct nd_region *nd_region = to_nd_region(dev->parent); |
Robert Elliott | 254a4cd | 2018-05-31 18:36:36 -0500 | [diff] [blame] | 635 | int disk_ro = get_disk_ro(disk); |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 636 | |
Robert Elliott | 254a4cd | 2018-05-31 18:36:36 -0500 | [diff] [blame] | 637 | /* |
| 638 | * Upgrade to read-only if the region is read-only preserve as |
| 639 | * read-only if the disk is already read-only. |
| 640 | */ |
| 641 | if (disk_ro || nd_region->ro == disk_ro) |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 642 | return 0; |
| 643 | |
Robert Elliott | 254a4cd | 2018-05-31 18:36:36 -0500 | [diff] [blame] | 644 | dev_info(dev, "%s read-only, marking %s read-only\n", |
| 645 | dev_name(&nd_region->dev), disk->disk_name); |
| 646 | set_disk_ro(disk, 1); |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 647 | |
| 648 | return 0; |
| 649 | |
| 650 | } |
| 651 | EXPORT_SYMBOL(nvdimm_revalidate_disk); |
| 652 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 653 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, |
| 654 | char *buf) |
| 655 | { |
| 656 | return sprintf(buf, ND_DEVICE_MODALIAS_FMT "\n", |
| 657 | to_nd_device_type(dev)); |
| 658 | } |
| 659 | static DEVICE_ATTR_RO(modalias); |
| 660 | |
| 661 | static ssize_t devtype_show(struct device *dev, struct device_attribute *attr, |
| 662 | char *buf) |
| 663 | { |
| 664 | return sprintf(buf, "%s\n", dev->type->name); |
| 665 | } |
| 666 | static DEVICE_ATTR_RO(devtype); |
| 667 | |
| 668 | static struct attribute *nd_device_attributes[] = { |
| 669 | &dev_attr_modalias.attr, |
| 670 | &dev_attr_devtype.attr, |
| 671 | NULL, |
| 672 | }; |
| 673 | |
Qian Cai | c01dafa | 2019-05-16 12:04:53 -0400 | [diff] [blame] | 674 | /* |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 675 | * nd_device_attribute_group - generic attributes for all devices on an nd bus |
| 676 | */ |
Dan Williams | adbb682 | 2019-11-12 17:00:24 -0800 | [diff] [blame] | 677 | const struct attribute_group nd_device_attribute_group = { |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 678 | .attrs = nd_device_attributes, |
| 679 | }; |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 680 | |
Toshi Kani | 74ae66c | 2015-06-19 12:18:34 -0600 | [diff] [blame] | 681 | static ssize_t numa_node_show(struct device *dev, |
| 682 | struct device_attribute *attr, char *buf) |
| 683 | { |
| 684 | return sprintf(buf, "%d\n", dev_to_node(dev)); |
| 685 | } |
| 686 | static DEVICE_ATTR_RO(numa_node); |
| 687 | |
| 688 | static struct attribute *nd_numa_attributes[] = { |
| 689 | &dev_attr_numa_node.attr, |
| 690 | NULL, |
| 691 | }; |
| 692 | |
| 693 | static umode_t nd_numa_attr_visible(struct kobject *kobj, struct attribute *a, |
| 694 | int n) |
| 695 | { |
| 696 | if (!IS_ENABLED(CONFIG_NUMA)) |
| 697 | return 0; |
| 698 | |
| 699 | return a->mode; |
| 700 | } |
| 701 | |
Qian Cai | c01dafa | 2019-05-16 12:04:53 -0400 | [diff] [blame] | 702 | /* |
Toshi Kani | 74ae66c | 2015-06-19 12:18:34 -0600 | [diff] [blame] | 703 | * nd_numa_attribute_group - NUMA attributes for all devices on an nd bus |
| 704 | */ |
Dan Williams | e2f6a0e | 2019-11-19 09:51:54 -0800 | [diff] [blame] | 705 | const struct attribute_group nd_numa_attribute_group = { |
Toshi Kani | 74ae66c | 2015-06-19 12:18:34 -0600 | [diff] [blame] | 706 | .attrs = nd_numa_attributes, |
| 707 | .is_visible = nd_numa_attr_visible, |
| 708 | }; |
Toshi Kani | 74ae66c | 2015-06-19 12:18:34 -0600 | [diff] [blame] | 709 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 710 | int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus) |
| 711 | { |
| 712 | dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id); |
| 713 | struct device *dev; |
| 714 | |
| 715 | dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus, |
| 716 | "ndctl%d", nvdimm_bus->id); |
| 717 | |
Dan Williams | 4258895 | 2016-05-27 13:28:31 -0700 | [diff] [blame] | 718 | if (IS_ERR(dev)) |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 719 | dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n", |
| 720 | nvdimm_bus->id, PTR_ERR(dev)); |
Dan Williams | 4258895 | 2016-05-27 13:28:31 -0700 | [diff] [blame] | 721 | return PTR_ERR_OR_ZERO(dev); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus) |
| 725 | { |
| 726 | device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id)); |
| 727 | } |
| 728 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 729 | static const struct nd_cmd_desc __nd_cmd_dimm_descs[] = { |
| 730 | [ND_CMD_IMPLEMENTED] = { }, |
| 731 | [ND_CMD_SMART] = { |
| 732 | .out_num = 2, |
Dan Williams | 2112911 | 2016-04-07 19:58:44 -0700 | [diff] [blame] | 733 | .out_sizes = { 4, 128, }, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 734 | }, |
| 735 | [ND_CMD_SMART_THRESHOLD] = { |
| 736 | .out_num = 2, |
| 737 | .out_sizes = { 4, 8, }, |
| 738 | }, |
| 739 | [ND_CMD_DIMM_FLAGS] = { |
| 740 | .out_num = 2, |
| 741 | .out_sizes = { 4, 4 }, |
| 742 | }, |
| 743 | [ND_CMD_GET_CONFIG_SIZE] = { |
| 744 | .out_num = 3, |
| 745 | .out_sizes = { 4, 4, 4, }, |
| 746 | }, |
| 747 | [ND_CMD_GET_CONFIG_DATA] = { |
| 748 | .in_num = 2, |
| 749 | .in_sizes = { 4, 4, }, |
| 750 | .out_num = 2, |
| 751 | .out_sizes = { 4, UINT_MAX, }, |
| 752 | }, |
| 753 | [ND_CMD_SET_CONFIG_DATA] = { |
| 754 | .in_num = 3, |
| 755 | .in_sizes = { 4, 4, UINT_MAX, }, |
| 756 | .out_num = 1, |
| 757 | .out_sizes = { 4, }, |
| 758 | }, |
| 759 | [ND_CMD_VENDOR] = { |
| 760 | .in_num = 3, |
| 761 | .in_sizes = { 4, 4, UINT_MAX, }, |
| 762 | .out_num = 3, |
| 763 | .out_sizes = { 4, 4, UINT_MAX, }, |
| 764 | }, |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 765 | [ND_CMD_CALL] = { |
| 766 | .in_num = 2, |
| 767 | .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, }, |
| 768 | .out_num = 1, |
| 769 | .out_sizes = { UINT_MAX, }, |
| 770 | }, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 771 | }; |
| 772 | |
| 773 | const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd) |
| 774 | { |
| 775 | if (cmd < ARRAY_SIZE(__nd_cmd_dimm_descs)) |
| 776 | return &__nd_cmd_dimm_descs[cmd]; |
| 777 | return NULL; |
| 778 | } |
| 779 | EXPORT_SYMBOL_GPL(nd_cmd_dimm_desc); |
| 780 | |
| 781 | static const struct nd_cmd_desc __nd_cmd_bus_descs[] = { |
| 782 | [ND_CMD_IMPLEMENTED] = { }, |
| 783 | [ND_CMD_ARS_CAP] = { |
| 784 | .in_num = 2, |
| 785 | .in_sizes = { 8, 8, }, |
Dan Williams | 4577b06 | 2016-02-17 13:08:58 -0800 | [diff] [blame] | 786 | .out_num = 4, |
| 787 | .out_sizes = { 4, 4, 4, 4, }, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 788 | }, |
| 789 | [ND_CMD_ARS_START] = { |
Dan Williams | 4577b06 | 2016-02-17 13:08:58 -0800 | [diff] [blame] | 790 | .in_num = 5, |
| 791 | .in_sizes = { 8, 8, 2, 1, 5, }, |
| 792 | .out_num = 2, |
| 793 | .out_sizes = { 4, 4, }, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 794 | }, |
| 795 | [ND_CMD_ARS_STATUS] = { |
Dan Williams | 747ffe1 | 2016-02-19 15:21:14 -0800 | [diff] [blame] | 796 | .out_num = 3, |
| 797 | .out_sizes = { 4, 4, UINT_MAX, }, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 798 | }, |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 799 | [ND_CMD_CLEAR_ERROR] = { |
| 800 | .in_num = 2, |
| 801 | .in_sizes = { 8, 8, }, |
| 802 | .out_num = 3, |
| 803 | .out_sizes = { 4, 4, 8, }, |
| 804 | }, |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 805 | [ND_CMD_CALL] = { |
| 806 | .in_num = 2, |
| 807 | .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, }, |
| 808 | .out_num = 1, |
| 809 | .out_sizes = { UINT_MAX, }, |
| 810 | }, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 811 | }; |
| 812 | |
| 813 | const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd) |
| 814 | { |
| 815 | if (cmd < ARRAY_SIZE(__nd_cmd_bus_descs)) |
| 816 | return &__nd_cmd_bus_descs[cmd]; |
| 817 | return NULL; |
| 818 | } |
| 819 | EXPORT_SYMBOL_GPL(nd_cmd_bus_desc); |
| 820 | |
| 821 | u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd, |
| 822 | const struct nd_cmd_desc *desc, int idx, void *buf) |
| 823 | { |
| 824 | if (idx >= desc->in_num) |
| 825 | return UINT_MAX; |
| 826 | |
| 827 | if (desc->in_sizes[idx] < UINT_MAX) |
| 828 | return desc->in_sizes[idx]; |
| 829 | |
| 830 | if (nvdimm && cmd == ND_CMD_SET_CONFIG_DATA && idx == 2) { |
| 831 | struct nd_cmd_set_config_hdr *hdr = buf; |
| 832 | |
| 833 | return hdr->in_length; |
| 834 | } else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) { |
| 835 | struct nd_cmd_vendor_hdr *hdr = buf; |
| 836 | |
| 837 | return hdr->in_length; |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 838 | } else if (cmd == ND_CMD_CALL) { |
| 839 | struct nd_cmd_pkg *pkg = buf; |
| 840 | |
| 841 | return pkg->nd_size_in; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | return UINT_MAX; |
| 845 | } |
| 846 | EXPORT_SYMBOL_GPL(nd_cmd_in_size); |
| 847 | |
| 848 | u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd, |
| 849 | const struct nd_cmd_desc *desc, int idx, const u32 *in_field, |
Dan Williams | efda1b5d | 2016-12-06 09:10:12 -0800 | [diff] [blame] | 850 | const u32 *out_field, unsigned long remainder) |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 851 | { |
| 852 | if (idx >= desc->out_num) |
| 853 | return UINT_MAX; |
| 854 | |
| 855 | if (desc->out_sizes[idx] < UINT_MAX) |
| 856 | return desc->out_sizes[idx]; |
| 857 | |
| 858 | if (nvdimm && cmd == ND_CMD_GET_CONFIG_DATA && idx == 1) |
| 859 | return in_field[1]; |
| 860 | else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) |
| 861 | return out_field[1]; |
Dan Williams | efda1b5d | 2016-12-06 09:10:12 -0800 | [diff] [blame] | 862 | else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) { |
| 863 | /* |
| 864 | * Per table 9-276 ARS Data in ACPI 6.1, out_field[1] is |
| 865 | * "Size of Output Buffer in bytes, including this |
| 866 | * field." |
| 867 | */ |
| 868 | if (out_field[1] < 4) |
| 869 | return 0; |
| 870 | /* |
| 871 | * ACPI 6.1 is ambiguous if 'status' is included in the |
| 872 | * output size. If we encounter an output size that |
| 873 | * overshoots the remainder by 4 bytes, assume it was |
| 874 | * including 'status'. |
| 875 | */ |
Vishal Verma | 286e877 | 2018-08-10 13:23:15 -0600 | [diff] [blame] | 876 | if (out_field[1] - 4 == remainder) |
Dan Williams | efda1b5d | 2016-12-06 09:10:12 -0800 | [diff] [blame] | 877 | return remainder; |
Vishal Verma | 286e877 | 2018-08-10 13:23:15 -0600 | [diff] [blame] | 878 | return out_field[1] - 8; |
Dan Williams | efda1b5d | 2016-12-06 09:10:12 -0800 | [diff] [blame] | 879 | } else if (cmd == ND_CMD_CALL) { |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 880 | struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field; |
| 881 | |
| 882 | return pkg->nd_size_out; |
| 883 | } |
| 884 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 885 | |
| 886 | return UINT_MAX; |
| 887 | } |
| 888 | EXPORT_SYMBOL_GPL(nd_cmd_out_size); |
| 889 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 890 | void wait_nvdimm_bus_probe_idle(struct device *dev) |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 891 | { |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 892 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 893 | |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 894 | do { |
| 895 | if (nvdimm_bus->probe_active == 0) |
| 896 | break; |
Dan Williams | ca6bf26 | 2019-07-17 18:08:21 -0700 | [diff] [blame] | 897 | nvdimm_bus_unlock(dev); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 898 | nd_device_unlock(dev); |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 899 | wait_event(nvdimm_bus->wait, |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 900 | nvdimm_bus->probe_active == 0); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 901 | nd_device_lock(dev); |
Dan Williams | ca6bf26 | 2019-07-17 18:08:21 -0700 | [diff] [blame] | 902 | nvdimm_bus_lock(dev); |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 903 | } while (true); |
| 904 | } |
| 905 | |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 906 | static int nd_pmem_forget_poison_check(struct device *dev, void *data) |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 907 | { |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 908 | struct nd_cmd_clear_error *clear_err = |
| 909 | (struct nd_cmd_clear_error *)data; |
| 910 | struct nd_btt *nd_btt = is_nd_btt(dev) ? to_nd_btt(dev) : NULL; |
| 911 | struct nd_pfn *nd_pfn = is_nd_pfn(dev) ? to_nd_pfn(dev) : NULL; |
| 912 | struct nd_dax *nd_dax = is_nd_dax(dev) ? to_nd_dax(dev) : NULL; |
| 913 | struct nd_namespace_common *ndns = NULL; |
| 914 | struct nd_namespace_io *nsio; |
| 915 | resource_size_t offset = 0, end_trunc = 0, start, end, pstart, pend; |
| 916 | |
| 917 | if (nd_dax || !dev->driver) |
| 918 | return 0; |
| 919 | |
| 920 | start = clear_err->address; |
| 921 | end = clear_err->address + clear_err->cleared - 1; |
| 922 | |
| 923 | if (nd_btt || nd_pfn || nd_dax) { |
| 924 | if (nd_btt) |
| 925 | ndns = nd_btt->ndns; |
| 926 | else if (nd_pfn) |
| 927 | ndns = nd_pfn->ndns; |
| 928 | else if (nd_dax) |
| 929 | ndns = nd_dax->nd_pfn.ndns; |
| 930 | |
| 931 | if (!ndns) |
| 932 | return 0; |
| 933 | } else |
| 934 | ndns = to_ndns(dev); |
| 935 | |
| 936 | nsio = to_nd_namespace_io(&ndns->dev); |
| 937 | pstart = nsio->res.start + offset; |
| 938 | pend = nsio->res.end - end_trunc; |
| 939 | |
| 940 | if ((pstart >= start) && (pend <= end)) |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 941 | return -EBUSY; |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 942 | |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 943 | return 0; |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 944 | |
| 945 | } |
| 946 | |
| 947 | static int nd_ns_forget_poison_check(struct device *dev, void *data) |
| 948 | { |
| 949 | return device_for_each_child(dev, data, nd_pmem_forget_poison_check); |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 950 | } |
| 951 | |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 952 | /* set_config requires an idle interleave set */ |
Dan Williams | 87bf572 | 2016-02-22 21:50:31 -0800 | [diff] [blame] | 953 | static int nd_cmd_clear_to_send(struct nvdimm_bus *nvdimm_bus, |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 954 | struct nvdimm *nvdimm, unsigned int cmd, void *data) |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 955 | { |
Dan Williams | 87bf572 | 2016-02-22 21:50:31 -0800 | [diff] [blame] | 956 | struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc; |
| 957 | |
| 958 | /* ask the bus provider if it would like to block this request */ |
| 959 | if (nd_desc->clear_to_send) { |
Dave Jiang | b3ed2ce | 2018-12-04 10:31:11 -0800 | [diff] [blame] | 960 | int rc = nd_desc->clear_to_send(nd_desc, nvdimm, cmd, data); |
Dan Williams | 87bf572 | 2016-02-22 21:50:31 -0800 | [diff] [blame] | 961 | |
| 962 | if (rc) |
| 963 | return rc; |
| 964 | } |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 965 | |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 966 | /* require clear error to go through the pmem driver */ |
| 967 | if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR) |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 968 | return device_for_each_child(&nvdimm_bus->dev, data, |
| 969 | nd_ns_forget_poison_check); |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 970 | |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 971 | if (!nvdimm || cmd != ND_CMD_SET_CONFIG_DATA) |
| 972 | return 0; |
| 973 | |
Dan Williams | 87bf572 | 2016-02-22 21:50:31 -0800 | [diff] [blame] | 974 | /* prevent label manipulation while the kernel owns label updates */ |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 975 | wait_nvdimm_bus_probe_idle(&nvdimm_bus->dev); |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 976 | if (atomic_read(&nvdimm->busy)) |
| 977 | return -EBUSY; |
| 978 | return 0; |
| 979 | } |
| 980 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 981 | static int __nd_ioctl(struct nvdimm_bus *nvdimm_bus, struct nvdimm *nvdimm, |
| 982 | int read_only, unsigned int ioctl_cmd, unsigned long arg) |
| 983 | { |
| 984 | struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 985 | const struct nd_cmd_desc *desc = NULL; |
| 986 | unsigned int cmd = _IOC_NR(ioctl_cmd); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 987 | struct device *dev = &nvdimm_bus->dev; |
Dan Williams | 58738c4 | 2017-08-31 15:41:55 -0700 | [diff] [blame] | 988 | void __user *p = (void __user *) arg; |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 989 | char *out_env = NULL, *in_env = NULL; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 990 | const char *cmd_name, *dimm_name; |
Dan Williams | 58738c4 | 2017-08-31 15:41:55 -0700 | [diff] [blame] | 991 | u32 in_len = 0, out_len = 0; |
| 992 | unsigned int func = cmd; |
Dan Williams | e3654ec | 2016-04-28 16:17:07 -0700 | [diff] [blame] | 993 | unsigned long cmd_mask; |
Dan Williams | 58738c4 | 2017-08-31 15:41:55 -0700 | [diff] [blame] | 994 | struct nd_cmd_pkg pkg; |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 995 | int rc, i, cmd_rc; |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 996 | void *buf = NULL; |
Dan Williams | 58738c4 | 2017-08-31 15:41:55 -0700 | [diff] [blame] | 997 | u64 buf_len = 0; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 998 | |
| 999 | if (nvdimm) { |
| 1000 | desc = nd_cmd_dimm_desc(cmd); |
| 1001 | cmd_name = nvdimm_cmd_name(cmd); |
Dan Williams | e3654ec | 2016-04-28 16:17:07 -0700 | [diff] [blame] | 1002 | cmd_mask = nvdimm->cmd_mask; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1003 | dimm_name = dev_name(&nvdimm->dev); |
| 1004 | } else { |
| 1005 | desc = nd_cmd_bus_desc(cmd); |
| 1006 | cmd_name = nvdimm_bus_cmd_name(cmd); |
Dan Williams | e3654ec | 2016-04-28 16:17:07 -0700 | [diff] [blame] | 1007 | cmd_mask = nd_desc->cmd_mask; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1008 | dimm_name = "bus"; |
| 1009 | } |
| 1010 | |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 1011 | if (cmd == ND_CMD_CALL) { |
| 1012 | if (copy_from_user(&pkg, p, sizeof(pkg))) |
| 1013 | return -EFAULT; |
| 1014 | } |
| 1015 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1016 | if (!desc || (desc->out_num + desc->in_num == 0) || |
Dan Williams | e3654ec | 2016-04-28 16:17:07 -0700 | [diff] [blame] | 1017 | !test_bit(cmd, &cmd_mask)) |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1018 | return -ENOTTY; |
| 1019 | |
| 1020 | /* fail write commands (when read-only) */ |
| 1021 | if (read_only) |
Jerry Hoemann | 07accfa | 2016-01-06 16:03:41 -0700 | [diff] [blame] | 1022 | switch (cmd) { |
| 1023 | case ND_CMD_VENDOR: |
| 1024 | case ND_CMD_SET_CONFIG_DATA: |
| 1025 | case ND_CMD_ARS_START: |
Dan Williams | d4f3236 | 2016-03-03 16:08:54 -0800 | [diff] [blame] | 1026 | case ND_CMD_CLEAR_ERROR: |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 1027 | case ND_CMD_CALL: |
Dan Williams | ca6bf26 | 2019-07-17 18:08:21 -0700 | [diff] [blame] | 1028 | dev_dbg(dev, "'%s' command while read-only.\n", |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1029 | nvdimm ? nvdimm_cmd_name(cmd) |
| 1030 | : nvdimm_bus_cmd_name(cmd)); |
| 1031 | return -EPERM; |
| 1032 | default: |
| 1033 | break; |
| 1034 | } |
| 1035 | |
| 1036 | /* process an input envelope */ |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1037 | in_env = kzalloc(ND_CMD_MAX_ENVELOPE, GFP_KERNEL); |
| 1038 | if (!in_env) |
| 1039 | return -ENOMEM; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1040 | for (i = 0; i < desc->in_num; i++) { |
| 1041 | u32 in_size, copy; |
| 1042 | |
| 1043 | in_size = nd_cmd_in_size(nvdimm, cmd, desc, i, in_env); |
| 1044 | if (in_size == UINT_MAX) { |
| 1045 | dev_err(dev, "%s:%s unknown input size cmd: %s field: %d\n", |
| 1046 | __func__, dimm_name, cmd_name, i); |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1047 | rc = -ENXIO; |
| 1048 | goto out; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1049 | } |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1050 | if (in_len < ND_CMD_MAX_ENVELOPE) |
| 1051 | copy = min_t(u32, ND_CMD_MAX_ENVELOPE - in_len, in_size); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1052 | else |
| 1053 | copy = 0; |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1054 | if (copy && copy_from_user(&in_env[in_len], p + in_len, copy)) { |
| 1055 | rc = -EFAULT; |
| 1056 | goto out; |
| 1057 | } |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1058 | in_len += in_size; |
| 1059 | } |
| 1060 | |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 1061 | if (cmd == ND_CMD_CALL) { |
Jerry Hoemann | 53b85a4 | 2017-06-30 20:41:22 -0700 | [diff] [blame] | 1062 | func = pkg.nd_command; |
Dan Williams | 426824d | 2018-03-05 16:39:31 -0800 | [diff] [blame] | 1063 | dev_dbg(dev, "%s, idx: %llu, in: %u, out: %u, len %llu\n", |
| 1064 | dimm_name, pkg.nd_command, |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 1065 | in_len, out_len, buf_len); |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 1066 | } |
| 1067 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1068 | /* process an output envelope */ |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1069 | out_env = kzalloc(ND_CMD_MAX_ENVELOPE, GFP_KERNEL); |
| 1070 | if (!out_env) { |
| 1071 | rc = -ENOMEM; |
| 1072 | goto out; |
| 1073 | } |
| 1074 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1075 | for (i = 0; i < desc->out_num; i++) { |
| 1076 | u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, |
Dan Williams | efda1b5d | 2016-12-06 09:10:12 -0800 | [diff] [blame] | 1077 | (u32 *) in_env, (u32 *) out_env, 0); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1078 | u32 copy; |
| 1079 | |
| 1080 | if (out_size == UINT_MAX) { |
Dan Williams | 426824d | 2018-03-05 16:39:31 -0800 | [diff] [blame] | 1081 | dev_dbg(dev, "%s unknown output size cmd: %s field: %d\n", |
| 1082 | dimm_name, cmd_name, i); |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1083 | rc = -EFAULT; |
| 1084 | goto out; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1085 | } |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1086 | if (out_len < ND_CMD_MAX_ENVELOPE) |
| 1087 | copy = min_t(u32, ND_CMD_MAX_ENVELOPE - out_len, out_size); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1088 | else |
| 1089 | copy = 0; |
| 1090 | if (copy && copy_from_user(&out_env[out_len], |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1091 | p + in_len + out_len, copy)) { |
| 1092 | rc = -EFAULT; |
| 1093 | goto out; |
| 1094 | } |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1095 | out_len += out_size; |
| 1096 | } |
| 1097 | |
Dan Williams | 58738c4 | 2017-08-31 15:41:55 -0700 | [diff] [blame] | 1098 | buf_len = (u64) out_len + (u64) in_len; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1099 | if (buf_len > ND_IOCTL_MAX_BUFLEN) { |
Dan Williams | 426824d | 2018-03-05 16:39:31 -0800 | [diff] [blame] | 1100 | dev_dbg(dev, "%s cmd: %s buf_len: %llu > %d\n", dimm_name, |
| 1101 | cmd_name, buf_len, ND_IOCTL_MAX_BUFLEN); |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1102 | rc = -EINVAL; |
| 1103 | goto out; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | buf = vmalloc(buf_len); |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1107 | if (!buf) { |
| 1108 | rc = -ENOMEM; |
| 1109 | goto out; |
| 1110 | } |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1111 | |
| 1112 | if (copy_from_user(buf, p, buf_len)) { |
| 1113 | rc = -EFAULT; |
| 1114 | goto out; |
| 1115 | } |
| 1116 | |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 1117 | nd_device_lock(dev); |
Dan Williams | ca6bf26 | 2019-07-17 18:08:21 -0700 | [diff] [blame] | 1118 | nvdimm_bus_lock(dev); |
Jerry Hoemann | 53b85a4 | 2017-06-30 20:41:22 -0700 | [diff] [blame] | 1119 | rc = nd_cmd_clear_to_send(nvdimm_bus, nvdimm, func, buf); |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 1120 | if (rc) |
| 1121 | goto out_unlock; |
| 1122 | |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 1123 | rc = nd_desc->ndctl(nd_desc, nvdimm, cmd, buf, buf_len, &cmd_rc); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1124 | if (rc < 0) |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 1125 | goto out_unlock; |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 1126 | |
| 1127 | if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR && cmd_rc >= 0) { |
| 1128 | struct nd_cmd_clear_error *clear_err = buf; |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 1129 | |
Dan Williams | 23f4984 | 2017-04-29 15:24:03 -0700 | [diff] [blame] | 1130 | nvdimm_account_cleared_poison(nvdimm_bus, clear_err->address, |
| 1131 | clear_err->cleared); |
Dave Jiang | 006358b | 2017-04-07 15:33:31 -0700 | [diff] [blame] | 1132 | } |
Dan Williams | 0beb201 | 2017-04-07 09:47:24 -0700 | [diff] [blame] | 1133 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1134 | if (copy_to_user(p, buf, buf_len)) |
| 1135 | rc = -EFAULT; |
Dan Williams | 0beb201 | 2017-04-07 09:47:24 -0700 | [diff] [blame] | 1136 | |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1137 | out_unlock: |
Dan Williams | ca6bf26 | 2019-07-17 18:08:21 -0700 | [diff] [blame] | 1138 | nvdimm_bus_unlock(dev); |
Dan Williams | 87a30e1 | 2019-07-17 18:08:26 -0700 | [diff] [blame] | 1139 | nd_device_unlock(dev); |
Dan Williams | 6de5d06 | 2019-07-17 18:08:09 -0700 | [diff] [blame] | 1140 | out: |
| 1141 | kfree(in_env); |
| 1142 | kfree(out_env); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1143 | vfree(buf); |
| 1144 | return rc; |
| 1145 | } |
| 1146 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1147 | enum nd_ioctl_mode { |
| 1148 | BUS_IOCTL, |
| 1149 | DIMM_IOCTL, |
| 1150 | }; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1151 | |
| 1152 | static int match_dimm(struct device *dev, void *data) |
| 1153 | { |
| 1154 | long id = (long) data; |
| 1155 | |
| 1156 | if (is_nvdimm(dev)) { |
| 1157 | struct nvdimm *nvdimm = to_nvdimm(dev); |
| 1158 | |
| 1159 | return nvdimm->id == id; |
| 1160 | } |
| 1161 | |
| 1162 | return 0; |
| 1163 | } |
| 1164 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1165 | static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg, |
| 1166 | enum nd_ioctl_mode mode) |
| 1167 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1168 | { |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1169 | struct nvdimm_bus *nvdimm_bus, *found = NULL; |
| 1170 | long id = (long) file->private_data; |
| 1171 | struct nvdimm *nvdimm = NULL; |
| 1172 | int rc, ro; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1173 | |
Jerry Hoemann | 4dc0e7be | 2016-01-06 16:03:39 -0700 | [diff] [blame] | 1174 | ro = ((file->f_flags & O_ACCMODE) == O_RDONLY); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1175 | mutex_lock(&nvdimm_bus_list_mutex); |
| 1176 | list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) { |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1177 | if (mode == DIMM_IOCTL) { |
| 1178 | struct device *dev; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1179 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1180 | dev = device_find_child(&nvdimm_bus->dev, |
| 1181 | file->private_data, match_dimm); |
| 1182 | if (!dev) |
| 1183 | continue; |
| 1184 | nvdimm = to_nvdimm(dev); |
| 1185 | found = nvdimm_bus; |
| 1186 | } else if (nvdimm_bus->id == id) { |
| 1187 | found = nvdimm_bus; |
| 1188 | } |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1189 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1190 | if (found) { |
| 1191 | atomic_inc(&nvdimm_bus->ioctl_active); |
| 1192 | break; |
| 1193 | } |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1194 | } |
| 1195 | mutex_unlock(&nvdimm_bus_list_mutex); |
| 1196 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1197 | if (!found) |
| 1198 | return -ENXIO; |
| 1199 | |
| 1200 | nvdimm_bus = found; |
| 1201 | rc = __nd_ioctl(nvdimm_bus, nvdimm, ro, cmd, arg); |
| 1202 | |
| 1203 | if (nvdimm) |
| 1204 | put_device(&nvdimm->dev); |
| 1205 | if (atomic_dec_and_test(&nvdimm_bus->ioctl_active)) |
| 1206 | wake_up(&nvdimm_bus->wait); |
| 1207 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1208 | return rc; |
| 1209 | } |
| 1210 | |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1211 | static long bus_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 1212 | { |
| 1213 | return nd_ioctl(file, cmd, arg, BUS_IOCTL); |
| 1214 | } |
| 1215 | |
| 1216 | static long dimm_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 1217 | { |
| 1218 | return nd_ioctl(file, cmd, arg, DIMM_IOCTL); |
| 1219 | } |
| 1220 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1221 | static int nd_open(struct inode *inode, struct file *file) |
| 1222 | { |
| 1223 | long minor = iminor(inode); |
| 1224 | |
| 1225 | file->private_data = (void *) minor; |
| 1226 | return 0; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1227 | } |
| 1228 | |
| 1229 | static const struct file_operations nvdimm_bus_fops = { |
| 1230 | .owner = THIS_MODULE, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1231 | .open = nd_open, |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1232 | .unlocked_ioctl = bus_ioctl, |
| 1233 | .compat_ioctl = bus_ioctl, |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1234 | .llseek = noop_llseek, |
| 1235 | }; |
| 1236 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1237 | static const struct file_operations nvdimm_fops = { |
| 1238 | .owner = THIS_MODULE, |
| 1239 | .open = nd_open, |
Dan Williams | b70d31d | 2019-07-17 18:08:15 -0700 | [diff] [blame] | 1240 | .unlocked_ioctl = dimm_ioctl, |
| 1241 | .compat_ioctl = dimm_ioctl, |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1242 | .llseek = noop_llseek, |
| 1243 | }; |
| 1244 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1245 | int __init nvdimm_bus_init(void) |
| 1246 | { |
| 1247 | int rc; |
| 1248 | |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 1249 | rc = bus_register(&nvdimm_bus_type); |
| 1250 | if (rc) |
| 1251 | return rc; |
| 1252 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1253 | rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops); |
| 1254 | if (rc < 0) |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1255 | goto err_bus_chrdev; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1256 | nvdimm_bus_major = rc; |
| 1257 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1258 | rc = register_chrdev(0, "dimmctl", &nvdimm_fops); |
| 1259 | if (rc < 0) |
| 1260 | goto err_dimm_chrdev; |
| 1261 | nvdimm_major = rc; |
| 1262 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1263 | nd_class = class_create(THIS_MODULE, "nd"); |
Axel Lin | daa1dee | 2015-06-28 17:00:57 +0800 | [diff] [blame] | 1264 | if (IS_ERR(nd_class)) { |
| 1265 | rc = PTR_ERR(nd_class); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1266 | goto err_class; |
Axel Lin | daa1dee | 2015-06-28 17:00:57 +0800 | [diff] [blame] | 1267 | } |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1268 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 1269 | rc = driver_register(&nd_bus_driver.drv); |
| 1270 | if (rc) |
| 1271 | goto err_nd_bus; |
| 1272 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1273 | return 0; |
| 1274 | |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 1275 | err_nd_bus: |
| 1276 | class_destroy(nd_class); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1277 | err_class: |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1278 | unregister_chrdev(nvdimm_major, "dimmctl"); |
| 1279 | err_dimm_chrdev: |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1280 | unregister_chrdev(nvdimm_bus_major, "ndctl"); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1281 | err_bus_chrdev: |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 1282 | bus_unregister(&nvdimm_bus_type); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1283 | |
| 1284 | return rc; |
| 1285 | } |
| 1286 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 1287 | void nvdimm_bus_exit(void) |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1288 | { |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 1289 | driver_unregister(&nd_bus_driver.drv); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1290 | class_destroy(nd_class); |
| 1291 | unregister_chrdev(nvdimm_bus_major, "ndctl"); |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 1292 | unregister_chrdev(nvdimm_major, "dimmctl"); |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 1293 | bus_unregister(&nvdimm_bus_type); |
Dan Williams | 1851594 | 2016-07-22 23:46:08 -0700 | [diff] [blame] | 1294 | ida_destroy(&nd_ida); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 1295 | } |