Unverified Commit 5c197104 authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by GitHub
Browse files

Merge pull request #108 from mripard/uboot-crc

Uboot crc
parents cd9e6099 ef802e49
...@@ -118,6 +118,11 @@ sunxi-fexc: fexc.h script.h script.c \ ...@@ -118,6 +118,11 @@ sunxi-fexc: fexc.h script.h script.c \
LIBUSB = libusb-1.0 LIBUSB = libusb-1.0
LIBUSB_CFLAGS ?= `pkg-config --cflags $(LIBUSB)` LIBUSB_CFLAGS ?= `pkg-config --cflags $(LIBUSB)`
LIBUSB_LIBS ?= `pkg-config --libs $(LIBUSB)` LIBUSB_LIBS ?= `pkg-config --libs $(LIBUSB)`
ZLIB = zlib
ZLIB_CFLAGS ?= `pkg-config --cflags $(ZLIB)`
ZLIB_LIBS ?= `pkg-config --libs $(ZLIB)`
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)
# Windows lacks mman.h / mmap() # Windows lacks mman.h / mmap()
DEFAULT_CFLAGS += -DNO_MMAP DEFAULT_CFLAGS += -DNO_MMAP
...@@ -132,7 +137,8 @@ SOC_INFO := soc_info.c soc_info.h ...@@ -132,7 +137,8 @@ SOC_INFO := soc_info.c soc_info.h
FEL_LIB := fel_lib.c fel_lib.h FEL_LIB := fel_lib.c fel_lib.h
sunxi-fel: fel.c thunks/fel-to-spl-thunk.h $(PROGRESS) $(SOC_INFO) $(FEL_LIB) sunxi-fel: fel.c thunks/fel-to-spl-thunk.h $(PROGRESS) $(SOC_INFO) $(FEL_LIB)
$(CC) $(HOST_CFLAGS) $(LIBUSB_CFLAGS) $(LDFLAGS) -o $@ $(filter %.c,$^) $(LIBS) $(LIBUSB_LIBS) $(CC) $(HOST_CFLAGS) $(LIBUSB_CFLAGS) $(ZLIB_CFLAGS) $(LDFLAGS) -o $@ \
$(filter %.c,$^) $(LIBS) $(LIBUSB_LIBS) $(ZLIB_LIBS)
sunxi-nand-part: nand-part-main.c nand-part.c nand-part-a10.h nand-part-a20.h sunxi-nand-part: nand-part-main.c nand-part.c nand-part-a10.h nand-part-a20.h
$(CC) $(HOST_CFLAGS) -c -o nand-part-main.o nand-part-main.c $(CC) $(HOST_CFLAGS) -c -o nand-part-main.o nand-part-main.c
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include <zlib.h>
#include <sys/stat.h> #include <sys/stat.h>
static bool verbose = false; /* If set, makes the 'fel' tool more talkative */ static bool verbose = false; /* If set, makes the 'fel' tool more talkative */
...@@ -48,8 +49,28 @@ static uint32_t uboot_size = 0; /* size of U-Boot binary */ ...@@ -48,8 +49,28 @@ static uint32_t uboot_size = 0; /* size of U-Boot binary */
/* Additional error codes, newly introduced for get_image_type() */ /* Additional error codes, newly introduced for get_image_type() */
#define IH_TYPE_ARCH_MISMATCH -1 #define IH_TYPE_ARCH_MISMATCH -1
#define HEADER_NAME_OFFSET 32 /* offset of name field */ /*
#define HEADER_SIZE (HEADER_NAME_OFFSET + IH_NMLEN) * Legacy format image U-Boot header,
* all data in network byte order (aka natural aka bigendian).
* Taken from ${U-BOOT}/include/image.h
*/
typedef struct image_header {
uint32_t ih_magic; /* Image Header Magic Number */
uint32_t ih_hcrc; /* Image Header CRC Checksum */
uint32_t ih_time; /* Image Creation Timestamp */
uint32_t ih_size; /* Image Data Size */
uint32_t ih_load; /* Data Load Address */
uint32_t ih_ep; /* Entry Point Address */
uint32_t ih_dcrc; /* Image Data CRC Checksum */
uint8_t ih_os; /* Operating System */
uint8_t ih_arch; /* CPU architecture */
uint8_t ih_type; /* Image Type */
uint8_t ih_comp; /* Compression Type */
uint8_t ih_name[IH_NMLEN]; /* Image Name */
} image_header_t;
#define HEADER_NAME_OFFSET offsetof(image_header_t, ih_name)
#define HEADER_SIZE sizeof(image_header_t)
/* /*
* Utility function to determine the image type from a mkimage-compatible * Utility function to determine the image type from a mkimage-compatible
...@@ -63,18 +84,19 @@ static uint32_t uboot_size = 0; /* size of U-Boot binary */ ...@@ -63,18 +84,19 @@ static uint32_t uboot_size = 0; /* size of U-Boot binary */
*/ */
int get_image_type(const uint8_t *buf, size_t len) int get_image_type(const uint8_t *buf, size_t len)
{ {
uint32_t *buf32 = (uint32_t *)buf; image_header_t *hdr = (image_header_t *)buf;
if (len <= HEADER_SIZE) /* insufficient length/size */ if (len <= HEADER_SIZE) /* insufficient length/size */
return IH_TYPE_INVALID; return IH_TYPE_INVALID;
if (be32toh(buf32[0]) != IH_MAGIC) /* signature mismatch */
if (be32toh(hdr->ih_magic) != IH_MAGIC) /* signature mismatch */
return IH_TYPE_INVALID; return IH_TYPE_INVALID;
/* For sunxi, we always expect ARM architecture here */ /* For sunxi, we always expect ARM architecture here */
if (buf[29] != IH_ARCH_ARM) if (hdr->ih_arch != IH_ARCH_ARM)
return IH_TYPE_ARCH_MISMATCH; return IH_TYPE_ARCH_MISMATCH;
/* assume a valid header, and return ih_type */ /* assume a valid header, and return ih_type */
return buf[30]; return hdr->ih_type;
} }
void aw_fel_print_version(feldev_handle *dev) void aw_fel_print_version(feldev_handle *dev)
...@@ -740,7 +762,16 @@ void aw_fel_write_uboot_image(feldev_handle *dev, uint8_t *buf, size_t len) ...@@ -740,7 +762,16 @@ void aw_fel_write_uboot_image(feldev_handle *dev, uint8_t *buf, size_t len)
if (len <= HEADER_SIZE) if (len <= HEADER_SIZE)
return; /* Insufficient size (no actual data), just bail out */ return; /* Insufficient size (no actual data), just bail out */
uint32_t *buf32 = (uint32_t *)buf; image_header_t hdr = *(image_header_t *)buf;
uint32_t hcrc = be32toh(hdr.ih_hcrc);
/* The CRC is calculated on the whole header but the CRC itself */
hdr.ih_hcrc = 0;
uint32_t computed_hcrc = crc32(0, (const uint8_t *) &hdr, HEADER_SIZE);
if (hcrc != computed_hcrc)
pr_fatal("U-Boot header CRC mismatch: expected %x, got %x\n",
hcrc, computed_hcrc);
/* Check for a valid mkimage header */ /* Check for a valid mkimage header */
int image_type = get_image_type(buf, len); int image_type = get_image_type(buf, len);
...@@ -762,23 +793,18 @@ void aw_fel_write_uboot_image(feldev_handle *dev, uint8_t *buf, size_t len) ...@@ -762,23 +793,18 @@ void aw_fel_write_uboot_image(feldev_handle *dev, uint8_t *buf, size_t len)
pr_fatal("U-Boot image type mismatch: " pr_fatal("U-Boot image type mismatch: "
"expected IH_TYPE_FIRMWARE, got %02X\n", image_type); "expected IH_TYPE_FIRMWARE, got %02X\n", image_type);
uint32_t data_size = be32toh(buf32[3]); /* Image Data Size */ uint32_t data_size = be32toh(hdr.ih_size); /* Image Data Size */
uint32_t load_addr = be32toh(buf32[4]); /* Data Load Address */ uint32_t load_addr = be32toh(hdr.ih_load); /* Data Load Address */
if (data_size != len - HEADER_SIZE) if (data_size > len - HEADER_SIZE)
pr_fatal("U-Boot image data size mismatch: " pr_fatal("U-Boot image data trucated: "
"expected %zu, got %u\n", len - HEADER_SIZE, data_size); "expected %zu bytes, got %u\n",
len - HEADER_SIZE, data_size);
/* TODO: Verify image data integrity using the checksum field ih_dcrc,
* available from be32toh(buf32[6]) uint32_t dcrc = be32toh(hdr.ih_dcrc);
* uint32_t computed_dcrc = crc32(0, buf + HEADER_SIZE, data_size);
* However, this requires CRC routines that mimic their U-Boot if (dcrc != computed_dcrc)
* counterparts, namely image_check_dcrc() in ${U-BOOT}/common/image.c pr_fatal("U-Boot data CRC mismatch: expected %x, got %x\n",
* and crc_wd() in ${U-BOOT}/lib/crc32.c dcrc, computed_dcrc);
*
* It should be investigated if existing CRC routines in sunxi-tools
* could be factored out and reused for this purpose - e.g. calc_crc32()
* from nand-part-main.c
*/
/* If we get here, we're "good to go" (i.e. actually write the data) */ /* If we get here, we're "good to go" (i.e. actually write the data) */
pr_info("Writing image \"%.*s\", %u bytes @ 0x%08X.\n", pr_info("Writing image \"%.*s\", %u bytes @ 0x%08X.\n",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment