1 // SPDX-License-Identifier: GPL-2.0+
4 * DENX Software Engineering
5 * Heiko Schocher <hs@denx.de>
7 * (C) Copyright 2008 Semihalf
9 * (C) Copyright 2000-2004
10 * DENX Software Engineering
11 * Wolfgang Denk, wd@denx.de
13 * Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
14 * FIT image specific code abstracted from mkimage.c
15 * some functions added to address abstraction
17 * All rights reserved.
20 #include "imagetool.h"
22 #include "fit_common.h"
24 #include <u-boot/crc.h>
26 int fit_verify_header(unsigned char *ptr, int image_size,
27 struct image_tool_params *params)
31 if (fdt_check_header(ptr) != EXIT_SUCCESS)
34 ret = fit_check_format(ptr, IMAGE_SIZE_INVAL);
36 if (ret != -EADDRNOTAVAIL)
38 fprintf(stderr, "Image contains unit addresses @, this will break signing\n");
44 int fit_check_image_types(uint8_t type)
46 if (type == IH_TYPE_FLATDT)
52 int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc,
53 void **blobp, struct stat *sbuf, bool delete_on_error,
59 /* Load FIT blob into memory (we need to write hashes/signatures) */
60 fd = open(fname, (read_only ? O_RDONLY : O_RDWR) | O_BINARY);
63 fprintf(stderr, "%s: Can't open %s: %s\n",
64 cmdname, fname, strerror(errno));
68 if (fstat(fd, sbuf) < 0) {
69 fprintf(stderr, "%s: Can't stat %s: %s\n",
70 cmdname, fname, strerror(errno));
75 sbuf->st_size += size_inc;
76 if (ftruncate(fd, sbuf->st_size)) {
77 fprintf(stderr, "%s: Can't expand %s: %s\n",
78 cmdname, fname, strerror(errno));
84 ptr = mmap(0, sbuf->st_size,
85 (read_only ? PROT_READ : PROT_READ | PROT_WRITE), MAP_SHARED,
87 if ((ptr == MAP_FAILED) || (errno != 0)) {
88 fprintf(stderr, "%s: Can't read %s: %s\n",
89 cmdname, fname, strerror(errno));
93 /* check if ptr has a valid blob */
94 if (fdt_check_header(ptr)) {
95 fprintf(stderr, "%s: Invalid FIT blob\n", cmdname);
99 /* expand if needed */
103 ret = fdt_open_into(ptr, ptr, sbuf->st_size);
105 fprintf(stderr, "%s: Cannot expand FDT: %s\n",
106 cmdname, fdt_strerror(ret));
123 int copyfile(const char *src, const char *dst)
125 int fd_src = -1, fd_dst = -1;
131 fd_src = open(src, O_RDONLY);
133 printf("Can't open file %s (%s)\n", src, strerror(errno));
137 fd_dst = open(dst, O_WRONLY | O_CREAT | O_TRUNC, 0666);
139 printf("Can't open file %s (%s)\n", dst, strerror(errno));
143 buf = calloc(1, 512);
145 printf("Can't allocate buffer to copy file\n");
150 size = read(fd_src, buf, 512);
152 printf("Can't read file %s\n", src);
159 size = write(fd_dst, buf, count);
161 printf("Can't write file %s\n", dst);
179 void summary_show(struct image_summary *summary, const char *imagefile,
182 if (summary->sig_offset) {
183 printf("Signature written to '%s', node '%s'\n", imagefile,
186 printf("Public key written to '%s', node '%s'\n",
187 keydest, summary->keydest_path);