Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | #include <common.h> |
| 4 | #include <command.h> |
| 5 | #include <env.h> |
| 6 | #include <fs.h> |
Simon Glass | 262cfb5 | 2021-10-14 12:48:00 -0600 | [diff] [blame] | 7 | #include <pxe_utils.h> |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 8 | |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 9 | /** |
| 10 | * struct sysboot_info - useful information for sysboot helpers |
| 11 | * |
| 12 | * @fstype: Filesystem type (FS_TYPE_...) |
| 13 | * @ifname: Interface name (e.g. "ide", "scsi") |
| 14 | * @dev_part_str is in the format: |
| 15 | * <dev>.<hw_part>:<part> where <dev> is the device number, |
| 16 | * <hw_part> is the optional hardware partition number and |
| 17 | * <part> is the partition number |
| 18 | */ |
| 19 | struct sysboot_info { |
| 20 | int fstype; |
| 21 | const char *ifname; |
| 22 | const char *dev_part_str; |
| 23 | }; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 24 | |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 25 | static int sysboot_read_file(struct pxe_context *ctx, const char *file_path, |
| 26 | char *file_addr, ulong *sizep) |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 27 | { |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 28 | struct sysboot_info *info = ctx->userdata; |
| 29 | loff_t len_read; |
| 30 | ulong addr; |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 31 | int ret; |
| 32 | |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 33 | addr = simple_strtoul(file_addr, NULL, 16); |
| 34 | ret = fs_set_blk_dev(info->ifname, info->dev_part_str, info->fstype); |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 35 | if (ret) |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 36 | return ret; |
| 37 | ret = fs_read(file_path, addr, 0, 0, &len_read); |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 38 | if (ret) |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 39 | return ret; |
| 40 | *sizep = len_read; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 41 | |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 42 | return 0; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | /* |
| 46 | * Boots a system using a local disk syslinux/extlinux file |
| 47 | * |
| 48 | * Returns 0 on success, 1 on error. |
| 49 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 50 | static int do_sysboot(struct cmd_tbl *cmdtp, int flag, int argc, |
| 51 | char *const argv[]) |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 52 | { |
| 53 | unsigned long pxefile_addr_r; |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 54 | struct pxe_context ctx; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 55 | char *pxefile_addr_str; |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 56 | struct sysboot_info info; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 57 | char *filename; |
| 58 | int prompt = 0; |
Simon Glass | 9e62e7c | 2021-10-14 12:48:03 -0600 | [diff] [blame] | 59 | int ret; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 60 | |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 61 | if (argc > 1 && strstr(argv[1], "-p")) { |
| 62 | prompt = 1; |
| 63 | argc--; |
| 64 | argv++; |
| 65 | } |
| 66 | |
| 67 | if (argc < 4) |
| 68 | return cmd_usage(cmdtp); |
| 69 | |
| 70 | if (argc < 5) { |
| 71 | pxefile_addr_str = from_env("pxefile_addr_r"); |
| 72 | if (!pxefile_addr_str) |
| 73 | return 1; |
| 74 | } else { |
| 75 | pxefile_addr_str = argv[4]; |
| 76 | } |
| 77 | |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 78 | if (argc < 6) { |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 79 | filename = env_get("bootfile"); |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 80 | } else { |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 81 | filename = argv[5]; |
| 82 | env_set("bootfile", filename); |
| 83 | } |
| 84 | |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 85 | if (strstr(argv[3], "ext2")) { |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 86 | info.fstype = FS_TYPE_EXT; |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 87 | } else if (strstr(argv[3], "fat")) { |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 88 | info.fstype = FS_TYPE_FAT; |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 89 | } else if (strstr(argv[3], "any")) { |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 90 | info.fstype = FS_TYPE_ANY; |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 91 | } else { |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 92 | printf("Invalid filesystem: %s\n", argv[3]); |
| 93 | return 1; |
| 94 | } |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 95 | info.ifname = argv[1]; |
| 96 | info.dev_part_str = argv[2]; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 97 | |
| 98 | if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) { |
| 99 | printf("Invalid pxefile address: %s\n", pxefile_addr_str); |
| 100 | return 1; |
| 101 | } |
| 102 | |
Simon Glass | 81a2f8d | 2021-10-14 12:48:09 -0600 | [diff] [blame] | 103 | if (pxe_setup_ctx(&ctx, cmdtp, sysboot_read_file, &info, true, |
| 104 | filename)) { |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 105 | printf("Out of memory\n"); |
| 106 | return CMD_RET_FAILURE; |
| 107 | } |
| 108 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 109 | if (get_pxe_file(&ctx, filename, pxefile_addr_r) < 0) { |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 110 | printf("Error reading config file\n"); |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 111 | pxe_destroy_ctx(&ctx); |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 112 | return 1; |
| 113 | } |
| 114 | |
Simon Glass | 9e62e7c | 2021-10-14 12:48:03 -0600 | [diff] [blame] | 115 | ret = pxe_process(&ctx, pxefile_addr_r, prompt); |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 116 | pxe_destroy_ctx(&ctx); |
Simon Glass | 9e62e7c | 2021-10-14 12:48:03 -0600 | [diff] [blame] | 117 | if (ret) |
| 118 | return CMD_RET_FAILURE; |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Patrice Chotard | 51843ea | 2019-11-25 09:07:40 +0100 | [diff] [blame] | 123 | U_BOOT_CMD(sysboot, 7, 1, do_sysboot, |
| 124 | "command to get and boot from syslinux files", |
| 125 | "[-p] <interface> <dev[:part]> <ext2|fat|any> [addr] [filename]\n" |
| 126 | " - load and parse syslinux menu file 'filename' from ext2, fat\n" |
| 127 | " or any filesystem on 'dev' on 'interface' to address 'addr'" |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 128 | ); |