Prepare v2023.10
[platform/kernel/u-boot.git] / boot / bootmeth_script.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Bootmethod for booting via a U-Boot script
4  *
5  * Copyright 2021 Google LLC
6  * Written by Simon Glass <sjg@chromium.org>
7  */
8
9 #define LOG_CATEGORY UCLASS_BOOTSTD
10
11 #include <common.h>
12 #include <blk.h>
13 #include <bootflow.h>
14 #include <bootmeth.h>
15 #include <bootstd.h>
16 #include <dm.h>
17 #include <env.h>
18 #include <fs.h>
19 #include <image.h>
20 #include <malloc.h>
21 #include <mapmem.h>
22 #include <net.h>
23
24 #define SCRIPT_FNAME1   "boot.scr.uimg"
25 #define SCRIPT_FNAME2   "boot.scr"
26
27 static int script_check(struct udevice *dev, struct bootflow_iter *iter)
28 {
29         /* This works on block devices, network devices and SPI Flash */
30         if (iter->method_flags & BOOTFLOW_METHF_PXE_ONLY)
31                 return log_msg_ret("pxe", -ENOTSUPP);
32
33         return 0;
34 }
35
36 /**
37  * script_fill_info() - Decode the U-Boot script to find out distro info
38  *
39  * @bflow: Bootflow to process
40  * @return 0 if OK, -ve on error
41  */
42 static int script_fill_info(struct bootflow *bflow)
43 {
44         char *name = NULL;
45         char *data;
46         uint len;
47         int ret;
48
49         log_debug("parsing bflow file size %x\n", bflow->size);
50
51         ret = image_locate_script(bflow->buf, bflow->size, NULL, NULL, &data, &len);
52         if (!ret) {
53                 if (strstr(data, "armbianEnv"))
54                         name = "Armbian";
55         }
56
57         if (name) {
58                 bflow->os_name = strdup(name);
59                 if (!bflow->os_name)
60                         return log_msg_ret("os", -ENOMEM);
61         }
62
63         return 0;
64 }
65
66 static int script_read_bootflow_file(struct udevice *bootstd,
67                                      struct bootflow *bflow)
68 {
69         struct blk_desc *desc = NULL;
70         const char *const *prefixes;
71         const char *prefix;
72         int ret, i;
73
74         ret = uclass_first_device_err(UCLASS_BOOTSTD, &bootstd);
75         if (ret)
76                 return log_msg_ret("std", ret);
77
78         if (bflow->blk) {
79                 /* We require a partition table */
80                 if (!bflow->part)
81                         return -ENOENT;
82                  desc = dev_get_uclass_plat(bflow->blk);
83         }
84
85         prefixes = bootstd_get_prefixes(bootstd);
86         i = 0;
87         do {
88                 prefix = prefixes ? prefixes[i] : NULL;
89
90                 ret = bootmeth_try_file(bflow, desc, prefix, SCRIPT_FNAME1);
91                 if (ret)
92                         ret = bootmeth_try_file(bflow, desc, prefix,
93                                                 SCRIPT_FNAME2);
94         } while (ret && prefixes && prefixes[++i]);
95         if (ret)
96                 return log_msg_ret("try", ret);
97
98         bflow->subdir = strdup(prefix ? prefix : "");
99         if (!bflow->subdir)
100                 return log_msg_ret("prefix", -ENOMEM);
101
102         ret = bootmeth_alloc_file(bflow, 0x10000, 1);
103         if (ret)
104                 return log_msg_ret("read", ret);
105
106         ret = script_fill_info(bflow);
107         if (ret)
108                 return log_msg_ret("inf", ret);
109
110         ret = bootmeth_alloc_other(bflow, "boot.bmp", &bflow->logo,
111                                    &bflow->logo_size);
112         /* ignore error */
113
114         return 0;
115 }
116
117 static int script_read_bootflow_net(struct bootflow *bflow)
118 {
119         const char *addr_str;
120         int size, ret;
121         char *fname;
122         ulong addr;
123
124         /* figure out the load address */
125         addr_str = env_get("scriptaddr");
126         addr = addr_str ? hextoul(addr_str, NULL) : image_load_addr;
127
128         fname = env_get("boot_script_dhcp");
129         if (!fname)
130                 return log_msg_ret("dhc", -EINVAL);
131
132         ret = dhcp_run(addr, fname, true);
133         if (ret)
134                 return log_msg_ret("dhc", ret);
135
136         size = env_get_hex("filesize", 0);
137         if (!size)
138                 return log_msg_ret("sz", -EINVAL);
139
140         bflow->buf = malloc(size + 1);
141         if (!bflow->buf)
142                 return log_msg_ret("buf", -ENOMEM);
143         memcpy(bflow->buf, map_sysmem(addr, size), size);
144         bflow->buf[size] = '\0';
145         bflow->size = size;
146         bflow->state = BOOTFLOWST_READY;
147
148         return 0;
149 }
150
151 static int script_read_bootflow(struct udevice *dev, struct bootflow *bflow)
152 {
153         const struct udevice *media = dev_get_parent(bflow->dev);
154         struct udevice *bootstd;
155         int ret;
156
157         ret = uclass_first_device_err(UCLASS_BOOTSTD, &bootstd);
158         if (ret)
159                 return log_msg_ret("std", ret);
160
161         if (IS_ENABLED(CONFIG_CMD_DHCP) &&
162             device_get_uclass_id(media) == UCLASS_ETH) {
163                 /* we only support reading from one device, so ignore 'dev' */
164                 ret = script_read_bootflow_net(bflow);
165                 if (ret)
166                         return log_msg_ret("net", ret);
167         } else {
168                 ret = script_read_bootflow_file(bootstd, bflow);
169                 if (ret)
170                         return log_msg_ret("blk", ret);
171         }
172
173         return 0;
174 }
175
176 static int script_set_bootflow(struct udevice *dev, struct bootflow *bflow,
177                                char *buf, int size)
178 {
179         buf[size] = '\0';
180         bflow->buf = buf;
181         bflow->size = size;
182         bflow->state = BOOTFLOWST_READY;
183
184         return 0;
185 }
186
187 static int script_boot(struct udevice *dev, struct bootflow *bflow)
188 {
189         struct blk_desc *desc = dev_get_uclass_plat(bflow->blk);
190         ulong addr;
191         int ret;
192
193         if (desc->uclass_id == UCLASS_USB)
194                 ret = env_set("devtype", "usb");
195         else
196                 ret = env_set("devtype", blk_get_devtype(bflow->blk));
197         if (!ret)
198                 ret = env_set_hex("devnum", desc->devnum);
199         if (!ret)
200                 ret = env_set_hex("distro_bootpart", bflow->part);
201         if (!ret)
202                 ret = env_set("prefix", bflow->subdir);
203         if (!ret && IS_ENABLED(CONFIG_ARCH_SUNXI) &&
204             !strcmp("mmc", blk_get_devtype(bflow->blk)))
205                 ret = env_set_hex("mmc_bootdev", desc->devnum);
206         if (ret)
207                 return log_msg_ret("env", ret);
208
209         log_debug("devtype: %s\n", env_get("devtype"));
210         log_debug("devnum: %s\n", env_get("devnum"));
211         log_debug("distro_bootpart: %s\n", env_get("distro_bootpart"));
212         log_debug("prefix: %s\n", env_get("prefix"));
213         log_debug("mmc_bootdev: %s\n", env_get("mmc_bootdev"));
214
215         addr = map_to_sysmem(bflow->buf);
216         ret = cmd_source_script(addr, NULL, NULL);
217         if (ret)
218                 return log_msg_ret("boot", ret);
219
220         return 0;
221 }
222
223 static int script_bootmeth_bind(struct udevice *dev)
224 {
225         struct bootmeth_uc_plat *plat = dev_get_uclass_plat(dev);
226
227         plat->desc = IS_ENABLED(CONFIG_BOOTSTD_FULL) ?
228                 "Script boot from a block device" : "script";
229
230         return 0;
231 }
232
233 static struct bootmeth_ops script_bootmeth_ops = {
234         .check          = script_check,
235         .read_bootflow  = script_read_bootflow,
236         .set_bootflow   = script_set_bootflow,
237         .read_file      = bootmeth_common_read_file,
238         .boot           = script_boot,
239 };
240
241 static const struct udevice_id script_bootmeth_ids[] = {
242         { .compatible = "u-boot,script" },
243         { }
244 };
245
246 /* Put an number before 'script' to provide a default ordering */
247 U_BOOT_DRIVER(bootmeth_2script) = {
248         .name           = "bootmeth_script",
249         .id             = UCLASS_BOOTMETH,
250         .of_match       = script_bootmeth_ids,
251         .ops            = &script_bootmeth_ops,
252         .bind           = script_bootmeth_bind,
253 };