]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
6bf4ca07 HS |
2 | /* |
3 | * (C) Copyright 2014 | |
4 | * DENX Software Engineering | |
5 | * Heiko Schocher <[email protected]> | |
6 | * | |
7 | * (C) Copyright 2008 Semihalf | |
8 | * | |
9 | * (C) Copyright 2000-2004 | |
10 | * DENX Software Engineering | |
11 | * Wolfgang Denk, [email protected] | |
12 | * | |
13 | * Updated-by: Prafulla Wadaskar <[email protected]> | |
14 | * FIT image specific code abstracted from mkimage.c | |
15 | * some functions added to address abstraction | |
16 | * | |
17 | * All rights reserved. | |
6bf4ca07 HS |
18 | */ |
19 | ||
20 | #include "imagetool.h" | |
21 | #include "mkimage.h" | |
22 | #include "fit_common.h" | |
23 | #include <image.h> | |
24 | #include <u-boot/crc.h> | |
25 | ||
26 | int fit_verify_header(unsigned char *ptr, int image_size, | |
27 | struct image_tool_params *params) | |
28 | { | |
d32aa3ca JH |
29 | if (fdt_check_header(ptr) != EXIT_SUCCESS || !fit_check_format(ptr)) |
30 | return EXIT_FAILURE; | |
31 | ||
32 | return EXIT_SUCCESS; | |
6bf4ca07 HS |
33 | } |
34 | ||
35 | int fit_check_image_types(uint8_t type) | |
36 | { | |
37 | if (type == IH_TYPE_FLATDT) | |
38 | return EXIT_SUCCESS; | |
39 | else | |
40 | return EXIT_FAILURE; | |
41 | } | |
42 | ||
a9468115 | 43 | int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc, |
7d57485a LB |
44 | void **blobp, struct stat *sbuf, bool delete_on_error, |
45 | bool read_only) | |
6bf4ca07 HS |
46 | { |
47 | void *ptr; | |
48 | int fd; | |
49 | ||
50 | /* Load FIT blob into memory (we need to write hashes/signatures) */ | |
7d57485a | 51 | fd = open(fname, (read_only ? O_RDONLY : O_RDWR) | O_BINARY); |
6bf4ca07 HS |
52 | |
53 | if (fd < 0) { | |
54 | fprintf(stderr, "%s: Can't open %s: %s\n", | |
55 | cmdname, fname, strerror(errno)); | |
ef0af64b | 56 | goto err; |
6bf4ca07 HS |
57 | } |
58 | ||
59 | if (fstat(fd, sbuf) < 0) { | |
60 | fprintf(stderr, "%s: Can't stat %s: %s\n", | |
61 | cmdname, fname, strerror(errno)); | |
ef0af64b | 62 | goto err; |
6bf4ca07 HS |
63 | } |
64 | ||
a9468115 SG |
65 | if (size_inc) { |
66 | sbuf->st_size += size_inc; | |
67 | if (ftruncate(fd, sbuf->st_size)) { | |
68 | fprintf(stderr, "%s: Can't expand %s: %s\n", | |
69 | cmdname, fname, strerror(errno)); | |
70 | goto err; | |
71 | } | |
72 | } | |
73 | ||
6bf4ca07 | 74 | errno = 0; |
7d57485a LB |
75 | ptr = mmap(0, sbuf->st_size, |
76 | (read_only ? PROT_READ : PROT_READ | PROT_WRITE), MAP_SHARED, | |
77 | fd, 0); | |
6bf4ca07 HS |
78 | if ((ptr == MAP_FAILED) || (errno != 0)) { |
79 | fprintf(stderr, "%s: Can't read %s: %s\n", | |
80 | cmdname, fname, strerror(errno)); | |
ef0af64b | 81 | goto err; |
6bf4ca07 HS |
82 | } |
83 | ||
84 | /* check if ptr has a valid blob */ | |
85 | if (fdt_check_header(ptr)) { | |
86 | fprintf(stderr, "%s: Invalid FIT blob\n", cmdname); | |
ef0af64b | 87 | goto err; |
6bf4ca07 HS |
88 | } |
89 | ||
a9468115 SG |
90 | /* expand if needed */ |
91 | if (size_inc) { | |
92 | int ret; | |
93 | ||
94 | ret = fdt_open_into(ptr, ptr, sbuf->st_size); | |
95 | if (ret) { | |
96 | fprintf(stderr, "%s: Cannot expand FDT: %s\n", | |
97 | cmdname, fdt_strerror(ret)); | |
98 | goto err; | |
99 | } | |
100 | } | |
101 | ||
6bf4ca07 HS |
102 | *blobp = ptr; |
103 | return fd; | |
ef0af64b SG |
104 | |
105 | err: | |
106 | if (fd >= 0) | |
107 | close(fd); | |
108 | if (delete_on_error) | |
109 | unlink(fname); | |
110 | ||
111 | return -1; | |
6bf4ca07 | 112 | } |