[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250508183733.514124-3-csokas.bence@prolan.hu>
Date: Thu, 8 May 2025 20:37:34 +0200
From: Bence Csókás <csokas.bence@...lan.hu>
To: <linux-mtd@...ts.infradead.org>, <linux-kernel@...r.kernel.org>
CC: Csókás, Bence <csokas.bence@...lan.hu>, "Michael
Walle" <mwalle@...nel.org>, Richard Weinberger <richard@....at>, Miquel
Raynal <miquel.raynal@...tlin.com>, Vignesh Raghavendra <vigneshr@...com>
Subject: [PATCH v2] mtd: Verify written data in paranoid mode
From: Csókás, Bence <csokas.bence@...lan.hu>
Add MTD_PARANOID config option for verifying all written data to prevent
silent bit errors being undetected, at the cost of some bandwidth overhead.
Signed-off-by: Csókás, Bence <csokas.bence@...lan.hu>
---
Notes:
Changes in v2:
* refactor to be in mtdcore instead of spi-nor core
drivers/mtd/Kconfig | 14 ++++++++++++
drivers/mtd/mtdcore.c | 51 +++++++++++++++++++++++++++++++++++++++++--
2 files changed, 63 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig
index 796a2eccbef0..e75f4a57df6a 100644
--- a/drivers/mtd/Kconfig
+++ b/drivers/mtd/Kconfig
@@ -206,6 +206,20 @@ config MTD_PARTITIONED_MASTER
the parent of the partition device be the master device, rather than
what lies behind the master.
+config MTD_PARANOID
+ bool "Read back written data (paranoid mode)"
+ help
+ This option makes the MTD core read back all data on a write and
+ report an error if it doesn't match the written data. This can
+ safeguard against silent bit errors resulting from a faulty Flash,
+ controller oddities, bus noise etc.
+
+ It is up to the layer above MTD (e.g. the filesystem) to handle
+ this condition, for example by going read-only to prevent further
+ data corruption, or to mark a certain region of Flash as bad.
+
+ If you are unsure, select 'n'.
+
source "drivers/mtd/chips/Kconfig"
source "drivers/mtd/maps/Kconfig"
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index 5ba9a741f5ac..139cbac51132 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -1745,8 +1745,8 @@ int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops)
}
EXPORT_SYMBOL_GPL(mtd_read_oob);
-int mtd_write_oob(struct mtd_info *mtd, loff_t to,
- struct mtd_oob_ops *ops)
+static int _mtd_write_oob(struct mtd_info *mtd, loff_t to,
+ struct mtd_oob_ops *ops)
{
struct mtd_info *master = mtd_get_master(mtd);
int ret;
@@ -1771,6 +1771,53 @@ int mtd_write_oob(struct mtd_info *mtd, loff_t to,
return mtd_write_oob_std(mtd, to, ops);
}
+
+static int _mtd_verify(struct mtd_info *mtd, loff_t to, size_t len, const u8 *buf)
+{
+ struct device *dev = &mtd->dev;
+ u_char *verify_buf;
+ size_t r_retlen;
+ int ret;
+
+ verify_buf = devm_kmalloc(dev, len, GFP_KERNEL);
+ if (!verify_buf)
+ return -ENOMEM;
+
+ ret = mtd_read(mtd, to, len, &r_retlen, verify_buf);
+ if (ret < 0)
+ goto err;
+
+ if (len != r_retlen) {
+ /* We shouldn't see short reads */
+ dev_err(dev, "Verify failed, written %zd but only read %zd",
+ len, r_retlen);
+ ret = -EIO;
+ goto err;
+ }
+
+ if (memcmp(verify_buf, buf, len)) {
+ dev_err(dev, "Verify failed, compare mismatch!");
+ ret = -EIO;
+ }
+
+err:
+ devm_kfree(dev, verify_buf);
+ return ret;
+}
+
+int mtd_write_oob(struct mtd_info *mtd, loff_t to,
+ struct mtd_oob_ops *ops)
+{
+ int ret = _mtd_write_oob(mtd, to, ops);
+
+#if IS_ENABLED(CONFIG_MTD_PARANOID)
+ if (ret < 0)
+ return ret;
+
+ ret = _mtd_verify(mtd, to, ops->retlen, ops->datbuf);
+#endif // CONFIG_MTD_PARANOID
+ return ret;
+}
EXPORT_SYMBOL_GPL(mtd_write_oob);
/**
base-commit: d76bb1ebb5587f66b0f8b8099bfbb44722bc08b3
--
2.49.0
Powered by blists - more mailing lists