Blame SOURCES/0027-ndctl-dimm-Fix-label-index-block-calculations.patch

2eb93d
From 7e98977c10ad5f4baf5e3bc4d5b4b2fd733a8b7e Mon Sep 17 00:00:00 2001
2eb93d
From: Jingqi Liu <jingqi.liu@intel.com>
2eb93d
Date: Thu, 8 Jul 2021 16:14:46 +0800
2eb93d
Subject: [PATCH 027/217] ndctl/dimm: Fix label index block calculations
2eb93d
2eb93d
The following bug is caused by setting the size of Label Index Block
2eb93d
to a fixed 256 bytes.
2eb93d
2eb93d
Use the following Qemu command to start a Guest with 2MB label-size:
2eb93d
	-object memory-backend-file,id=mem1,share=on,mem-path=/dev/dax1.1,size=14G,align=2M
2eb93d
	-device nvdimm,memdev=mem1,id=nv1,label-size=2M
2eb93d
2eb93d
There is a namespace in the Guest as follows:
2eb93d
	$ ndctl list
2eb93d
	[
2eb93d
	  {
2eb93d
	    "dev":"namespace0.0",
2eb93d
	    "mode":"devdax",
2eb93d
	    "map":"dev",
2eb93d
	    "size":14780727296,
2eb93d
	    "uuid":"58ad5282-5a16-404f-b8ee-e28b4c784eb8",
2eb93d
	    "chardev":"dax0.0",
2eb93d
	    "align":2097152,
2eb93d
	    "name":"namespace0.0"
2eb93d
	  }
2eb93d
	]
2eb93d
2eb93d
Fail to read labels. The result is as follows:
2eb93d
	$ ndctl read-labels -u nmem0
2eb93d
	[
2eb93d
	]
2eb93d
	read 0 nmem
2eb93d
2eb93d
If using the following Qemu command to start the Guest with 128K
2eb93d
label-size, this label can be read correctly.
2eb93d
	-object memory-backend-file,id=mem1,share=on,mem-path=/dev/dax1.1,size=14G,align=2M
2eb93d
	-device nvdimm,memdev=mem1,id=nv1,label-size=128K
2eb93d
2eb93d
The size of a Label Index Block depends on how many label slots fit into
2eb93d
the label storage area. The minimum size of an index block is 256 bytes
2eb93d
and the size must be a multiple of 256 bytes. For a storage area of 128KB,
2eb93d
the corresponding Label Index Block size is 256 bytes. But if the label
2eb93d
storage area is not 128KB, the Label Index Block size should not be 256 bytes.
2eb93d
2eb93d
Namespace Label Index Block appears twice at the top of the label storage area.
2eb93d
Following the two index blocks, an array for storing labels takes up the
2eb93d
remainder of the label storage area.
2eb93d
2eb93d
For obtaining the size of Namespace Index Block, we also cannot rely on
2eb93d
the field of 'mysize' in this index block since it might be corrupted.
2eb93d
Similar to the linux kernel, we use sizeof_namespace_index() to get the size
2eb93d
of Namespace Index Block. Then we can also correctly calculate the starting
2eb93d
offset of the following namespace labels.
2eb93d
2eb93d
Link: https://lore.kernel.org/r/20210708081446.14323-1-jingqi.liu@intel.com
2eb93d
Suggested-by: Dan Williams <dan.j.williams@intel.com>
2eb93d
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
2eb93d
Reviewed-by: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
Signed-off-by: Jingqi Liu <jingqi.liu@intel.com>
2eb93d
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
---
2eb93d
 ndctl/dimm.c           | 19 +++++++++++++++----
2eb93d
 ndctl/lib/dimm.c       |  5 +++++
2eb93d
 ndctl/lib/libndctl.sym |  1 +
2eb93d
 ndctl/libndctl.h       |  1 +
2eb93d
 4 files changed, 22 insertions(+), 4 deletions(-)
