Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 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 | #include <linux/module.h> |
| 14 | #include <linux/device.h> |
| 15 | #include <linux/slab.h> |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 16 | #include <linux/pmem.h> |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 17 | #include <linux/list.h> |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 18 | #include <linux/nd.h> |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 19 | #include "nd-core.h" |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 20 | #include "nd.h" |
| 21 | |
| 22 | static void namespace_io_release(struct device *dev) |
| 23 | { |
| 24 | struct nd_namespace_io *nsio = to_nd_namespace_io(dev); |
| 25 | |
| 26 | kfree(nsio); |
| 27 | } |
| 28 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 29 | static void namespace_pmem_release(struct device *dev) |
| 30 | { |
| 31 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 32 | struct nd_region *nd_region = to_nd_region(dev->parent); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 33 | |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 34 | if (nspm->id >= 0) |
| 35 | ida_simple_remove(&nd_region->ns_ida, nspm->id); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 36 | kfree(nspm->alt_name); |
| 37 | kfree(nspm->uuid); |
| 38 | kfree(nspm); |
| 39 | } |
| 40 | |
| 41 | static void namespace_blk_release(struct device *dev) |
| 42 | { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 43 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 44 | struct nd_region *nd_region = to_nd_region(dev->parent); |
| 45 | |
| 46 | if (nsblk->id >= 0) |
| 47 | ida_simple_remove(&nd_region->ns_ida, nsblk->id); |
| 48 | kfree(nsblk->alt_name); |
| 49 | kfree(nsblk->uuid); |
| 50 | kfree(nsblk->res); |
| 51 | kfree(nsblk); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 52 | } |
| 53 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 54 | static struct device_type namespace_io_device_type = { |
| 55 | .name = "nd_namespace_io", |
| 56 | .release = namespace_io_release, |
| 57 | }; |
| 58 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 59 | static struct device_type namespace_pmem_device_type = { |
| 60 | .name = "nd_namespace_pmem", |
| 61 | .release = namespace_pmem_release, |
| 62 | }; |
| 63 | |
| 64 | static struct device_type namespace_blk_device_type = { |
| 65 | .name = "nd_namespace_blk", |
| 66 | .release = namespace_blk_release, |
| 67 | }; |
| 68 | |
| 69 | static bool is_namespace_pmem(struct device *dev) |
| 70 | { |
| 71 | return dev ? dev->type == &namespace_pmem_device_type : false; |
| 72 | } |
| 73 | |
| 74 | static bool is_namespace_blk(struct device *dev) |
| 75 | { |
| 76 | return dev ? dev->type == &namespace_blk_device_type : false; |
| 77 | } |
| 78 | |
| 79 | static bool is_namespace_io(struct device *dev) |
| 80 | { |
| 81 | return dev ? dev->type == &namespace_io_device_type : false; |
| 82 | } |
| 83 | |
Dan Williams | e07ecd7 | 2016-01-05 18:37:23 -0800 | [diff] [blame] | 84 | static int is_uuid_busy(struct device *dev, void *data) |
| 85 | { |
| 86 | u8 *uuid1 = data, *uuid2 = NULL; |
| 87 | |
| 88 | if (is_namespace_pmem(dev)) { |
| 89 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 90 | |
| 91 | uuid2 = nspm->uuid; |
| 92 | } else if (is_namespace_blk(dev)) { |
| 93 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 94 | |
| 95 | uuid2 = nsblk->uuid; |
| 96 | } else if (is_nd_btt(dev)) { |
| 97 | struct nd_btt *nd_btt = to_nd_btt(dev); |
| 98 | |
| 99 | uuid2 = nd_btt->uuid; |
| 100 | } else if (is_nd_pfn(dev)) { |
| 101 | struct nd_pfn *nd_pfn = to_nd_pfn(dev); |
| 102 | |
| 103 | uuid2 = nd_pfn->uuid; |
| 104 | } |
| 105 | |
| 106 | if (uuid2 && memcmp(uuid1, uuid2, NSLABEL_UUID_LEN) == 0) |
| 107 | return -EBUSY; |
| 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | static int is_namespace_uuid_busy(struct device *dev, void *data) |
| 113 | { |
| 114 | if (is_nd_pmem(dev) || is_nd_blk(dev)) |
| 115 | return device_for_each_child(dev, data, is_uuid_busy); |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * nd_is_uuid_unique - verify that no other namespace has @uuid |
| 121 | * @dev: any device on a nvdimm_bus |
| 122 | * @uuid: uuid to check |
| 123 | */ |
| 124 | bool nd_is_uuid_unique(struct device *dev, u8 *uuid) |
| 125 | { |
| 126 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 127 | |
| 128 | if (!nvdimm_bus) |
| 129 | return false; |
| 130 | WARN_ON_ONCE(!is_nvdimm_bus_locked(&nvdimm_bus->dev)); |
| 131 | if (device_for_each_child(&nvdimm_bus->dev, uuid, |
| 132 | is_namespace_uuid_busy) != 0) |
| 133 | return false; |
| 134 | return true; |
| 135 | } |
| 136 | |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 137 | bool pmem_should_map_pages(struct device *dev) |
| 138 | { |
| 139 | struct nd_region *nd_region = to_nd_region(dev->parent); |
Dan Williams | cfe30b8 | 2016-03-03 09:38:00 -0800 | [diff] [blame] | 140 | struct nd_namespace_io *nsio; |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 141 | |
| 142 | if (!IS_ENABLED(CONFIG_ZONE_DEVICE)) |
| 143 | return false; |
| 144 | |
| 145 | if (!test_bit(ND_REGION_PAGEMAP, &nd_region->flags)) |
| 146 | return false; |
| 147 | |
| 148 | if (is_nd_pfn(dev) || is_nd_btt(dev)) |
| 149 | return false; |
| 150 | |
Dan Williams | cfe30b8 | 2016-03-03 09:38:00 -0800 | [diff] [blame] | 151 | nsio = to_nd_namespace_io(dev); |
| 152 | if (region_intersects(nsio->res.start, resource_size(&nsio->res), |
| 153 | IORESOURCE_SYSTEM_RAM, |
| 154 | IORES_DESC_NONE) == REGION_MIXED) |
| 155 | return false; |
| 156 | |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 157 | #ifdef ARCH_MEMREMAP_PMEM |
| 158 | return ARCH_MEMREMAP_PMEM == MEMREMAP_WB; |
| 159 | #else |
| 160 | return false; |
| 161 | #endif |
| 162 | } |
| 163 | EXPORT_SYMBOL(pmem_should_map_pages); |
| 164 | |
Vishal Verma | 5212e11 | 2015-06-25 04:20:32 -0400 | [diff] [blame] | 165 | const char *nvdimm_namespace_disk_name(struct nd_namespace_common *ndns, |
| 166 | char *name) |
| 167 | { |
| 168 | struct nd_region *nd_region = to_nd_region(ndns->dev.parent); |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 169 | const char *suffix = NULL; |
Vishal Verma | 5212e11 | 2015-06-25 04:20:32 -0400 | [diff] [blame] | 170 | |
Dan Williams | 0731de0 | 2015-12-14 15:34:15 -0800 | [diff] [blame] | 171 | if (ndns->claim && is_nd_btt(ndns->claim)) |
| 172 | suffix = "s"; |
Vishal Verma | 5212e11 | 2015-06-25 04:20:32 -0400 | [diff] [blame] | 173 | |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 174 | if (is_namespace_pmem(&ndns->dev) || is_namespace_io(&ndns->dev)) { |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 175 | sprintf(name, "pmem%d%s", nd_region->id, suffix ? suffix : ""); |
| 176 | } else if (is_namespace_blk(&ndns->dev)) { |
Vishal Verma | 5212e11 | 2015-06-25 04:20:32 -0400 | [diff] [blame] | 177 | struct nd_namespace_blk *nsblk; |
| 178 | |
| 179 | nsblk = to_nd_namespace_blk(&ndns->dev); |
Dan Williams | 004f1af | 2015-08-24 19:20:23 -0400 | [diff] [blame] | 180 | sprintf(name, "ndblk%d.%d%s", nd_region->id, nsblk->id, |
| 181 | suffix ? suffix : ""); |
Vishal Verma | 5212e11 | 2015-06-25 04:20:32 -0400 | [diff] [blame] | 182 | } else { |
| 183 | return NULL; |
| 184 | } |
| 185 | |
| 186 | return name; |
| 187 | } |
| 188 | EXPORT_SYMBOL(nvdimm_namespace_disk_name); |
| 189 | |
Vishal Verma | 6ec6895 | 2015-07-29 14:58:09 -0600 | [diff] [blame] | 190 | const u8 *nd_dev_to_uuid(struct device *dev) |
| 191 | { |
| 192 | static const u8 null_uuid[16]; |
| 193 | |
| 194 | if (!dev) |
| 195 | return null_uuid; |
| 196 | |
| 197 | if (is_namespace_pmem(dev)) { |
| 198 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 199 | |
| 200 | return nspm->uuid; |
| 201 | } else if (is_namespace_blk(dev)) { |
| 202 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 203 | |
| 204 | return nsblk->uuid; |
| 205 | } else |
| 206 | return null_uuid; |
| 207 | } |
| 208 | EXPORT_SYMBOL(nd_dev_to_uuid); |
| 209 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 210 | static ssize_t nstype_show(struct device *dev, |
| 211 | struct device_attribute *attr, char *buf) |
| 212 | { |
| 213 | struct nd_region *nd_region = to_nd_region(dev->parent); |
| 214 | |
| 215 | return sprintf(buf, "%d\n", nd_region_to_nstype(nd_region)); |
| 216 | } |
| 217 | static DEVICE_ATTR_RO(nstype); |
| 218 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 219 | static ssize_t __alt_name_store(struct device *dev, const char *buf, |
| 220 | const size_t len) |
| 221 | { |
| 222 | char *input, *pos, *alt_name, **ns_altname; |
| 223 | ssize_t rc; |
| 224 | |
| 225 | if (is_namespace_pmem(dev)) { |
| 226 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 227 | |
| 228 | ns_altname = &nspm->alt_name; |
| 229 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 230 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 231 | |
| 232 | ns_altname = &nsblk->alt_name; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 233 | } else |
| 234 | return -ENXIO; |
| 235 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 236 | if (dev->driver || to_ndns(dev)->claim) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 237 | return -EBUSY; |
| 238 | |
| 239 | input = kmemdup(buf, len + 1, GFP_KERNEL); |
| 240 | if (!input) |
| 241 | return -ENOMEM; |
| 242 | |
| 243 | input[len] = '\0'; |
| 244 | pos = strim(input); |
| 245 | if (strlen(pos) + 1 > NSLABEL_NAME_LEN) { |
| 246 | rc = -EINVAL; |
| 247 | goto out; |
| 248 | } |
| 249 | |
| 250 | alt_name = kzalloc(NSLABEL_NAME_LEN, GFP_KERNEL); |
| 251 | if (!alt_name) { |
| 252 | rc = -ENOMEM; |
| 253 | goto out; |
| 254 | } |
| 255 | kfree(*ns_altname); |
| 256 | *ns_altname = alt_name; |
| 257 | sprintf(*ns_altname, "%s", pos); |
| 258 | rc = len; |
| 259 | |
| 260 | out: |
| 261 | kfree(input); |
| 262 | return rc; |
| 263 | } |
| 264 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 265 | static resource_size_t nd_namespace_blk_size(struct nd_namespace_blk *nsblk) |
| 266 | { |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 267 | struct nd_region *nd_region = to_nd_region(nsblk->common.dev.parent); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 268 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
| 269 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 270 | struct nd_label_id label_id; |
| 271 | resource_size_t size = 0; |
| 272 | struct resource *res; |
| 273 | |
| 274 | if (!nsblk->uuid) |
| 275 | return 0; |
| 276 | nd_label_gen_id(&label_id, nsblk->uuid, NSLABEL_FLAG_LOCAL); |
| 277 | for_each_dpa_resource(ndd, res) |
| 278 | if (strcmp(res->name, label_id.id) == 0) |
| 279 | size += resource_size(res); |
| 280 | return size; |
| 281 | } |
| 282 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 283 | static bool __nd_namespace_blk_validate(struct nd_namespace_blk *nsblk) |
| 284 | { |
| 285 | struct nd_region *nd_region = to_nd_region(nsblk->common.dev.parent); |
| 286 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
| 287 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 288 | struct nd_label_id label_id; |
| 289 | struct resource *res; |
| 290 | int count, i; |
| 291 | |
| 292 | if (!nsblk->uuid || !nsblk->lbasize || !ndd) |
| 293 | return false; |
| 294 | |
| 295 | count = 0; |
| 296 | nd_label_gen_id(&label_id, nsblk->uuid, NSLABEL_FLAG_LOCAL); |
| 297 | for_each_dpa_resource(ndd, res) { |
| 298 | if (strcmp(res->name, label_id.id) != 0) |
| 299 | continue; |
| 300 | /* |
Geert Uytterhoeven | ae551e9 | 2016-08-31 11:45:25 +0200 | [diff] [blame] | 301 | * Resources with unacknowledged adjustments indicate a |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 302 | * failure to update labels |
| 303 | */ |
| 304 | if (res->flags & DPA_RESOURCE_ADJUSTED) |
| 305 | return false; |
| 306 | count++; |
| 307 | } |
| 308 | |
| 309 | /* These values match after a successful label update */ |
| 310 | if (count != nsblk->num_resources) |
| 311 | return false; |
| 312 | |
| 313 | for (i = 0; i < nsblk->num_resources; i++) { |
| 314 | struct resource *found = NULL; |
| 315 | |
| 316 | for_each_dpa_resource(ndd, res) |
| 317 | if (res == nsblk->res[i]) { |
| 318 | found = res; |
| 319 | break; |
| 320 | } |
| 321 | /* stale resource */ |
| 322 | if (!found) |
| 323 | return false; |
| 324 | } |
| 325 | |
| 326 | return true; |
| 327 | } |
| 328 | |
| 329 | resource_size_t nd_namespace_blk_validate(struct nd_namespace_blk *nsblk) |
| 330 | { |
| 331 | resource_size_t size; |
| 332 | |
| 333 | nvdimm_bus_lock(&nsblk->common.dev); |
| 334 | size = __nd_namespace_blk_validate(nsblk); |
| 335 | nvdimm_bus_unlock(&nsblk->common.dev); |
| 336 | |
| 337 | return size; |
| 338 | } |
| 339 | EXPORT_SYMBOL(nd_namespace_blk_validate); |
| 340 | |
| 341 | |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 342 | static int nd_namespace_label_update(struct nd_region *nd_region, |
| 343 | struct device *dev) |
| 344 | { |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 345 | dev_WARN_ONCE(dev, dev->driver || to_ndns(dev)->claim, |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 346 | "namespace must be idle during label update\n"); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 347 | if (dev->driver || to_ndns(dev)->claim) |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 348 | return 0; |
| 349 | |
| 350 | /* |
| 351 | * Only allow label writes that will result in a valid namespace |
| 352 | * or deletion of an existing namespace. |
| 353 | */ |
| 354 | if (is_namespace_pmem(dev)) { |
| 355 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
Dan Williams | 0ba1c63 | 2015-05-30 12:35:36 -0400 | [diff] [blame] | 356 | resource_size_t size = resource_size(&nspm->nsio.res); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 357 | |
| 358 | if (size == 0 && nspm->uuid) |
| 359 | /* delete allocation */; |
| 360 | else if (!nspm->uuid) |
| 361 | return 0; |
| 362 | |
| 363 | return nd_pmem_namespace_label_update(nd_region, nspm, size); |
| 364 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 0ba1c63 | 2015-05-30 12:35:36 -0400 | [diff] [blame] | 365 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 366 | resource_size_t size = nd_namespace_blk_size(nsblk); |
| 367 | |
| 368 | if (size == 0 && nsblk->uuid) |
| 369 | /* delete allocation */; |
| 370 | else if (!nsblk->uuid || !nsblk->lbasize) |
| 371 | return 0; |
| 372 | |
| 373 | return nd_blk_namespace_label_update(nd_region, nsblk, size); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 374 | } else |
| 375 | return -ENXIO; |
| 376 | } |
| 377 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 378 | static ssize_t alt_name_store(struct device *dev, |
| 379 | struct device_attribute *attr, const char *buf, size_t len) |
| 380 | { |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 381 | struct nd_region *nd_region = to_nd_region(dev->parent); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 382 | ssize_t rc; |
| 383 | |
| 384 | device_lock(dev); |
| 385 | nvdimm_bus_lock(dev); |
| 386 | wait_nvdimm_bus_probe_idle(dev); |
| 387 | rc = __alt_name_store(dev, buf, len); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 388 | if (rc >= 0) |
| 389 | rc = nd_namespace_label_update(nd_region, dev); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 390 | dev_dbg(dev, "%s: %s(%zd)\n", __func__, rc < 0 ? "fail " : "", rc); |
| 391 | nvdimm_bus_unlock(dev); |
| 392 | device_unlock(dev); |
| 393 | |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 394 | return rc < 0 ? rc : len; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | static ssize_t alt_name_show(struct device *dev, |
| 398 | struct device_attribute *attr, char *buf) |
| 399 | { |
| 400 | char *ns_altname; |
| 401 | |
| 402 | if (is_namespace_pmem(dev)) { |
| 403 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 404 | |
| 405 | ns_altname = nspm->alt_name; |
| 406 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 407 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 408 | |
| 409 | ns_altname = nsblk->alt_name; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 410 | } else |
| 411 | return -ENXIO; |
| 412 | |
| 413 | return sprintf(buf, "%s\n", ns_altname ? ns_altname : ""); |
| 414 | } |
| 415 | static DEVICE_ATTR_RW(alt_name); |
| 416 | |
| 417 | static int scan_free(struct nd_region *nd_region, |
| 418 | struct nd_mapping *nd_mapping, struct nd_label_id *label_id, |
| 419 | resource_size_t n) |
| 420 | { |
| 421 | bool is_blk = strncmp(label_id->id, "blk", 3) == 0; |
| 422 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 423 | int rc = 0; |
| 424 | |
| 425 | while (n) { |
| 426 | struct resource *res, *last; |
| 427 | resource_size_t new_start; |
| 428 | |
| 429 | last = NULL; |
| 430 | for_each_dpa_resource(ndd, res) |
| 431 | if (strcmp(res->name, label_id->id) == 0) |
| 432 | last = res; |
| 433 | res = last; |
| 434 | if (!res) |
| 435 | return 0; |
| 436 | |
| 437 | if (n >= resource_size(res)) { |
| 438 | n -= resource_size(res); |
| 439 | nd_dbg_dpa(nd_region, ndd, res, "delete %d\n", rc); |
| 440 | nvdimm_free_dpa(ndd, res); |
| 441 | /* retry with last resource deleted */ |
| 442 | continue; |
| 443 | } |
| 444 | |
| 445 | /* |
| 446 | * Keep BLK allocations relegated to high DPA as much as |
| 447 | * possible |
| 448 | */ |
| 449 | if (is_blk) |
| 450 | new_start = res->start + n; |
| 451 | else |
| 452 | new_start = res->start; |
| 453 | |
| 454 | rc = adjust_resource(res, new_start, resource_size(res) - n); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 455 | if (rc == 0) |
| 456 | res->flags |= DPA_RESOURCE_ADJUSTED; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 457 | nd_dbg_dpa(nd_region, ndd, res, "shrink %d\n", rc); |
| 458 | break; |
| 459 | } |
| 460 | |
| 461 | return rc; |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * shrink_dpa_allocation - for each dimm in region free n bytes for label_id |
| 466 | * @nd_region: the set of dimms to reclaim @n bytes from |
| 467 | * @label_id: unique identifier for the namespace consuming this dpa range |
| 468 | * @n: number of bytes per-dimm to release |
| 469 | * |
| 470 | * Assumes resources are ordered. Starting from the end try to |
| 471 | * adjust_resource() the allocation to @n, but if @n is larger than the |
| 472 | * allocation delete it and find the 'new' last allocation in the label |
| 473 | * set. |
| 474 | */ |
| 475 | static int shrink_dpa_allocation(struct nd_region *nd_region, |
| 476 | struct nd_label_id *label_id, resource_size_t n) |
| 477 | { |
| 478 | int i; |
| 479 | |
| 480 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 481 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
| 482 | int rc; |
| 483 | |
| 484 | rc = scan_free(nd_region, nd_mapping, label_id, n); |
| 485 | if (rc) |
| 486 | return rc; |
| 487 | } |
| 488 | |
| 489 | return 0; |
| 490 | } |
| 491 | |
| 492 | static resource_size_t init_dpa_allocation(struct nd_label_id *label_id, |
| 493 | struct nd_region *nd_region, struct nd_mapping *nd_mapping, |
| 494 | resource_size_t n) |
| 495 | { |
| 496 | bool is_blk = strncmp(label_id->id, "blk", 3) == 0; |
| 497 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 498 | resource_size_t first_dpa; |
| 499 | struct resource *res; |
| 500 | int rc = 0; |
| 501 | |
| 502 | /* allocate blk from highest dpa first */ |
| 503 | if (is_blk) |
| 504 | first_dpa = nd_mapping->start + nd_mapping->size - n; |
| 505 | else |
| 506 | first_dpa = nd_mapping->start; |
| 507 | |
| 508 | /* first resource allocation for this label-id or dimm */ |
| 509 | res = nvdimm_allocate_dpa(ndd, label_id, first_dpa, n); |
| 510 | if (!res) |
| 511 | rc = -EBUSY; |
| 512 | |
| 513 | nd_dbg_dpa(nd_region, ndd, res, "init %d\n", rc); |
| 514 | return rc ? n : 0; |
| 515 | } |
| 516 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 517 | static bool space_valid(bool is_pmem, bool is_reserve, |
| 518 | struct nd_label_id *label_id, struct resource *res) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 519 | { |
| 520 | /* |
| 521 | * For BLK-space any space is valid, for PMEM-space, it must be |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 522 | * contiguous with an existing allocation unless we are |
| 523 | * reserving pmem. |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 524 | */ |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 525 | if (is_reserve || !is_pmem) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 526 | return true; |
| 527 | if (!res || strcmp(res->name, label_id->id) == 0) |
| 528 | return true; |
| 529 | return false; |
| 530 | } |
| 531 | |
| 532 | enum alloc_loc { |
| 533 | ALLOC_ERR = 0, ALLOC_BEFORE, ALLOC_MID, ALLOC_AFTER, |
| 534 | }; |
| 535 | |
| 536 | static resource_size_t scan_allocate(struct nd_region *nd_region, |
| 537 | struct nd_mapping *nd_mapping, struct nd_label_id *label_id, |
| 538 | resource_size_t n) |
| 539 | { |
| 540 | resource_size_t mapping_end = nd_mapping->start + nd_mapping->size - 1; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 541 | bool is_reserve = strcmp(label_id->id, "pmem-reserve") == 0; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 542 | bool is_pmem = strncmp(label_id->id, "pmem", 4) == 0; |
| 543 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 544 | const resource_size_t to_allocate = n; |
| 545 | struct resource *res; |
| 546 | int first; |
| 547 | |
| 548 | retry: |
| 549 | first = 0; |
| 550 | for_each_dpa_resource(ndd, res) { |
| 551 | resource_size_t allocate, available = 0, free_start, free_end; |
| 552 | struct resource *next = res->sibling, *new_res = NULL; |
| 553 | enum alloc_loc loc = ALLOC_ERR; |
| 554 | const char *action; |
| 555 | int rc = 0; |
| 556 | |
| 557 | /* ignore resources outside this nd_mapping */ |
| 558 | if (res->start > mapping_end) |
| 559 | continue; |
| 560 | if (res->end < nd_mapping->start) |
| 561 | continue; |
| 562 | |
| 563 | /* space at the beginning of the mapping */ |
| 564 | if (!first++ && res->start > nd_mapping->start) { |
| 565 | free_start = nd_mapping->start; |
| 566 | available = res->start - free_start; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 567 | if (space_valid(is_pmem, is_reserve, label_id, NULL)) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 568 | loc = ALLOC_BEFORE; |
| 569 | } |
| 570 | |
| 571 | /* space between allocations */ |
| 572 | if (!loc && next) { |
| 573 | free_start = res->start + resource_size(res); |
| 574 | free_end = min(mapping_end, next->start - 1); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 575 | if (space_valid(is_pmem, is_reserve, label_id, res) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 576 | && free_start < free_end) { |
| 577 | available = free_end + 1 - free_start; |
| 578 | loc = ALLOC_MID; |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | /* space at the end of the mapping */ |
| 583 | if (!loc && !next) { |
| 584 | free_start = res->start + resource_size(res); |
| 585 | free_end = mapping_end; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 586 | if (space_valid(is_pmem, is_reserve, label_id, res) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 587 | && free_start < free_end) { |
| 588 | available = free_end + 1 - free_start; |
| 589 | loc = ALLOC_AFTER; |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | if (!loc || !available) |
| 594 | continue; |
| 595 | allocate = min(available, n); |
| 596 | switch (loc) { |
| 597 | case ALLOC_BEFORE: |
| 598 | if (strcmp(res->name, label_id->id) == 0) { |
| 599 | /* adjust current resource up */ |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 600 | if (is_pmem && !is_reserve) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 601 | return n; |
| 602 | rc = adjust_resource(res, res->start - allocate, |
| 603 | resource_size(res) + allocate); |
| 604 | action = "cur grow up"; |
| 605 | } else |
| 606 | action = "allocate"; |
| 607 | break; |
| 608 | case ALLOC_MID: |
| 609 | if (strcmp(next->name, label_id->id) == 0) { |
| 610 | /* adjust next resource up */ |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 611 | if (is_pmem && !is_reserve) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 612 | return n; |
| 613 | rc = adjust_resource(next, next->start |
| 614 | - allocate, resource_size(next) |
| 615 | + allocate); |
| 616 | new_res = next; |
| 617 | action = "next grow up"; |
| 618 | } else if (strcmp(res->name, label_id->id) == 0) { |
| 619 | action = "grow down"; |
| 620 | } else |
| 621 | action = "allocate"; |
| 622 | break; |
| 623 | case ALLOC_AFTER: |
| 624 | if (strcmp(res->name, label_id->id) == 0) |
| 625 | action = "grow down"; |
| 626 | else |
| 627 | action = "allocate"; |
| 628 | break; |
| 629 | default: |
| 630 | return n; |
| 631 | } |
| 632 | |
| 633 | if (strcmp(action, "allocate") == 0) { |
| 634 | /* BLK allocate bottom up */ |
| 635 | if (!is_pmem) |
| 636 | free_start += available - allocate; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 637 | else if (!is_reserve && free_start != nd_mapping->start) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 638 | return n; |
| 639 | |
| 640 | new_res = nvdimm_allocate_dpa(ndd, label_id, |
| 641 | free_start, allocate); |
| 642 | if (!new_res) |
| 643 | rc = -EBUSY; |
| 644 | } else if (strcmp(action, "grow down") == 0) { |
| 645 | /* adjust current resource down */ |
| 646 | rc = adjust_resource(res, res->start, resource_size(res) |
| 647 | + allocate); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 648 | if (rc == 0) |
| 649 | res->flags |= DPA_RESOURCE_ADJUSTED; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | if (!new_res) |
| 653 | new_res = res; |
| 654 | |
| 655 | nd_dbg_dpa(nd_region, ndd, new_res, "%s(%d) %d\n", |
| 656 | action, loc, rc); |
| 657 | |
| 658 | if (rc) |
| 659 | return n; |
| 660 | |
| 661 | n -= allocate; |
| 662 | if (n) { |
| 663 | /* |
| 664 | * Retry scan with newly inserted resources. |
| 665 | * For example, if we did an ALLOC_BEFORE |
| 666 | * insertion there may also have been space |
| 667 | * available for an ALLOC_AFTER insertion, so we |
| 668 | * need to check this same resource again |
| 669 | */ |
| 670 | goto retry; |
| 671 | } else |
| 672 | return 0; |
| 673 | } |
| 674 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 675 | /* |
| 676 | * If we allocated nothing in the BLK case it may be because we are in |
| 677 | * an initial "pmem-reserve pass". Only do an initial BLK allocation |
| 678 | * when none of the DPA space is reserved. |
| 679 | */ |
| 680 | if ((is_pmem || !ndd->dpa.child) && n == to_allocate) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 681 | return init_dpa_allocation(label_id, nd_region, nd_mapping, n); |
| 682 | return n; |
| 683 | } |
| 684 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 685 | static int merge_dpa(struct nd_region *nd_region, |
| 686 | struct nd_mapping *nd_mapping, struct nd_label_id *label_id) |
| 687 | { |
| 688 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 689 | struct resource *res; |
| 690 | |
| 691 | if (strncmp("pmem", label_id->id, 4) == 0) |
| 692 | return 0; |
| 693 | retry: |
| 694 | for_each_dpa_resource(ndd, res) { |
| 695 | int rc; |
| 696 | struct resource *next = res->sibling; |
| 697 | resource_size_t end = res->start + resource_size(res); |
| 698 | |
| 699 | if (!next || strcmp(res->name, label_id->id) != 0 |
| 700 | || strcmp(next->name, label_id->id) != 0 |
| 701 | || end != next->start) |
| 702 | continue; |
| 703 | end += resource_size(next); |
| 704 | nvdimm_free_dpa(ndd, next); |
| 705 | rc = adjust_resource(res, res->start, end - res->start); |
| 706 | nd_dbg_dpa(nd_region, ndd, res, "merge %d\n", rc); |
| 707 | if (rc) |
| 708 | return rc; |
| 709 | res->flags |= DPA_RESOURCE_ADJUSTED; |
| 710 | goto retry; |
| 711 | } |
| 712 | |
| 713 | return 0; |
| 714 | } |
| 715 | |
| 716 | static int __reserve_free_pmem(struct device *dev, void *data) |
| 717 | { |
| 718 | struct nvdimm *nvdimm = data; |
| 719 | struct nd_region *nd_region; |
| 720 | struct nd_label_id label_id; |
| 721 | int i; |
| 722 | |
| 723 | if (!is_nd_pmem(dev)) |
| 724 | return 0; |
| 725 | |
| 726 | nd_region = to_nd_region(dev); |
| 727 | if (nd_region->ndr_mappings == 0) |
| 728 | return 0; |
| 729 | |
| 730 | memset(&label_id, 0, sizeof(label_id)); |
| 731 | strcat(label_id.id, "pmem-reserve"); |
| 732 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 733 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
| 734 | resource_size_t n, rem = 0; |
| 735 | |
| 736 | if (nd_mapping->nvdimm != nvdimm) |
| 737 | continue; |
| 738 | |
| 739 | n = nd_pmem_available_dpa(nd_region, nd_mapping, &rem); |
| 740 | if (n == 0) |
| 741 | return 0; |
| 742 | rem = scan_allocate(nd_region, nd_mapping, &label_id, n); |
| 743 | dev_WARN_ONCE(&nd_region->dev, rem, |
| 744 | "pmem reserve underrun: %#llx of %#llx bytes\n", |
| 745 | (unsigned long long) n - rem, |
| 746 | (unsigned long long) n); |
| 747 | return rem ? -ENXIO : 0; |
| 748 | } |
| 749 | |
| 750 | return 0; |
| 751 | } |
| 752 | |
| 753 | static void release_free_pmem(struct nvdimm_bus *nvdimm_bus, |
| 754 | struct nd_mapping *nd_mapping) |
| 755 | { |
| 756 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 757 | struct resource *res, *_res; |
| 758 | |
| 759 | for_each_dpa_resource_safe(ndd, res, _res) |
| 760 | if (strcmp(res->name, "pmem-reserve") == 0) |
| 761 | nvdimm_free_dpa(ndd, res); |
| 762 | } |
| 763 | |
| 764 | static int reserve_free_pmem(struct nvdimm_bus *nvdimm_bus, |
| 765 | struct nd_mapping *nd_mapping) |
| 766 | { |
| 767 | struct nvdimm *nvdimm = nd_mapping->nvdimm; |
| 768 | int rc; |
| 769 | |
| 770 | rc = device_for_each_child(&nvdimm_bus->dev, nvdimm, |
| 771 | __reserve_free_pmem); |
| 772 | if (rc) |
| 773 | release_free_pmem(nvdimm_bus, nd_mapping); |
| 774 | return rc; |
| 775 | } |
| 776 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 777 | /** |
| 778 | * grow_dpa_allocation - for each dimm allocate n bytes for @label_id |
| 779 | * @nd_region: the set of dimms to allocate @n more bytes from |
| 780 | * @label_id: unique identifier for the namespace consuming this dpa range |
| 781 | * @n: number of bytes per-dimm to add to the existing allocation |
| 782 | * |
| 783 | * Assumes resources are ordered. For BLK regions, first consume |
| 784 | * BLK-only available DPA free space, then consume PMEM-aliased DPA |
| 785 | * space starting at the highest DPA. For PMEM regions start |
| 786 | * allocations from the start of an interleave set and end at the first |
| 787 | * BLK allocation or the end of the interleave set, whichever comes |
| 788 | * first. |
| 789 | */ |
| 790 | static int grow_dpa_allocation(struct nd_region *nd_region, |
| 791 | struct nd_label_id *label_id, resource_size_t n) |
| 792 | { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 793 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev); |
| 794 | bool is_pmem = strncmp(label_id->id, "pmem", 4) == 0; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 795 | int i; |
| 796 | |
| 797 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 798 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 799 | resource_size_t rem = n; |
| 800 | int rc, j; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 801 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 802 | /* |
| 803 | * In the BLK case try once with all unallocated PMEM |
| 804 | * reserved, and once without |
| 805 | */ |
| 806 | for (j = is_pmem; j < 2; j++) { |
| 807 | bool blk_only = j == 0; |
| 808 | |
| 809 | if (blk_only) { |
| 810 | rc = reserve_free_pmem(nvdimm_bus, nd_mapping); |
| 811 | if (rc) |
| 812 | return rc; |
| 813 | } |
| 814 | rem = scan_allocate(nd_region, nd_mapping, |
| 815 | label_id, rem); |
| 816 | if (blk_only) |
| 817 | release_free_pmem(nvdimm_bus, nd_mapping); |
| 818 | |
| 819 | /* try again and allow encroachments into PMEM */ |
| 820 | if (rem == 0) |
| 821 | break; |
| 822 | } |
| 823 | |
| 824 | dev_WARN_ONCE(&nd_region->dev, rem, |
| 825 | "allocation underrun: %#llx of %#llx bytes\n", |
| 826 | (unsigned long long) n - rem, |
| 827 | (unsigned long long) n); |
| 828 | if (rem) |
| 829 | return -ENXIO; |
| 830 | |
| 831 | rc = merge_dpa(nd_region, nd_mapping, label_id); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 832 | if (rc) |
| 833 | return rc; |
| 834 | } |
| 835 | |
| 836 | return 0; |
| 837 | } |
| 838 | |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 839 | static void nd_namespace_pmem_set_resource(struct nd_region *nd_region, |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 840 | struct nd_namespace_pmem *nspm, resource_size_t size) |
| 841 | { |
| 842 | struct resource *res = &nspm->nsio.res; |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 843 | resource_size_t offset = 0; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 844 | |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 845 | if (size && !nspm->uuid) { |
| 846 | WARN_ON_ONCE(1); |
| 847 | size = 0; |
| 848 | } |
| 849 | |
| 850 | if (size && nspm->uuid) { |
| 851 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
| 852 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 853 | struct nd_label_id label_id; |
| 854 | struct resource *res; |
| 855 | |
| 856 | if (!ndd) { |
| 857 | size = 0; |
| 858 | goto out; |
| 859 | } |
| 860 | |
| 861 | nd_label_gen_id(&label_id, nspm->uuid, 0); |
| 862 | |
| 863 | /* calculate a spa offset from the dpa allocation offset */ |
| 864 | for_each_dpa_resource(ndd, res) |
| 865 | if (strcmp(res->name, label_id.id) == 0) { |
| 866 | offset = (res->start - nd_mapping->start) |
| 867 | * nd_region->ndr_mappings; |
| 868 | goto out; |
| 869 | } |
| 870 | |
| 871 | WARN_ON_ONCE(1); |
| 872 | size = 0; |
| 873 | } |
| 874 | |
| 875 | out: |
| 876 | res->start = nd_region->ndr_start + offset; |
| 877 | res->end = res->start + size - 1; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 878 | } |
| 879 | |
Dmitry Krivenok | bd26d0d | 2015-12-02 00:48:12 +0300 | [diff] [blame] | 880 | static bool uuid_not_set(const u8 *uuid, struct device *dev, const char *where) |
| 881 | { |
| 882 | if (!uuid) { |
| 883 | dev_dbg(dev, "%s: uuid not set\n", where); |
| 884 | return true; |
| 885 | } |
| 886 | return false; |
| 887 | } |
| 888 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 889 | static ssize_t __size_store(struct device *dev, unsigned long long val) |
| 890 | { |
| 891 | resource_size_t allocated = 0, available = 0; |
| 892 | struct nd_region *nd_region = to_nd_region(dev->parent); |
| 893 | struct nd_mapping *nd_mapping; |
| 894 | struct nvdimm_drvdata *ndd; |
| 895 | struct nd_label_id label_id; |
| 896 | u32 flags = 0, remainder; |
| 897 | u8 *uuid = NULL; |
| 898 | int rc, i; |
| 899 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 900 | if (dev->driver || to_ndns(dev)->claim) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 901 | return -EBUSY; |
| 902 | |
| 903 | if (is_namespace_pmem(dev)) { |
| 904 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 905 | |
| 906 | uuid = nspm->uuid; |
| 907 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 908 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 909 | |
| 910 | uuid = nsblk->uuid; |
| 911 | flags = NSLABEL_FLAG_LOCAL; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | /* |
| 915 | * We need a uuid for the allocation-label and dimm(s) on which |
| 916 | * to store the label. |
| 917 | */ |
Dmitry Krivenok | bd26d0d | 2015-12-02 00:48:12 +0300 | [diff] [blame] | 918 | if (uuid_not_set(uuid, dev, __func__)) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 919 | return -ENXIO; |
Dmitry Krivenok | bd26d0d | 2015-12-02 00:48:12 +0300 | [diff] [blame] | 920 | if (nd_region->ndr_mappings == 0) { |
| 921 | dev_dbg(dev, "%s: not associated with dimm(s)\n", __func__); |
| 922 | return -ENXIO; |
| 923 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 924 | |
| 925 | div_u64_rem(val, SZ_4K * nd_region->ndr_mappings, &remainder); |
| 926 | if (remainder) { |
| 927 | dev_dbg(dev, "%llu is not %dK aligned\n", val, |
| 928 | (SZ_4K * nd_region->ndr_mappings) / SZ_1K); |
| 929 | return -EINVAL; |
| 930 | } |
| 931 | |
| 932 | nd_label_gen_id(&label_id, uuid, flags); |
| 933 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 934 | nd_mapping = &nd_region->mapping[i]; |
| 935 | ndd = to_ndd(nd_mapping); |
| 936 | |
| 937 | /* |
| 938 | * All dimms in an interleave set, or the base dimm for a blk |
| 939 | * region, need to be enabled for the size to be changed. |
| 940 | */ |
| 941 | if (!ndd) |
| 942 | return -ENXIO; |
| 943 | |
| 944 | allocated += nvdimm_allocated_dpa(ndd, &label_id); |
| 945 | } |
| 946 | available = nd_region_available_dpa(nd_region); |
| 947 | |
| 948 | if (val > available + allocated) |
| 949 | return -ENOSPC; |
| 950 | |
| 951 | if (val == allocated) |
| 952 | return 0; |
| 953 | |
| 954 | val = div_u64(val, nd_region->ndr_mappings); |
| 955 | allocated = div_u64(allocated, nd_region->ndr_mappings); |
| 956 | if (val < allocated) |
| 957 | rc = shrink_dpa_allocation(nd_region, &label_id, |
| 958 | allocated - val); |
| 959 | else |
| 960 | rc = grow_dpa_allocation(nd_region, &label_id, val - allocated); |
| 961 | |
| 962 | if (rc) |
| 963 | return rc; |
| 964 | |
| 965 | if (is_namespace_pmem(dev)) { |
| 966 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 967 | |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 968 | nd_namespace_pmem_set_resource(nd_region, nspm, |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 969 | val * nd_region->ndr_mappings); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 970 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 971 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 972 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 973 | /* |
| 974 | * Try to delete the namespace if we deleted all of its |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 975 | * allocation, this is not the seed device for the |
| 976 | * region, and it is not actively claimed by a btt |
| 977 | * instance. |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 978 | */ |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 979 | if (val == 0 && nd_region->ns_seed != dev |
| 980 | && !nsblk->common.claim) |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 981 | nd_device_unregister(dev, ND_ASYNC); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | return rc; |
| 985 | } |
| 986 | |
| 987 | static ssize_t size_store(struct device *dev, |
| 988 | struct device_attribute *attr, const char *buf, size_t len) |
| 989 | { |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 990 | struct nd_region *nd_region = to_nd_region(dev->parent); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 991 | unsigned long long val; |
| 992 | u8 **uuid = NULL; |
| 993 | int rc; |
| 994 | |
| 995 | rc = kstrtoull(buf, 0, &val); |
| 996 | if (rc) |
| 997 | return rc; |
| 998 | |
| 999 | device_lock(dev); |
| 1000 | nvdimm_bus_lock(dev); |
| 1001 | wait_nvdimm_bus_probe_idle(dev); |
| 1002 | rc = __size_store(dev, val); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1003 | if (rc >= 0) |
| 1004 | rc = nd_namespace_label_update(nd_region, dev); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1005 | |
| 1006 | if (is_namespace_pmem(dev)) { |
| 1007 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 1008 | |
| 1009 | uuid = &nspm->uuid; |
| 1010 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1011 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 1012 | |
| 1013 | uuid = &nsblk->uuid; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1014 | } |
| 1015 | |
| 1016 | if (rc == 0 && val == 0 && uuid) { |
| 1017 | /* setting size zero == 'delete namespace' */ |
| 1018 | kfree(*uuid); |
| 1019 | *uuid = NULL; |
| 1020 | } |
| 1021 | |
| 1022 | dev_dbg(dev, "%s: %llx %s (%d)\n", __func__, val, rc < 0 |
| 1023 | ? "fail" : "success", rc); |
| 1024 | |
| 1025 | nvdimm_bus_unlock(dev); |
| 1026 | device_unlock(dev); |
| 1027 | |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1028 | return rc < 0 ? rc : len; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1029 | } |
| 1030 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1031 | resource_size_t __nvdimm_namespace_capacity(struct nd_namespace_common *ndns) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1032 | { |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1033 | struct device *dev = &ndns->dev; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1034 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1035 | if (is_namespace_pmem(dev)) { |
| 1036 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 1037 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1038 | return resource_size(&nspm->nsio.res); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1039 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1040 | return nd_namespace_blk_size(to_nd_namespace_blk(dev)); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1041 | } else if (is_namespace_io(dev)) { |
| 1042 | struct nd_namespace_io *nsio = to_nd_namespace_io(dev); |
| 1043 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1044 | return resource_size(&nsio->res); |
| 1045 | } else |
| 1046 | WARN_ONCE(1, "unknown namespace type\n"); |
| 1047 | return 0; |
| 1048 | } |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1049 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1050 | resource_size_t nvdimm_namespace_capacity(struct nd_namespace_common *ndns) |
| 1051 | { |
| 1052 | resource_size_t size; |
| 1053 | |
| 1054 | nvdimm_bus_lock(&ndns->dev); |
| 1055 | size = __nvdimm_namespace_capacity(ndns); |
| 1056 | nvdimm_bus_unlock(&ndns->dev); |
| 1057 | |
| 1058 | return size; |
| 1059 | } |
| 1060 | EXPORT_SYMBOL(nvdimm_namespace_capacity); |
| 1061 | |
| 1062 | static ssize_t size_show(struct device *dev, |
| 1063 | struct device_attribute *attr, char *buf) |
| 1064 | { |
| 1065 | return sprintf(buf, "%llu\n", (unsigned long long) |
| 1066 | nvdimm_namespace_capacity(to_ndns(dev))); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1067 | } |
| 1068 | static DEVICE_ATTR(size, S_IRUGO, size_show, size_store); |
| 1069 | |
Dan Williams | f95b4bc | 2016-09-21 18:16:21 -0700 | [diff] [blame] | 1070 | static u8 *namespace_to_uuid(struct device *dev) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1071 | { |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1072 | if (is_namespace_pmem(dev)) { |
| 1073 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 1074 | |
Dan Williams | f95b4bc | 2016-09-21 18:16:21 -0700 | [diff] [blame] | 1075 | return nspm->uuid; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1076 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1077 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 1078 | |
Dan Williams | f95b4bc | 2016-09-21 18:16:21 -0700 | [diff] [blame] | 1079 | return nsblk->uuid; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1080 | } else |
Dan Williams | f95b4bc | 2016-09-21 18:16:21 -0700 | [diff] [blame] | 1081 | return ERR_PTR(-ENXIO); |
| 1082 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1083 | |
Dan Williams | f95b4bc | 2016-09-21 18:16:21 -0700 | [diff] [blame] | 1084 | static ssize_t uuid_show(struct device *dev, |
| 1085 | struct device_attribute *attr, char *buf) |
| 1086 | { |
| 1087 | u8 *uuid = namespace_to_uuid(dev); |
| 1088 | |
| 1089 | if (IS_ERR(uuid)) |
| 1090 | return PTR_ERR(uuid); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1091 | if (uuid) |
| 1092 | return sprintf(buf, "%pUb\n", uuid); |
| 1093 | return sprintf(buf, "\n"); |
| 1094 | } |
| 1095 | |
| 1096 | /** |
| 1097 | * namespace_update_uuid - check for a unique uuid and whether we're "renaming" |
| 1098 | * @nd_region: parent region so we can updates all dimms in the set |
| 1099 | * @dev: namespace type for generating label_id |
| 1100 | * @new_uuid: incoming uuid |
| 1101 | * @old_uuid: reference to the uuid storage location in the namespace object |
| 1102 | */ |
| 1103 | static int namespace_update_uuid(struct nd_region *nd_region, |
| 1104 | struct device *dev, u8 *new_uuid, u8 **old_uuid) |
| 1105 | { |
| 1106 | u32 flags = is_namespace_blk(dev) ? NSLABEL_FLAG_LOCAL : 0; |
| 1107 | struct nd_label_id old_label_id; |
| 1108 | struct nd_label_id new_label_id; |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1109 | int i; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1110 | |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1111 | if (!nd_is_uuid_unique(dev, new_uuid)) |
| 1112 | return -EINVAL; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1113 | |
| 1114 | if (*old_uuid == NULL) |
| 1115 | goto out; |
| 1116 | |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1117 | /* |
| 1118 | * If we've already written a label with this uuid, then it's |
| 1119 | * too late to rename because we can't reliably update the uuid |
| 1120 | * without losing the old namespace. Userspace must delete this |
| 1121 | * namespace to abandon the old uuid. |
| 1122 | */ |
| 1123 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 1124 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
| 1125 | |
| 1126 | /* |
| 1127 | * This check by itself is sufficient because old_uuid |
| 1128 | * would be NULL above if this uuid did not exist in the |
| 1129 | * currently written set. |
| 1130 | * |
| 1131 | * FIXME: can we delete uuid with zero dpa allocated? |
| 1132 | */ |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1133 | if (list_empty(&nd_mapping->labels)) |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1134 | return -EBUSY; |
| 1135 | } |
| 1136 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1137 | nd_label_gen_id(&old_label_id, *old_uuid, flags); |
| 1138 | nd_label_gen_id(&new_label_id, new_uuid, flags); |
| 1139 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 1140 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
| 1141 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 1142 | struct resource *res; |
| 1143 | |
| 1144 | for_each_dpa_resource(ndd, res) |
| 1145 | if (strcmp(res->name, old_label_id.id) == 0) |
| 1146 | sprintf((void *) res->name, "%s", |
| 1147 | new_label_id.id); |
| 1148 | } |
| 1149 | kfree(*old_uuid); |
| 1150 | out: |
| 1151 | *old_uuid = new_uuid; |
| 1152 | return 0; |
| 1153 | } |
| 1154 | |
| 1155 | static ssize_t uuid_store(struct device *dev, |
| 1156 | struct device_attribute *attr, const char *buf, size_t len) |
| 1157 | { |
| 1158 | struct nd_region *nd_region = to_nd_region(dev->parent); |
| 1159 | u8 *uuid = NULL; |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1160 | ssize_t rc = 0; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1161 | u8 **ns_uuid; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1162 | |
| 1163 | if (is_namespace_pmem(dev)) { |
| 1164 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 1165 | |
| 1166 | ns_uuid = &nspm->uuid; |
| 1167 | } else if (is_namespace_blk(dev)) { |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1168 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 1169 | |
| 1170 | ns_uuid = &nsblk->uuid; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1171 | } else |
| 1172 | return -ENXIO; |
| 1173 | |
| 1174 | device_lock(dev); |
| 1175 | nvdimm_bus_lock(dev); |
| 1176 | wait_nvdimm_bus_probe_idle(dev); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1177 | if (to_ndns(dev)->claim) |
| 1178 | rc = -EBUSY; |
| 1179 | if (rc >= 0) |
| 1180 | rc = nd_uuid_store(dev, &uuid, buf, len); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1181 | if (rc >= 0) |
| 1182 | rc = namespace_update_uuid(nd_region, dev, uuid, ns_uuid); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1183 | if (rc >= 0) |
| 1184 | rc = nd_namespace_label_update(nd_region, dev); |
| 1185 | else |
| 1186 | kfree(uuid); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1187 | dev_dbg(dev, "%s: result: %zd wrote: %s%s", __func__, |
| 1188 | rc, buf, buf[len - 1] == '\n' ? "" : "\n"); |
| 1189 | nvdimm_bus_unlock(dev); |
| 1190 | device_unlock(dev); |
| 1191 | |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1192 | return rc < 0 ? rc : len; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1193 | } |
| 1194 | static DEVICE_ATTR_RW(uuid); |
| 1195 | |
| 1196 | static ssize_t resource_show(struct device *dev, |
| 1197 | struct device_attribute *attr, char *buf) |
| 1198 | { |
| 1199 | struct resource *res; |
| 1200 | |
| 1201 | if (is_namespace_pmem(dev)) { |
| 1202 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 1203 | |
| 1204 | res = &nspm->nsio.res; |
| 1205 | } else if (is_namespace_io(dev)) { |
| 1206 | struct nd_namespace_io *nsio = to_nd_namespace_io(dev); |
| 1207 | |
| 1208 | res = &nsio->res; |
| 1209 | } else |
| 1210 | return -ENXIO; |
| 1211 | |
| 1212 | /* no address to convey if the namespace has no allocation */ |
| 1213 | if (resource_size(res) == 0) |
| 1214 | return -ENXIO; |
| 1215 | return sprintf(buf, "%#llx\n", (unsigned long long) res->start); |
| 1216 | } |
| 1217 | static DEVICE_ATTR_RO(resource); |
| 1218 | |
Vishal Verma | fcae695 | 2015-06-25 04:22:39 -0400 | [diff] [blame] | 1219 | static const unsigned long ns_lbasize_supported[] = { 512, 520, 528, |
| 1220 | 4096, 4104, 4160, 4224, 0 }; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1221 | |
| 1222 | static ssize_t sector_size_show(struct device *dev, |
| 1223 | struct device_attribute *attr, char *buf) |
| 1224 | { |
| 1225 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 1226 | |
| 1227 | if (!is_namespace_blk(dev)) |
| 1228 | return -ENXIO; |
| 1229 | |
| 1230 | return nd_sector_size_show(nsblk->lbasize, ns_lbasize_supported, buf); |
| 1231 | } |
| 1232 | |
| 1233 | static ssize_t sector_size_store(struct device *dev, |
| 1234 | struct device_attribute *attr, const char *buf, size_t len) |
| 1235 | { |
| 1236 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1237 | struct nd_region *nd_region = to_nd_region(dev->parent); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1238 | ssize_t rc = 0; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1239 | |
| 1240 | if (!is_namespace_blk(dev)) |
| 1241 | return -ENXIO; |
| 1242 | |
| 1243 | device_lock(dev); |
| 1244 | nvdimm_bus_lock(dev); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1245 | if (to_ndns(dev)->claim) |
| 1246 | rc = -EBUSY; |
| 1247 | if (rc >= 0) |
| 1248 | rc = nd_sector_size_store(dev, buf, &nsblk->lbasize, |
| 1249 | ns_lbasize_supported); |
Dan Williams | f524bf2 | 2015-05-30 12:36:02 -0400 | [diff] [blame] | 1250 | if (rc >= 0) |
| 1251 | rc = nd_namespace_label_update(nd_region, dev); |
| 1252 | dev_dbg(dev, "%s: result: %zd %s: %s%s", __func__, |
| 1253 | rc, rc < 0 ? "tried" : "wrote", buf, |
| 1254 | buf[len - 1] == '\n' ? "" : "\n"); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1255 | nvdimm_bus_unlock(dev); |
| 1256 | device_unlock(dev); |
| 1257 | |
| 1258 | return rc ? rc : len; |
| 1259 | } |
| 1260 | static DEVICE_ATTR_RW(sector_size); |
| 1261 | |
Dan Williams | 0ba1c63 | 2015-05-30 12:35:36 -0400 | [diff] [blame] | 1262 | static ssize_t dpa_extents_show(struct device *dev, |
| 1263 | struct device_attribute *attr, char *buf) |
| 1264 | { |
| 1265 | struct nd_region *nd_region = to_nd_region(dev->parent); |
| 1266 | struct nd_label_id label_id; |
| 1267 | int count = 0, i; |
| 1268 | u8 *uuid = NULL; |
| 1269 | u32 flags = 0; |
| 1270 | |
| 1271 | nvdimm_bus_lock(dev); |
| 1272 | if (is_namespace_pmem(dev)) { |
| 1273 | struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev); |
| 1274 | |
| 1275 | uuid = nspm->uuid; |
| 1276 | flags = 0; |
| 1277 | } else if (is_namespace_blk(dev)) { |
| 1278 | struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev); |
| 1279 | |
| 1280 | uuid = nsblk->uuid; |
| 1281 | flags = NSLABEL_FLAG_LOCAL; |
| 1282 | } |
| 1283 | |
| 1284 | if (!uuid) |
| 1285 | goto out; |
| 1286 | |
| 1287 | nd_label_gen_id(&label_id, uuid, flags); |
| 1288 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 1289 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
| 1290 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 1291 | struct resource *res; |
| 1292 | |
| 1293 | for_each_dpa_resource(ndd, res) |
| 1294 | if (strcmp(res->name, label_id.id) == 0) |
| 1295 | count++; |
| 1296 | } |
| 1297 | out: |
| 1298 | nvdimm_bus_unlock(dev); |
| 1299 | |
| 1300 | return sprintf(buf, "%d\n", count); |
| 1301 | } |
| 1302 | static DEVICE_ATTR_RO(dpa_extents); |
| 1303 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1304 | static ssize_t holder_show(struct device *dev, |
| 1305 | struct device_attribute *attr, char *buf) |
| 1306 | { |
| 1307 | struct nd_namespace_common *ndns = to_ndns(dev); |
| 1308 | ssize_t rc; |
| 1309 | |
| 1310 | device_lock(dev); |
| 1311 | rc = sprintf(buf, "%s\n", ndns->claim ? dev_name(ndns->claim) : ""); |
| 1312 | device_unlock(dev); |
| 1313 | |
| 1314 | return rc; |
| 1315 | } |
| 1316 | static DEVICE_ATTR_RO(holder); |
| 1317 | |
Dan Williams | 0731de0 | 2015-12-14 15:34:15 -0800 | [diff] [blame] | 1318 | static ssize_t mode_show(struct device *dev, |
| 1319 | struct device_attribute *attr, char *buf) |
| 1320 | { |
| 1321 | struct nd_namespace_common *ndns = to_ndns(dev); |
| 1322 | struct device *claim; |
| 1323 | char *mode; |
| 1324 | ssize_t rc; |
| 1325 | |
| 1326 | device_lock(dev); |
| 1327 | claim = ndns->claim; |
Dan Williams | 9c41242 | 2016-01-23 15:34:10 -0800 | [diff] [blame] | 1328 | if (claim && is_nd_btt(claim)) |
Dan Williams | 0731de0 | 2015-12-14 15:34:15 -0800 | [diff] [blame] | 1329 | mode = "safe"; |
Dan Williams | 9c41242 | 2016-01-23 15:34:10 -0800 | [diff] [blame] | 1330 | else if (claim && is_nd_pfn(claim)) |
| 1331 | mode = "memory"; |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 1332 | else if (claim && is_nd_dax(claim)) |
| 1333 | mode = "dax"; |
Dan Williams | 9c41242 | 2016-01-23 15:34:10 -0800 | [diff] [blame] | 1334 | else if (!claim && pmem_should_map_pages(dev)) |
| 1335 | mode = "memory"; |
Dan Williams | 0731de0 | 2015-12-14 15:34:15 -0800 | [diff] [blame] | 1336 | else |
| 1337 | mode = "raw"; |
| 1338 | rc = sprintf(buf, "%s\n", mode); |
| 1339 | device_unlock(dev); |
| 1340 | |
| 1341 | return rc; |
| 1342 | } |
| 1343 | static DEVICE_ATTR_RO(mode); |
| 1344 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1345 | static ssize_t force_raw_store(struct device *dev, |
| 1346 | struct device_attribute *attr, const char *buf, size_t len) |
| 1347 | { |
| 1348 | bool force_raw; |
| 1349 | int rc = strtobool(buf, &force_raw); |
| 1350 | |
| 1351 | if (rc) |
| 1352 | return rc; |
| 1353 | |
| 1354 | to_ndns(dev)->force_raw = force_raw; |
| 1355 | return len; |
| 1356 | } |
| 1357 | |
| 1358 | static ssize_t force_raw_show(struct device *dev, |
| 1359 | struct device_attribute *attr, char *buf) |
| 1360 | { |
| 1361 | return sprintf(buf, "%d\n", to_ndns(dev)->force_raw); |
| 1362 | } |
| 1363 | static DEVICE_ATTR_RW(force_raw); |
| 1364 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1365 | static struct attribute *nd_namespace_attributes[] = { |
| 1366 | &dev_attr_nstype.attr, |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1367 | &dev_attr_size.attr, |
Dan Williams | 0731de0 | 2015-12-14 15:34:15 -0800 | [diff] [blame] | 1368 | &dev_attr_mode.attr, |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1369 | &dev_attr_uuid.attr, |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1370 | &dev_attr_holder.attr, |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1371 | &dev_attr_resource.attr, |
| 1372 | &dev_attr_alt_name.attr, |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1373 | &dev_attr_force_raw.attr, |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1374 | &dev_attr_sector_size.attr, |
Dan Williams | 0ba1c63 | 2015-05-30 12:35:36 -0400 | [diff] [blame] | 1375 | &dev_attr_dpa_extents.attr, |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1376 | NULL, |
| 1377 | }; |
| 1378 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1379 | static umode_t namespace_visible(struct kobject *kobj, |
| 1380 | struct attribute *a, int n) |
| 1381 | { |
| 1382 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1383 | |
| 1384 | if (a == &dev_attr_resource.attr) { |
| 1385 | if (is_namespace_blk(dev)) |
| 1386 | return 0; |
| 1387 | return a->mode; |
| 1388 | } |
| 1389 | |
| 1390 | if (is_namespace_pmem(dev) || is_namespace_blk(dev)) { |
| 1391 | if (a == &dev_attr_size.attr) |
| 1392 | return S_IWUSR | S_IRUGO; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1393 | |
| 1394 | if (is_namespace_pmem(dev) && a == &dev_attr_sector_size.attr) |
| 1395 | return 0; |
| 1396 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1397 | return a->mode; |
| 1398 | } |
| 1399 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1400 | if (a == &dev_attr_nstype.attr || a == &dev_attr_size.attr |
| 1401 | || a == &dev_attr_holder.attr |
Dan Williams | 0731de0 | 2015-12-14 15:34:15 -0800 | [diff] [blame] | 1402 | || a == &dev_attr_force_raw.attr |
| 1403 | || a == &dev_attr_mode.attr) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1404 | return a->mode; |
| 1405 | |
| 1406 | return 0; |
| 1407 | } |
| 1408 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1409 | static struct attribute_group nd_namespace_attribute_group = { |
| 1410 | .attrs = nd_namespace_attributes, |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1411 | .is_visible = namespace_visible, |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1412 | }; |
| 1413 | |
| 1414 | static const struct attribute_group *nd_namespace_attribute_groups[] = { |
| 1415 | &nd_device_attribute_group, |
| 1416 | &nd_namespace_attribute_group, |
Toshi Kani | 74ae66c | 2015-06-19 12:18:34 -0600 | [diff] [blame] | 1417 | &nd_numa_attribute_group, |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1418 | NULL, |
| 1419 | }; |
| 1420 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1421 | struct nd_namespace_common *nvdimm_namespace_common_probe(struct device *dev) |
| 1422 | { |
| 1423 | struct nd_btt *nd_btt = is_nd_btt(dev) ? to_nd_btt(dev) : NULL; |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 1424 | struct nd_pfn *nd_pfn = is_nd_pfn(dev) ? to_nd_pfn(dev) : NULL; |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 1425 | struct nd_dax *nd_dax = is_nd_dax(dev) ? to_nd_dax(dev) : NULL; |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1426 | struct nd_namespace_common *ndns = NULL; |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1427 | resource_size_t size; |
| 1428 | |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 1429 | if (nd_btt || nd_pfn || nd_dax) { |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1430 | if (nd_btt) |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 1431 | ndns = nd_btt->ndns; |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1432 | else if (nd_pfn) |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 1433 | ndns = nd_pfn->ndns; |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 1434 | else if (nd_dax) |
| 1435 | ndns = nd_dax->nd_pfn.ndns; |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 1436 | |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1437 | if (!ndns) |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1438 | return ERR_PTR(-ENODEV); |
| 1439 | |
| 1440 | /* |
| 1441 | * Flush any in-progess probes / removals in the driver |
| 1442 | * for the raw personality of this namespace. |
| 1443 | */ |
| 1444 | device_lock(&ndns->dev); |
| 1445 | device_unlock(&ndns->dev); |
| 1446 | if (ndns->dev.driver) { |
| 1447 | dev_dbg(&ndns->dev, "is active, can't bind %s\n", |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1448 | dev_name(dev)); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1449 | return ERR_PTR(-EBUSY); |
| 1450 | } |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1451 | if (dev_WARN_ONCE(&ndns->dev, ndns->claim != dev, |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1452 | "host (%s) vs claim (%s) mismatch\n", |
Dan Williams | 0bfb8dd | 2016-04-13 17:06:48 -0700 | [diff] [blame] | 1453 | dev_name(dev), |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1454 | dev_name(ndns->claim))) |
| 1455 | return ERR_PTR(-ENXIO); |
| 1456 | } else { |
| 1457 | ndns = to_ndns(dev); |
| 1458 | if (ndns->claim) { |
| 1459 | dev_dbg(dev, "claimed by %s, failing probe\n", |
| 1460 | dev_name(ndns->claim)); |
| 1461 | |
| 1462 | return ERR_PTR(-ENXIO); |
| 1463 | } |
| 1464 | } |
| 1465 | |
| 1466 | size = nvdimm_namespace_capacity(ndns); |
| 1467 | if (size < ND_MIN_NAMESPACE_SIZE) { |
| 1468 | dev_dbg(&ndns->dev, "%pa, too small must be at least %#x\n", |
| 1469 | &size, ND_MIN_NAMESPACE_SIZE); |
| 1470 | return ERR_PTR(-ENODEV); |
| 1471 | } |
| 1472 | |
| 1473 | if (is_namespace_pmem(&ndns->dev)) { |
| 1474 | struct nd_namespace_pmem *nspm; |
| 1475 | |
| 1476 | nspm = to_nd_namespace_pmem(&ndns->dev); |
Dmitry Krivenok | bd26d0d | 2015-12-02 00:48:12 +0300 | [diff] [blame] | 1477 | if (uuid_not_set(nspm->uuid, &ndns->dev, __func__)) |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1478 | return ERR_PTR(-ENODEV); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1479 | } else if (is_namespace_blk(&ndns->dev)) { |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 1480 | struct nd_namespace_blk *nsblk; |
| 1481 | |
| 1482 | nsblk = to_nd_namespace_blk(&ndns->dev); |
Dmitry Krivenok | bd26d0d | 2015-12-02 00:48:12 +0300 | [diff] [blame] | 1483 | if (uuid_not_set(nsblk->uuid, &ndns->dev, __func__)) |
| 1484 | return ERR_PTR(-ENODEV); |
| 1485 | if (!nsblk->lbasize) { |
| 1486 | dev_dbg(&ndns->dev, "%s: sector size not set\n", |
| 1487 | __func__); |
| 1488 | return ERR_PTR(-ENODEV); |
| 1489 | } |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 1490 | if (!nd_namespace_blk_validate(nsblk)) |
| 1491 | return ERR_PTR(-ENODEV); |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1492 | } |
| 1493 | |
| 1494 | return ndns; |
| 1495 | } |
| 1496 | EXPORT_SYMBOL(nvdimm_namespace_common_probe); |
| 1497 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1498 | static struct device **create_namespace_io(struct nd_region *nd_region) |
| 1499 | { |
| 1500 | struct nd_namespace_io *nsio; |
| 1501 | struct device *dev, **devs; |
| 1502 | struct resource *res; |
| 1503 | |
| 1504 | nsio = kzalloc(sizeof(*nsio), GFP_KERNEL); |
| 1505 | if (!nsio) |
| 1506 | return NULL; |
| 1507 | |
| 1508 | devs = kcalloc(2, sizeof(struct device *), GFP_KERNEL); |
| 1509 | if (!devs) { |
| 1510 | kfree(nsio); |
| 1511 | return NULL; |
| 1512 | } |
| 1513 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1514 | dev = &nsio->common.dev; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 1515 | dev->type = &namespace_io_device_type; |
| 1516 | dev->parent = &nd_region->dev; |
| 1517 | res = &nsio->res; |
| 1518 | res->name = dev_name(&nd_region->dev); |
| 1519 | res->flags = IORESOURCE_MEM; |
| 1520 | res->start = nd_region->ndr_start; |
| 1521 | res->end = res->start + nd_region->ndr_size - 1; |
| 1522 | |
| 1523 | devs[0] = dev; |
| 1524 | return devs; |
| 1525 | } |
| 1526 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1527 | static bool has_uuid_at_pos(struct nd_region *nd_region, u8 *uuid, |
| 1528 | u64 cookie, u16 pos) |
| 1529 | { |
| 1530 | struct nd_namespace_label *found = NULL; |
| 1531 | int i; |
| 1532 | |
| 1533 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 1534 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1535 | struct nd_label_ent *label_ent; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1536 | bool found_uuid = false; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1537 | |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1538 | list_for_each_entry(label_ent, &nd_mapping->labels, list) { |
| 1539 | struct nd_namespace_label *nd_label = label_ent->label; |
| 1540 | u16 position, nlabel; |
| 1541 | u64 isetcookie; |
| 1542 | |
| 1543 | if (!nd_label) |
| 1544 | continue; |
| 1545 | isetcookie = __le64_to_cpu(nd_label->isetcookie); |
| 1546 | position = __le16_to_cpu(nd_label->position); |
| 1547 | nlabel = __le16_to_cpu(nd_label->nlabel); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1548 | |
| 1549 | if (isetcookie != cookie) |
| 1550 | continue; |
| 1551 | |
| 1552 | if (memcmp(nd_label->uuid, uuid, NSLABEL_UUID_LEN) != 0) |
| 1553 | continue; |
| 1554 | |
| 1555 | if (found_uuid) { |
| 1556 | dev_dbg(to_ndd(nd_mapping)->dev, |
| 1557 | "%s duplicate entry for uuid\n", |
| 1558 | __func__); |
| 1559 | return false; |
| 1560 | } |
| 1561 | found_uuid = true; |
| 1562 | if (nlabel != nd_region->ndr_mappings) |
| 1563 | continue; |
| 1564 | if (position != pos) |
| 1565 | continue; |
| 1566 | found = nd_label; |
| 1567 | break; |
| 1568 | } |
| 1569 | if (found) |
| 1570 | break; |
| 1571 | } |
| 1572 | return found != NULL; |
| 1573 | } |
| 1574 | |
| 1575 | static int select_pmem_id(struct nd_region *nd_region, u8 *pmem_id) |
| 1576 | { |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1577 | int i; |
| 1578 | |
| 1579 | if (!pmem_id) |
| 1580 | return -ENODEV; |
| 1581 | |
| 1582 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 1583 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1584 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1585 | struct nd_namespace_label *nd_label = NULL; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1586 | u64 hw_start, hw_end, pmem_start, pmem_end; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1587 | struct nd_label_ent *label_ent; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1588 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1589 | WARN_ON(!mutex_is_locked(&nd_mapping->lock)); |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1590 | list_for_each_entry(label_ent, &nd_mapping->labels, list) { |
| 1591 | nd_label = label_ent->label; |
| 1592 | if (!nd_label) |
| 1593 | continue; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1594 | if (memcmp(nd_label->uuid, pmem_id, NSLABEL_UUID_LEN) == 0) |
| 1595 | break; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1596 | nd_label = NULL; |
| 1597 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1598 | |
| 1599 | if (!nd_label) { |
| 1600 | WARN_ON(1); |
| 1601 | return -EINVAL; |
| 1602 | } |
| 1603 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1604 | /* |
| 1605 | * Check that this label is compliant with the dpa |
| 1606 | * range published in NFIT |
| 1607 | */ |
| 1608 | hw_start = nd_mapping->start; |
| 1609 | hw_end = hw_start + nd_mapping->size; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1610 | pmem_start = __le64_to_cpu(nd_label->dpa); |
| 1611 | pmem_end = pmem_start + __le64_to_cpu(nd_label->rawsize); |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1612 | if (pmem_start >= hw_start && pmem_start < hw_end |
| 1613 | && pmem_end <= hw_end && pmem_end > hw_start) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1614 | /* pass */; |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1615 | else { |
| 1616 | dev_dbg(&nd_region->dev, "%s invalid label for %pUb\n", |
| 1617 | dev_name(ndd->dev), nd_label->uuid); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1618 | return -EINVAL; |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1619 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1620 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1621 | /* move recently validated label to the front of the list */ |
| 1622 | list_move(&label_ent->list, &nd_mapping->labels); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1623 | } |
| 1624 | return 0; |
| 1625 | } |
| 1626 | |
| 1627 | /** |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1628 | * create_namespace_pmem - validate interleave set labelling, retrieve label0 |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1629 | * @nd_region: region with mappings to validate |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1630 | * @nspm: target namespace to create |
| 1631 | * @nd_label: target pmem namespace label to evaluate |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1632 | */ |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1633 | struct device *create_namespace_pmem(struct nd_region *nd_region, |
| 1634 | struct nd_namespace_label *nd_label) |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1635 | { |
| 1636 | u64 cookie = nd_region_interleave_set_cookie(nd_region); |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1637 | struct nd_label_ent *label_ent; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1638 | struct nd_namespace_pmem *nspm; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1639 | struct nd_mapping *nd_mapping; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1640 | resource_size_t size = 0; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1641 | struct resource *res; |
| 1642 | struct device *dev; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1643 | int rc = 0; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1644 | u16 i; |
| 1645 | |
Dan Williams | 4765218 | 2016-09-15 18:08:05 -0700 | [diff] [blame] | 1646 | if (cookie == 0) { |
| 1647 | dev_dbg(&nd_region->dev, "invalid interleave-set-cookie\n"); |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1648 | return ERR_PTR(-ENXIO); |
Dan Williams | 4765218 | 2016-09-15 18:08:05 -0700 | [diff] [blame] | 1649 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1650 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1651 | if (__le64_to_cpu(nd_label->isetcookie) != cookie) { |
| 1652 | dev_dbg(&nd_region->dev, "invalid cookie in label: %pUb\n", |
| 1653 | nd_label->uuid); |
| 1654 | return ERR_PTR(-EAGAIN); |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1655 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1656 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1657 | nspm = kzalloc(sizeof(*nspm), GFP_KERNEL); |
| 1658 | if (!nspm) |
| 1659 | return ERR_PTR(-ENOMEM); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1660 | |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1661 | nspm->id = -1; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1662 | dev = &nspm->nsio.common.dev; |
| 1663 | dev->type = &namespace_pmem_device_type; |
| 1664 | dev->parent = &nd_region->dev; |
| 1665 | res = &nspm->nsio.res; |
| 1666 | res->name = dev_name(&nd_region->dev); |
| 1667 | res->flags = IORESOURCE_MEM; |
| 1668 | |
| 1669 | for (i = 0; i < nd_region->ndr_mappings; i++) |
| 1670 | if (!has_uuid_at_pos(nd_region, nd_label->uuid, cookie, i)) |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1671 | break; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1672 | if (i < nd_region->ndr_mappings) { |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1673 | struct nvdimm_drvdata *ndd = to_ndd(&nd_region->mapping[i]); |
| 1674 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1675 | /* |
| 1676 | * Give up if we don't find an instance of a uuid at each |
| 1677 | * position (from 0 to nd_region->ndr_mappings - 1), or if we |
| 1678 | * find a dimm with two instances of the same uuid. |
| 1679 | */ |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1680 | dev_err(&nd_region->dev, "%s missing label for %pUb\n", |
| 1681 | dev_name(ndd->dev), nd_label->uuid); |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1682 | rc = -EINVAL; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1683 | goto err; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1684 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1685 | |
| 1686 | /* |
| 1687 | * Fix up each mapping's 'labels' to have the validated pmem label for |
| 1688 | * that position at labels[0], and NULL at labels[1]. In the process, |
| 1689 | * check that the namespace aligns with interleave-set. We know |
| 1690 | * that it does not overlap with any blk namespaces by virtue of |
| 1691 | * the dimm being enabled (i.e. nd_label_reserve_dpa() |
| 1692 | * succeeded). |
| 1693 | */ |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1694 | rc = select_pmem_id(nd_region, nd_label->uuid); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1695 | if (rc) |
| 1696 | goto err; |
| 1697 | |
| 1698 | /* Calculate total size and populate namespace properties from label0 */ |
| 1699 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1700 | struct nd_namespace_label *label0; |
| 1701 | |
| 1702 | nd_mapping = &nd_region->mapping[i]; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1703 | label_ent = list_first_entry_or_null(&nd_mapping->labels, |
| 1704 | typeof(*label_ent), list); |
| 1705 | label0 = label_ent ? label_ent->label : 0; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1706 | |
| 1707 | if (!label0) { |
| 1708 | WARN_ON(1); |
| 1709 | continue; |
| 1710 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1711 | |
| 1712 | size += __le64_to_cpu(label0->rawsize); |
| 1713 | if (__le16_to_cpu(label0->position) != 0) |
| 1714 | continue; |
| 1715 | WARN_ON(nspm->alt_name || nspm->uuid); |
| 1716 | nspm->alt_name = kmemdup((void __force *) label0->name, |
| 1717 | NSLABEL_NAME_LEN, GFP_KERNEL); |
| 1718 | nspm->uuid = kmemdup((void __force *) label0->uuid, |
| 1719 | NSLABEL_UUID_LEN, GFP_KERNEL); |
| 1720 | } |
| 1721 | |
| 1722 | if (!nspm->alt_name || !nspm->uuid) { |
| 1723 | rc = -ENOMEM; |
| 1724 | goto err; |
| 1725 | } |
| 1726 | |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 1727 | nd_namespace_pmem_set_resource(nd_region, nspm, size); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1728 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1729 | return dev; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1730 | err: |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1731 | namespace_pmem_release(dev); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1732 | switch (rc) { |
| 1733 | case -EINVAL: |
| 1734 | dev_dbg(&nd_region->dev, "%s: invalid label(s)\n", __func__); |
| 1735 | break; |
| 1736 | case -ENODEV: |
| 1737 | dev_dbg(&nd_region->dev, "%s: label not found\n", __func__); |
| 1738 | break; |
| 1739 | default: |
| 1740 | dev_dbg(&nd_region->dev, "%s: unexpected err: %d\n", |
| 1741 | __func__, rc); |
| 1742 | break; |
| 1743 | } |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1744 | return ERR_PTR(rc); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 1745 | } |
| 1746 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1747 | struct resource *nsblk_add_resource(struct nd_region *nd_region, |
| 1748 | struct nvdimm_drvdata *ndd, struct nd_namespace_blk *nsblk, |
| 1749 | resource_size_t start) |
| 1750 | { |
| 1751 | struct nd_label_id label_id; |
| 1752 | struct resource *res; |
| 1753 | |
| 1754 | nd_label_gen_id(&label_id, nsblk->uuid, NSLABEL_FLAG_LOCAL); |
| 1755 | res = krealloc(nsblk->res, |
| 1756 | sizeof(void *) * (nsblk->num_resources + 1), |
| 1757 | GFP_KERNEL); |
| 1758 | if (!res) |
| 1759 | return NULL; |
| 1760 | nsblk->res = (struct resource **) res; |
| 1761 | for_each_dpa_resource(ndd, res) |
| 1762 | if (strcmp(res->name, label_id.id) == 0 |
| 1763 | && res->start == start) { |
| 1764 | nsblk->res[nsblk->num_resources++] = res; |
| 1765 | return res; |
| 1766 | } |
| 1767 | return NULL; |
| 1768 | } |
| 1769 | |
| 1770 | static struct device *nd_namespace_blk_create(struct nd_region *nd_region) |
| 1771 | { |
| 1772 | struct nd_namespace_blk *nsblk; |
| 1773 | struct device *dev; |
| 1774 | |
| 1775 | if (!is_nd_blk(&nd_region->dev)) |
| 1776 | return NULL; |
| 1777 | |
| 1778 | nsblk = kzalloc(sizeof(*nsblk), GFP_KERNEL); |
| 1779 | if (!nsblk) |
| 1780 | return NULL; |
| 1781 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1782 | dev = &nsblk->common.dev; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1783 | dev->type = &namespace_blk_device_type; |
| 1784 | nsblk->id = ida_simple_get(&nd_region->ns_ida, 0, 0, GFP_KERNEL); |
| 1785 | if (nsblk->id < 0) { |
| 1786 | kfree(nsblk); |
| 1787 | return NULL; |
| 1788 | } |
| 1789 | dev_set_name(dev, "namespace%d.%d", nd_region->id, nsblk->id); |
| 1790 | dev->parent = &nd_region->dev; |
| 1791 | dev->groups = nd_namespace_attribute_groups; |
| 1792 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1793 | return &nsblk->common.dev; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1794 | } |
| 1795 | |
| 1796 | void nd_region_create_blk_seed(struct nd_region *nd_region) |
| 1797 | { |
| 1798 | WARN_ON(!is_nvdimm_bus_locked(&nd_region->dev)); |
| 1799 | nd_region->ns_seed = nd_namespace_blk_create(nd_region); |
| 1800 | /* |
| 1801 | * Seed creation failures are not fatal, provisioning is simply |
| 1802 | * disabled until memory becomes available |
| 1803 | */ |
| 1804 | if (!nd_region->ns_seed) |
| 1805 | dev_err(&nd_region->dev, "failed to create blk namespace\n"); |
| 1806 | else |
| 1807 | nd_device_register(nd_region->ns_seed); |
| 1808 | } |
| 1809 | |
Dan Williams | cd03412 | 2016-03-11 10:15:36 -0800 | [diff] [blame] | 1810 | void nd_region_create_dax_seed(struct nd_region *nd_region) |
| 1811 | { |
| 1812 | WARN_ON(!is_nvdimm_bus_locked(&nd_region->dev)); |
| 1813 | nd_region->dax_seed = nd_dax_create(nd_region); |
| 1814 | /* |
| 1815 | * Seed creation failures are not fatal, provisioning is simply |
| 1816 | * disabled until memory becomes available |
| 1817 | */ |
| 1818 | if (!nd_region->dax_seed) |
| 1819 | dev_err(&nd_region->dev, "failed to create dax namespace\n"); |
| 1820 | } |
| 1821 | |
Dan Williams | 2dc4333 | 2015-12-13 11:41:36 -0800 | [diff] [blame] | 1822 | void nd_region_create_pfn_seed(struct nd_region *nd_region) |
| 1823 | { |
| 1824 | WARN_ON(!is_nvdimm_bus_locked(&nd_region->dev)); |
| 1825 | nd_region->pfn_seed = nd_pfn_create(nd_region); |
| 1826 | /* |
| 1827 | * Seed creation failures are not fatal, provisioning is simply |
| 1828 | * disabled until memory becomes available |
| 1829 | */ |
| 1830 | if (!nd_region->pfn_seed) |
| 1831 | dev_err(&nd_region->dev, "failed to create pfn namespace\n"); |
| 1832 | } |
| 1833 | |
Dan Williams | 8c2f7e8 | 2015-06-25 04:20:04 -0400 | [diff] [blame] | 1834 | void nd_region_create_btt_seed(struct nd_region *nd_region) |
| 1835 | { |
| 1836 | WARN_ON(!is_nvdimm_bus_locked(&nd_region->dev)); |
| 1837 | nd_region->btt_seed = nd_btt_create(nd_region); |
| 1838 | /* |
| 1839 | * Seed creation failures are not fatal, provisioning is simply |
| 1840 | * disabled until memory becomes available |
| 1841 | */ |
| 1842 | if (!nd_region->btt_seed) |
| 1843 | dev_err(&nd_region->dev, "failed to create btt namespace\n"); |
| 1844 | } |
| 1845 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1846 | static int add_namespace_resource(struct nd_region *nd_region, |
| 1847 | struct nd_namespace_label *nd_label, struct device **devs, |
| 1848 | int count) |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1849 | { |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1850 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1851 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1852 | int i; |
| 1853 | |
| 1854 | for (i = 0; i < count; i++) { |
| 1855 | u8 *uuid = namespace_to_uuid(devs[i]); |
| 1856 | struct resource *res; |
| 1857 | |
| 1858 | if (IS_ERR_OR_NULL(uuid)) { |
| 1859 | WARN_ON(1); |
| 1860 | continue; |
| 1861 | } |
| 1862 | |
| 1863 | if (memcmp(uuid, nd_label->uuid, NSLABEL_UUID_LEN) != 0) |
| 1864 | continue; |
| 1865 | if (is_namespace_blk(devs[i])) { |
| 1866 | res = nsblk_add_resource(nd_region, ndd, |
| 1867 | to_nd_namespace_blk(devs[i]), |
| 1868 | __le64_to_cpu(nd_label->dpa)); |
| 1869 | if (!res) |
| 1870 | return -ENXIO; |
| 1871 | nd_dbg_dpa(nd_region, ndd, res, "%d assign\n", count); |
| 1872 | } else { |
| 1873 | dev_err(&nd_region->dev, |
| 1874 | "error: conflicting extents for uuid: %pUb\n", |
| 1875 | nd_label->uuid); |
| 1876 | return -ENXIO; |
| 1877 | } |
| 1878 | break; |
| 1879 | } |
| 1880 | |
| 1881 | return i; |
| 1882 | } |
| 1883 | |
| 1884 | struct device *create_namespace_blk(struct nd_region *nd_region, |
| 1885 | struct nd_namespace_label *nd_label, int count) |
| 1886 | { |
| 1887 | |
| 1888 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
| 1889 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1890 | struct nd_namespace_blk *nsblk; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1891 | char *name[NSLABEL_NAME_LEN]; |
| 1892 | struct device *dev = NULL; |
| 1893 | struct resource *res; |
| 1894 | |
| 1895 | nsblk = kzalloc(sizeof(*nsblk), GFP_KERNEL); |
| 1896 | if (!nsblk) |
| 1897 | return ERR_PTR(-ENOMEM); |
| 1898 | dev = &nsblk->common.dev; |
| 1899 | dev->type = &namespace_blk_device_type; |
| 1900 | dev->parent = &nd_region->dev; |
| 1901 | nsblk->id = -1; |
| 1902 | nsblk->lbasize = __le64_to_cpu(nd_label->lbasize); |
| 1903 | nsblk->uuid = kmemdup(nd_label->uuid, NSLABEL_UUID_LEN, |
| 1904 | GFP_KERNEL); |
| 1905 | if (!nsblk->uuid) |
| 1906 | goto blk_err; |
| 1907 | memcpy(name, nd_label->name, NSLABEL_NAME_LEN); |
| 1908 | if (name[0]) |
| 1909 | nsblk->alt_name = kmemdup(name, NSLABEL_NAME_LEN, |
| 1910 | GFP_KERNEL); |
| 1911 | res = nsblk_add_resource(nd_region, ndd, nsblk, |
| 1912 | __le64_to_cpu(nd_label->dpa)); |
| 1913 | if (!res) |
| 1914 | goto blk_err; |
| 1915 | nd_dbg_dpa(nd_region, ndd, res, "%d: assign\n", count); |
| 1916 | return dev; |
| 1917 | blk_err: |
| 1918 | namespace_blk_release(dev); |
| 1919 | return ERR_PTR(-ENXIO); |
| 1920 | } |
| 1921 | |
| 1922 | static struct device **scan_labels(struct nd_region *nd_region) |
| 1923 | { |
| 1924 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
| 1925 | struct device *dev, **devs = NULL; |
| 1926 | struct nd_label_ent *label_ent, *e; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1927 | int i, count = 0; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1928 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1929 | /* "safe" because create_namespace_pmem() might list_move() label_ent */ |
| 1930 | list_for_each_entry_safe(label_ent, e, &nd_mapping->labels, list) { |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1931 | struct nd_namespace_label *nd_label = label_ent->label; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1932 | struct device **__devs; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1933 | u32 flags; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1934 | |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1935 | if (!nd_label) |
| 1936 | continue; |
| 1937 | flags = __le32_to_cpu(nd_label->flags); |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1938 | if (is_nd_blk(&nd_region->dev) |
| 1939 | == !!(flags & NSLABEL_FLAG_LOCAL)) |
| 1940 | /* pass, region matches label type */; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1941 | else |
| 1942 | continue; |
| 1943 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1944 | i = add_namespace_resource(nd_region, nd_label, devs, count); |
| 1945 | if (i < 0) |
| 1946 | goto err; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1947 | if (i < count) |
| 1948 | continue; |
| 1949 | __devs = kcalloc(count + 2, sizeof(dev), GFP_KERNEL); |
| 1950 | if (!__devs) |
| 1951 | goto err; |
| 1952 | memcpy(__devs, devs, sizeof(dev) * count); |
| 1953 | kfree(devs); |
| 1954 | devs = __devs; |
| 1955 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1956 | if (is_nd_blk(&nd_region->dev)) { |
| 1957 | dev = create_namespace_blk(nd_region, nd_label, count); |
| 1958 | if (IS_ERR(dev)) |
| 1959 | goto err; |
| 1960 | devs[count++] = dev; |
| 1961 | } else { |
| 1962 | dev = create_namespace_pmem(nd_region, nd_label); |
| 1963 | if (IS_ERR(dev)) { |
| 1964 | switch (PTR_ERR(dev)) { |
| 1965 | case -EAGAIN: |
| 1966 | /* skip invalid labels */ |
| 1967 | continue; |
| 1968 | case -ENODEV: |
| 1969 | /* fallthrough to seed creation */ |
| 1970 | break; |
| 1971 | default: |
| 1972 | goto err; |
| 1973 | } |
| 1974 | } else |
| 1975 | devs[count++] = dev; |
| 1976 | |
| 1977 | /* we only expect one valid pmem label set per region */ |
| 1978 | break; |
| 1979 | } |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1980 | } |
| 1981 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1982 | dev_dbg(&nd_region->dev, "%s: discovered %d %s namespace%s\n", |
| 1983 | __func__, count, is_nd_blk(&nd_region->dev) |
| 1984 | ? "blk" : "pmem", count == 1 ? "" : "s"); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1985 | |
| 1986 | if (count == 0) { |
| 1987 | /* Publish a zero-sized namespace for userspace to configure. */ |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 1988 | nd_mapping_free_labels(nd_mapping); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 1989 | |
| 1990 | devs = kcalloc(2, sizeof(dev), GFP_KERNEL); |
| 1991 | if (!devs) |
| 1992 | goto err; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 1993 | if (is_nd_blk(&nd_region->dev)) { |
| 1994 | struct nd_namespace_blk *nsblk; |
| 1995 | |
| 1996 | nsblk = kzalloc(sizeof(*nsblk), GFP_KERNEL); |
| 1997 | if (!nsblk) |
| 1998 | goto err; |
| 1999 | dev = &nsblk->common.dev; |
| 2000 | dev->type = &namespace_blk_device_type; |
| 2001 | } else { |
| 2002 | struct nd_namespace_pmem *nspm; |
| 2003 | |
| 2004 | nspm = kzalloc(sizeof(*nspm), GFP_KERNEL); |
| 2005 | if (!nspm) |
| 2006 | goto err; |
| 2007 | dev = &nspm->nsio.common.dev; |
| 2008 | dev->type = &namespace_pmem_device_type; |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 2009 | nd_namespace_pmem_set_resource(nd_region, nspm, 0); |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2010 | } |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2011 | dev->parent = &nd_region->dev; |
| 2012 | devs[count++] = dev; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2013 | } else if (is_nd_pmem(&nd_region->dev)) { |
| 2014 | /* clean unselected labels */ |
| 2015 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 2016 | struct list_head *l, *e; |
| 2017 | LIST_HEAD(list); |
| 2018 | int j; |
| 2019 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2020 | nd_mapping = &nd_region->mapping[i]; |
| 2021 | if (list_empty(&nd_mapping->labels)) { |
| 2022 | WARN_ON(1); |
| 2023 | continue; |
| 2024 | } |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 2025 | |
| 2026 | j = count; |
| 2027 | list_for_each_safe(l, e, &nd_mapping->labels) { |
| 2028 | if (!j--) |
| 2029 | break; |
| 2030 | list_move_tail(l, &list); |
| 2031 | } |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2032 | nd_mapping_free_labels(nd_mapping); |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 2033 | list_splice_init(&list, &nd_mapping->labels); |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2034 | } |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2035 | } |
| 2036 | |
| 2037 | return devs; |
| 2038 | |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2039 | err: |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2040 | for (i = 0; devs[i]; i++) |
| 2041 | if (is_nd_blk(&nd_region->dev)) |
| 2042 | namespace_blk_release(devs[i]); |
| 2043 | else |
| 2044 | namespace_pmem_release(devs[i]); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2045 | kfree(devs); |
| 2046 | return NULL; |
| 2047 | } |
| 2048 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2049 | static struct device **create_namespaces(struct nd_region *nd_region) |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2050 | { |
| 2051 | struct nd_mapping *nd_mapping = &nd_region->mapping[0]; |
| 2052 | struct device **devs; |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2053 | int i; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2054 | |
| 2055 | if (nd_region->ndr_mappings == 0) |
| 2056 | return NULL; |
| 2057 | |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2058 | /* lock down all mappings while we scan labels */ |
| 2059 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 2060 | nd_mapping = &nd_region->mapping[i]; |
| 2061 | mutex_lock_nested(&nd_mapping->lock, i); |
| 2062 | } |
| 2063 | |
| 2064 | devs = scan_labels(nd_region); |
| 2065 | |
| 2066 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 2067 | int reverse = nd_region->ndr_mappings - 1 - i; |
| 2068 | |
| 2069 | nd_mapping = &nd_region->mapping[reverse]; |
| 2070 | mutex_unlock(&nd_mapping->lock); |
| 2071 | } |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2072 | |
| 2073 | return devs; |
| 2074 | } |
| 2075 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2076 | static int init_active_labels(struct nd_region *nd_region) |
| 2077 | { |
| 2078 | int i; |
| 2079 | |
| 2080 | for (i = 0; i < nd_region->ndr_mappings; i++) { |
| 2081 | struct nd_mapping *nd_mapping = &nd_region->mapping[i]; |
| 2082 | struct nvdimm_drvdata *ndd = to_ndd(nd_mapping); |
| 2083 | struct nvdimm *nvdimm = nd_mapping->nvdimm; |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2084 | struct nd_label_ent *label_ent; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2085 | int count, j; |
| 2086 | |
| 2087 | /* |
| 2088 | * If the dimm is disabled then prevent the region from |
| 2089 | * being activated if it aliases DPA. |
| 2090 | */ |
| 2091 | if (!ndd) { |
| 2092 | if ((nvdimm->flags & NDD_ALIASING) == 0) |
| 2093 | return 0; |
| 2094 | dev_dbg(&nd_region->dev, "%s: is disabled, failing probe\n", |
| 2095 | dev_name(&nd_mapping->nvdimm->dev)); |
| 2096 | return -ENXIO; |
| 2097 | } |
| 2098 | nd_mapping->ndd = ndd; |
| 2099 | atomic_inc(&nvdimm->busy); |
| 2100 | get_ndd(ndd); |
| 2101 | |
| 2102 | count = nd_label_active_count(ndd); |
| 2103 | dev_dbg(ndd->dev, "%s: %d\n", __func__, count); |
| 2104 | if (!count) |
| 2105 | continue; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2106 | for (j = 0; j < count; j++) { |
| 2107 | struct nd_namespace_label *label; |
| 2108 | |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2109 | label_ent = kzalloc(sizeof(*label_ent), GFP_KERNEL); |
| 2110 | if (!label_ent) |
| 2111 | break; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2112 | label = nd_label_active(ndd, j); |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2113 | label_ent->label = label; |
| 2114 | |
| 2115 | mutex_lock(&nd_mapping->lock); |
| 2116 | list_add_tail(&label_ent->list, &nd_mapping->labels); |
| 2117 | mutex_unlock(&nd_mapping->lock); |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2118 | } |
Dan Williams | ae8219f | 2016-09-19 16:04:21 -0700 | [diff] [blame] | 2119 | |
| 2120 | if (j >= count) |
| 2121 | continue; |
| 2122 | |
| 2123 | mutex_lock(&nd_mapping->lock); |
| 2124 | nd_mapping_free_labels(nd_mapping); |
| 2125 | mutex_unlock(&nd_mapping->lock); |
| 2126 | return -ENOMEM; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2127 | } |
| 2128 | |
| 2129 | return 0; |
| 2130 | } |
| 2131 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2132 | int nd_region_register_namespaces(struct nd_region *nd_region, int *err) |
| 2133 | { |
| 2134 | struct device **devs = NULL; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2135 | int i, rc = 0, type; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2136 | |
| 2137 | *err = 0; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2138 | nvdimm_bus_lock(&nd_region->dev); |
| 2139 | rc = init_active_labels(nd_region); |
| 2140 | if (rc) { |
| 2141 | nvdimm_bus_unlock(&nd_region->dev); |
| 2142 | return rc; |
| 2143 | } |
| 2144 | |
| 2145 | type = nd_region_to_nstype(nd_region); |
| 2146 | switch (type) { |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2147 | case ND_DEVICE_NAMESPACE_IO: |
| 2148 | devs = create_namespace_io(nd_region); |
| 2149 | break; |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2150 | case ND_DEVICE_NAMESPACE_PMEM: |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2151 | case ND_DEVICE_NAMESPACE_BLK: |
Dan Williams | 8a5f50d | 2016-09-22 15:42:59 -0700 | [diff] [blame] | 2152 | devs = create_namespaces(nd_region); |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2153 | break; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2154 | default: |
| 2155 | break; |
| 2156 | } |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 2157 | nvdimm_bus_unlock(&nd_region->dev); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2158 | |
| 2159 | if (!devs) |
| 2160 | return -ENODEV; |
| 2161 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2162 | for (i = 0; devs[i]; i++) { |
| 2163 | struct device *dev = devs[i]; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2164 | int id; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2165 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2166 | if (type == ND_DEVICE_NAMESPACE_BLK) { |
| 2167 | struct nd_namespace_blk *nsblk; |
| 2168 | |
| 2169 | nsblk = to_nd_namespace_blk(dev); |
| 2170 | id = ida_simple_get(&nd_region->ns_ida, 0, 0, |
| 2171 | GFP_KERNEL); |
| 2172 | nsblk->id = id; |
Dan Williams | 0e3b0d1 | 2016-10-06 23:13:15 -0700 | [diff] [blame^] | 2173 | } else if (type == ND_DEVICE_NAMESPACE_PMEM) { |
| 2174 | struct nd_namespace_pmem *nspm; |
| 2175 | |
| 2176 | nspm = to_nd_namespace_pmem(dev); |
| 2177 | id = ida_simple_get(&nd_region->ns_ida, 0, 0, |
| 2178 | GFP_KERNEL); |
| 2179 | nspm->id = id; |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2180 | } else |
| 2181 | id = i; |
| 2182 | |
| 2183 | if (id < 0) |
| 2184 | break; |
| 2185 | dev_set_name(dev, "namespace%d.%d", nd_region->id, id); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2186 | dev->groups = nd_namespace_attribute_groups; |
| 2187 | nd_device_register(dev); |
| 2188 | } |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2189 | if (i) |
| 2190 | nd_region->ns_seed = devs[0]; |
| 2191 | |
| 2192 | if (devs[i]) { |
| 2193 | int j; |
| 2194 | |
| 2195 | for (j = i; devs[j]; j++) { |
| 2196 | struct device *dev = devs[j]; |
| 2197 | |
| 2198 | device_initialize(dev); |
| 2199 | put_device(dev); |
| 2200 | } |
| 2201 | *err = j - i; |
| 2202 | /* |
| 2203 | * All of the namespaces we tried to register failed, so |
| 2204 | * fail region activation. |
| 2205 | */ |
| 2206 | if (*err == 0) |
| 2207 | rc = -ENODEV; |
| 2208 | } |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2209 | kfree(devs); |
| 2210 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 2211 | if (rc == -ENODEV) |
| 2212 | return rc; |
| 2213 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 2214 | return i; |
| 2215 | } |