blob: 47d29632b93780fbcf3c51b1b423858f0ee6f63b [file] [log] [blame]
Dan Williams3d880022015-05-31 15:02:11 -04001/*
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 Williams004f1af2015-08-24 19:20:23 -040016#include <linux/pmem.h>
Dan Williamsae8219f2016-09-19 16:04:21 -070017#include <linux/list.h>
Dan Williams3d880022015-05-31 15:02:11 -040018#include <linux/nd.h>
Dan Williamsbf9bccc2015-06-17 17:14:46 -040019#include "nd-core.h"
Dan Williams3d880022015-05-31 15:02:11 -040020#include "nd.h"
21
22static 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 Williamsbf9bccc2015-06-17 17:14:46 -040029static void namespace_pmem_release(struct device *dev)
30{
31 struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev);
Dan Williams0e3b0d12016-10-06 23:13:15 -070032 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williamsbf9bccc2015-06-17 17:14:46 -040033
Dan Williams0e3b0d12016-10-06 23:13:15 -070034 if (nspm->id >= 0)
35 ida_simple_remove(&nd_region->ns_ida, nspm->id);
Dan Williamsbf9bccc2015-06-17 17:14:46 -040036 kfree(nspm->alt_name);
37 kfree(nspm->uuid);
38 kfree(nspm);
39}
40
41static void namespace_blk_release(struct device *dev)
42{
Dan Williams1b40e092015-05-01 13:34:01 -040043 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 Williamsbf9bccc2015-06-17 17:14:46 -040052}
53
Dan Williams3d880022015-05-31 15:02:11 -040054static struct device_type namespace_io_device_type = {
55 .name = "nd_namespace_io",
56 .release = namespace_io_release,
57};
58
Dan Williamsbf9bccc2015-06-17 17:14:46 -040059static struct device_type namespace_pmem_device_type = {
60 .name = "nd_namespace_pmem",
61 .release = namespace_pmem_release,
62};
63
64static struct device_type namespace_blk_device_type = {
65 .name = "nd_namespace_blk",
66 .release = namespace_blk_release,
67};
68
69static bool is_namespace_pmem(struct device *dev)
70{
71 return dev ? dev->type == &namespace_pmem_device_type : false;
72}
73
74static bool is_namespace_blk(struct device *dev)
75{
76 return dev ? dev->type == &namespace_blk_device_type : false;
77}
78
79static bool is_namespace_io(struct device *dev)
80{
81 return dev ? dev->type == &namespace_io_device_type : false;
82}
83
Dan Williamse07ecd72016-01-05 18:37:23 -080084static 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
112static 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 */
124bool 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 Williams004f1af2015-08-24 19:20:23 -0400137bool pmem_should_map_pages(struct device *dev)
138{
139 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williamscfe30b82016-03-03 09:38:00 -0800140 struct nd_namespace_io *nsio;
Dan Williams004f1af2015-08-24 19:20:23 -0400141
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 Williamscfe30b82016-03-03 09:38:00 -0800151 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 Williams004f1af2015-08-24 19:20:23 -0400157#ifdef ARCH_MEMREMAP_PMEM
158 return ARCH_MEMREMAP_PMEM == MEMREMAP_WB;
159#else
160 return false;
161#endif
162}
163EXPORT_SYMBOL(pmem_should_map_pages);
164
Vishal Verma5212e112015-06-25 04:20:32 -0400165const 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 Williams004f1af2015-08-24 19:20:23 -0400169 const char *suffix = NULL;
Vishal Verma5212e112015-06-25 04:20:32 -0400170
Dan Williams0731de02015-12-14 15:34:15 -0800171 if (ndns->claim && is_nd_btt(ndns->claim))
172 suffix = "s";
Vishal Verma5212e112015-06-25 04:20:32 -0400173
Dan Williams004f1af2015-08-24 19:20:23 -0400174 if (is_namespace_pmem(&ndns->dev) || is_namespace_io(&ndns->dev)) {
Dan Williams004f1af2015-08-24 19:20:23 -0400175 sprintf(name, "pmem%d%s", nd_region->id, suffix ? suffix : "");
176 } else if (is_namespace_blk(&ndns->dev)) {
Vishal Verma5212e112015-06-25 04:20:32 -0400177 struct nd_namespace_blk *nsblk;
178
179 nsblk = to_nd_namespace_blk(&ndns->dev);
Dan Williams004f1af2015-08-24 19:20:23 -0400180 sprintf(name, "ndblk%d.%d%s", nd_region->id, nsblk->id,
181 suffix ? suffix : "");
Vishal Verma5212e112015-06-25 04:20:32 -0400182 } else {
183 return NULL;
184 }
185
186 return name;
187}
188EXPORT_SYMBOL(nvdimm_namespace_disk_name);
189
Vishal Verma6ec68952015-07-29 14:58:09 -0600190const 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}
208EXPORT_SYMBOL(nd_dev_to_uuid);
209
Dan Williams3d880022015-05-31 15:02:11 -0400210static 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}
217static DEVICE_ATTR_RO(nstype);
218
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400219static 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 Williams1b40e092015-05-01 13:34:01 -0400230 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
231
232 ns_altname = &nsblk->alt_name;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400233 } else
234 return -ENXIO;
235
Dan Williams8c2f7e82015-06-25 04:20:04 -0400236 if (dev->driver || to_ndns(dev)->claim)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400237 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
260out:
261 kfree(input);
262 return rc;
263}
264
Dan Williams1b40e092015-05-01 13:34:01 -0400265static resource_size_t nd_namespace_blk_size(struct nd_namespace_blk *nsblk)
266{
Dan Williams8c2f7e82015-06-25 04:20:04 -0400267 struct nd_region *nd_region = to_nd_region(nsblk->common.dev.parent);
Dan Williams1b40e092015-05-01 13:34:01 -0400268 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 Zwisler047fc8a2015-06-25 04:21:02 -0400283static 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 Uytterhoevenae551e92016-08-31 11:45:25 +0200301 * Resources with unacknowledged adjustments indicate a
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400302 * 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
329resource_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}
339EXPORT_SYMBOL(nd_namespace_blk_validate);
340
341
Dan Williamsf524bf22015-05-30 12:36:02 -0400342static int nd_namespace_label_update(struct nd_region *nd_region,
343 struct device *dev)
344{
Dan Williams8c2f7e82015-06-25 04:20:04 -0400345 dev_WARN_ONCE(dev, dev->driver || to_ndns(dev)->claim,
Dan Williamsf524bf22015-05-30 12:36:02 -0400346 "namespace must be idle during label update\n");
Dan Williams8c2f7e82015-06-25 04:20:04 -0400347 if (dev->driver || to_ndns(dev)->claim)
Dan Williamsf524bf22015-05-30 12:36:02 -0400348 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 Williams0ba1c632015-05-30 12:35:36 -0400356 resource_size_t size = resource_size(&nspm->nsio.res);
Dan Williamsf524bf22015-05-30 12:36:02 -0400357
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 Williams0ba1c632015-05-30 12:35:36 -0400365 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 Williamsf524bf22015-05-30 12:36:02 -0400374 } else
375 return -ENXIO;
376}
377
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400378static ssize_t alt_name_store(struct device *dev,
379 struct device_attribute *attr, const char *buf, size_t len)
380{
Dan Williamsf524bf22015-05-30 12:36:02 -0400381 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400382 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 Williamsf524bf22015-05-30 12:36:02 -0400388 if (rc >= 0)
389 rc = nd_namespace_label_update(nd_region, dev);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400390 dev_dbg(dev, "%s: %s(%zd)\n", __func__, rc < 0 ? "fail " : "", rc);
391 nvdimm_bus_unlock(dev);
392 device_unlock(dev);
393
Dan Williamsf524bf22015-05-30 12:36:02 -0400394 return rc < 0 ? rc : len;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400395}
396
397static 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 Williams1b40e092015-05-01 13:34:01 -0400407 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
408
409 ns_altname = nsblk->alt_name;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400410 } else
411 return -ENXIO;
412
413 return sprintf(buf, "%s\n", ns_altname ? ns_altname : "");
414}
415static DEVICE_ATTR_RW(alt_name);
416
417static 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 Williams1b40e092015-05-01 13:34:01 -0400455 if (rc == 0)
456 res->flags |= DPA_RESOURCE_ADJUSTED;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400457 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 */
475static 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
492static 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 Williams1b40e092015-05-01 13:34:01 -0400517static bool space_valid(bool is_pmem, bool is_reserve,
518 struct nd_label_id *label_id, struct resource *res)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400519{
520 /*
521 * For BLK-space any space is valid, for PMEM-space, it must be
Dan Williams1b40e092015-05-01 13:34:01 -0400522 * contiguous with an existing allocation unless we are
523 * reserving pmem.
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400524 */
Dan Williams1b40e092015-05-01 13:34:01 -0400525 if (is_reserve || !is_pmem)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400526 return true;
527 if (!res || strcmp(res->name, label_id->id) == 0)
528 return true;
529 return false;
530}
531
532enum alloc_loc {
533 ALLOC_ERR = 0, ALLOC_BEFORE, ALLOC_MID, ALLOC_AFTER,
534};
535
536static 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 Williams1b40e092015-05-01 13:34:01 -0400541 bool is_reserve = strcmp(label_id->id, "pmem-reserve") == 0;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400542 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 Williams1b40e092015-05-01 13:34:01 -0400567 if (space_valid(is_pmem, is_reserve, label_id, NULL))
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400568 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 Williams1b40e092015-05-01 13:34:01 -0400575 if (space_valid(is_pmem, is_reserve, label_id, res)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400576 && 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 Williams1b40e092015-05-01 13:34:01 -0400586 if (space_valid(is_pmem, is_reserve, label_id, res)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400587 && 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 Williams1b40e092015-05-01 13:34:01 -0400600 if (is_pmem && !is_reserve)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400601 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 Williams1b40e092015-05-01 13:34:01 -0400611 if (is_pmem && !is_reserve)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400612 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 Williams1b40e092015-05-01 13:34:01 -0400637 else if (!is_reserve && free_start != nd_mapping->start)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400638 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 Williams1b40e092015-05-01 13:34:01 -0400648 if (rc == 0)
649 res->flags |= DPA_RESOURCE_ADJUSTED;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400650 }
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 Williams1b40e092015-05-01 13:34:01 -0400675 /*
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 Williamsbf9bccc2015-06-17 17:14:46 -0400681 return init_dpa_allocation(label_id, nd_region, nd_mapping, n);
682 return n;
683}
684
Dan Williams1b40e092015-05-01 13:34:01 -0400685static 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
716static 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
753static 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
764static 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 Williamsbf9bccc2015-06-17 17:14:46 -0400777/**
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 */
790static int grow_dpa_allocation(struct nd_region *nd_region,
791 struct nd_label_id *label_id, resource_size_t n)
792{
Dan Williams1b40e092015-05-01 13:34:01 -0400793 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
794 bool is_pmem = strncmp(label_id->id, "pmem", 4) == 0;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400795 int i;
796
797 for (i = 0; i < nd_region->ndr_mappings; i++) {
798 struct nd_mapping *nd_mapping = &nd_region->mapping[i];
Dan Williams1b40e092015-05-01 13:34:01 -0400799 resource_size_t rem = n;
800 int rc, j;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400801
Dan Williams1b40e092015-05-01 13:34:01 -0400802 /*
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 Williamsbf9bccc2015-06-17 17:14:46 -0400832 if (rc)
833 return rc;
834 }
835
836 return 0;
837}
838
Dan Williams0e3b0d12016-10-06 23:13:15 -0700839static void nd_namespace_pmem_set_resource(struct nd_region *nd_region,
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400840 struct nd_namespace_pmem *nspm, resource_size_t size)
841{
842 struct resource *res = &nspm->nsio.res;
Dan Williams0e3b0d12016-10-06 23:13:15 -0700843 resource_size_t offset = 0;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400844
Dan Williams0e3b0d12016-10-06 23:13:15 -0700845 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 Williamsbf9bccc2015-06-17 17:14:46 -0400878}
879
Dmitry Krivenokbd26d0d2015-12-02 00:48:12 +0300880static 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 Williamsbf9bccc2015-06-17 17:14:46 -0400889static 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 Williams8c2f7e82015-06-25 04:20:04 -0400900 if (dev->driver || to_ndns(dev)->claim)
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400901 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 Williams1b40e092015-05-01 13:34:01 -0400908 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
909
910 uuid = nsblk->uuid;
911 flags = NSLABEL_FLAG_LOCAL;
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400912 }
913
914 /*
915 * We need a uuid for the allocation-label and dimm(s) on which
916 * to store the label.
917 */
Dmitry Krivenokbd26d0d2015-12-02 00:48:12 +0300918 if (uuid_not_set(uuid, dev, __func__))
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400919 return -ENXIO;
Dmitry Krivenokbd26d0d2015-12-02 00:48:12 +0300920 if (nd_region->ndr_mappings == 0) {
921 dev_dbg(dev, "%s: not associated with dimm(s)\n", __func__);
922 return -ENXIO;
923 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400924
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 Williams0e3b0d12016-10-06 23:13:15 -0700968 nd_namespace_pmem_set_resource(nd_region, nspm,
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400969 val * nd_region->ndr_mappings);
Dan Williams1b40e092015-05-01 13:34:01 -0400970 } else if (is_namespace_blk(dev)) {
Dan Williams8c2f7e82015-06-25 04:20:04 -0400971 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
972
Dan Williams1b40e092015-05-01 13:34:01 -0400973 /*
974 * Try to delete the namespace if we deleted all of its
Dan Williams8c2f7e82015-06-25 04:20:04 -0400975 * allocation, this is not the seed device for the
976 * region, and it is not actively claimed by a btt
977 * instance.
Dan Williams1b40e092015-05-01 13:34:01 -0400978 */
Dan Williams8c2f7e82015-06-25 04:20:04 -0400979 if (val == 0 && nd_region->ns_seed != dev
980 && !nsblk->common.claim)
Dan Williams1b40e092015-05-01 13:34:01 -0400981 nd_device_unregister(dev, ND_ASYNC);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400982 }
983
984 return rc;
985}
986
987static ssize_t size_store(struct device *dev,
988 struct device_attribute *attr, const char *buf, size_t len)
989{
Dan Williamsf524bf22015-05-30 12:36:02 -0400990 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400991 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 Williamsf524bf22015-05-30 12:36:02 -04001003 if (rc >= 0)
1004 rc = nd_namespace_label_update(nd_region, dev);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001005
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 Williams1b40e092015-05-01 13:34:01 -04001011 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
1012
1013 uuid = &nsblk->uuid;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001014 }
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 Williamsf524bf22015-05-30 12:36:02 -04001028 return rc < 0 ? rc : len;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001029}
1030
Dan Williams8c2f7e82015-06-25 04:20:04 -04001031resource_size_t __nvdimm_namespace_capacity(struct nd_namespace_common *ndns)
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001032{
Dan Williams8c2f7e82015-06-25 04:20:04 -04001033 struct device *dev = &ndns->dev;
Dan Williams1b40e092015-05-01 13:34:01 -04001034
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001035 if (is_namespace_pmem(dev)) {
1036 struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev);
1037
Dan Williams8c2f7e82015-06-25 04:20:04 -04001038 return resource_size(&nspm->nsio.res);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001039 } else if (is_namespace_blk(dev)) {
Dan Williams8c2f7e82015-06-25 04:20:04 -04001040 return nd_namespace_blk_size(to_nd_namespace_blk(dev));
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001041 } else if (is_namespace_io(dev)) {
1042 struct nd_namespace_io *nsio = to_nd_namespace_io(dev);
1043
Dan Williams8c2f7e82015-06-25 04:20:04 -04001044 return resource_size(&nsio->res);
1045 } else
1046 WARN_ONCE(1, "unknown namespace type\n");
1047 return 0;
1048}
Dan Williams1b40e092015-05-01 13:34:01 -04001049
Dan Williams8c2f7e82015-06-25 04:20:04 -04001050resource_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}
1060EXPORT_SYMBOL(nvdimm_namespace_capacity);
1061
1062static 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 Williamsbf9bccc2015-06-17 17:14:46 -04001067}
1068static DEVICE_ATTR(size, S_IRUGO, size_show, size_store);
1069
Dan Williamsf95b4bc2016-09-21 18:16:21 -07001070static u8 *namespace_to_uuid(struct device *dev)
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001071{
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001072 if (is_namespace_pmem(dev)) {
1073 struct nd_namespace_pmem *nspm = to_nd_namespace_pmem(dev);
1074
Dan Williamsf95b4bc2016-09-21 18:16:21 -07001075 return nspm->uuid;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001076 } else if (is_namespace_blk(dev)) {
Dan Williams1b40e092015-05-01 13:34:01 -04001077 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
1078
Dan Williamsf95b4bc2016-09-21 18:16:21 -07001079 return nsblk->uuid;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001080 } else
Dan Williamsf95b4bc2016-09-21 18:16:21 -07001081 return ERR_PTR(-ENXIO);
1082}
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001083
Dan Williamsf95b4bc2016-09-21 18:16:21 -07001084static 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 Williamsbf9bccc2015-06-17 17:14:46 -04001091 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 */
1103static 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 Williamsf524bf22015-05-30 12:36:02 -04001109 int i;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001110
Dan Williamsf524bf22015-05-30 12:36:02 -04001111 if (!nd_is_uuid_unique(dev, new_uuid))
1112 return -EINVAL;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001113
1114 if (*old_uuid == NULL)
1115 goto out;
1116
Dan Williamsf524bf22015-05-30 12:36:02 -04001117 /*
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 Williamsae8219f2016-09-19 16:04:21 -07001133 if (list_empty(&nd_mapping->labels))
Dan Williamsf524bf22015-05-30 12:36:02 -04001134 return -EBUSY;
1135 }
1136
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001137 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
1155static 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 Williams8c2f7e82015-06-25 04:20:04 -04001160 ssize_t rc = 0;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001161 u8 **ns_uuid;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001162
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 Williams1b40e092015-05-01 13:34:01 -04001168 struct nd_namespace_blk *nsblk = to_nd_namespace_blk(dev);
1169
1170 ns_uuid = &nsblk->uuid;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001171 } else
1172 return -ENXIO;
1173
1174 device_lock(dev);
1175 nvdimm_bus_lock(dev);
1176 wait_nvdimm_bus_probe_idle(dev);
Dan Williams8c2f7e82015-06-25 04:20:04 -04001177 if (to_ndns(dev)->claim)
1178 rc = -EBUSY;
1179 if (rc >= 0)
1180 rc = nd_uuid_store(dev, &uuid, buf, len);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001181 if (rc >= 0)
1182 rc = namespace_update_uuid(nd_region, dev, uuid, ns_uuid);
Dan Williamsf524bf22015-05-30 12:36:02 -04001183 if (rc >= 0)
1184 rc = nd_namespace_label_update(nd_region, dev);
1185 else
1186 kfree(uuid);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001187 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 Williamsf524bf22015-05-30 12:36:02 -04001192 return rc < 0 ? rc : len;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001193}
1194static DEVICE_ATTR_RW(uuid);
1195
1196static 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}
1217static DEVICE_ATTR_RO(resource);
1218
Vishal Vermafcae6952015-06-25 04:22:39 -04001219static const unsigned long ns_lbasize_supported[] = { 512, 520, 528,
1220 4096, 4104, 4160, 4224, 0 };
Dan Williams1b40e092015-05-01 13:34:01 -04001221
1222static 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
1233static 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 Williamsf524bf22015-05-30 12:36:02 -04001237 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williams8c2f7e82015-06-25 04:20:04 -04001238 ssize_t rc = 0;
Dan Williams1b40e092015-05-01 13:34:01 -04001239
1240 if (!is_namespace_blk(dev))
1241 return -ENXIO;
1242
1243 device_lock(dev);
1244 nvdimm_bus_lock(dev);
Dan Williams8c2f7e82015-06-25 04:20:04 -04001245 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 Williamsf524bf22015-05-30 12:36:02 -04001250 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 Williams1b40e092015-05-01 13:34:01 -04001255 nvdimm_bus_unlock(dev);
1256 device_unlock(dev);
1257
1258 return rc ? rc : len;
1259}
1260static DEVICE_ATTR_RW(sector_size);
1261
Dan Williams0ba1c632015-05-30 12:35:36 -04001262static 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}
1302static DEVICE_ATTR_RO(dpa_extents);
1303
Dan Williams8c2f7e82015-06-25 04:20:04 -04001304static 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}
1316static DEVICE_ATTR_RO(holder);
1317
Dan Williams0731de02015-12-14 15:34:15 -08001318static 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 Williams9c412422016-01-23 15:34:10 -08001328 if (claim && is_nd_btt(claim))
Dan Williams0731de02015-12-14 15:34:15 -08001329 mode = "safe";
Dan Williams9c412422016-01-23 15:34:10 -08001330 else if (claim && is_nd_pfn(claim))
1331 mode = "memory";
Dan Williamscd034122016-03-11 10:15:36 -08001332 else if (claim && is_nd_dax(claim))
1333 mode = "dax";
Dan Williams9c412422016-01-23 15:34:10 -08001334 else if (!claim && pmem_should_map_pages(dev))
1335 mode = "memory";
Dan Williams0731de02015-12-14 15:34:15 -08001336 else
1337 mode = "raw";
1338 rc = sprintf(buf, "%s\n", mode);
1339 device_unlock(dev);
1340
1341 return rc;
1342}
1343static DEVICE_ATTR_RO(mode);
1344
Dan Williams8c2f7e82015-06-25 04:20:04 -04001345static 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
1358static 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}
1363static DEVICE_ATTR_RW(force_raw);
1364
Dan Williams3d880022015-05-31 15:02:11 -04001365static struct attribute *nd_namespace_attributes[] = {
1366 &dev_attr_nstype.attr,
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001367 &dev_attr_size.attr,
Dan Williams0731de02015-12-14 15:34:15 -08001368 &dev_attr_mode.attr,
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001369 &dev_attr_uuid.attr,
Dan Williams8c2f7e82015-06-25 04:20:04 -04001370 &dev_attr_holder.attr,
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001371 &dev_attr_resource.attr,
1372 &dev_attr_alt_name.attr,
Dan Williams8c2f7e82015-06-25 04:20:04 -04001373 &dev_attr_force_raw.attr,
Dan Williams1b40e092015-05-01 13:34:01 -04001374 &dev_attr_sector_size.attr,
Dan Williams0ba1c632015-05-30 12:35:36 -04001375 &dev_attr_dpa_extents.attr,
Dan Williams3d880022015-05-31 15:02:11 -04001376 NULL,
1377};
1378
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001379static 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 Williams1b40e092015-05-01 13:34:01 -04001393
1394 if (is_namespace_pmem(dev) && a == &dev_attr_sector_size.attr)
1395 return 0;
1396
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001397 return a->mode;
1398 }
1399
Dan Williams8c2f7e82015-06-25 04:20:04 -04001400 if (a == &dev_attr_nstype.attr || a == &dev_attr_size.attr
1401 || a == &dev_attr_holder.attr
Dan Williams0731de02015-12-14 15:34:15 -08001402 || a == &dev_attr_force_raw.attr
1403 || a == &dev_attr_mode.attr)
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001404 return a->mode;
1405
1406 return 0;
1407}
1408
Dan Williams3d880022015-05-31 15:02:11 -04001409static struct attribute_group nd_namespace_attribute_group = {
1410 .attrs = nd_namespace_attributes,
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001411 .is_visible = namespace_visible,
Dan Williams3d880022015-05-31 15:02:11 -04001412};
1413
1414static const struct attribute_group *nd_namespace_attribute_groups[] = {
1415 &nd_device_attribute_group,
1416 &nd_namespace_attribute_group,
Toshi Kani74ae66c2015-06-19 12:18:34 -06001417 &nd_numa_attribute_group,
Dan Williams3d880022015-05-31 15:02:11 -04001418 NULL,
1419};
1420
Dan Williams8c2f7e82015-06-25 04:20:04 -04001421struct 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 Williamse1455742015-07-30 17:57:47 -04001424 struct nd_pfn *nd_pfn = is_nd_pfn(dev) ? to_nd_pfn(dev) : NULL;
Dan Williamscd034122016-03-11 10:15:36 -08001425 struct nd_dax *nd_dax = is_nd_dax(dev) ? to_nd_dax(dev) : NULL;
Dan Williams0bfb8dd2016-04-13 17:06:48 -07001426 struct nd_namespace_common *ndns = NULL;
Dan Williams8c2f7e82015-06-25 04:20:04 -04001427 resource_size_t size;
1428
Dan Williamscd034122016-03-11 10:15:36 -08001429 if (nd_btt || nd_pfn || nd_dax) {
Dan Williams0bfb8dd2016-04-13 17:06:48 -07001430 if (nd_btt)
Dan Williamse1455742015-07-30 17:57:47 -04001431 ndns = nd_btt->ndns;
Dan Williams0bfb8dd2016-04-13 17:06:48 -07001432 else if (nd_pfn)
Dan Williamse1455742015-07-30 17:57:47 -04001433 ndns = nd_pfn->ndns;
Dan Williamscd034122016-03-11 10:15:36 -08001434 else if (nd_dax)
1435 ndns = nd_dax->nd_pfn.ndns;
Dan Williamse1455742015-07-30 17:57:47 -04001436
Dan Williams0bfb8dd2016-04-13 17:06:48 -07001437 if (!ndns)
Dan Williams8c2f7e82015-06-25 04:20:04 -04001438 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 Williams0bfb8dd2016-04-13 17:06:48 -07001448 dev_name(dev));
Dan Williams8c2f7e82015-06-25 04:20:04 -04001449 return ERR_PTR(-EBUSY);
1450 }
Dan Williams0bfb8dd2016-04-13 17:06:48 -07001451 if (dev_WARN_ONCE(&ndns->dev, ndns->claim != dev,
Dan Williams8c2f7e82015-06-25 04:20:04 -04001452 "host (%s) vs claim (%s) mismatch\n",
Dan Williams0bfb8dd2016-04-13 17:06:48 -07001453 dev_name(dev),
Dan Williams8c2f7e82015-06-25 04:20:04 -04001454 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 Krivenokbd26d0d2015-12-02 00:48:12 +03001477 if (uuid_not_set(nspm->uuid, &ndns->dev, __func__))
Dan Williams8c2f7e82015-06-25 04:20:04 -04001478 return ERR_PTR(-ENODEV);
Dan Williams8c2f7e82015-06-25 04:20:04 -04001479 } else if (is_namespace_blk(&ndns->dev)) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001480 struct nd_namespace_blk *nsblk;
1481
1482 nsblk = to_nd_namespace_blk(&ndns->dev);
Dmitry Krivenokbd26d0d2015-12-02 00:48:12 +03001483 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 Zwisler047fc8a2015-06-25 04:21:02 -04001490 if (!nd_namespace_blk_validate(nsblk))
1491 return ERR_PTR(-ENODEV);
Dan Williams8c2f7e82015-06-25 04:20:04 -04001492 }
1493
1494 return ndns;
1495}
1496EXPORT_SYMBOL(nvdimm_namespace_common_probe);
1497
Dan Williams3d880022015-05-31 15:02:11 -04001498static 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 Williams8c2f7e82015-06-25 04:20:04 -04001514 dev = &nsio->common.dev;
Dan Williams3d880022015-05-31 15:02:11 -04001515 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 Williamsbf9bccc2015-06-17 17:14:46 -04001527static 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 Williamsae8219f2016-09-19 16:04:21 -07001535 struct nd_label_ent *label_ent;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001536 bool found_uuid = false;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001537
Dan Williamsae8219f2016-09-19 16:04:21 -07001538 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 Williamsbf9bccc2015-06-17 17:14:46 -04001548
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
1575static int select_pmem_id(struct nd_region *nd_region, u8 *pmem_id)
1576{
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001577 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 Williams0e3b0d12016-10-06 23:13:15 -07001584 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
Dan Williamsae8219f2016-09-19 16:04:21 -07001585 struct nd_namespace_label *nd_label = NULL;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001586 u64 hw_start, hw_end, pmem_start, pmem_end;
Dan Williamsae8219f2016-09-19 16:04:21 -07001587 struct nd_label_ent *label_ent;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001588
Dan Williams8a5f50d2016-09-22 15:42:59 -07001589 WARN_ON(!mutex_is_locked(&nd_mapping->lock));
Dan Williamsae8219f2016-09-19 16:04:21 -07001590 list_for_each_entry(label_ent, &nd_mapping->labels, list) {
1591 nd_label = label_ent->label;
1592 if (!nd_label)
1593 continue;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001594 if (memcmp(nd_label->uuid, pmem_id, NSLABEL_UUID_LEN) == 0)
1595 break;
Dan Williamsae8219f2016-09-19 16:04:21 -07001596 nd_label = NULL;
1597 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001598
1599 if (!nd_label) {
1600 WARN_ON(1);
1601 return -EINVAL;
1602 }
1603
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001604 /*
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 Williamsae8219f2016-09-19 16:04:21 -07001610 pmem_start = __le64_to_cpu(nd_label->dpa);
1611 pmem_end = pmem_start + __le64_to_cpu(nd_label->rawsize);
Dan Williams0e3b0d12016-10-06 23:13:15 -07001612 if (pmem_start >= hw_start && pmem_start < hw_end
1613 && pmem_end <= hw_end && pmem_end > hw_start)
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001614 /* pass */;
Dan Williams0e3b0d12016-10-06 23:13:15 -07001615 else {
1616 dev_dbg(&nd_region->dev, "%s invalid label for %pUb\n",
1617 dev_name(ndd->dev), nd_label->uuid);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001618 return -EINVAL;
Dan Williams0e3b0d12016-10-06 23:13:15 -07001619 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001620
Dan Williams8a5f50d2016-09-22 15:42:59 -07001621 /* move recently validated label to the front of the list */
1622 list_move(&label_ent->list, &nd_mapping->labels);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001623 }
1624 return 0;
1625}
1626
1627/**
Dan Williams8a5f50d2016-09-22 15:42:59 -07001628 * create_namespace_pmem - validate interleave set labelling, retrieve label0
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001629 * @nd_region: region with mappings to validate
Dan Williams8a5f50d2016-09-22 15:42:59 -07001630 * @nspm: target namespace to create
1631 * @nd_label: target pmem namespace label to evaluate
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001632 */
Dan Williams8a5f50d2016-09-22 15:42:59 -07001633struct device *create_namespace_pmem(struct nd_region *nd_region,
1634 struct nd_namespace_label *nd_label)
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001635{
1636 u64 cookie = nd_region_interleave_set_cookie(nd_region);
Dan Williamsae8219f2016-09-19 16:04:21 -07001637 struct nd_label_ent *label_ent;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001638 struct nd_namespace_pmem *nspm;
Dan Williamsae8219f2016-09-19 16:04:21 -07001639 struct nd_mapping *nd_mapping;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001640 resource_size_t size = 0;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001641 struct resource *res;
1642 struct device *dev;
Dan Williamsae8219f2016-09-19 16:04:21 -07001643 int rc = 0;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001644 u16 i;
1645
Dan Williams47652182016-09-15 18:08:05 -07001646 if (cookie == 0) {
1647 dev_dbg(&nd_region->dev, "invalid interleave-set-cookie\n");
Dan Williams8a5f50d2016-09-22 15:42:59 -07001648 return ERR_PTR(-ENXIO);
Dan Williams47652182016-09-15 18:08:05 -07001649 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001650
Dan Williams8a5f50d2016-09-22 15:42:59 -07001651 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 Williamsae8219f2016-09-19 16:04:21 -07001655 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001656
Dan Williams8a5f50d2016-09-22 15:42:59 -07001657 nspm = kzalloc(sizeof(*nspm), GFP_KERNEL);
1658 if (!nspm)
1659 return ERR_PTR(-ENOMEM);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001660
Dan Williams0e3b0d12016-10-06 23:13:15 -07001661 nspm->id = -1;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001662 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 Williamsae8219f2016-09-19 16:04:21 -07001671 break;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001672 if (i < nd_region->ndr_mappings) {
Dan Williams0e3b0d12016-10-06 23:13:15 -07001673 struct nvdimm_drvdata *ndd = to_ndd(&nd_region->mapping[i]);
1674
Dan Williams8a5f50d2016-09-22 15:42:59 -07001675 /*
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 Williams0e3b0d12016-10-06 23:13:15 -07001680 dev_err(&nd_region->dev, "%s missing label for %pUb\n",
1681 dev_name(ndd->dev), nd_label->uuid);
Dan Williams8a5f50d2016-09-22 15:42:59 -07001682 rc = -EINVAL;
Dan Williamsae8219f2016-09-19 16:04:21 -07001683 goto err;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001684 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001685
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 Williams8a5f50d2016-09-22 15:42:59 -07001694 rc = select_pmem_id(nd_region, nd_label->uuid);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001695 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 Williamsae8219f2016-09-19 16:04:21 -07001700 struct nd_namespace_label *label0;
1701
1702 nd_mapping = &nd_region->mapping[i];
Dan Williamsae8219f2016-09-19 16:04:21 -07001703 label_ent = list_first_entry_or_null(&nd_mapping->labels,
1704 typeof(*label_ent), list);
1705 label0 = label_ent ? label_ent->label : 0;
Dan Williamsae8219f2016-09-19 16:04:21 -07001706
1707 if (!label0) {
1708 WARN_ON(1);
1709 continue;
1710 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001711
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 Williams0e3b0d12016-10-06 23:13:15 -07001727 nd_namespace_pmem_set_resource(nd_region, nspm, size);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001728
Dan Williams8a5f50d2016-09-22 15:42:59 -07001729 return dev;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001730 err:
Dan Williams8a5f50d2016-09-22 15:42:59 -07001731 namespace_pmem_release(dev);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001732 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 Williams8a5f50d2016-09-22 15:42:59 -07001744 return ERR_PTR(rc);
Dan Williamsbf9bccc2015-06-17 17:14:46 -04001745}
1746
Dan Williams1b40e092015-05-01 13:34:01 -04001747struct 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
1770static 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 Williams8c2f7e82015-06-25 04:20:04 -04001782 dev = &nsblk->common.dev;
Dan Williams1b40e092015-05-01 13:34:01 -04001783 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 Williams8c2f7e82015-06-25 04:20:04 -04001793 return &nsblk->common.dev;
Dan Williams1b40e092015-05-01 13:34:01 -04001794}
1795
1796void 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 Williamscd034122016-03-11 10:15:36 -08001810void 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 Williams2dc43332015-12-13 11:41:36 -08001822void 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 Williams8c2f7e82015-06-25 04:20:04 -04001834void 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 Williams8a5f50d2016-09-22 15:42:59 -07001846static int add_namespace_resource(struct nd_region *nd_region,
1847 struct nd_namespace_label *nd_label, struct device **devs,
1848 int count)
Dan Williams1b40e092015-05-01 13:34:01 -04001849{
Dan Williams8a5f50d2016-09-22 15:42:59 -07001850 struct nd_mapping *nd_mapping = &nd_region->mapping[0];
Dan Williamsae8219f2016-09-19 16:04:21 -07001851 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
Dan Williams8a5f50d2016-09-22 15:42:59 -07001852 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
1884struct 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 Williams1b40e092015-05-01 13:34:01 -04001890 struct nd_namespace_blk *nsblk;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001891 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
1922static 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 Williamsae8219f2016-09-19 16:04:21 -07001927 int i, count = 0;
Dan Williams1b40e092015-05-01 13:34:01 -04001928
Dan Williams8a5f50d2016-09-22 15:42:59 -07001929 /* "safe" because create_namespace_pmem() might list_move() label_ent */
1930 list_for_each_entry_safe(label_ent, e, &nd_mapping->labels, list) {
Dan Williamsae8219f2016-09-19 16:04:21 -07001931 struct nd_namespace_label *nd_label = label_ent->label;
Dan Williams1b40e092015-05-01 13:34:01 -04001932 struct device **__devs;
Dan Williamsae8219f2016-09-19 16:04:21 -07001933 u32 flags;
Dan Williams1b40e092015-05-01 13:34:01 -04001934
Dan Williamsae8219f2016-09-19 16:04:21 -07001935 if (!nd_label)
1936 continue;
1937 flags = __le32_to_cpu(nd_label->flags);
Dan Williams8a5f50d2016-09-22 15:42:59 -07001938 if (is_nd_blk(&nd_region->dev)
1939 == !!(flags & NSLABEL_FLAG_LOCAL))
1940 /* pass, region matches label type */;
Dan Williams1b40e092015-05-01 13:34:01 -04001941 else
1942 continue;
1943
Dan Williams8a5f50d2016-09-22 15:42:59 -07001944 i = add_namespace_resource(nd_region, nd_label, devs, count);
1945 if (i < 0)
1946 goto err;
Dan Williams1b40e092015-05-01 13:34:01 -04001947 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 Williams8a5f50d2016-09-22 15:42:59 -07001956 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 Williams1b40e092015-05-01 13:34:01 -04001980 }
1981
Dan Williams8a5f50d2016-09-22 15:42:59 -07001982 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 Williams1b40e092015-05-01 13:34:01 -04001985
1986 if (count == 0) {
1987 /* Publish a zero-sized namespace for userspace to configure. */
Dan Williamsae8219f2016-09-19 16:04:21 -07001988 nd_mapping_free_labels(nd_mapping);
Dan Williams1b40e092015-05-01 13:34:01 -04001989
1990 devs = kcalloc(2, sizeof(dev), GFP_KERNEL);
1991 if (!devs)
1992 goto err;
Dan Williams8a5f50d2016-09-22 15:42:59 -07001993 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 Williams0e3b0d12016-10-06 23:13:15 -07002009 nd_namespace_pmem_set_resource(nd_region, nspm, 0);
Dan Williams8a5f50d2016-09-22 15:42:59 -07002010 }
Dan Williams1b40e092015-05-01 13:34:01 -04002011 dev->parent = &nd_region->dev;
2012 devs[count++] = dev;
Dan Williams8a5f50d2016-09-22 15:42:59 -07002013 } else if (is_nd_pmem(&nd_region->dev)) {
2014 /* clean unselected labels */
2015 for (i = 0; i < nd_region->ndr_mappings; i++) {
Dan Williams0e3b0d12016-10-06 23:13:15 -07002016 struct list_head *l, *e;
2017 LIST_HEAD(list);
2018 int j;
2019
Dan Williams8a5f50d2016-09-22 15:42:59 -07002020 nd_mapping = &nd_region->mapping[i];
2021 if (list_empty(&nd_mapping->labels)) {
2022 WARN_ON(1);
2023 continue;
2024 }
Dan Williams0e3b0d12016-10-06 23:13:15 -07002025
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 Williams8a5f50d2016-09-22 15:42:59 -07002032 nd_mapping_free_labels(nd_mapping);
Dan Williams0e3b0d12016-10-06 23:13:15 -07002033 list_splice_init(&list, &nd_mapping->labels);
Dan Williams8a5f50d2016-09-22 15:42:59 -07002034 }
Dan Williams1b40e092015-05-01 13:34:01 -04002035 }
2036
2037 return devs;
2038
Dan Williamsae8219f2016-09-19 16:04:21 -07002039 err:
Dan Williams8a5f50d2016-09-22 15:42:59 -07002040 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 Williams1b40e092015-05-01 13:34:01 -04002045 kfree(devs);
2046 return NULL;
2047}
2048
Dan Williams8a5f50d2016-09-22 15:42:59 -07002049static struct device **create_namespaces(struct nd_region *nd_region)
Dan Williamsae8219f2016-09-19 16:04:21 -07002050{
2051 struct nd_mapping *nd_mapping = &nd_region->mapping[0];
2052 struct device **devs;
Dan Williams8a5f50d2016-09-22 15:42:59 -07002053 int i;
Dan Williamsae8219f2016-09-19 16:04:21 -07002054
2055 if (nd_region->ndr_mappings == 0)
2056 return NULL;
2057
Dan Williams8a5f50d2016-09-22 15:42:59 -07002058 /* 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 Williamsae8219f2016-09-19 16:04:21 -07002072
2073 return devs;
2074}
2075
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002076static 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 Williamsae8219f2016-09-19 16:04:21 -07002084 struct nd_label_ent *label_ent;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002085 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 Williamsbf9bccc2015-06-17 17:14:46 -04002106 for (j = 0; j < count; j++) {
2107 struct nd_namespace_label *label;
2108
Dan Williamsae8219f2016-09-19 16:04:21 -07002109 label_ent = kzalloc(sizeof(*label_ent), GFP_KERNEL);
2110 if (!label_ent)
2111 break;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002112 label = nd_label_active(ndd, j);
Dan Williamsae8219f2016-09-19 16:04:21 -07002113 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 Williamsbf9bccc2015-06-17 17:14:46 -04002118 }
Dan Williamsae8219f2016-09-19 16:04:21 -07002119
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 Williamsbf9bccc2015-06-17 17:14:46 -04002127 }
2128
2129 return 0;
2130}
2131
Dan Williams3d880022015-05-31 15:02:11 -04002132int nd_region_register_namespaces(struct nd_region *nd_region, int *err)
2133{
2134 struct device **devs = NULL;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002135 int i, rc = 0, type;
Dan Williams3d880022015-05-31 15:02:11 -04002136
2137 *err = 0;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002138 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 Williams3d880022015-05-31 15:02:11 -04002147 case ND_DEVICE_NAMESPACE_IO:
2148 devs = create_namespace_io(nd_region);
2149 break;
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002150 case ND_DEVICE_NAMESPACE_PMEM:
Dan Williams1b40e092015-05-01 13:34:01 -04002151 case ND_DEVICE_NAMESPACE_BLK:
Dan Williams8a5f50d2016-09-22 15:42:59 -07002152 devs = create_namespaces(nd_region);
Dan Williams1b40e092015-05-01 13:34:01 -04002153 break;
Dan Williams3d880022015-05-31 15:02:11 -04002154 default:
2155 break;
2156 }
Dan Williamsbf9bccc2015-06-17 17:14:46 -04002157 nvdimm_bus_unlock(&nd_region->dev);
Dan Williams3d880022015-05-31 15:02:11 -04002158
2159 if (!devs)
2160 return -ENODEV;
2161
Dan Williams3d880022015-05-31 15:02:11 -04002162 for (i = 0; devs[i]; i++) {
2163 struct device *dev = devs[i];
Dan Williams1b40e092015-05-01 13:34:01 -04002164 int id;
Dan Williams3d880022015-05-31 15:02:11 -04002165
Dan Williams1b40e092015-05-01 13:34:01 -04002166 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 Williams0e3b0d12016-10-06 23:13:15 -07002173 } 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 Williams1b40e092015-05-01 13:34:01 -04002180 } else
2181 id = i;
2182
2183 if (id < 0)
2184 break;
2185 dev_set_name(dev, "namespace%d.%d", nd_region->id, id);
Dan Williams3d880022015-05-31 15:02:11 -04002186 dev->groups = nd_namespace_attribute_groups;
2187 nd_device_register(dev);
2188 }
Dan Williams1b40e092015-05-01 13:34:01 -04002189 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 Williams3d880022015-05-31 15:02:11 -04002209 kfree(devs);
2210
Dan Williams1b40e092015-05-01 13:34:01 -04002211 if (rc == -ENODEV)
2212 return rc;
2213
Dan Williams3d880022015-05-31 15:02:11 -04002214 return i;
2215}