2eb93d
2eb93d
diff --git a/ndctl/dimm.c b/ndctl/dimm.c
2eb93d
index 09ce49e..1d2d9a2 100644
2eb93d
--- a/ndctl/dimm.c
2eb93d
+++ b/ndctl/dimm.c
2eb93d
@@ -94,13 +94,18 @@ static struct json_object *dump_label_json(struct ndctl_dimm *dimm,
2eb93d
 	struct json_object *jarray = json_object_new_array();
2eb93d
 	struct json_object *jlabel = NULL;
2eb93d
 	struct namespace_label nslabel;
2eb93d
+	unsigned int nsindex_size;
2eb93d
 	unsigned int slot = -1;
2eb93d
 	ssize_t offset;
2eb93d
 
2eb93d
 	if (!jarray)
2eb93d
 		return NULL;
2eb93d
 
2eb93d
-	for (offset = NSINDEX_ALIGN * 2; offset < size;
2eb93d
+	nsindex_size = ndctl_dimm_sizeof_namespace_index(dimm);
2eb93d
+	if (nsindex_size == 0)
2eb93d
+		return NULL;
2eb93d
+
2eb93d
+	for (offset = nsindex_size * 2; offset < size;
2eb93d
 			offset += ndctl_dimm_sizeof_namespace_label(dimm)) {
2eb93d
 		ssize_t len = min_t(ssize_t,
2eb93d
 				ndctl_dimm_sizeof_namespace_label(dimm),
2eb93d
@@ -204,17 +209,23 @@ static struct json_object *dump_label_json(struct ndctl_dimm *dimm,
2eb93d
 	return jarray;
2eb93d
 }
2eb93d
 
2eb93d
-static struct json_object *dump_index_json(struct ndctl_cmd *cmd_read, ssize_t size)
2eb93d
+static struct json_object *dump_index_json(struct ndctl_dimm *dimm,
2eb93d
+		struct ndctl_cmd *cmd_read, ssize_t size)
2eb93d
 {
2eb93d
 	struct json_object *jarray = json_object_new_array();
2eb93d
 	struct json_object *jindex = NULL;
2eb93d
 	struct namespace_index nsindex;
2eb93d
+	unsigned int nsindex_size;
2eb93d
 	ssize_t offset;
2eb93d
 
2eb93d
 	if (!jarray)
2eb93d
 		return NULL;
2eb93d
 
2eb93d
-	for (offset = 0; offset < NSINDEX_ALIGN * 2; offset += NSINDEX_ALIGN) {
2eb93d
+	nsindex_size = ndctl_dimm_sizeof_namespace_index(dimm);
2eb93d
+	if (nsindex_size == 0)
2eb93d
+		return NULL;
2eb93d
+
2eb93d
+	for (offset = 0; offset < nsindex_size * 2; offset += nsindex_size) {
2eb93d
 		ssize_t len = min_t(ssize_t, sizeof(nsindex), size - offset);
2eb93d
 		struct json_object *jobj;
2eb93d
 
2eb93d
@@ -288,7 +299,7 @@ static struct json_object *dump_json(struct ndctl_dimm *dimm,
2eb93d
 		goto err;
2eb93d
 	json_object_object_add(jdimm, "dev", jobj);
2eb93d
 
2eb93d
-	jindex = dump_index_json(cmd_read, size);
2eb93d
+	jindex = dump_index_json(dimm, cmd_read, size);
2eb93d
 	if (!jindex)
2eb93d
 		goto err;
2eb93d
 	json_object_object_add(jdimm, "index", jindex);
2eb93d
diff --git a/ndctl/lib/dimm.c b/ndctl/lib/dimm.c
2eb93d
index c045cbe..9e36e28 100644
2eb93d
--- a/ndctl/lib/dimm.c
2eb93d
+++ b/ndctl/lib/dimm.c
2eb93d
@@ -256,6 +256,11 @@ static int __label_validate(struct nvdimm_data *ndd)
2eb93d
 	return -EINVAL;
2eb93d
 }
2eb93d
 
2eb93d
+NDCTL_EXPORT unsigned int ndctl_dimm_sizeof_namespace_index(struct ndctl_dimm *dimm)
2eb93d
+{
2eb93d
+	return sizeof_namespace_index(&dimm->ndd);
2eb93d
+}
2eb93d
+
2eb93d
 /*
2eb93d
  * If the dimm labels have not been previously validated this routine
2eb93d
  * will make up a default size. Otherwise, it will pick the size based
2eb93d
diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym
2eb93d
index 58afb74..5ee73b7 100644
2eb93d
--- a/ndctl/lib/libndctl.sym
2eb93d
+++ b/ndctl/lib/libndctl.sym
2eb93d
@@ -454,4 +454,5 @@ LIBNDCTL_25 {
2eb93d
 
2eb93d
 LIBNDCTL_26 {
2eb93d
 	ndctl_bus_nfit_translate_spa;
2eb93d
+	ndctl_dimm_sizeof_namespace_index;
2eb93d
 } LIBNDCTL_25;
2eb93d
diff --git a/ndctl/libndctl.h b/ndctl/libndctl.h
2eb93d
index 87d07b7..df109bb 100644
2eb93d
--- a/ndctl/libndctl.h
2eb93d
+++ b/ndctl/libndctl.h
2eb93d
@@ -337,6 +337,7 @@ int ndctl_dimm_init_labels(struct ndctl_dimm *dimm,
2eb93d
 		enum ndctl_namespace_version v);
2eb93d
 unsigned long ndctl_dimm_get_available_labels(struct ndctl_dimm *dimm);
2eb93d
 unsigned int ndctl_dimm_sizeof_namespace_label(struct ndctl_dimm *dimm);
2eb93d
+unsigned int ndctl_dimm_sizeof_namespace_index(struct ndctl_dimm *dimm);
2eb93d
 unsigned int ndctl_cmd_cfg_size_get_size(struct ndctl_cmd *cfg_size);
2eb93d
 ssize_t ndctl_cmd_cfg_read_get_data(struct ndctl_cmd *cfg_read, void *buf,
2eb93d
 		unsigned int len, unsigned int offset);
2eb93d
-- 
2eb93d
2.27.0
2eb93d