From: "Pali Rohár" <pali@kernel.org>
To: Stefan Roese <sr@denx.de>
Cc: u-boot@lists.denx.de
Subject: [PATCH v3 1/2] cmd: mvebu/bubt: Check for A38x image data checksum
Date: Tue, 23 Aug 2022 14:52:23 +0200 [thread overview]
Message-ID: <20220823125224.20638-1-pali@kernel.org> (raw)
In-Reply-To: <20220805154819.4924-1-pali@kernel.org>
Currently for A38x image is checked only header checksum.
So check also for image data checksum to prevent flashing broken image.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
---
Changes in v3:
* Compile fix (move another code chunk from patch 2/2 to 1/2)
Changes in v2:
* Compile fix (move code chunk from patch 2/2 to 1/2)
---
cmd/mvebu/bubt.c | 46 +++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 45 insertions(+), 1 deletion(-)
diff --git a/cmd/mvebu/bubt.c b/cmd/mvebu/bubt.c
index 2136af64163c..a97e5ce38a5e 100644
--- a/cmd/mvebu/bubt.c
+++ b/cmd/mvebu/bubt.c
@@ -688,9 +688,25 @@ static uint8_t image_checksum8(const void *start, size_t len)
return csum;
}
+static uint32_t image_checksum32(const void *start, size_t len)
+{
+ u32 csum = 0;
+ const u32 *p = start;
+
+ while (len) {
+ csum += *p;
+ ++p;
+ len -= sizeof(u32);
+ }
+
+ return csum;
+}
+
static int check_image_header(void)
{
u8 checksum;
+ u32 checksum32, exp_checksum32;
+ u32 offset, size;
const struct a38x_main_hdr_v1 *hdr =
(struct a38x_main_hdr_v1 *)get_load_addr();
const size_t image_size = a38x_header_size(hdr);
@@ -701,11 +717,39 @@ static int check_image_header(void)
checksum = image_checksum8(hdr, image_size);
checksum -= hdr->checksum;
if (checksum != hdr->checksum) {
- printf("Error: Bad A38x image checksum. 0x%x != 0x%x\n",
+ printf("Error: Bad A38x image header checksum. 0x%x != 0x%x\n",
checksum, hdr->checksum);
return -ENOEXEC;
}
+ offset = le32_to_cpu(hdr->srcaddr);
+ size = le32_to_cpu(hdr->blocksize);
+
+ if (hdr->blockid == 0x78) { /* SATA id */
+ if (offset < 1) {
+ printf("Error: Bad A38x image srcaddr.\n");
+ return -ENOEXEC;
+ }
+ offset -= 1;
+ offset *= 512;
+ }
+
+ if (hdr->blockid == 0xAE) /* SDIO id */
+ offset *= 512;
+
+ if (offset % 4 != 0 || size < 4 || size % 4 != 0) {
+ printf("Error: Bad A38x image blocksize.\n");
+ return -ENOEXEC;
+ }
+
+ checksum32 = image_checksum32((u8 *)hdr + offset, size - 4);
+ exp_checksum32 = *(u32 *)((u8 *)hdr + offset + size - 4);
+ if (checksum32 != exp_checksum32) {
+ printf("Error: Bad A38x image data checksum. 0x%08x != 0x%08x\n",
+ checksum32, exp_checksum32);
+ return -ENOEXEC;
+ }
+
printf("Image checksum...OK!\n");
return 0;
}
--
2.20.1
next prev parent reply other threads:[~2022-08-23 12:52 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-05 15:48 [PATCH 1/2] cmd: mvebu/bubt: Check for A38x image data checksum Pali Rohár
2022-08-05 15:48 ` [PATCH 2/2] cmd: mvebu/bubt: Check for OTP secure bits and secure boot Pali Rohár
2022-08-09 19:42 ` [PATCH v2 1/2] cmd: mvebu/bubt: Check for A38x image data checksum Pali Rohár
2022-08-09 19:42 ` [PATCH v2 2/2] cmd: mvebu/bubt: Check for A38x/A37xx OTP secure bits and secure boot Pali Rohár
2022-08-17 6:14 ` Stefan Roese
2022-08-23 5:05 ` Stefan Roese
2022-08-23 12:44 ` Pali Rohár
2022-08-23 14:53 ` Stefan Roese
2022-08-17 6:14 ` [PATCH v2 1/2] cmd: mvebu/bubt: Check for A38x image data checksum Stefan Roese
2022-08-23 10:28 ` Stefan Roese
2022-08-23 12:38 ` Pali Rohár
2022-08-23 12:52 ` Pali Rohár [this message]
2022-08-23 12:52 ` [PATCH v3 2/2] cmd: mvebu/bubt: Check for A38x/A37xx OTP secure bits and secure boot Pali Rohár
2022-09-13 6:58 ` Stefan Roese
2022-09-11 11:26 ` [PATCH v3 1/2] cmd: mvebu/bubt: Check for A38x image data checksum Pali Rohár
2022-09-13 6:51 ` Stefan Roese
2022-09-13 6:58 ` Stefan Roese
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220823125224.20638-1-pali@kernel.org \
--to=pali@kernel.org \
--cc=sr@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox