Linux 5.6.12
[linux/fpc-iii.git] / tools / bootconfig / main.c
bloba9b97814d1a937b139893076fbdcb47b9bd05d50
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Boot config tool for initrd image
4 */
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <sys/types.h>
8 #include <sys/stat.h>
9 #include <fcntl.h>
10 #include <unistd.h>
11 #include <string.h>
12 #include <errno.h>
14 #include <linux/kernel.h>
15 #include <linux/bootconfig.h>
17 static int xbc_show_array(struct xbc_node *node)
19 const char *val;
20 int i = 0;
22 xbc_array_for_each_value(node, val) {
23 printf("\"%s\"%s", val, node->next ? ", " : ";\n");
24 i++;
26 return i;
29 static void xbc_show_compact_tree(void)
31 struct xbc_node *node, *cnode;
32 int depth = 0, i;
34 node = xbc_root_node();
35 while (node && xbc_node_is_key(node)) {
36 for (i = 0; i < depth; i++)
37 printf("\t");
38 cnode = xbc_node_get_child(node);
39 while (cnode && xbc_node_is_key(cnode) && !cnode->next) {
40 printf("%s.", xbc_node_get_data(node));
41 node = cnode;
42 cnode = xbc_node_get_child(node);
44 if (cnode && xbc_node_is_key(cnode)) {
45 printf("%s {\n", xbc_node_get_data(node));
46 depth++;
47 node = cnode;
48 continue;
49 } else if (cnode && xbc_node_is_value(cnode)) {
50 printf("%s = ", xbc_node_get_data(node));
51 if (cnode->next)
52 xbc_show_array(cnode);
53 else
54 printf("\"%s\";\n", xbc_node_get_data(cnode));
55 } else {
56 printf("%s;\n", xbc_node_get_data(node));
59 if (node->next) {
60 node = xbc_node_get_next(node);
61 continue;
63 while (!node->next) {
64 node = xbc_node_get_parent(node);
65 if (!node)
66 return;
67 if (!xbc_node_get_child(node)->next)
68 continue;
69 depth--;
70 for (i = 0; i < depth; i++)
71 printf("\t");
72 printf("}\n");
74 node = xbc_node_get_next(node);
78 /* Simple real checksum */
79 int checksum(unsigned char *buf, int len)
81 int i, sum = 0;
83 for (i = 0; i < len; i++)
84 sum += buf[i];
86 return sum;
89 #define PAGE_SIZE 4096
91 int load_xbc_fd(int fd, char **buf, int size)
93 int ret;
95 *buf = malloc(size + 1);
96 if (!*buf)
97 return -ENOMEM;
99 ret = read(fd, *buf, size);
100 if (ret < 0)
101 return -errno;
102 (*buf)[size] = '\0';
104 return ret;
107 /* Return the read size or -errno */
108 int load_xbc_file(const char *path, char **buf)
110 struct stat stat;
111 int fd, ret;
113 fd = open(path, O_RDONLY);
114 if (fd < 0)
115 return -errno;
116 ret = fstat(fd, &stat);
117 if (ret < 0)
118 return -errno;
120 ret = load_xbc_fd(fd, buf, stat.st_size);
122 close(fd);
124 return ret;
127 int load_xbc_from_initrd(int fd, char **buf)
129 struct stat stat;
130 int ret;
131 u32 size = 0, csum = 0, rcsum;
132 char magic[BOOTCONFIG_MAGIC_LEN];
134 ret = fstat(fd, &stat);
135 if (ret < 0)
136 return -errno;
138 if (stat.st_size < 8 + BOOTCONFIG_MAGIC_LEN)
139 return 0;
141 if (lseek(fd, -BOOTCONFIG_MAGIC_LEN, SEEK_END) < 0) {
142 pr_err("Failed to lseek: %d\n", -errno);
143 return -errno;
145 if (read(fd, magic, BOOTCONFIG_MAGIC_LEN) < 0)
146 return -errno;
147 /* Check the bootconfig magic bytes */
148 if (memcmp(magic, BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_LEN) != 0)
149 return 0;
151 if (lseek(fd, -(8 + BOOTCONFIG_MAGIC_LEN), SEEK_END) < 0) {
152 pr_err("Failed to lseek: %d\n", -errno);
153 return -errno;
156 if (read(fd, &size, sizeof(u32)) < 0)
157 return -errno;
159 if (read(fd, &csum, sizeof(u32)) < 0)
160 return -errno;
162 /* Wrong size error */
163 if (stat.st_size < size + 8 + BOOTCONFIG_MAGIC_LEN) {
164 pr_err("bootconfig size is too big\n");
165 return -E2BIG;
168 if (lseek(fd, stat.st_size - (size + 8 + BOOTCONFIG_MAGIC_LEN),
169 SEEK_SET) < 0) {
170 pr_err("Failed to lseek: %d\n", -errno);
171 return -errno;
174 ret = load_xbc_fd(fd, buf, size);
175 if (ret < 0)
176 return ret;
178 /* Wrong Checksum */
179 rcsum = checksum((unsigned char *)*buf, size);
180 if (csum != rcsum) {
181 pr_err("checksum error: %d != %d\n", csum, rcsum);
182 return -EINVAL;
185 ret = xbc_init(*buf);
186 /* Wrong data */
187 if (ret < 0)
188 return ret;
190 return size;
193 int show_xbc(const char *path)
195 int ret, fd;
196 char *buf = NULL;
198 fd = open(path, O_RDONLY);
199 if (fd < 0) {
200 pr_err("Failed to open initrd %s: %d\n", path, fd);
201 return -errno;
204 ret = load_xbc_from_initrd(fd, &buf);
205 if (ret < 0)
206 pr_err("Failed to load a boot config from initrd: %d\n", ret);
207 else
208 xbc_show_compact_tree();
210 close(fd);
211 free(buf);
213 return ret;
216 int delete_xbc(const char *path)
218 struct stat stat;
219 int ret = 0, fd, size;
220 char *buf = NULL;
222 fd = open(path, O_RDWR);
223 if (fd < 0) {
224 pr_err("Failed to open initrd %s: %d\n", path, fd);
225 return -errno;
228 size = load_xbc_from_initrd(fd, &buf);
229 if (size < 0) {
230 ret = size;
231 pr_err("Failed to load a boot config from initrd: %d\n", ret);
232 } else if (size > 0) {
233 ret = fstat(fd, &stat);
234 if (!ret)
235 ret = ftruncate(fd, stat.st_size
236 - size - 8 - BOOTCONFIG_MAGIC_LEN);
237 if (ret)
238 ret = -errno;
239 } /* Ignore if there is no boot config in initrd */
241 close(fd);
242 free(buf);
244 return ret;
247 int apply_xbc(const char *path, const char *xbc_path)
249 u32 size, csum;
250 char *buf, *data;
251 int ret, fd;
253 ret = load_xbc_file(xbc_path, &buf);
254 if (ret < 0) {
255 pr_err("Failed to load %s : %d\n", xbc_path, ret);
256 return ret;
258 size = strlen(buf) + 1;
259 csum = checksum((unsigned char *)buf, size);
261 /* Prepare xbc_path data */
262 data = malloc(size + 8);
263 if (!data)
264 return -ENOMEM;
265 strcpy(data, buf);
266 *(u32 *)(data + size) = size;
267 *(u32 *)(data + size + 4) = csum;
269 /* Check the data format */
270 ret = xbc_init(buf);
271 if (ret < 0) {
272 pr_err("Failed to parse %s: %d\n", xbc_path, ret);
273 free(data);
274 free(buf);
275 return ret;
277 printf("Apply %s to %s\n", xbc_path, path);
278 printf("\tNumber of nodes: %d\n", ret);
279 printf("\tSize: %u bytes\n", (unsigned int)size);
280 printf("\tChecksum: %d\n", (unsigned int)csum);
282 /* TODO: Check the options by schema */
283 xbc_destroy_all();
284 free(buf);
286 /* Remove old boot config if exists */
287 ret = delete_xbc(path);
288 if (ret < 0) {
289 pr_err("Failed to delete previous boot config: %d\n", ret);
290 return ret;
293 /* Apply new one */
294 fd = open(path, O_RDWR | O_APPEND);
295 if (fd < 0) {
296 pr_err("Failed to open %s: %d\n", path, fd);
297 return fd;
299 /* TODO: Ensure the @path is initramfs/initrd image */
300 ret = write(fd, data, size + 8);
301 if (ret < 0) {
302 pr_err("Failed to apply a boot config: %d\n", ret);
303 return ret;
305 /* Write a magic word of the bootconfig */
306 ret = write(fd, BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_LEN);
307 if (ret < 0) {
308 pr_err("Failed to apply a boot config magic: %d\n", ret);
309 return ret;
311 close(fd);
312 free(data);
314 return 0;
317 int usage(void)
319 printf("Usage: bootconfig [OPTIONS] <INITRD>\n"
320 " Apply, delete or show boot config to initrd.\n"
321 " Options:\n"
322 " -a <config>: Apply boot config to initrd\n"
323 " -d : Delete boot config file from initrd\n\n"
324 " If no option is given, show current applied boot config.\n");
325 return -1;
328 int main(int argc, char **argv)
330 char *path = NULL;
331 char *apply = NULL;
332 bool delete = false;
333 int opt;
335 while ((opt = getopt(argc, argv, "hda:")) != -1) {
336 switch (opt) {
337 case 'd':
338 delete = true;
339 break;
340 case 'a':
341 apply = optarg;
342 break;
343 case 'h':
344 default:
345 return usage();
349 if (apply && delete) {
350 pr_err("Error: You can not specify both -a and -d at once.\n");
351 return usage();
354 if (optind >= argc) {
355 pr_err("Error: No initrd is specified.\n");
356 return usage();
359 path = argv[optind];
361 if (apply)
362 return apply_xbc(path, apply);
363 else if (delete)
364 return delete_xbc(path);
366 return show_xbc(path);