blob: 2030805aa216cf6b7d4acb630737dce69de27349 [file] [log] [blame]
Dan Williams4a826c82015-06-09 16:09:36 -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/device.h>
14#include <linux/ndctl.h>
Dan Williamsb3fde742017-06-04 10:18:39 +090015#include <linux/uuid.h>
Dan Williamsf524bf22015-05-30 12:36:02 -040016#include <linux/slab.h>
Dan Williams4a826c82015-06-09 16:09:36 -040017#include <linux/io.h>
18#include <linux/nd.h>
19#include "nd-core.h"
20#include "label.h"
21#include "nd.h"
22
Dan Williamsb3fde742017-06-04 10:18:39 +090023static guid_t nvdimm_btt_guid;
Vishal Verma14e49452017-06-28 14:25:00 -060024static guid_t nvdimm_btt2_guid;
Dan Williamsb3fde742017-06-04 10:18:39 +090025static guid_t nvdimm_pfn_guid;
26static guid_t nvdimm_dax_guid;
27
Dan Williams4a826c82015-06-09 16:09:36 -040028static u32 best_seq(u32 a, u32 b)
29{
30 a &= NSINDEX_SEQ_MASK;
31 b &= NSINDEX_SEQ_MASK;
32
33 if (a == 0 || a == b)
34 return b;
35 else if (b == 0)
36 return a;
37 else if (nd_inc_seq(a) == b)
38 return b;
39 else
40 return a;
41}
42
Dan Williams564e8712017-06-03 18:30:43 +090043unsigned sizeof_namespace_label(struct nvdimm_drvdata *ndd)
44{
45 return ndd->nslabel_size;
46}
47
Toshi Kani9e694d92018-02-23 14:59:22 -070048static size_t __sizeof_namespace_index(u32 nslot)
49{
50 return ALIGN(sizeof(struct nd_namespace_index) + DIV_ROUND_UP(nslot, 8),
51 NSINDEX_ALIGN);
52}
53
54static int __nvdimm_num_label_slots(struct nvdimm_drvdata *ndd,
55 size_t index_size)
56{
57 return (ndd->nsarea.config_size - index_size * 2) /
58 sizeof_namespace_label(ndd);
59}
60
Dan Williams028817682017-08-29 18:28:18 -070061int nvdimm_num_label_slots(struct nvdimm_drvdata *ndd)
62{
Toshi Kani9e694d92018-02-23 14:59:22 -070063 u32 tmp_nslot, n;
64
65 tmp_nslot = ndd->nsarea.config_size / sizeof_namespace_label(ndd);
66 n = __sizeof_namespace_index(tmp_nslot) / NSINDEX_ALIGN;
67
68 return __nvdimm_num_label_slots(ndd, NSINDEX_ALIGN * n);
Dan Williams028817682017-08-29 18:28:18 -070069}
70
Dan Williams4a826c82015-06-09 16:09:36 -040071size_t sizeof_namespace_index(struct nvdimm_drvdata *ndd)
72{
Dan Williams028817682017-08-29 18:28:18 -070073 u32 nslot, space, size;
Dan Williams4a826c82015-06-09 16:09:36 -040074
75 /*
Toshi Kani9e694d92018-02-23 14:59:22 -070076 * Per UEFI 2.7, the minimum size of the Label Storage Area is large
77 * enough to hold 2 index blocks and 2 labels. The minimum index
Alexander Duyck1cfeb662018-10-10 16:38:55 -070078 * block size is 256 bytes. The label size is 128 for namespaces
79 * prior to version 1.2 and at minimum 256 for version 1.2 and later.
Dan Williams4a826c82015-06-09 16:09:36 -040080 */
Dan Williams028817682017-08-29 18:28:18 -070081 nslot = nvdimm_num_label_slots(ndd);
82 space = ndd->nsarea.config_size - nslot * sizeof_namespace_label(ndd);
Toshi Kani9e694d92018-02-23 14:59:22 -070083 size = __sizeof_namespace_index(nslot) * 2;
84 if (size <= space && nslot >= 2)
Dan Williams028817682017-08-29 18:28:18 -070085 return size / 2;
Dan Williams4a826c82015-06-09 16:09:36 -040086
Dan Williams028817682017-08-29 18:28:18 -070087 dev_err(ndd->dev, "label area (%d) too small to host (%d byte) labels\n",
88 ndd->nsarea.config_size, sizeof_namespace_label(ndd));
89 return 0;
Dan Williamsf524bf22015-05-30 12:36:02 -040090}
91
Dan Williams564e8712017-06-03 18:30:43 +090092static int __nd_label_validate(struct nvdimm_drvdata *ndd)
Dan Williams4a826c82015-06-09 16:09:36 -040093{
94 /*
95 * On media label format consists of two index blocks followed
96 * by an array of labels. None of these structures are ever
97 * updated in place. A sequence number tracks the current
98 * active index and the next one to write, while labels are
99 * written to free slots.
100 *
101 * +------------+
102 * | |
103 * | nsindex0 |
104 * | |
105 * +------------+
106 * | |
107 * | nsindex1 |
108 * | |
109 * +------------+
110 * | label0 |
111 * +------------+
112 * | label1 |
113 * +------------+
114 * | |
115 * ....nslot...
116 * | |
117 * +------------+
118 * | labelN |
119 * +------------+
120 */
121 struct nd_namespace_index *nsindex[] = {
122 to_namespace_index(ndd, 0),
123 to_namespace_index(ndd, 1),
124 };
125 const int num_index = ARRAY_SIZE(nsindex);
126 struct device *dev = ndd->dev;
127 bool valid[2] = { 0 };
128 int i, num_valid = 0;
129 u32 seq;
130
131 for (i = 0; i < num_index; i++) {
132 u32 nslot;
133 u8 sig[NSINDEX_SIG_LEN];
134 u64 sum_save, sum, size;
Dan Williams564e8712017-06-03 18:30:43 +0900135 unsigned int version, labelsize;
Dan Williams4a826c82015-06-09 16:09:36 -0400136
137 memcpy(sig, nsindex[i]->sig, NSINDEX_SIG_LEN);
138 if (memcmp(sig, NSINDEX_SIGNATURE, NSINDEX_SIG_LEN) != 0) {
Dan Williams426824d2018-03-05 16:39:31 -0800139 dev_dbg(dev, "nsindex%d signature invalid\n", i);
Dan Williams4a826c82015-06-09 16:09:36 -0400140 continue;
141 }
Dan Williams564e8712017-06-03 18:30:43 +0900142
143 /* label sizes larger than 128 arrived with v1.2 */
144 version = __le16_to_cpu(nsindex[i]->major) * 100
145 + __le16_to_cpu(nsindex[i]->minor);
146 if (version >= 102)
147 labelsize = 1 << (7 + nsindex[i]->labelsize);
148 else
149 labelsize = 128;
150
151 if (labelsize != sizeof_namespace_label(ndd)) {
Dan Williams426824d2018-03-05 16:39:31 -0800152 dev_dbg(dev, "nsindex%d labelsize %d invalid\n",
153 i, nsindex[i]->labelsize);
Dan Williams564e8712017-06-03 18:30:43 +0900154 continue;
155 }
156
Dan Williams4a826c82015-06-09 16:09:36 -0400157 sum_save = __le64_to_cpu(nsindex[i]->checksum);
158 nsindex[i]->checksum = __cpu_to_le64(0);
159 sum = nd_fletcher64(nsindex[i], sizeof_namespace_index(ndd), 1);
160 nsindex[i]->checksum = __cpu_to_le64(sum_save);
161 if (sum != sum_save) {
Dan Williams426824d2018-03-05 16:39:31 -0800162 dev_dbg(dev, "nsindex%d checksum invalid\n", i);
Dan Williams4a826c82015-06-09 16:09:36 -0400163 continue;
164 }
165
166 seq = __le32_to_cpu(nsindex[i]->seq);
167 if ((seq & NSINDEX_SEQ_MASK) == 0) {
Dan Williams426824d2018-03-05 16:39:31 -0800168 dev_dbg(dev, "nsindex%d sequence: %#x invalid\n", i, seq);
Dan Williams4a826c82015-06-09 16:09:36 -0400169 continue;
170 }
171
172 /* sanity check the index against expected values */
173 if (__le64_to_cpu(nsindex[i]->myoff)
174 != i * sizeof_namespace_index(ndd)) {
Dan Williams426824d2018-03-05 16:39:31 -0800175 dev_dbg(dev, "nsindex%d myoff: %#llx invalid\n",
176 i, (unsigned long long)
Dan Williams4a826c82015-06-09 16:09:36 -0400177 __le64_to_cpu(nsindex[i]->myoff));
178 continue;
179 }
180 if (__le64_to_cpu(nsindex[i]->otheroff)
181 != (!i) * sizeof_namespace_index(ndd)) {
Dan Williams426824d2018-03-05 16:39:31 -0800182 dev_dbg(dev, "nsindex%d otheroff: %#llx invalid\n",
183 i, (unsigned long long)
Dan Williams4a826c82015-06-09 16:09:36 -0400184 __le64_to_cpu(nsindex[i]->otheroff));
185 continue;
186 }
Alexander Duyckd86d4d62018-10-10 16:38:41 -0700187 if (__le64_to_cpu(nsindex[i]->labeloff)
188 != 2 * sizeof_namespace_index(ndd)) {
189 dev_dbg(dev, "nsindex%d labeloff: %#llx invalid\n",
190 i, (unsigned long long)
191 __le64_to_cpu(nsindex[i]->labeloff));
192 continue;
193 }
Dan Williams4a826c82015-06-09 16:09:36 -0400194
195 size = __le64_to_cpu(nsindex[i]->mysize);
196 if (size > sizeof_namespace_index(ndd)
197 || size < sizeof(struct nd_namespace_index)) {
Dan Williams426824d2018-03-05 16:39:31 -0800198 dev_dbg(dev, "nsindex%d mysize: %#llx invalid\n", i, size);
Dan Williams4a826c82015-06-09 16:09:36 -0400199 continue;
200 }
201
202 nslot = __le32_to_cpu(nsindex[i]->nslot);
Dan Williams564e8712017-06-03 18:30:43 +0900203 if (nslot * sizeof_namespace_label(ndd)
Dan Williams4a826c82015-06-09 16:09:36 -0400204 + 2 * sizeof_namespace_index(ndd)
205 > ndd->nsarea.config_size) {
Dan Williams426824d2018-03-05 16:39:31 -0800206 dev_dbg(dev, "nsindex%d nslot: %u invalid, config_size: %#x\n",
207 i, nslot, ndd->nsarea.config_size);
Dan Williams4a826c82015-06-09 16:09:36 -0400208 continue;
209 }
210 valid[i] = true;
211 num_valid++;
212 }
213
214 switch (num_valid) {
215 case 0:
216 break;
217 case 1:
218 for (i = 0; i < num_index; i++)
219 if (valid[i])
220 return i;
221 /* can't have num_valid > 0 but valid[] = { false, false } */
222 WARN_ON(1);
223 break;
224 default:
225 /* pick the best index... */
226 seq = best_seq(__le32_to_cpu(nsindex[0]->seq),
227 __le32_to_cpu(nsindex[1]->seq));
228 if (seq == (__le32_to_cpu(nsindex[1]->seq) & NSINDEX_SEQ_MASK))
229 return 1;
230 else
231 return 0;
232 break;
233 }
234
235 return -1;
236}
237
Alexander Duyck7d47aad2018-10-10 16:39:35 -0700238static int nd_label_validate(struct nvdimm_drvdata *ndd)
Dan Williams564e8712017-06-03 18:30:43 +0900239{
240 /*
241 * In order to probe for and validate namespace index blocks we
242 * need to know the size of the labels, and we can't trust the
243 * size of the labels until we validate the index blocks.
244 * Resolve this dependency loop by probing for known label
Dan Williams8990cdf2017-06-07 10:19:46 -0700245 * sizes, but default to v1.2 256-byte namespace labels if
246 * discovery fails.
Dan Williams564e8712017-06-03 18:30:43 +0900247 */
Dan Williams8990cdf2017-06-07 10:19:46 -0700248 int label_size[] = { 128, 256 };
Dan Williams564e8712017-06-03 18:30:43 +0900249 int i, rc;
250
251 for (i = 0; i < ARRAY_SIZE(label_size); i++) {
252 ndd->nslabel_size = label_size[i];
253 rc = __nd_label_validate(ndd);
254 if (rc >= 0)
255 return rc;
256 }
257
258 return -1;
259}
260
Alexander Duyck7d47aad2018-10-10 16:39:35 -0700261static void nd_label_copy(struct nvdimm_drvdata *ndd,
262 struct nd_namespace_index *dst,
263 struct nd_namespace_index *src)
Dan Williams4a826c82015-06-09 16:09:36 -0400264{
Alexander Duyck19418b02018-10-10 16:39:06 -0700265 /* just exit if either destination or source is NULL */
266 if (!dst || !src)
Dan Williams4a826c82015-06-09 16:09:36 -0400267 return;
268
269 memcpy(dst, src, sizeof_namespace_index(ndd));
270}
271
272static struct nd_namespace_label *nd_label_base(struct nvdimm_drvdata *ndd)
273{
274 void *base = to_namespace_index(ndd, 0);
275
276 return base + 2 * sizeof_namespace_index(ndd);
277}
278
Dan Williamsf524bf22015-05-30 12:36:02 -0400279static int to_slot(struct nvdimm_drvdata *ndd,
280 struct nd_namespace_label *nd_label)
281{
Dan Williams564e8712017-06-03 18:30:43 +0900282 unsigned long label, base;
283
284 label = (unsigned long) nd_label;
285 base = (unsigned long) nd_label_base(ndd);
286
287 return (label - base) / sizeof_namespace_label(ndd);
288}
289
290static struct nd_namespace_label *to_label(struct nvdimm_drvdata *ndd, int slot)
291{
292 unsigned long label, base;
293
294 base = (unsigned long) nd_label_base(ndd);
295 label = base + sizeof_namespace_label(ndd) * slot;
296
297 return (struct nd_namespace_label *) label;
Dan Williamsf524bf22015-05-30 12:36:02 -0400298}
299
Dan Williams4a826c82015-06-09 16:09:36 -0400300#define for_each_clear_bit_le(bit, addr, size) \
301 for ((bit) = find_next_zero_bit_le((addr), (size), 0); \
302 (bit) < (size); \
303 (bit) = find_next_zero_bit_le((addr), (size), (bit) + 1))
304
305/**
Dan Williamsf524bf22015-05-30 12:36:02 -0400306 * preamble_index - common variable initialization for nd_label_* routines
Dan Williams4a826c82015-06-09 16:09:36 -0400307 * @ndd: dimm container for the relevant label set
Dan Williamsf524bf22015-05-30 12:36:02 -0400308 * @idx: namespace_index index
Dan Williams4a826c82015-06-09 16:09:36 -0400309 * @nsindex_out: on return set to the currently active namespace index
310 * @free: on return set to the free label bitmap in the index
311 * @nslot: on return set to the number of slots in the label space
312 */
Dan Williamsf524bf22015-05-30 12:36:02 -0400313static bool preamble_index(struct nvdimm_drvdata *ndd, int idx,
Dan Williams4a826c82015-06-09 16:09:36 -0400314 struct nd_namespace_index **nsindex_out,
315 unsigned long **free, u32 *nslot)
316{
317 struct nd_namespace_index *nsindex;
318
Dan Williamsf524bf22015-05-30 12:36:02 -0400319 nsindex = to_namespace_index(ndd, idx);
Dan Williams4a826c82015-06-09 16:09:36 -0400320 if (nsindex == NULL)
321 return false;
322
323 *free = (unsigned long *) nsindex->free;
324 *nslot = __le32_to_cpu(nsindex->nslot);
325 *nsindex_out = nsindex;
326
327 return true;
328}
329
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400330char *nd_label_gen_id(struct nd_label_id *label_id, u8 *uuid, u32 flags)
Dan Williams4a826c82015-06-09 16:09:36 -0400331{
332 if (!label_id || !uuid)
333 return NULL;
334 snprintf(label_id->id, ND_LABEL_ID_SIZE, "%s-%pUb",
335 flags & NSLABEL_FLAG_LOCAL ? "blk" : "pmem", uuid);
336 return label_id->id;
337}
338
Dan Williamsf524bf22015-05-30 12:36:02 -0400339static bool preamble_current(struct nvdimm_drvdata *ndd,
340 struct nd_namespace_index **nsindex,
341 unsigned long **free, u32 *nslot)
342{
343 return preamble_index(ndd, ndd->ns_current, nsindex,
344 free, nslot);
345}
346
347static bool preamble_next(struct nvdimm_drvdata *ndd,
348 struct nd_namespace_index **nsindex,
349 unsigned long **free, u32 *nslot)
350{
351 return preamble_index(ndd, ndd->ns_next, nsindex,
352 free, nslot);
353}
354
Dan Williams355d8382017-06-06 14:56:43 -0700355static bool slot_valid(struct nvdimm_drvdata *ndd,
356 struct nd_namespace_label *nd_label, u32 slot)
Dan Williams4a826c82015-06-09 16:09:36 -0400357{
358 /* check that we are written where we expect to be written */
359 if (slot != __le32_to_cpu(nd_label->slot))
360 return false;
361
362 /* check that DPA allocations are page aligned */
363 if ((__le64_to_cpu(nd_label->dpa)
364 | __le64_to_cpu(nd_label->rawsize)) % SZ_4K)
365 return false;
366
Dan Williams355d8382017-06-06 14:56:43 -0700367 /* check checksum */
368 if (namespace_label_has(ndd, checksum)) {
369 u64 sum, sum_save;
370
371 sum_save = __le64_to_cpu(nd_label->checksum);
372 nd_label->checksum = __cpu_to_le64(0);
373 sum = nd_fletcher64(nd_label, sizeof_namespace_label(ndd), 1);
374 nd_label->checksum = __cpu_to_le64(sum_save);
375 if (sum != sum_save) {
Dan Williams426824d2018-03-05 16:39:31 -0800376 dev_dbg(ndd->dev, "fail checksum. slot: %d expect: %#llx\n",
377 slot, sum);
Dan Williams355d8382017-06-06 14:56:43 -0700378 return false;
379 }
380 }
381
Dan Williams4a826c82015-06-09 16:09:36 -0400382 return true;
383}
384
385int nd_label_reserve_dpa(struct nvdimm_drvdata *ndd)
386{
387 struct nd_namespace_index *nsindex;
388 unsigned long *free;
389 u32 nslot, slot;
390
391 if (!preamble_current(ndd, &nsindex, &free, &nslot))
392 return 0; /* no label, nothing to reserve */
393
394 for_each_clear_bit_le(slot, free, nslot) {
Dan Williamsd5d30d52019-02-02 16:35:26 -0800395 struct nvdimm *nvdimm = to_nvdimm(ndd->dev);
Dan Williams4a826c82015-06-09 16:09:36 -0400396 struct nd_namespace_label *nd_label;
397 struct nd_region *nd_region = NULL;
398 u8 label_uuid[NSLABEL_UUID_LEN];
399 struct nd_label_id label_id;
400 struct resource *res;
401 u32 flags;
402
Dan Williams564e8712017-06-03 18:30:43 +0900403 nd_label = to_label(ndd, slot);
Dan Williams4a826c82015-06-09 16:09:36 -0400404
Dan Williams355d8382017-06-06 14:56:43 -0700405 if (!slot_valid(ndd, nd_label, slot))
Dan Williams4a826c82015-06-09 16:09:36 -0400406 continue;
407
408 memcpy(label_uuid, nd_label->uuid, NSLABEL_UUID_LEN);
409 flags = __le32_to_cpu(nd_label->flags);
Dan Williamsd5d30d52019-02-02 16:35:26 -0800410 if (test_bit(NDD_NOBLK, &nvdimm->flags))
411 flags &= ~NSLABEL_FLAG_LOCAL;
Dan Williams4a826c82015-06-09 16:09:36 -0400412 nd_label_gen_id(&label_id, label_uuid, flags);
413 res = nvdimm_allocate_dpa(ndd, &label_id,
414 __le64_to_cpu(nd_label->dpa),
415 __le64_to_cpu(nd_label->rawsize));
416 nd_dbg_dpa(nd_region, ndd, res, "reserve\n");
417 if (!res)
418 return -EBUSY;
419 }
420
421 return 0;
422}
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400423
Alexander Duyck2d657d12018-10-10 16:39:20 -0700424int nd_label_data_init(struct nvdimm_drvdata *ndd)
425{
Alexander Duyck7d47aad2018-10-10 16:39:35 -0700426 size_t config_size, read_size, max_xfer, offset;
427 struct nd_namespace_index *nsindex;
428 unsigned int i;
Alexander Duyck2d657d12018-10-10 16:39:20 -0700429 int rc = 0;
Dan Williams97052c12018-10-11 18:25:20 -0700430 u32 nslot;
Alexander Duyck2d657d12018-10-10 16:39:20 -0700431
432 if (ndd->data)
433 return 0;
434
435 if (ndd->nsarea.status || ndd->nsarea.max_xfer == 0) {
436 dev_dbg(ndd->dev, "failed to init config data area: (%u:%u)\n",
437 ndd->nsarea.max_xfer, ndd->nsarea.config_size);
438 return -ENXIO;
439 }
440
441 /*
442 * We need to determine the maximum index area as this is the section
443 * we must read and validate before we can start processing labels.
444 *
445 * If the area is too small to contain the two indexes and 2 labels
446 * then we abort.
447 *
448 * Start at a label size of 128 as this should result in the largest
449 * possible namespace index size.
450 */
451 ndd->nslabel_size = 128;
452 read_size = sizeof_namespace_index(ndd) * 2;
453 if (!read_size)
454 return -ENXIO;
455
456 /* Allocate config data */
457 config_size = ndd->nsarea.config_size;
458 ndd->data = kvzalloc(config_size, GFP_KERNEL);
459 if (!ndd->data)
460 return -ENOMEM;
461
Alexander Duyck7d47aad2018-10-10 16:39:35 -0700462 /*
463 * We want to guarantee as few reads as possible while conserving
464 * memory. To do that we figure out how much unused space will be left
465 * in the last read, divide that by the total number of reads it is
466 * going to take given our maximum transfer size, and then reduce our
467 * maximum transfer size based on that result.
468 */
469 max_xfer = min_t(size_t, ndd->nsarea.max_xfer, config_size);
470 if (read_size < max_xfer) {
471 /* trim waste */
472 max_xfer -= ((max_xfer - 1) - (config_size - 1) % max_xfer) /
473 DIV_ROUND_UP(config_size, max_xfer);
474 /* make certain we read indexes in exactly 1 read */
475 if (max_xfer < read_size)
476 max_xfer = read_size;
477 }
478
479 /* Make our initial read size a multiple of max_xfer size */
480 read_size = min(DIV_ROUND_UP(read_size, max_xfer) * max_xfer,
481 config_size);
482
483 /* Read the index data */
484 rc = nvdimm_get_config_data(ndd, ndd->data, 0, read_size);
485 if (rc)
486 goto out_err;
487
488 /* Validate index data, if not valid assume all labels are invalid */
489 ndd->ns_current = nd_label_validate(ndd);
490 if (ndd->ns_current < 0)
491 return 0;
492
493 /* Record our index values */
494 ndd->ns_next = nd_label_next_nsindex(ndd->ns_current);
495
496 /* Copy "current" index on top of the "next" index */
497 nsindex = to_current_namespace_index(ndd);
498 nd_label_copy(ndd, to_next_namespace_index(ndd), nsindex);
499
500 /* Determine starting offset for label data */
501 offset = __le64_to_cpu(nsindex->labeloff);
Dan Williams97052c12018-10-11 18:25:20 -0700502 nslot = __le32_to_cpu(nsindex->nslot);
Alexander Duyck7d47aad2018-10-10 16:39:35 -0700503
504 /* Loop through the free list pulling in any active labels */
Dan Williams97052c12018-10-11 18:25:20 -0700505 for (i = 0; i < nslot; i++, offset += ndd->nslabel_size) {
Alexander Duyck7d47aad2018-10-10 16:39:35 -0700506 size_t label_read_size;
507
508 /* zero out the unused labels */
509 if (test_bit_le(i, nsindex->free)) {
510 memset(ndd->data + offset, 0, ndd->nslabel_size);
511 continue;
512 }
513
514 /* if we already read past here then just continue */
515 if (offset + ndd->nslabel_size <= read_size)
516 continue;
517
518 /* if we haven't read in a while reset our read_size offset */
519 if (read_size < offset)
520 read_size = offset;
521
522 /* determine how much more will be read after this next call. */
523 label_read_size = offset + ndd->nslabel_size - read_size;
524 label_read_size = DIV_ROUND_UP(label_read_size, max_xfer) *
525 max_xfer;
526
527 /* truncate last read if needed */
528 if (read_size + label_read_size > config_size)
529 label_read_size = config_size - read_size;
530
531 /* Read the label data */
532 rc = nvdimm_get_config_data(ndd, ndd->data + read_size,
533 read_size, label_read_size);
534 if (rc)
535 goto out_err;
536
537 /* push read_size to next read offset */
538 read_size += label_read_size;
539 }
540
541 dev_dbg(ndd->dev, "len: %zu rc: %d\n", offset, rc);
542out_err:
543 return rc;
Alexander Duyck2d657d12018-10-10 16:39:20 -0700544}
545
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400546int nd_label_active_count(struct nvdimm_drvdata *ndd)
547{
548 struct nd_namespace_index *nsindex;
549 unsigned long *free;
550 u32 nslot, slot;
551 int count = 0;
552
553 if (!preamble_current(ndd, &nsindex, &free, &nslot))
554 return 0;
555
556 for_each_clear_bit_le(slot, free, nslot) {
557 struct nd_namespace_label *nd_label;
558
Dan Williams564e8712017-06-03 18:30:43 +0900559 nd_label = to_label(ndd, slot);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400560
Dan Williams355d8382017-06-06 14:56:43 -0700561 if (!slot_valid(ndd, nd_label, slot)) {
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400562 u32 label_slot = __le32_to_cpu(nd_label->slot);
563 u64 size = __le64_to_cpu(nd_label->rawsize);
564 u64 dpa = __le64_to_cpu(nd_label->dpa);
565
566 dev_dbg(ndd->dev,
Dan Williams426824d2018-03-05 16:39:31 -0800567 "slot%d invalid slot: %d dpa: %llx size: %llx\n",
568 slot, label_slot, dpa, size);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400569 continue;
570 }
571 count++;
572 }
573 return count;
574}
575
576struct nd_namespace_label *nd_label_active(struct nvdimm_drvdata *ndd, int n)
577{
578 struct nd_namespace_index *nsindex;
579 unsigned long *free;
580 u32 nslot, slot;
581
582 if (!preamble_current(ndd, &nsindex, &free, &nslot))
583 return NULL;
584
585 for_each_clear_bit_le(slot, free, nslot) {
586 struct nd_namespace_label *nd_label;
587
Dan Williams564e8712017-06-03 18:30:43 +0900588 nd_label = to_label(ndd, slot);
Dan Williams355d8382017-06-06 14:56:43 -0700589 if (!slot_valid(ndd, nd_label, slot))
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400590 continue;
591
592 if (n-- == 0)
Dan Williams564e8712017-06-03 18:30:43 +0900593 return to_label(ndd, slot);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400594 }
595
596 return NULL;
597}
Dan Williamsf524bf22015-05-30 12:36:02 -0400598
Dan Williams0ba1c632015-05-30 12:35:36 -0400599u32 nd_label_alloc_slot(struct nvdimm_drvdata *ndd)
Dan Williamsf524bf22015-05-30 12:36:02 -0400600{
601 struct nd_namespace_index *nsindex;
602 unsigned long *free;
603 u32 nslot, slot;
604
605 if (!preamble_next(ndd, &nsindex, &free, &nslot))
606 return UINT_MAX;
607
608 WARN_ON(!is_nvdimm_bus_locked(ndd->dev));
609
610 slot = find_next_bit_le(free, nslot, 0);
611 if (slot == nslot)
612 return UINT_MAX;
613
614 clear_bit_le(slot, free);
615
616 return slot;
617}
618
Dan Williams0ba1c632015-05-30 12:35:36 -0400619bool nd_label_free_slot(struct nvdimm_drvdata *ndd, u32 slot)
Dan Williamsf524bf22015-05-30 12:36:02 -0400620{
621 struct nd_namespace_index *nsindex;
622 unsigned long *free;
623 u32 nslot;
624
625 if (!preamble_next(ndd, &nsindex, &free, &nslot))
626 return false;
627
628 WARN_ON(!is_nvdimm_bus_locked(ndd->dev));
629
630 if (slot < nslot)
631 return !test_and_set_bit_le(slot, free);
632 return false;
633}
634
635u32 nd_label_nfree(struct nvdimm_drvdata *ndd)
636{
637 struct nd_namespace_index *nsindex;
638 unsigned long *free;
639 u32 nslot;
640
641 WARN_ON(!is_nvdimm_bus_locked(ndd->dev));
642
643 if (!preamble_next(ndd, &nsindex, &free, &nslot))
Dan Williams0ba1c632015-05-30 12:35:36 -0400644 return nvdimm_num_label_slots(ndd);
Dan Williamsf524bf22015-05-30 12:36:02 -0400645
646 return bitmap_weight(free, nslot);
647}
648
649static int nd_label_write_index(struct nvdimm_drvdata *ndd, int index, u32 seq,
650 unsigned long flags)
651{
652 struct nd_namespace_index *nsindex;
653 unsigned long offset;
654 u64 checksum;
655 u32 nslot;
656 int rc;
657
658 nsindex = to_namespace_index(ndd, index);
659 if (flags & ND_NSINDEX_INIT)
660 nslot = nvdimm_num_label_slots(ndd);
661 else
662 nslot = __le32_to_cpu(nsindex->nslot);
663
664 memcpy(nsindex->sig, NSINDEX_SIGNATURE, NSINDEX_SIG_LEN);
Dan Williams564e8712017-06-03 18:30:43 +0900665 memset(&nsindex->flags, 0, 3);
666 nsindex->labelsize = sizeof_namespace_label(ndd) >> 8;
Dan Williamsf524bf22015-05-30 12:36:02 -0400667 nsindex->seq = __cpu_to_le32(seq);
668 offset = (unsigned long) nsindex
669 - (unsigned long) to_namespace_index(ndd, 0);
670 nsindex->myoff = __cpu_to_le64(offset);
671 nsindex->mysize = __cpu_to_le64(sizeof_namespace_index(ndd));
672 offset = (unsigned long) to_namespace_index(ndd,
673 nd_label_next_nsindex(index))
674 - (unsigned long) to_namespace_index(ndd, 0);
675 nsindex->otheroff = __cpu_to_le64(offset);
676 offset = (unsigned long) nd_label_base(ndd)
677 - (unsigned long) to_namespace_index(ndd, 0);
678 nsindex->labeloff = __cpu_to_le64(offset);
679 nsindex->nslot = __cpu_to_le32(nslot);
680 nsindex->major = __cpu_to_le16(1);
Dan Williams8990cdf2017-06-07 10:19:46 -0700681 if (sizeof_namespace_label(ndd) < 256)
682 nsindex->minor = __cpu_to_le16(1);
683 else
684 nsindex->minor = __cpu_to_le16(2);
Dan Williamsf524bf22015-05-30 12:36:02 -0400685 nsindex->checksum = __cpu_to_le64(0);
686 if (flags & ND_NSINDEX_INIT) {
687 unsigned long *free = (unsigned long *) nsindex->free;
688 u32 nfree = ALIGN(nslot, BITS_PER_LONG);
689 int last_bits, i;
690
691 memset(nsindex->free, 0xff, nfree / 8);
692 for (i = 0, last_bits = nfree - nslot; i < last_bits; i++)
693 clear_bit_le(nslot + i, free);
694 }
695 checksum = nd_fletcher64(nsindex, sizeof_namespace_index(ndd), 1);
696 nsindex->checksum = __cpu_to_le64(checksum);
697 rc = nvdimm_set_config_data(ndd, __le64_to_cpu(nsindex->myoff),
698 nsindex, sizeof_namespace_index(ndd));
699 if (rc < 0)
700 return rc;
701
702 if (flags & ND_NSINDEX_INIT)
703 return 0;
704
705 /* copy the index we just wrote to the new 'next' */
706 WARN_ON(index != ndd->ns_next);
707 nd_label_copy(ndd, to_current_namespace_index(ndd), nsindex);
708 ndd->ns_current = nd_label_next_nsindex(ndd->ns_current);
709 ndd->ns_next = nd_label_next_nsindex(ndd->ns_next);
710 WARN_ON(ndd->ns_current == ndd->ns_next);
711
712 return 0;
713}
714
715static unsigned long nd_label_offset(struct nvdimm_drvdata *ndd,
716 struct nd_namespace_label *nd_label)
717{
718 return (unsigned long) nd_label
719 - (unsigned long) to_namespace_index(ndd, 0);
720}
721
Dan Williamsb3fde742017-06-04 10:18:39 +0900722enum nvdimm_claim_class to_nvdimm_cclass(guid_t *guid)
723{
724 if (guid_equal(guid, &nvdimm_btt_guid))
725 return NVDIMM_CCLASS_BTT;
Vishal Verma14e49452017-06-28 14:25:00 -0600726 else if (guid_equal(guid, &nvdimm_btt2_guid))
727 return NVDIMM_CCLASS_BTT2;
Dan Williamsb3fde742017-06-04 10:18:39 +0900728 else if (guid_equal(guid, &nvdimm_pfn_guid))
729 return NVDIMM_CCLASS_PFN;
730 else if (guid_equal(guid, &nvdimm_dax_guid))
731 return NVDIMM_CCLASS_DAX;
732 else if (guid_equal(guid, &guid_null))
733 return NVDIMM_CCLASS_NONE;
734
735 return NVDIMM_CCLASS_UNKNOWN;
736}
737
738static const guid_t *to_abstraction_guid(enum nvdimm_claim_class claim_class,
739 guid_t *target)
740{
741 if (claim_class == NVDIMM_CCLASS_BTT)
742 return &nvdimm_btt_guid;
Vishal Verma14e49452017-06-28 14:25:00 -0600743 else if (claim_class == NVDIMM_CCLASS_BTT2)
744 return &nvdimm_btt2_guid;
Dan Williamsb3fde742017-06-04 10:18:39 +0900745 else if (claim_class == NVDIMM_CCLASS_PFN)
746 return &nvdimm_pfn_guid;
747 else if (claim_class == NVDIMM_CCLASS_DAX)
748 return &nvdimm_dax_guid;
749 else if (claim_class == NVDIMM_CCLASS_UNKNOWN) {
750 /*
751 * If we're modifying a namespace for which we don't
752 * know the claim_class, don't touch the existing guid.
753 */
754 return target;
755 } else
756 return &guid_null;
757}
758
Dan Williamsc4703ce2019-04-30 21:51:21 -0700759static void reap_victim(struct nd_mapping *nd_mapping,
760 struct nd_label_ent *victim)
761{
762 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
763 u32 slot = to_slot(ndd, victim->label);
764
765 dev_dbg(ndd->dev, "free: %d\n", slot);
766 nd_label_free_slot(ndd, slot);
767 victim->label = NULL;
768}
769
Dan Williamsf524bf22015-05-30 12:36:02 -0400770static int __pmem_label_update(struct nd_region *nd_region,
771 struct nd_mapping *nd_mapping, struct nd_namespace_pmem *nspm,
Dan Williams966d23a2019-01-15 10:47:00 -0800772 int pos, unsigned long flags)
Dan Williamsf524bf22015-05-30 12:36:02 -0400773{
Dan Williamsb3fde742017-06-04 10:18:39 +0900774 struct nd_namespace_common *ndns = &nspm->nsio.common;
Dan Williamsfaec6f82017-06-06 11:10:51 -0700775 struct nd_interleave_set *nd_set = nd_region->nd_set;
Dan Williamsf524bf22015-05-30 12:36:02 -0400776 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
Dan Williamsf524bf22015-05-30 12:36:02 -0400777 struct nd_namespace_label *nd_label;
778 struct nd_namespace_index *nsindex;
Dan Williamsc4703ce2019-04-30 21:51:21 -0700779 struct nd_label_ent *label_ent;
Dan Williams16660ea2016-10-05 21:13:23 -0700780 struct nd_label_id label_id;
781 struct resource *res;
Dan Williamsf524bf22015-05-30 12:36:02 -0400782 unsigned long *free;
783 u32 nslot, slot;
784 size_t offset;
Dan Williamsc12c48c2017-06-04 10:59:15 +0900785 u64 cookie;
Dan Williamsf524bf22015-05-30 12:36:02 -0400786 int rc;
787
788 if (!preamble_next(ndd, &nsindex, &free, &nslot))
789 return -ENXIO;
790
Dan Williamsc12c48c2017-06-04 10:59:15 +0900791 cookie = nd_region_interleave_set_cookie(nd_region, nsindex);
Dan Williams16660ea2016-10-05 21:13:23 -0700792 nd_label_gen_id(&label_id, nspm->uuid, 0);
793 for_each_dpa_resource(ndd, res)
794 if (strcmp(res->name, label_id.id) == 0)
795 break;
796
797 if (!res) {
798 WARN_ON_ONCE(1);
799 return -ENXIO;
800 }
801
Dan Williamsf524bf22015-05-30 12:36:02 -0400802 /* allocate and write the label to the staging (next) index */
803 slot = nd_label_alloc_slot(ndd);
804 if (slot == UINT_MAX)
805 return -ENXIO;
Dan Williams426824d2018-03-05 16:39:31 -0800806 dev_dbg(ndd->dev, "allocated: %d\n", slot);
Dan Williamsf524bf22015-05-30 12:36:02 -0400807
Dan Williams564e8712017-06-03 18:30:43 +0900808 nd_label = to_label(ndd, slot);
809 memset(nd_label, 0, sizeof_namespace_label(ndd));
Dan Williamsf524bf22015-05-30 12:36:02 -0400810 memcpy(nd_label->uuid, nspm->uuid, NSLABEL_UUID_LEN);
811 if (nspm->alt_name)
812 memcpy(nd_label->name, nspm->alt_name, NSLABEL_NAME_LEN);
Dan Williams966d23a2019-01-15 10:47:00 -0800813 nd_label->flags = __cpu_to_le32(flags);
Dan Williamsf524bf22015-05-30 12:36:02 -0400814 nd_label->nlabel = __cpu_to_le16(nd_region->ndr_mappings);
815 nd_label->position = __cpu_to_le16(pos);
816 nd_label->isetcookie = __cpu_to_le64(cookie);
Dan Williams16660ea2016-10-05 21:13:23 -0700817 nd_label->rawsize = __cpu_to_le64(resource_size(res));
Dan Williams2de51482017-07-03 16:30:44 -0700818 nd_label->lbasize = __cpu_to_le64(nspm->lbasize);
Dan Williams16660ea2016-10-05 21:13:23 -0700819 nd_label->dpa = __cpu_to_le64(res->start);
Dan Williamsf524bf22015-05-30 12:36:02 -0400820 nd_label->slot = __cpu_to_le32(slot);
Dan Williamsfaec6f82017-06-06 11:10:51 -0700821 if (namespace_label_has(ndd, type_guid))
822 guid_copy(&nd_label->type_guid, &nd_set->type_guid);
Dan Williamsb3fde742017-06-04 10:18:39 +0900823 if (namespace_label_has(ndd, abstraction_guid))
824 guid_copy(&nd_label->abstraction_guid,
825 to_abstraction_guid(ndns->claim_class,
826 &nd_label->abstraction_guid));
Dan Williams355d8382017-06-06 14:56:43 -0700827 if (namespace_label_has(ndd, checksum)) {
828 u64 sum;
829
830 nd_label->checksum = __cpu_to_le64(0);
831 sum = nd_fletcher64(nd_label, sizeof_namespace_label(ndd), 1);
832 nd_label->checksum = __cpu_to_le64(sum);
833 }
Dan Williams426824d2018-03-05 16:39:31 -0800834 nd_dbg_dpa(nd_region, ndd, res, "\n");
Dan Williamsf524bf22015-05-30 12:36:02 -0400835
836 /* update label */
837 offset = nd_label_offset(ndd, nd_label);
838 rc = nvdimm_set_config_data(ndd, offset, nd_label,
Dan Williams564e8712017-06-03 18:30:43 +0900839 sizeof_namespace_label(ndd));
Dan Williamsf524bf22015-05-30 12:36:02 -0400840 if (rc < 0)
841 return rc;
842
843 /* Garbage collect the previous label */
Dan Williamsae8219f2016-09-19 16:04:21 -0700844 mutex_lock(&nd_mapping->lock);
Dan Williams16660ea2016-10-05 21:13:23 -0700845 list_for_each_entry(label_ent, &nd_mapping->labels, list) {
846 if (!label_ent->label)
847 continue;
Dan Williamsc4703ce2019-04-30 21:51:21 -0700848 if (test_and_clear_bit(ND_LABEL_REAP, &label_ent->flags)
849 || memcmp(nspm->uuid, label_ent->label->uuid,
850 NSLABEL_UUID_LEN) == 0)
851 reap_victim(nd_mapping, label_ent);
Dan Williamsf524bf22015-05-30 12:36:02 -0400852 }
853
854 /* update index */
855 rc = nd_label_write_index(ndd, ndd->ns_next,
856 nd_inc_seq(__le32_to_cpu(nsindex->seq)), 0);
Dan Williams16660ea2016-10-05 21:13:23 -0700857 if (rc == 0) {
858 list_for_each_entry(label_ent, &nd_mapping->labels, list)
859 if (!label_ent->label) {
860 label_ent->label = nd_label;
861 nd_label = NULL;
862 break;
863 }
864 dev_WARN_ONCE(&nspm->nsio.common.dev, nd_label,
865 "failed to track label: %d\n",
866 to_slot(ndd, nd_label));
867 if (nd_label)
868 rc = -ENXIO;
869 }
Dan Williamsae8219f2016-09-19 16:04:21 -0700870 mutex_unlock(&nd_mapping->lock);
Dan Williamsf524bf22015-05-30 12:36:02 -0400871
Dan Williamsae8219f2016-09-19 16:04:21 -0700872 return rc;
Dan Williams0ba1c632015-05-30 12:35:36 -0400873}
874
875static bool is_old_resource(struct resource *res, struct resource **list, int n)
Dan Williamsf524bf22015-05-30 12:36:02 -0400876{
877 int i;
Dan Williams0ba1c632015-05-30 12:35:36 -0400878
879 if (res->flags & DPA_RESOURCE_ADJUSTED)
880 return false;
881 for (i = 0; i < n; i++)
882 if (res == list[i])
883 return true;
884 return false;
885}
886
887static struct resource *to_resource(struct nvdimm_drvdata *ndd,
888 struct nd_namespace_label *nd_label)
889{
890 struct resource *res;
891
892 for_each_dpa_resource(ndd, res) {
893 if (res->start != __le64_to_cpu(nd_label->dpa))
894 continue;
895 if (resource_size(res) != __le64_to_cpu(nd_label->rawsize))
896 continue;
897 return res;
898 }
899
900 return NULL;
901}
902
903/*
904 * 1/ Account all the labels that can be freed after this update
905 * 2/ Allocate and write the label to the staging (next) index
906 * 3/ Record the resources in the namespace device
907 */
908static int __blk_label_update(struct nd_region *nd_region,
909 struct nd_mapping *nd_mapping, struct nd_namespace_blk *nsblk,
910 int num_labels)
911{
Dan Williamsae8219f2016-09-19 16:04:21 -0700912 int i, alloc, victims, nfree, old_num_resources, nlabel, rc = -ENXIO;
Dan Williamsfaec6f82017-06-06 11:10:51 -0700913 struct nd_interleave_set *nd_set = nd_region->nd_set;
Dan Williamsb3fde742017-06-04 10:18:39 +0900914 struct nd_namespace_common *ndns = &nsblk->common;
Dan Williamsf524bf22015-05-30 12:36:02 -0400915 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
Dan Williams0ba1c632015-05-30 12:35:36 -0400916 struct nd_namespace_label *nd_label;
Dan Williamsae8219f2016-09-19 16:04:21 -0700917 struct nd_label_ent *label_ent, *e;
Dan Williams0ba1c632015-05-30 12:35:36 -0400918 struct nd_namespace_index *nsindex;
919 unsigned long *free, *victim_map = NULL;
920 struct resource *res, **old_res_list;
921 struct nd_label_id label_id;
922 u8 uuid[NSLABEL_UUID_LEN];
Dan Williams3934d842017-06-06 14:59:04 -0700923 int min_dpa_idx = 0;
Dan Williamsae8219f2016-09-19 16:04:21 -0700924 LIST_HEAD(list);
Dan Williams0ba1c632015-05-30 12:35:36 -0400925 u32 nslot, slot;
Dan Williamsf524bf22015-05-30 12:36:02 -0400926
Dan Williams0ba1c632015-05-30 12:35:36 -0400927 if (!preamble_next(ndd, &nsindex, &free, &nslot))
928 return -ENXIO;
Dan Williamsf524bf22015-05-30 12:36:02 -0400929
Dan Williams0ba1c632015-05-30 12:35:36 -0400930 old_res_list = nsblk->res;
931 nfree = nd_label_nfree(ndd);
932 old_num_resources = nsblk->num_resources;
933 nd_label_gen_id(&label_id, nsblk->uuid, NSLABEL_FLAG_LOCAL);
934
935 /*
936 * We need to loop over the old resources a few times, which seems a
937 * bit inefficient, but we need to know that we have the label
938 * space before we start mutating the tracking structures.
939 * Otherwise the recovery method of last resort for userspace is
940 * disable and re-enable the parent region.
941 */
942 alloc = 0;
943 for_each_dpa_resource(ndd, res) {
944 if (strcmp(res->name, label_id.id) != 0)
945 continue;
946 if (!is_old_resource(res, old_res_list, old_num_resources))
947 alloc++;
948 }
949
950 victims = 0;
951 if (old_num_resources) {
952 /* convert old local-label-map to dimm-slot victim-map */
Andy Shevchenko9065ed12018-08-30 13:32:07 +0300953 victim_map = bitmap_zalloc(nslot, GFP_KERNEL);
Dan Williams0ba1c632015-05-30 12:35:36 -0400954 if (!victim_map)
955 return -ENOMEM;
956
957 /* mark unused labels for garbage collection */
958 for_each_clear_bit_le(slot, free, nslot) {
Dan Williams564e8712017-06-03 18:30:43 +0900959 nd_label = to_label(ndd, slot);
Dan Williams0ba1c632015-05-30 12:35:36 -0400960 memcpy(uuid, nd_label->uuid, NSLABEL_UUID_LEN);
961 if (memcmp(uuid, nsblk->uuid, NSLABEL_UUID_LEN) != 0)
962 continue;
963 res = to_resource(ndd, nd_label);
964 if (res && is_old_resource(res, old_res_list,
965 old_num_resources))
966 continue;
967 slot = to_slot(ndd, nd_label);
968 set_bit(slot, victim_map);
969 victims++;
970 }
971 }
972
973 /* don't allow updates that consume the last label */
974 if (nfree - alloc < 0 || nfree - alloc + victims < 1) {
Dan Williams8c2f7e82015-06-25 04:20:04 -0400975 dev_info(&nsblk->common.dev, "insufficient label space\n");
Andy Shevchenko9065ed12018-08-30 13:32:07 +0300976 bitmap_free(victim_map);
Dan Williams0ba1c632015-05-30 12:35:36 -0400977 return -ENOSPC;
978 }
979 /* from here on we need to abort on error */
980
981
982 /* assign all resources to the namespace before writing the labels */
983 nsblk->res = NULL;
984 nsblk->num_resources = 0;
985 for_each_dpa_resource(ndd, res) {
986 if (strcmp(res->name, label_id.id) != 0)
987 continue;
988 if (!nsblk_add_resource(nd_region, ndd, nsblk, res->start)) {
989 rc = -ENOMEM;
990 goto abort;
991 }
992 }
993
Dan Williams3934d842017-06-06 14:59:04 -0700994 /*
995 * Find the resource associated with the first label in the set
996 * per the v1.2 namespace specification.
997 */
998 for (i = 0; i < nsblk->num_resources; i++) {
999 struct resource *min = nsblk->res[min_dpa_idx];
1000
1001 res = nsblk->res[i];
1002 if (res->start < min->start)
1003 min_dpa_idx = i;
1004 }
1005
Dan Williams0ba1c632015-05-30 12:35:36 -04001006 for (i = 0; i < nsblk->num_resources; i++) {
1007 size_t offset;
1008
1009 res = nsblk->res[i];
1010 if (is_old_resource(res, old_res_list, old_num_resources))
1011 continue; /* carry-over */
1012 slot = nd_label_alloc_slot(ndd);
1013 if (slot == UINT_MAX)
1014 goto abort;
Dan Williams426824d2018-03-05 16:39:31 -08001015 dev_dbg(ndd->dev, "allocated: %d\n", slot);
Dan Williams0ba1c632015-05-30 12:35:36 -04001016
Dan Williams564e8712017-06-03 18:30:43 +09001017 nd_label = to_label(ndd, slot);
1018 memset(nd_label, 0, sizeof_namespace_label(ndd));
Dan Williams0ba1c632015-05-30 12:35:36 -04001019 memcpy(nd_label->uuid, nsblk->uuid, NSLABEL_UUID_LEN);
1020 if (nsblk->alt_name)
1021 memcpy(nd_label->name, nsblk->alt_name,
1022 NSLABEL_NAME_LEN);
1023 nd_label->flags = __cpu_to_le32(NSLABEL_FLAG_LOCAL);
Dan Williams8f2bc242017-06-06 11:39:30 -07001024
1025 /*
1026 * Use the presence of the type_guid as a flag to
Dan Williams3934d842017-06-06 14:59:04 -07001027 * determine isetcookie usage and nlabel + position
1028 * policy for blk-aperture namespaces.
Dan Williams8f2bc242017-06-06 11:39:30 -07001029 */
Dan Williams3934d842017-06-06 14:59:04 -07001030 if (namespace_label_has(ndd, type_guid)) {
1031 if (i == min_dpa_idx) {
1032 nd_label->nlabel = __cpu_to_le16(nsblk->num_resources);
1033 nd_label->position = __cpu_to_le16(0);
1034 } else {
1035 nd_label->nlabel = __cpu_to_le16(0xffff);
1036 nd_label->position = __cpu_to_le16(0xffff);
1037 }
Dan Williams8f2bc242017-06-06 11:39:30 -07001038 nd_label->isetcookie = __cpu_to_le64(nd_set->cookie2);
Dan Williams3934d842017-06-06 14:59:04 -07001039 } else {
1040 nd_label->nlabel = __cpu_to_le16(0); /* N/A */
1041 nd_label->position = __cpu_to_le16(0); /* N/A */
Dan Williams8f2bc242017-06-06 11:39:30 -07001042 nd_label->isetcookie = __cpu_to_le64(0); /* N/A */
Dan Williams3934d842017-06-06 14:59:04 -07001043 }
Dan Williams8f2bc242017-06-06 11:39:30 -07001044
Dan Williams0ba1c632015-05-30 12:35:36 -04001045 nd_label->dpa = __cpu_to_le64(res->start);
1046 nd_label->rawsize = __cpu_to_le64(resource_size(res));
1047 nd_label->lbasize = __cpu_to_le64(nsblk->lbasize);
1048 nd_label->slot = __cpu_to_le32(slot);
Dan Williamsfaec6f82017-06-06 11:10:51 -07001049 if (namespace_label_has(ndd, type_guid))
1050 guid_copy(&nd_label->type_guid, &nd_set->type_guid);
Dan Williamsb3fde742017-06-04 10:18:39 +09001051 if (namespace_label_has(ndd, abstraction_guid))
1052 guid_copy(&nd_label->abstraction_guid,
1053 to_abstraction_guid(ndns->claim_class,
1054 &nd_label->abstraction_guid));
1055
Dan Williams355d8382017-06-06 14:56:43 -07001056 if (namespace_label_has(ndd, checksum)) {
1057 u64 sum;
1058
1059 nd_label->checksum = __cpu_to_le64(0);
1060 sum = nd_fletcher64(nd_label,
1061 sizeof_namespace_label(ndd), 1);
1062 nd_label->checksum = __cpu_to_le64(sum);
1063 }
Dan Williams0ba1c632015-05-30 12:35:36 -04001064
1065 /* update label */
1066 offset = nd_label_offset(ndd, nd_label);
1067 rc = nvdimm_set_config_data(ndd, offset, nd_label,
Dan Williams564e8712017-06-03 18:30:43 +09001068 sizeof_namespace_label(ndd));
Dan Williams0ba1c632015-05-30 12:35:36 -04001069 if (rc < 0)
1070 goto abort;
1071 }
1072
1073 /* free up now unused slots in the new index */
1074 for_each_set_bit(slot, victim_map, victim_map ? nslot : 0) {
Dan Williams426824d2018-03-05 16:39:31 -08001075 dev_dbg(ndd->dev, "free: %d\n", slot);
Dan Williams0ba1c632015-05-30 12:35:36 -04001076 nd_label_free_slot(ndd, slot);
1077 }
1078
1079 /* update index */
1080 rc = nd_label_write_index(ndd, ndd->ns_next,
1081 nd_inc_seq(__le32_to_cpu(nsindex->seq)), 0);
1082 if (rc)
1083 goto abort;
1084
1085 /*
1086 * Now that the on-dimm labels are up to date, fix up the tracking
1087 * entries in nd_mapping->labels
1088 */
1089 nlabel = 0;
Dan Williamsae8219f2016-09-19 16:04:21 -07001090 mutex_lock(&nd_mapping->lock);
1091 list_for_each_entry_safe(label_ent, e, &nd_mapping->labels, list) {
1092 nd_label = label_ent->label;
1093 if (!nd_label)
1094 continue;
Dan Williams0ba1c632015-05-30 12:35:36 -04001095 nlabel++;
1096 memcpy(uuid, nd_label->uuid, NSLABEL_UUID_LEN);
1097 if (memcmp(uuid, nsblk->uuid, NSLABEL_UUID_LEN) != 0)
1098 continue;
1099 nlabel--;
Dan Williamsae8219f2016-09-19 16:04:21 -07001100 list_move(&label_ent->list, &list);
1101 label_ent->label = NULL;
Dan Williams0ba1c632015-05-30 12:35:36 -04001102 }
Dan Williamsae8219f2016-09-19 16:04:21 -07001103 list_splice_tail_init(&list, &nd_mapping->labels);
1104 mutex_unlock(&nd_mapping->lock);
1105
Dan Williams0ba1c632015-05-30 12:35:36 -04001106 if (nlabel + nsblk->num_resources > num_labels) {
1107 /*
1108 * Bug, we can't end up with more resources than
1109 * available labels
1110 */
1111 WARN_ON_ONCE(1);
1112 rc = -ENXIO;
1113 goto out;
1114 }
1115
Dan Williamsae8219f2016-09-19 16:04:21 -07001116 mutex_lock(&nd_mapping->lock);
1117 label_ent = list_first_entry_or_null(&nd_mapping->labels,
1118 typeof(*label_ent), list);
1119 if (!label_ent) {
1120 WARN_ON(1);
1121 mutex_unlock(&nd_mapping->lock);
1122 rc = -ENXIO;
1123 goto out;
1124 }
Dan Williams0ba1c632015-05-30 12:35:36 -04001125 for_each_clear_bit_le(slot, free, nslot) {
Dan Williams564e8712017-06-03 18:30:43 +09001126 nd_label = to_label(ndd, slot);
Dan Williams0ba1c632015-05-30 12:35:36 -04001127 memcpy(uuid, nd_label->uuid, NSLABEL_UUID_LEN);
1128 if (memcmp(uuid, nsblk->uuid, NSLABEL_UUID_LEN) != 0)
1129 continue;
1130 res = to_resource(ndd, nd_label);
1131 res->flags &= ~DPA_RESOURCE_ADJUSTED;
Dan Williamsae8219f2016-09-19 16:04:21 -07001132 dev_vdbg(&nsblk->common.dev, "assign label slot: %d\n", slot);
1133 list_for_each_entry_from(label_ent, &nd_mapping->labels, list) {
1134 if (label_ent->label)
1135 continue;
1136 label_ent->label = nd_label;
1137 nd_label = NULL;
1138 break;
1139 }
1140 if (nd_label)
1141 dev_WARN(&nsblk->common.dev,
1142 "failed to track label slot%d\n", slot);
Dan Williams0ba1c632015-05-30 12:35:36 -04001143 }
Dan Williamsae8219f2016-09-19 16:04:21 -07001144 mutex_unlock(&nd_mapping->lock);
Dan Williams0ba1c632015-05-30 12:35:36 -04001145
1146 out:
1147 kfree(old_res_list);
Andy Shevchenko9065ed12018-08-30 13:32:07 +03001148 bitmap_free(victim_map);
Dan Williams0ba1c632015-05-30 12:35:36 -04001149 return rc;
1150
1151 abort:
1152 /*
1153 * 1/ repair the allocated label bitmap in the index
1154 * 2/ restore the resource list
1155 */
1156 nd_label_copy(ndd, nsindex, to_current_namespace_index(ndd));
1157 kfree(nsblk->res);
1158 nsblk->res = old_res_list;
1159 nsblk->num_resources = old_num_resources;
1160 old_res_list = NULL;
1161 goto out;
1162}
1163
1164static int init_labels(struct nd_mapping *nd_mapping, int num_labels)
1165{
Dan Williamsae8219f2016-09-19 16:04:21 -07001166 int i, old_num_labels = 0;
1167 struct nd_label_ent *label_ent;
Dan Williams0ba1c632015-05-30 12:35:36 -04001168 struct nd_namespace_index *nsindex;
Dan Williams0ba1c632015-05-30 12:35:36 -04001169 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
Dan Williams0ba1c632015-05-30 12:35:36 -04001170
Dan Williamsae8219f2016-09-19 16:04:21 -07001171 mutex_lock(&nd_mapping->lock);
1172 list_for_each_entry(label_ent, &nd_mapping->labels, list)
Dan Williams0ba1c632015-05-30 12:35:36 -04001173 old_num_labels++;
Dan Williamsae8219f2016-09-19 16:04:21 -07001174 mutex_unlock(&nd_mapping->lock);
Dan Williams0ba1c632015-05-30 12:35:36 -04001175
1176 /*
1177 * We need to preserve all the old labels for the mapping so
1178 * they can be garbage collected after writing the new labels.
1179 */
Dan Williamsae8219f2016-09-19 16:04:21 -07001180 for (i = old_num_labels; i < num_labels; i++) {
1181 label_ent = kzalloc(sizeof(*label_ent), GFP_KERNEL);
1182 if (!label_ent)
Dan Williams0ba1c632015-05-30 12:35:36 -04001183 return -ENOMEM;
Dan Williamsae8219f2016-09-19 16:04:21 -07001184 mutex_lock(&nd_mapping->lock);
1185 list_add_tail(&label_ent->list, &nd_mapping->labels);
1186 mutex_unlock(&nd_mapping->lock);
Dan Williams0ba1c632015-05-30 12:35:36 -04001187 }
Dan Williams0ba1c632015-05-30 12:35:36 -04001188
Dan Williamsf524bf22015-05-30 12:36:02 -04001189 if (ndd->ns_current == -1 || ndd->ns_next == -1)
1190 /* pass */;
1191 else
Dan Williams0ba1c632015-05-30 12:35:36 -04001192 return max(num_labels, old_num_labels);
Dan Williamsf524bf22015-05-30 12:36:02 -04001193
1194 nsindex = to_namespace_index(ndd, 0);
1195 memset(nsindex, 0, ndd->nsarea.config_size);
1196 for (i = 0; i < 2; i++) {
Dan Williamsb18d4b82017-09-26 11:41:28 -07001197 int rc = nd_label_write_index(ndd, i, 3 - i, ND_NSINDEX_INIT);
Dan Williamsf524bf22015-05-30 12:36:02 -04001198
1199 if (rc)
1200 return rc;
1201 }
1202 ndd->ns_next = 1;
1203 ndd->ns_current = 0;
1204
Dan Williams0ba1c632015-05-30 12:35:36 -04001205 return max(num_labels, old_num_labels);
Dan Williamsf524bf22015-05-30 12:36:02 -04001206}
1207
1208static int del_labels(struct nd_mapping *nd_mapping, u8 *uuid)
1209{
1210 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
Dan Williamsae8219f2016-09-19 16:04:21 -07001211 struct nd_label_ent *label_ent, *e;
Dan Williamsf524bf22015-05-30 12:36:02 -04001212 struct nd_namespace_index *nsindex;
1213 u8 label_uuid[NSLABEL_UUID_LEN];
Dan Williamsf524bf22015-05-30 12:36:02 -04001214 unsigned long *free;
Dan Williamsae8219f2016-09-19 16:04:21 -07001215 LIST_HEAD(list);
Dan Williamsf524bf22015-05-30 12:36:02 -04001216 u32 nslot, slot;
Dan Williamsae8219f2016-09-19 16:04:21 -07001217 int active = 0;
Dan Williamsf524bf22015-05-30 12:36:02 -04001218
1219 if (!uuid)
1220 return 0;
1221
1222 /* no index || no labels == nothing to delete */
Dan Williamsae8219f2016-09-19 16:04:21 -07001223 if (!preamble_next(ndd, &nsindex, &free, &nslot))
Dan Williamsf524bf22015-05-30 12:36:02 -04001224 return 0;
1225
Dan Williamsae8219f2016-09-19 16:04:21 -07001226 mutex_lock(&nd_mapping->lock);
1227 list_for_each_entry_safe(label_ent, e, &nd_mapping->labels, list) {
1228 struct nd_namespace_label *nd_label = label_ent->label;
1229
1230 if (!nd_label)
1231 continue;
1232 active++;
Dan Williamsf524bf22015-05-30 12:36:02 -04001233 memcpy(label_uuid, nd_label->uuid, NSLABEL_UUID_LEN);
1234 if (memcmp(label_uuid, uuid, NSLABEL_UUID_LEN) != 0)
1235 continue;
Dan Williamsae8219f2016-09-19 16:04:21 -07001236 active--;
Dan Williamsf524bf22015-05-30 12:36:02 -04001237 slot = to_slot(ndd, nd_label);
1238 nd_label_free_slot(ndd, slot);
Dan Williams426824d2018-03-05 16:39:31 -08001239 dev_dbg(ndd->dev, "free: %d\n", slot);
Dan Williamsae8219f2016-09-19 16:04:21 -07001240 list_move_tail(&label_ent->list, &list);
1241 label_ent->label = NULL;
Dan Williamsf524bf22015-05-30 12:36:02 -04001242 }
Dan Williamsae8219f2016-09-19 16:04:21 -07001243 list_splice_tail_init(&list, &nd_mapping->labels);
Dan Williamsf524bf22015-05-30 12:36:02 -04001244
Dan Williamsae8219f2016-09-19 16:04:21 -07001245 if (active == 0) {
1246 nd_mapping_free_labels(nd_mapping);
Dan Williams426824d2018-03-05 16:39:31 -08001247 dev_dbg(ndd->dev, "no more active labels\n");
Dan Williamsf524bf22015-05-30 12:36:02 -04001248 }
Dan Williamsae8219f2016-09-19 16:04:21 -07001249 mutex_unlock(&nd_mapping->lock);
Dan Williamsf524bf22015-05-30 12:36:02 -04001250
1251 return nd_label_write_index(ndd, ndd->ns_next,
1252 nd_inc_seq(__le32_to_cpu(nsindex->seq)), 0);
1253}
1254
1255int nd_pmem_namespace_label_update(struct nd_region *nd_region,
1256 struct nd_namespace_pmem *nspm, resource_size_t size)
1257{
Dan Williams966d23a2019-01-15 10:47:00 -08001258 int i, rc;
Dan Williamsf524bf22015-05-30 12:36:02 -04001259
1260 for (i = 0; i < nd_region->ndr_mappings; i++) {
1261 struct nd_mapping *nd_mapping = &nd_region->mapping[i];
Dan Williams16660ea2016-10-05 21:13:23 -07001262 struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
1263 struct resource *res;
Dan Williams966d23a2019-01-15 10:47:00 -08001264 int count = 0;
Dan Williamsf524bf22015-05-30 12:36:02 -04001265
1266 if (size == 0) {
1267 rc = del_labels(nd_mapping, nspm->uuid);
1268 if (rc)
1269 return rc;
1270 continue;
1271 }
1272
Dan Williams16660ea2016-10-05 21:13:23 -07001273 for_each_dpa_resource(ndd, res)
Nicolas Iooss2d9a0272016-10-29 13:28:52 +02001274 if (strncmp(res->name, "pmem", 4) == 0)
Dan Williams16660ea2016-10-05 21:13:23 -07001275 count++;
1276 WARN_ON_ONCE(!count);
1277
1278 rc = init_labels(nd_mapping, count);
Dan Williams0ba1c632015-05-30 12:35:36 -04001279 if (rc < 0)
Dan Williamsf524bf22015-05-30 12:36:02 -04001280 return rc;
1281
Dan Williams966d23a2019-01-15 10:47:00 -08001282 rc = __pmem_label_update(nd_region, nd_mapping, nspm, i,
1283 NSLABEL_FLAG_UPDATING);
1284 if (rc)
1285 return rc;
1286 }
1287
1288 if (size == 0)
1289 return 0;
1290
1291 /* Clear the UPDATING flag per UEFI 2.7 expectations */
1292 for (i = 0; i < nd_region->ndr_mappings; i++) {
1293 struct nd_mapping *nd_mapping = &nd_region->mapping[i];
1294
1295 rc = __pmem_label_update(nd_region, nd_mapping, nspm, i, 0);
Dan Williamsf524bf22015-05-30 12:36:02 -04001296 if (rc)
1297 return rc;
1298 }
1299
1300 return 0;
1301}
Dan Williams0ba1c632015-05-30 12:35:36 -04001302
1303int nd_blk_namespace_label_update(struct nd_region *nd_region,
1304 struct nd_namespace_blk *nsblk, resource_size_t size)
1305{
1306 struct nd_mapping *nd_mapping = &nd_region->mapping[0];
1307 struct resource *res;
1308 int count = 0;
1309
1310 if (size == 0)
1311 return del_labels(nd_mapping, nsblk->uuid);
1312
1313 for_each_dpa_resource(to_ndd(nd_mapping), res)
1314 count++;
1315
1316 count = init_labels(nd_mapping, count);
1317 if (count < 0)
1318 return count;
1319
1320 return __blk_label_update(nd_region, nd_mapping, nsblk, count);
1321}
Dan Williamsb3fde742017-06-04 10:18:39 +09001322
1323int __init nd_label_init(void)
1324{
1325 WARN_ON(guid_parse(NVDIMM_BTT_GUID, &nvdimm_btt_guid));
Vishal Verma14e49452017-06-28 14:25:00 -06001326 WARN_ON(guid_parse(NVDIMM_BTT2_GUID, &nvdimm_btt2_guid));
Dan Williamsb3fde742017-06-04 10:18:39 +09001327 WARN_ON(guid_parse(NVDIMM_PFN_GUID, &nvdimm_pfn_guid));
1328 WARN_ON(guid_parse(NVDIMM_DAX_GUID, &nvdimm_dax_guid));
1329
1330 return 0;
1331}