From: Jan Luebbe <jlu@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH] arm: write image checksums into the barebox header
Date: Wed, 17 Apr 2013 15:18:00 +0200 [thread overview]
Message-ID: <1366204680-3368-1-git-send-email-jlu@pengutronix.de> (raw)
Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
---
Makefile | 2 +-
arch/arm/include/asm/barebox-arm-head.h | 2 +
arch/arm/mach-at91/include/mach/barebox-arm-head.h | 2 +
include/filetype.h | 4 +-
scripts/.gitignore | 1 +
scripts/Makefile | 1 +
scripts/bareboxcrc.c | 170 +++++++++++++++++++++
7 files changed, 180 insertions(+), 2 deletions(-)
create mode 100644 scripts/bareboxcrc.c
diff --git a/Makefile b/Makefile
index b15c8ce..5b48369 100644
--- a/Makefile
+++ b/Makefile
@@ -668,7 +668,7 @@ define rule_barebox-modpost
endef
quiet_cmd_objcopy = OBJCOPY $@
- cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
+ cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@ && scripts/bareboxcrc -a $(ARCH) $@
OBJCOPYFLAGS_barebox.bin = -O binary
diff --git a/arch/arm/include/asm/barebox-arm-head.h b/arch/arm/include/asm/barebox-arm-head.h
index 9d9b854..0f23f69 100644
--- a/arch/arm/include/asm/barebox-arm-head.h
+++ b/arch/arm/include/asm/barebox-arm-head.h
@@ -64,6 +64,8 @@ static inline void barebox_arm_head(void)
* barebox can skip relocation
*/
".word _barebox_image_size\n" /* image size to copy */
+ ".word 0xffffffff\n" /* space for image crc32 */
+ ".word 0xffffffff\n" /* space for header crc32 */
);
}
#endif
diff --git a/arch/arm/mach-at91/include/mach/barebox-arm-head.h b/arch/arm/mach-at91/include/mach/barebox-arm-head.h
index d4bb96f..acecb41 100644
--- a/arch/arm/mach-at91/include/mach/barebox-arm-head.h
+++ b/arch/arm/mach-at91/include/mach/barebox-arm-head.h
@@ -27,6 +27,8 @@ static inline void barebox_arm_head(void)
* barebox can skip relocation
*/
".word _barebox_image_size\n" /* image size to copy */
+ ".word 0xffffffff\n" /* space for image crc32 */
+ ".word 0xffffffff\n" /* space for header crc32 */
);
}
diff --git a/include/filetype.h b/include/filetype.h
index 78ca5d2..89e3a8d 100644
--- a/include/filetype.h
+++ b/include/filetype.h
@@ -35,9 +35,11 @@ enum filetype file_detect_type(const void *_buf, size_t bufsize);
enum filetype file_name_detect_type(const char *filename);
enum filetype is_fat_or_mbr(const unsigned char *sector, unsigned long *bootsec);
-#define ARM_HEAD_SIZE 0x30
+#define ARM_HEAD_SIZE 0x38
#define ARM_HEAD_MAGICWORD_OFFSET 0x20
#define ARM_HEAD_SIZE_OFFSET 0x2C
+#define ARM_HEAD_IMAGE_CRC_OFFSET 0x30
+#define ARM_HEAD_HEADER_CRC_OFFSET 0x34
#ifdef CONFIG_ARM
static inline int is_barebox_arm_head(const char *head)
diff --git a/scripts/.gitignore b/scripts/.gitignore
index 1ca6603..971e19f 100644
--- a/scripts/.gitignore
+++ b/scripts/.gitignore
@@ -1,4 +1,5 @@
bareboxenv
+bareboxcrc
bin2c
gen_netx_image
kallsyms
diff --git a/scripts/Makefile b/scripts/Makefile
index 08b325c..5416db5 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -8,6 +8,7 @@ hostprogs-$(CONFIG_KALLSYMS) += kallsyms
hostprogs-y += bin2c
hostprogs-y += mkimage
hostprogs-y += bareboxenv
+hostprogs-y += bareboxcrc
hostprogs-$(CONFIG_ARCH_NETX) += gen_netx_image
hostprogs-$(CONFIG_ARCH_OMAP) += omap_signGP mk-am35xx-spi-image
hostprogs-$(CONFIG_ARCH_S5PCxx) += s5p_cksum
diff --git a/scripts/bareboxcrc.c b/scripts/bareboxcrc.c
new file mode 100644
index 0000000..410d040
--- /dev/null
+++ b/scripts/bareboxcrc.c
@@ -0,0 +1,170 @@
+/*
+ * bareboxcrc.c
+ *
+ * Copyright (C) 2013 Jan Luebbe <j.luebbe@pengutronix.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#define _BSD_SOURCE
+
+#include <stdio.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <stdint.h>
+#include <limits.h>
+#include <errno.h>
+#include <stdbool.h>
+#include <stdlib.h>
+#include <string.h>
+#include <getopt.h>
+#include <endian.h>
+
+#include "../include/filetype.h"
+#include "../crypto/crc32.c"
+
+void usage(char *prgname)
+{
+ printf( "Usage : %s [OPTION] FILE\n"
+ "\n"
+ "options:\n"
+ " -a <arch> image architecture\n"
+ " -c verify checksum\n",
+ prgname);
+}
+
+bool checksum(FILE *image, bool check, off_t start, off_t length, off_t offset)
+{
+ uint8_t *data = malloc(length);
+ uint32_t crc;
+ size_t size;
+ bool result;
+
+ if (!data) {
+ printf("malloc: out of memory\n");
+ exit(EXIT_FAILURE);
+ }
+
+ if (fseeko(image, start, SEEK_SET) == -1) {
+ perror("fseeko");
+ exit(EXIT_FAILURE);
+ }
+
+ size = fread(data, 1, length, image);
+ if (size < length) {
+ perror("fread");
+ exit(EXIT_FAILURE);
+ }
+
+ if (fseeko(image, offset, SEEK_SET) == -1) {
+ perror("fseeko");
+ exit(EXIT_FAILURE);
+ }
+
+ if (check) {
+ if (fread(&crc, 1, sizeof(uint32_t), image) != sizeof(uint32_t)) {
+ perror("fread");
+ exit(EXIT_FAILURE);
+ }
+ result = (crc == htobe32(crc32(0, (unsigned char *)data, length)));
+ } else {
+ crc = htobe32(crc32(0, (unsigned char *)data, length));
+ if (fwrite(&crc, 1, sizeof(uint32_t), image) != sizeof(uint32_t)) {
+ perror("fwrite");
+ exit(EXIT_FAILURE);
+ }
+ result = true;
+ }
+
+ free(data);
+ return result;
+}
+
+void checksum_arm(FILE *image, bool check, off_t end)
+{
+ if (check) {
+ if (!checksum(image, check, 0, ARM_HEAD_HEADER_CRC_OFFSET, ARM_HEAD_HEADER_CRC_OFFSET))
+ printf("header verification failed\n");
+ else if (!checksum(image, check, ARM_HEAD_SIZE, end-ARM_HEAD_SIZE, ARM_HEAD_IMAGE_CRC_OFFSET))
+ printf("image verification failed\n");
+ else
+ printf("image verified\n");
+ } else {
+ checksum(image, check, ARM_HEAD_SIZE, end-ARM_HEAD_SIZE, ARM_HEAD_IMAGE_CRC_OFFSET);
+ checksum(image, check, 0, ARM_HEAD_HEADER_CRC_OFFSET, ARM_HEAD_HEADER_CRC_OFFSET);
+ }
+}
+
+int main(int argc, char *argv[])
+{
+ FILE *image;
+ bool check = false;
+ int opt;
+ off_t end;
+ const char* arch = NULL;
+
+ while((opt = getopt(argc, argv, "a:c")) != -1) {
+ switch (opt) {
+ case 'a':
+ arch = optarg;
+ break;
+ case 'c':
+ check = true;
+ break;
+ }
+ }
+
+ if (optind >= argc) {
+ usage(argv[0]);
+ exit(EXIT_FAILURE);
+ }
+
+ image = fopen(argv[optind], "r+");
+ if (image == NULL) {
+ perror("fopen");
+ exit(EXIT_FAILURE);
+ }
+
+ if (fseeko(image, 0, SEEK_END) == -1) {
+ perror("fseeko");
+ exit(EXIT_FAILURE);
+ }
+ end = ftello(image);
+ if (end == -1) {
+ perror("ftello");
+ exit(EXIT_FAILURE);
+ }
+ if (end > 0x100000) {
+ fprintf(stderr, "error: image should be smaller than 1 MiB\n");
+ exit(EXIT_FAILURE);
+ }
+
+ if (!arch) {
+ printf("missing architecture (-a)\n");
+ usage(argv[0]);
+ exit(EXIT_FAILURE);
+ } else if (strncasecmp(arch, "arm", 3) == 0) {
+ checksum_arm(image, check, end);
+ }
+
+ if (fclose(image) != 0) {
+ perror("fclose");
+ exit(EXIT_FAILURE);
+ }
+
+ exit(EXIT_SUCCESS);
+}
--
1.8.2.rc2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2013-04-17 13:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-17 13:18 Jan Luebbe [this message]
2013-04-18 6:46 ` Sascha Hauer
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=1366204680-3368-1-git-send-email-jlu@pengutronix.de \
--to=jlu@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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