Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2001 |
| 4 | * Kyle Harris, kharris@nexus-tech.net |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 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. |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | /* #define DEBUG */ |
| 16 | |
| 17 | #include <common.h> |
| 18 | #include <command.h> |
Simon Glass | 6bf6dbe | 2019-08-01 09:46:49 -0600 | [diff] [blame] | 19 | #include <env.h> |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 20 | #include <image.h> |
| 21 | #include <malloc.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 22 | #include <mapmem.h> |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 23 | #include <asm/byteorder.h> |
Simon Glass | 4ca30d6 | 2013-04-20 08:42:49 +0000 | [diff] [blame] | 24 | #include <asm/io.h> |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 25 | |
Alex Kiernan | 201d9cd | 2018-06-22 14:58:02 +0000 | [diff] [blame] | 26 | #if defined(CONFIG_FIT) |
| 27 | /** |
| 28 | * get_default_image() - Return default property from /images |
| 29 | * |
| 30 | * Return: Pointer to value of default property (or NULL) |
| 31 | */ |
| 32 | static const char *get_default_image(const void *fit) |
| 33 | { |
| 34 | int images_noffset; |
| 35 | |
| 36 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 37 | if (images_noffset < 0) |
| 38 | return NULL; |
| 39 | |
| 40 | return fdt_getprop(fit, images_noffset, FIT_DEFAULT_PROP, NULL); |
| 41 | } |
| 42 | #endif |
| 43 | |
Simon Glass | 220a3a4 | 2019-12-28 10:45:04 -0700 | [diff] [blame] | 44 | int image_source_script(ulong addr, const char *fit_uname) |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 45 | { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 46 | ulong len; |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 47 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
Simon Glass | 4ca30d6 | 2013-04-20 08:42:49 +0000 | [diff] [blame] | 48 | const image_header_t *hdr; |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 49 | #endif |
Gong Qianyu | 210fbee | 2015-07-30 14:00:01 +0800 | [diff] [blame] | 50 | u32 *data; |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 51 | int verify; |
Simon Glass | 4ca30d6 | 2013-04-20 08:42:49 +0000 | [diff] [blame] | 52 | void *buf; |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 53 | #if defined(CONFIG_FIT) |
| 54 | const void* fit_hdr; |
| 55 | int noffset; |
| 56 | const void *fit_data; |
| 57 | size_t fit_len; |
| 58 | #endif |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 59 | |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 60 | verify = env_get_yesno("verify"); |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 61 | |
Simon Glass | 4ca30d6 | 2013-04-20 08:42:49 +0000 | [diff] [blame] | 62 | buf = map_sysmem(addr, 0); |
| 63 | switch (genimg_get_format(buf)) { |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 64 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 65 | case IMAGE_FORMAT_LEGACY: |
Simon Glass | 4ca30d6 | 2013-04-20 08:42:49 +0000 | [diff] [blame] | 66 | hdr = buf; |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 67 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 68 | if (!image_check_magic (hdr)) { |
| 69 | puts ("Bad magic number\n"); |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 70 | return 1; |
| 71 | } |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 72 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 73 | if (!image_check_hcrc (hdr)) { |
| 74 | puts ("Bad header crc\n"); |
| 75 | return 1; |
| 76 | } |
| 77 | |
| 78 | if (verify) { |
| 79 | if (!image_check_dcrc (hdr)) { |
| 80 | puts ("Bad data crc\n"); |
| 81 | return 1; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | if (!image_check_type (hdr, IH_TYPE_SCRIPT)) { |
| 86 | puts ("Bad image type\n"); |
| 87 | return 1; |
| 88 | } |
| 89 | |
| 90 | /* get length of script */ |
Gong Qianyu | 210fbee | 2015-07-30 14:00:01 +0800 | [diff] [blame] | 91 | data = (u32 *)image_get_data (hdr); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 92 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 93 | if ((len = uimage_to_cpu (*data)) == 0) { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 94 | puts ("Empty Script\n"); |
| 95 | return 1; |
| 96 | } |
Bartlomiej Sieka | 36cc8cb | 2008-03-20 23:10:19 +0100 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * scripts are just multi-image files with one component, seek |
| 100 | * past the zero-terminated sequence of image lengths to get |
| 101 | * to the actual image data |
| 102 | */ |
| 103 | while (*data++); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 104 | break; |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 105 | #endif |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 106 | #if defined(CONFIG_FIT) |
| 107 | case IMAGE_FORMAT_FIT: |
Simon Glass | 4ca30d6 | 2013-04-20 08:42:49 +0000 | [diff] [blame] | 108 | fit_hdr = buf; |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 109 | if (!fit_check_format (fit_hdr)) { |
| 110 | puts ("Bad FIT image format\n"); |
| 111 | return 1; |
| 112 | } |
| 113 | |
Alex Kiernan | 201d9cd | 2018-06-22 14:58:02 +0000 | [diff] [blame] | 114 | if (!fit_uname) |
| 115 | fit_uname = get_default_image(fit_hdr); |
| 116 | |
| 117 | if (!fit_uname) { |
| 118 | puts("No FIT subimage unit name\n"); |
| 119 | return 1; |
| 120 | } |
| 121 | |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 122 | /* get script component image node offset */ |
| 123 | noffset = fit_image_get_node (fit_hdr, fit_uname); |
| 124 | if (noffset < 0) { |
| 125 | printf ("Can't find '%s' FIT subimage\n", fit_uname); |
| 126 | return 1; |
| 127 | } |
| 128 | |
| 129 | if (!fit_image_check_type (fit_hdr, noffset, IH_TYPE_SCRIPT)) { |
| 130 | puts ("Not a image image\n"); |
| 131 | return 1; |
| 132 | } |
| 133 | |
| 134 | /* verify integrity */ |
| 135 | if (verify) { |
Simon Glass | b8da836 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 136 | if (!fit_image_verify(fit_hdr, noffset)) { |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 137 | puts ("Bad Data Hash\n"); |
| 138 | return 1; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | /* get script subimage data address and length */ |
| 143 | if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) { |
| 144 | puts ("Could not find script subimage data\n"); |
| 145 | return 1; |
| 146 | } |
| 147 | |
Gong Qianyu | 210fbee | 2015-07-30 14:00:01 +0800 | [diff] [blame] | 148 | data = (u32 *)fit_data; |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 149 | len = (ulong)fit_len; |
| 150 | break; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 151 | #endif |
| 152 | default: |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 153 | puts ("Wrong image format for \"source\" command\n"); |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 154 | return 1; |
| 155 | } |
| 156 | |
wdenk | 699b13a | 2002-11-03 18:03:52 +0000 | [diff] [blame] | 157 | debug ("** Script length: %ld\n", len); |
Simon Glass | d51004a | 2012-03-30 21:30:55 +0000 | [diff] [blame] | 158 | return run_command_list((char *)data, len, 0); |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 159 | } |
| 160 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 161 | /**************************************************/ |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 162 | #if defined(CONFIG_CMD_SOURCE) |
Jeroen Hofstee | 0e350f8 | 2014-06-23 00:22:08 +0200 | [diff] [blame] | 163 | static int do_source(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 164 | { |
| 165 | ulong addr; |
| 166 | int rcode; |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 167 | const char *fit_uname = NULL; |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 168 | |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 169 | /* Find script image */ |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 170 | if (argc < 2) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 171 | addr = CONFIG_SYS_LOAD_ADDR; |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 172 | debug ("* source: default load address = 0x%08lx\n", addr); |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 173 | #if defined(CONFIG_FIT) |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 174 | } else if (fit_parse_subimage(argv[1], image_load_addr, &addr, |
| 175 | &fit_uname)) { |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 176 | debug ("* source: subimage '%s' from FIT image at 0x%08lx\n", |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 177 | fit_uname, addr); |
| 178 | #endif |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 179 | } else { |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 180 | addr = simple_strtoul(argv[1], NULL, 16); |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 181 | debug ("* source: cmdline image address = 0x%08lx\n", addr); |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 184 | printf ("## Executing script at %08lx\n", addr); |
Simon Glass | 220a3a4 | 2019-12-28 10:45:04 -0700 | [diff] [blame] | 185 | rcode = image_source_script(addr, fit_uname); |
wdenk | d0dd107 | 2002-10-20 17:17:16 +0000 | [diff] [blame] | 186 | return rcode; |
| 187 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 188 | |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 189 | #ifdef CONFIG_SYS_LONGHELP |
| 190 | static char source_help_text[] = |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 191 | "[addr]\n" |
| 192 | "\t- run script starting at addr\n" |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 193 | "\t- A valid image header must be present" |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 194 | #if defined(CONFIG_FIT) |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 195 | "\n" |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 196 | "For FIT format uImage addr must include subimage\n" |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 197 | "unit name in the form of addr:<subimg_uname>" |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 198 | #endif |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 199 | ""; |
| 200 | #endif |
| 201 | |
| 202 | U_BOOT_CMD( |
| 203 | source, 2, 0, do_source, |
| 204 | "run script from memory", source_help_text |
Marian Balakowicz | 424c4ab | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 205 | ); |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 206 | #endif |