blob: 94da5d8d6ade901698eb705eeb90a9493d28aade [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkd0dd1072002-10-20 17:17:16 +00002/*
3 * (C) Copyright 2001
4 * Kyle Harris, kharris@nexus-tech.net
wdenkd0dd1072002-10-20 17:17:16 +00005 */
6
7/*
Wolfgang Denk85c25df2009-04-01 23:34:12 +02008 * 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.
wdenkd0dd1072002-10-20 17:17:16 +000013 */
14
15/* #define DEBUG */
16
17#include <common.h>
18#include <command.h>
Simon Glassc301bd82019-08-01 09:46:49 -060019#include <env.h>
wdenkd0dd1072002-10-20 17:17:16 +000020#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060021#include <log.h>
wdenkd0dd1072002-10-20 17:17:16 +000022#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050023#include <mapmem.h>
wdenkd0dd1072002-10-20 17:17:16 +000024#include <asm/byteorder.h>
Simon Glass7e5581e2013-04-20 08:42:49 +000025#include <asm/io.h>
wdenkd0dd1072002-10-20 17:17:16 +000026
Alex Kiernanb8acfa92018-06-22 14:58:02 +000027#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 */
33static 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
Sean Andersond3e7e202022-12-12 14:12:11 -050045int image_source_script(ulong addr, const char *fit_uname, const char *confname)
wdenkd0dd1072002-10-20 17:17:16 +000046{
Wolfgang Denka1be4762008-05-20 16:00:29 +020047 ulong len;
Tom Rinic220bd92019-05-23 07:14:07 -040048#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Simon Glassbb7d3bb2022-09-06 20:26:52 -060049 const struct legacy_img_hdr *hdr;
Heiko Schocher515eb122014-05-28 11:33:33 +020050#endif
Gong Qianyu9e354c92015-07-30 14:00:01 +080051 u32 *data;
Marian Balakowicz23b77a22008-03-12 10:33:00 +010052 int verify;
Simon Glass7e5581e2013-04-20 08:42:49 +000053 void *buf;
Marian Balakowicz23b77a22008-03-12 10:33:00 +010054#if defined(CONFIG_FIT)
55 const void* fit_hdr;
56 int noffset;
57 const void *fit_data;
58 size_t fit_len;
59#endif
wdenkd0dd1072002-10-20 17:17:16 +000060
Simon Glass22c34c22017-08-03 12:22:13 -060061 verify = env_get_yesno("verify");
wdenkd0dd1072002-10-20 17:17:16 +000062
Simon Glass7e5581e2013-04-20 08:42:49 +000063 buf = map_sysmem(addr, 0);
64 switch (genimg_get_format(buf)) {
Tom Rinic220bd92019-05-23 07:14:07 -040065#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010066 case IMAGE_FORMAT_LEGACY:
Simon Glass7e5581e2013-04-20 08:42:49 +000067 hdr = buf;
wdenkd0dd1072002-10-20 17:17:16 +000068
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010069 if (!image_check_magic (hdr)) {
70 puts ("Bad magic number\n");
71 return 1;
72 }
wdenkd0dd1072002-10-20 17:17:16 +000073
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010074 if (!image_check_hcrc (hdr)) {
75 puts ("Bad header crc\n");
wdenkd0dd1072002-10-20 17:17:16 +000076 return 1;
77 }
wdenkd0dd1072002-10-20 17:17:16 +000078
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010079 if (verify) {
80 if (!image_check_dcrc (hdr)) {
81 puts ("Bad data crc\n");
82 return 1;
83 }
84 }
wdenkd0dd1072002-10-20 17:17:16 +000085
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010086 if (!image_check_type (hdr, IH_TYPE_SCRIPT)) {
87 puts ("Bad image type\n");
88 return 1;
89 }
90
91 /* get length of script */
Gong Qianyu9e354c92015-07-30 14:00:01 +080092 data = (u32 *)image_get_data (hdr);
wdenkd0dd1072002-10-20 17:17:16 +000093
Marian Balakowiczd7c88a42008-02-29 14:58:34 +010094 if ((len = uimage_to_cpu (*data)) == 0) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010095 puts ("Empty Script\n");
96 return 1;
97 }
Bartlomiej Siekae67c8272008-03-20 23:10:19 +010098
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++);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100105 break;
Heiko Schocher515eb122014-05-28 11:33:33 +0200106#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100107#if defined(CONFIG_FIT)
108 case IMAGE_FORMAT_FIT:
Simon Glass7e5581e2013-04-20 08:42:49 +0000109 fit_hdr = buf;
Simon Glassd563c252021-02-15 17:08:09 -0700110 if (fit_check_format(fit_hdr, IMAGE_SIZE_INVAL)) {
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100111 puts ("Bad FIT image format\n");
112 return 1;
113 }
114
Alex Kiernanb8acfa92018-06-22 14:58:02 +0000115 if (!fit_uname) {
Sean Andersond3e7e202022-12-12 14:12:11 -0500116 /* If confname is empty, use the default */
117 if (confname && *confname)
118 noffset = fit_conf_get_node(fit_hdr, confname);
119 else
120 noffset = fit_conf_get_node(fit_hdr, NULL);
121 if (noffset < 0) {
122 if (!confname)
123 goto fallback;
124 printf("Could not find config %s\n", confname);
125 return 1;
126 }
Alex Kiernanb8acfa92018-06-22 14:58:02 +0000127
Sean Andersond3e7e202022-12-12 14:12:11 -0500128 if (verify && fit_config_verify(fit_hdr, noffset))
129 return 1;
130
131 noffset = fit_conf_get_prop_node(fit_hdr, noffset,
132 FIT_SCRIPT_PROP,
133 IH_PHASE_NONE);
134 if (noffset < 0) {
135 if (!confname)
136 goto fallback;
137 printf("Could not find script in %s\n", confname);
138 return 1;
139 }
140 } else {
141fallback:
142 if (!fit_uname || !*fit_uname)
143 fit_uname = get_default_image(fit_hdr);
144 if (!fit_uname) {
145 puts("No FIT subimage unit name\n");
146 return 1;
147 }
148
149 /* get script component image node offset */
150 noffset = fit_image_get_node(fit_hdr, fit_uname);
151 if (noffset < 0) {
152 printf("Can't find '%s' FIT subimage\n",
153 fit_uname);
154 return 1;
155 }
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100156 }
157
158 if (!fit_image_check_type (fit_hdr, noffset, IH_TYPE_SCRIPT)) {
Sean Anderson7d9733c2022-12-12 14:12:10 -0500159 puts("Not a script image\n");
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100160 return 1;
161 }
162
163 /* verify integrity */
Sean Anderson7d9733c2022-12-12 14:12:10 -0500164 if (verify && !fit_image_verify(fit_hdr, noffset)) {
165 puts("Bad Data Hash\n");
166 return 1;
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100167 }
168
169 /* get script subimage data address and length */
170 if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) {
171 puts ("Could not find script subimage data\n");
172 return 1;
173 }
174
Gong Qianyu9e354c92015-07-30 14:00:01 +0800175 data = (u32 *)fit_data;
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100176 len = (ulong)fit_len;
177 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100178#endif
179 default:
Wolfgang Denk85c25df2009-04-01 23:34:12 +0200180 puts ("Wrong image format for \"source\" command\n");
wdenkd0dd1072002-10-20 17:17:16 +0000181 return 1;
182 }
183
Simon Glass8f055af2020-05-10 11:40:04 -0600184 debug("** Script length: %ld\n", len);
Simon Glassa6642e02012-03-30 21:30:55 +0000185 return run_command_list((char *)data, len, 0);
wdenkd0dd1072002-10-20 17:17:16 +0000186}
187
wdenk57b2d802003-06-27 21:31:46 +0000188/**************************************************/
Wolfgang Denk85c25df2009-04-01 23:34:12 +0200189#if defined(CONFIG_CMD_SOURCE)
Simon Glassed38aef2020-05-10 11:40:03 -0600190static int do_source(struct cmd_tbl *cmdtp, int flag, int argc,
191 char *const argv[])
wdenkd0dd1072002-10-20 17:17:16 +0000192{
193 ulong addr;
194 int rcode;
Sean Andersond3e7e202022-12-12 14:12:11 -0500195 const char *fit_uname = NULL, *confname = NULL;
wdenkd0dd1072002-10-20 17:17:16 +0000196
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100197 /* Find script image */
wdenkd0dd1072002-10-20 17:17:16 +0000198 if (argc < 2) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200199 addr = CONFIG_SYS_LOAD_ADDR;
Simon Glass8f055af2020-05-10 11:40:04 -0600200 debug("* source: default load address = 0x%08lx\n", addr);
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100201#if defined(CONFIG_FIT)
Simon Glass892265d2019-12-28 10:45:02 -0700202 } else if (fit_parse_subimage(argv[1], image_load_addr, &addr,
203 &fit_uname)) {
Simon Glass8f055af2020-05-10 11:40:04 -0600204 debug("* source: subimage '%s' from FIT image at 0x%08lx\n",
205 fit_uname, addr);
Sean Andersond3e7e202022-12-12 14:12:11 -0500206 } else if (fit_parse_conf(argv[1], image_load_addr, &addr, &confname)) {
207 debug("* source: config '%s' from FIT image at 0x%08lx\n",
208 confname, addr);
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100209#endif
wdenkd0dd1072002-10-20 17:17:16 +0000210 } else {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600211 addr = hextoul(argv[1], NULL);
Simon Glass8f055af2020-05-10 11:40:04 -0600212 debug("* source: cmdline image address = 0x%08lx\n", addr);
wdenkd0dd1072002-10-20 17:17:16 +0000213 }
214
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100215 printf ("## Executing script at %08lx\n", addr);
Sean Andersond3e7e202022-12-12 14:12:11 -0500216 rcode = image_source_script(addr, fit_uname, confname);
wdenkd0dd1072002-10-20 17:17:16 +0000217 return rcode;
218}
wdenk57b2d802003-06-27 21:31:46 +0000219
Kim Phillipsdc00a682012-10-29 13:34:31 +0000220#ifdef CONFIG_SYS_LONGHELP
221static char source_help_text[] =
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100222#if defined(CONFIG_FIT)
Sean Andersond3e7e202022-12-12 14:12:11 -0500223 "[<addr>][:[<image>]|#[<config>]]\n"
224 "\t- Run script starting at addr\n"
225 "\t- A FIT config name or subimage name may be specified with : or #\n"
226 "\t (like bootm). If the image or config name is omitted, the\n"
227 "\t default is used.";
228#else
229 "[<addr>]\n"
230 "\t- Run script starting at addr";
Jon Loeligerd704d912007-07-10 11:02:44 -0500231#endif
Kim Phillipsdc00a682012-10-29 13:34:31 +0000232#endif
233
234U_BOOT_CMD(
235 source, 2, 0, do_source,
236 "run script from memory", source_help_text
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100237);
Jon Loeligerd704d912007-07-10 11:02:44 -0500238#endif