]> Git Repo - J-u-boot.git/blob - cmd/source.c
cmd: source: Clean up a few lines
[J-u-boot.git] / cmd / source.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2001
4  * Kyle Harris, [email protected]
5  */
6
7 /*
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.
13  */
14
15 /* #define DEBUG */
16
17 #include <common.h>
18 #include <command.h>
19 #include <env.h>
20 #include <image.h>
21 #include <log.h>
22 #include <malloc.h>
23 #include <mapmem.h>
24 #include <asm/byteorder.h>
25 #include <asm/io.h>
26
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
45 int image_source_script(ulong addr, const char *fit_uname)
46 {
47         ulong           len;
48 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
49         const struct legacy_img_hdr *hdr;
50 #endif
51         u32             *data;
52         int             verify;
53         void *buf;
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
60
61         verify = env_get_yesno("verify");
62
63         buf = map_sysmem(addr, 0);
64         switch (genimg_get_format(buf)) {
65 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
66         case IMAGE_FORMAT_LEGACY:
67                 hdr = buf;
68
69                 if (!image_check_magic (hdr)) {
70                         puts ("Bad magic number\n");
71                         return 1;
72                 }
73
74                 if (!image_check_hcrc (hdr)) {
75                         puts ("Bad header crc\n");
76                         return 1;
77                 }
78
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                 }
90
91                 /* get length of script */
92                 data = (u32 *)image_get_data (hdr);
93
94                 if ((len = uimage_to_cpu (*data)) == 0) {
95                         puts ("Empty Script\n");
96                         return 1;
97                 }
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++);
105                 break;
106 #endif
107 #if defined(CONFIG_FIT)
108         case IMAGE_FORMAT_FIT:
109                 fit_hdr = buf;
110                 if (fit_check_format(fit_hdr, IMAGE_SIZE_INVAL)) {
111                         puts ("Bad FIT image format\n");
112                         return 1;
113                 }
114
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
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 script image\n");
132                         return 1;
133                 }
134
135                 /* verify integrity */
136                 if (verify && !fit_image_verify(fit_hdr, noffset)) {
137                         puts("Bad Data Hash\n");
138                         return 1;
139                 }
140
141                 /* get script subimage data address and length */
142                 if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) {
143                         puts ("Could not find script subimage data\n");
144                         return 1;
145                 }
146
147                 data = (u32 *)fit_data;
148                 len = (ulong)fit_len;
149                 break;
150 #endif
151         default:
152                 puts ("Wrong image format for \"source\" command\n");
153                 return 1;
154         }
155
156         debug("** Script length: %ld\n", len);
157         return run_command_list((char *)data, len, 0);
158 }
159
160 /**************************************************/
161 #if defined(CONFIG_CMD_SOURCE)
162 static int do_source(struct cmd_tbl *cmdtp, int flag, int argc,
163                      char *const argv[])
164 {
165         ulong addr;
166         int rcode;
167         const char *fit_uname = NULL;
168
169         /* Find script image */
170         if (argc < 2) {
171                 addr = CONFIG_SYS_LOAD_ADDR;
172                 debug("*  source: default load address = 0x%08lx\n", addr);
173 #if defined(CONFIG_FIT)
174         } else if (fit_parse_subimage(argv[1], image_load_addr, &addr,
175                                       &fit_uname)) {
176                 debug("*  source: subimage '%s' from FIT image at 0x%08lx\n",
177                       fit_uname, addr);
178 #endif
179         } else {
180                 addr = hextoul(argv[1], NULL);
181                 debug("*  source: cmdline image address = 0x%08lx\n", addr);
182         }
183
184         printf ("## Executing script at %08lx\n", addr);
185         rcode = image_source_script(addr, fit_uname);
186         return rcode;
187 }
188
189 #ifdef CONFIG_SYS_LONGHELP
190 static char source_help_text[] =
191         "[addr]\n"
192         "\t- run script starting at addr\n"
193         "\t- A valid image header must be present"
194 #if defined(CONFIG_FIT)
195         "\n"
196         "For FIT format uImage addr must include subimage\n"
197         "unit name in the form of addr:<subimg_uname>"
198 #endif
199         "";
200 #endif
201
202 U_BOOT_CMD(
203         source, 2, 0,   do_source,
204         "run script from memory", source_help_text
205 );
206 #endif
This page took 0.036943 seconds and 4 git commands to generate.