linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] nvmem: u-boot-env: fix crc32_data_offset on redundant u-boot-env
@ 2022-11-04 16:52 Christian Lamparter
  2022-11-11 17:38 ` Srinivas Kandagatla
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Lamparter @ 2022-11-04 16:52 UTC (permalink / raw)
  To: linux-kernel; +Cc: rafal, srinivas.kandagatla, gregkh, a.fatoum

The Western Digital MyBook Live (PowerPC 464/APM82181)
has a set of redundant u-boot-env. Loading up the driver
the following error:

| u_boot_env: Invalid calculated CRC32: 0x4f8f2c86 (expected: 0x98b14514)
| u_boot_env: probe of partition@1e000 failed with error -22

Looking up the userspace libubootenv utilities source [0],
it looks like the "mark" or "flag" is not part of the
crc32 sum... which is unfortunate :(

|static int libuboot_load(struct uboot_ctx *ctx)
|{
|[...]
|       if (ctx->redundant) {
|		[...]
|               offsetdata = offsetof(struct uboot_env_redund, data);
|		[...]					//-----^^
|       }
|       usable_envsize = ctx->size - offsetdata;
|       buf[0] = malloc(bufsize);
|[...]
|	for (i = 0; i < copies; i++) {
|		data = (uint8_t *)(buf[i] + offsetdata);
|               uint32_t crc;
|
|		ret = devread(ctx, i, buf[i]);
|		[...]
|		crc = *(uint32_t *)(buf[i] + offsetcrc);
|               dev->crc = crc32(0, (uint8_t *)data, usable_envsize);
|

[0] https://github.com/sbabic/libubootenv/blob/master/src/uboot_env.c#L951
Fixes: d5542923f200 ("nvmem: add driver handling U-Boot environment variables")
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
---
v1->v2:
	- drop endian crc32 check - handled by pending patch
	- added u-boot-env: tag to subject + adjusted subject
---
 drivers/nvmem/u-boot-env.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvmem/u-boot-env.c b/drivers/nvmem/u-boot-env.c
index 8e72d1bbd649..4fdbdccebda1 100644
--- a/drivers/nvmem/u-boot-env.c
+++ b/drivers/nvmem/u-boot-env.c
@@ -135,7 +135,7 @@ static int u_boot_env_parse(struct u_boot_env *priv)
 		break;
 	case U_BOOT_FORMAT_REDUNDANT:
 		crc32_offset = offsetof(struct u_boot_env_image_redundant, crc32);
-		crc32_data_offset = offsetof(struct u_boot_env_image_redundant, mark);
+		crc32_data_offset = offsetof(struct u_boot_env_image_redundant, data);
 		data_offset = offsetof(struct u_boot_env_image_redundant, data);
 		break;
 	}
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] nvmem: u-boot-env: fix crc32_data_offset on redundant u-boot-env
  2022-11-04 16:52 [PATCH v2] nvmem: u-boot-env: fix crc32_data_offset on redundant u-boot-env Christian Lamparter
@ 2022-11-11 17:38 ` Srinivas Kandagatla
  0 siblings, 0 replies; 2+ messages in thread
From: Srinivas Kandagatla @ 2022-11-11 17:38 UTC (permalink / raw)
  To: Christian Lamparter, linux-kernel; +Cc: rafal, gregkh, a.fatoum



On 04/11/2022 16:52, Christian Lamparter wrote:
> The Western Digital MyBook Live (PowerPC 464/APM82181)
> has a set of redundant u-boot-env. Loading up the driver
> the following error:
> 
> | u_boot_env: Invalid calculated CRC32: 0x4f8f2c86 (expected: 0x98b14514)
> | u_boot_env: probe of partition@1e000 failed with error -22
> 
> Looking up the userspace libubootenv utilities source [0],
> it looks like the "mark" or "flag" is not part of the
> crc32 sum... which is unfortunate :(
> 
> |static int libuboot_load(struct uboot_ctx *ctx)
> |{
> |[...]
> |       if (ctx->redundant) {
> |		[...]
> |               offsetdata = offsetof(struct uboot_env_redund, data);
> |		[...]					//-----^^
> |       }
> |       usable_envsize = ctx->size - offsetdata;
> |       buf[0] = malloc(bufsize);
> |[...]
> |	for (i = 0; i < copies; i++) {
> |		data = (uint8_t *)(buf[i] + offsetdata);
> |               uint32_t crc;
> |
> |		ret = devread(ctx, i, buf[i]);
> |		[...]
> |		crc = *(uint32_t *)(buf[i] + offsetcrc);
> |               dev->crc = crc32(0, (uint8_t *)data, usable_envsize);
> |
> 
> [0] https://github.com/sbabic/libubootenv/blob/master/src/uboot_env.c#L951
> Fixes: d5542923f200 ("nvmem: add driver handling U-Boot environment variables")
> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
> ---

Applied thanks,

--srini
> v1->v2:
> 	- drop endian crc32 check - handled by pending patch
> 	- added u-boot-env: tag to subject + adjusted subject
> ---
>   drivers/nvmem/u-boot-env.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/nvmem/u-boot-env.c b/drivers/nvmem/u-boot-env.c
> index 8e72d1bbd649..4fdbdccebda1 100644
> --- a/drivers/nvmem/u-boot-env.c
> +++ b/drivers/nvmem/u-boot-env.c
> @@ -135,7 +135,7 @@ static int u_boot_env_parse(struct u_boot_env *priv)
>   		break;
>   	case U_BOOT_FORMAT_REDUNDANT:
>   		crc32_offset = offsetof(struct u_boot_env_image_redundant, crc32);
> -		crc32_data_offset = offsetof(struct u_boot_env_image_redundant, mark);
> +		crc32_data_offset = offsetof(struct u_boot_env_image_redundant, data);
>   		data_offset = offsetof(struct u_boot_env_image_redundant, data);
>   		break;
>   	}

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-11 17:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-04 16:52 [PATCH v2] nvmem: u-boot-env: fix crc32_data_offset on redundant u-boot-env Christian Lamparter
2022-11-11 17:38 ` Srinivas Kandagatla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).