]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
d0dd1077 WD |
2 | /* |
3 | * (C) Copyright 2001 | |
4 | * Kyle Harris, [email protected] | |
d0dd1077 WD |
5 | */ |
6 | ||
7 | /* | |
74de7aef WD |
8 | * The "source" command allows to define "script images", i. e. files |
9 | * that contain command sequences that can be executed by the command | |
10 | * interpreter. It returns the exit status of the last command | |
11 | * executed from the script. This is very similar to running a shell | |
12 | * script in a UNIX shell, hence the name for the command. | |
d0dd1077 WD |
13 | */ |
14 | ||
15 | /* #define DEBUG */ | |
16 | ||
17 | #include <common.h> | |
18 | #include <command.h> | |
6bf6dbee | 19 | #include <env.h> |
d0dd1077 | 20 | #include <image.h> |
f7ae49fc | 21 | #include <log.h> |
d0dd1077 | 22 | #include <malloc.h> |
0eb25b61 | 23 | #include <mapmem.h> |
d0dd1077 | 24 | #include <asm/byteorder.h> |
4ca30d60 | 25 | #include <asm/io.h> |
d0dd1077 | 26 | |
201d9cd2 AK |
27 | #if defined(CONFIG_FIT) |
28 | /** | |
29 | * get_default_image() - Return default property from /images | |
30 | * | |
31 | * Return: Pointer to value of default property (or NULL) | |
32 | */ | |
33 | static const char *get_default_image(const void *fit) | |
34 | { | |
35 | int images_noffset; | |
36 | ||
37 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); | |
38 | if (images_noffset < 0) | |
39 | return NULL; | |
40 | ||
41 | return fdt_getprop(fit, images_noffset, FIT_DEFAULT_PROP, NULL); | |
42 | } | |
43 | #endif | |
44 | ||
220a3a44 | 45 | int image_source_script(ulong addr, const char *fit_uname) |
d0dd1077 | 46 | { |
53677ef1 | 47 | ulong len; |
c76c93a3 | 48 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
4ca30d60 | 49 | const image_header_t *hdr; |
21d29f7f | 50 | #endif |
210fbee9 | 51 | u32 *data; |
424c4abd | 52 | int verify; |
4ca30d60 | 53 | void *buf; |
424c4abd MB |
54 | #if defined(CONFIG_FIT) |
55 | const void* fit_hdr; | |
56 | int noffset; | |
57 | const void *fit_data; | |
58 | size_t fit_len; | |
59 | #endif | |
d0dd1077 | 60 | |
bfebc8c9 | 61 | verify = env_get_yesno("verify"); |
d0dd1077 | 62 | |
4ca30d60 SG |
63 | buf = map_sysmem(addr, 0); |
64 | switch (genimg_get_format(buf)) { | |
c76c93a3 | 65 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
d5934ad7 | 66 | case IMAGE_FORMAT_LEGACY: |
4ca30d60 | 67 | hdr = buf; |
d0dd1077 | 68 | |
d5934ad7 MB |
69 | if (!image_check_magic (hdr)) { |
70 | puts ("Bad magic number\n"); | |
71 | return 1; | |
72 | } | |
d0dd1077 | 73 | |
d5934ad7 MB |
74 | if (!image_check_hcrc (hdr)) { |
75 | puts ("Bad header crc\n"); | |
d0dd1077 WD |
76 | return 1; |
77 | } | |
d0dd1077 | 78 | |
d5934ad7 MB |
79 | if (verify) { |
80 | if (!image_check_dcrc (hdr)) { | |
81 | puts ("Bad data crc\n"); | |
82 | return 1; | |
83 | } | |
84 | } | |
85 | ||
86 | if (!image_check_type (hdr, IH_TYPE_SCRIPT)) { | |
87 | puts ("Bad image type\n"); | |
88 | return 1; | |
89 | } | |
d0dd1077 | 90 | |
d5934ad7 | 91 | /* get length of script */ |
210fbee9 | 92 | data = (u32 *)image_get_data (hdr); |
d0dd1077 | 93 | |
9a4daad0 | 94 | if ((len = uimage_to_cpu (*data)) == 0) { |
d5934ad7 MB |
95 | puts ("Empty Script\n"); |
96 | return 1; | |
97 | } | |
36cc8cbb BS |
98 | |
99 | /* | |
100 | * scripts are just multi-image files with one component, seek | |
101 | * past the zero-terminated sequence of image lengths to get | |
102 | * to the actual image data | |
103 | */ | |
104 | while (*data++); | |
d5934ad7 | 105 | break; |
21d29f7f | 106 | #endif |
d5934ad7 MB |
107 | #if defined(CONFIG_FIT) |
108 | case IMAGE_FORMAT_FIT: | |
4ca30d60 | 109 | fit_hdr = buf; |
424c4abd MB |
110 | if (!fit_check_format (fit_hdr)) { |
111 | puts ("Bad FIT image format\n"); | |
112 | return 1; | |
113 | } | |
114 | ||
201d9cd2 AK |
115 | if (!fit_uname) |
116 | fit_uname = get_default_image(fit_hdr); | |
117 | ||
118 | if (!fit_uname) { | |
119 | puts("No FIT subimage unit name\n"); | |
120 | return 1; | |
121 | } | |
122 | ||
424c4abd MB |
123 | /* get script component image node offset */ |
124 | noffset = fit_image_get_node (fit_hdr, fit_uname); | |
125 | if (noffset < 0) { | |
126 | printf ("Can't find '%s' FIT subimage\n", fit_uname); | |
127 | return 1; | |
128 | } | |
129 | ||
130 | if (!fit_image_check_type (fit_hdr, noffset, IH_TYPE_SCRIPT)) { | |
131 | puts ("Not a image image\n"); | |
132 | return 1; | |
133 | } | |
134 | ||
135 | /* verify integrity */ | |
136 | if (verify) { | |
b8da8366 | 137 | if (!fit_image_verify(fit_hdr, noffset)) { |
424c4abd MB |
138 | puts ("Bad Data Hash\n"); |
139 | return 1; | |
140 | } | |
141 | } | |
142 | ||
143 | /* get script subimage data address and length */ | |
144 | if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) { | |
145 | puts ("Could not find script subimage data\n"); | |
146 | return 1; | |
147 | } | |
148 | ||
210fbee9 | 149 | data = (u32 *)fit_data; |
424c4abd MB |
150 | len = (ulong)fit_len; |
151 | break; | |
d5934ad7 MB |
152 | #endif |
153 | default: | |
74de7aef | 154 | puts ("Wrong image format for \"source\" command\n"); |
d0dd1077 WD |
155 | return 1; |
156 | } | |
157 | ||
3c7dded8 | 158 | debug("** Script length: %ld\n", len); |
d51004a8 | 159 | return run_command_list((char *)data, len, 0); |
d0dd1077 WD |
160 | } |
161 | ||
8bde7f77 | 162 | /**************************************************/ |
74de7aef | 163 | #if defined(CONFIG_CMD_SOURCE) |
09140113 SG |
164 | static int do_source(struct cmd_tbl *cmdtp, int flag, int argc, |
165 | char *const argv[]) | |
d0dd1077 WD |
166 | { |
167 | ulong addr; | |
168 | int rcode; | |
424c4abd | 169 | const char *fit_uname = NULL; |
d0dd1077 | 170 | |
424c4abd | 171 | /* Find script image */ |
d0dd1077 | 172 | if (argc < 2) { |
6d0f6bcf | 173 | addr = CONFIG_SYS_LOAD_ADDR; |
3c7dded8 | 174 | debug("* source: default load address = 0x%08lx\n", addr); |
424c4abd | 175 | #if defined(CONFIG_FIT) |
bb872dd9 SG |
176 | } else if (fit_parse_subimage(argv[1], image_load_addr, &addr, |
177 | &fit_uname)) { | |
3c7dded8 SG |
178 | debug("* source: subimage '%s' from FIT image at 0x%08lx\n", |
179 | fit_uname, addr); | |
424c4abd | 180 | #endif |
d0dd1077 | 181 | } else { |
424c4abd | 182 | addr = simple_strtoul(argv[1], NULL, 16); |
3c7dded8 | 183 | debug("* source: cmdline image address = 0x%08lx\n", addr); |
d0dd1077 WD |
184 | } |
185 | ||
424c4abd | 186 | printf ("## Executing script at %08lx\n", addr); |
220a3a44 | 187 | rcode = image_source_script(addr, fit_uname); |
d0dd1077 WD |
188 | return rcode; |
189 | } | |
8bde7f77 | 190 | |
088f1b19 KP |
191 | #ifdef CONFIG_SYS_LONGHELP |
192 | static char source_help_text[] = | |
74de7aef WD |
193 | "[addr]\n" |
194 | "\t- run script starting at addr\n" | |
a89c33db | 195 | "\t- A valid image header must be present" |
424c4abd | 196 | #if defined(CONFIG_FIT) |
a89c33db | 197 | "\n" |
424c4abd | 198 | "For FIT format uImage addr must include subimage\n" |
a89c33db | 199 | "unit name in the form of addr:<subimg_uname>" |
90253178 | 200 | #endif |
088f1b19 KP |
201 | ""; |
202 | #endif | |
203 | ||
204 | U_BOOT_CMD( | |
205 | source, 2, 0, do_source, | |
206 | "run script from memory", source_help_text | |
424c4abd | 207 | ); |
90253178 | 208 | #endif |