Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | |
| 3 | #ifndef __PXE_UTILS_H |
| 4 | #define __PXE_UTILS_H |
| 5 | |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 6 | #include <linux/list.h> |
| 7 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 8 | /* |
| 9 | * A note on the pxe file parser. |
| 10 | * |
| 11 | * We're parsing files that use syslinux grammar, which has a few quirks. |
| 12 | * String literals must be recognized based on context - there is no |
| 13 | * quoting or escaping support. There's also nothing to explicitly indicate |
| 14 | * when a label section completes. We deal with that by ending a label |
| 15 | * section whenever we see a line that doesn't include. |
| 16 | * |
| 17 | * As with the syslinux family, this same file format could be reused in the |
| 18 | * future for non pxe purposes. The only action it takes during parsing that |
| 19 | * would throw this off is handling of include files. It assumes we're using |
| 20 | * pxe, and does a tftp download of a file listed as an include file in the |
| 21 | * middle of the parsing operation. That could be handled by refactoring it to |
| 22 | * take a 'include file getter' function. |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * Describes a single label given in a pxe file. |
| 27 | * |
| 28 | * Create these with the 'label_create' function given below. |
| 29 | * |
| 30 | * name - the name of the menu as given on the 'menu label' line. |
| 31 | * kernel - the path to the kernel file to use for this label. |
| 32 | * append - kernel command line to use when booting this label |
| 33 | * initrd - path to the initrd to use for this label. |
| 34 | * attempted - 0 if we haven't tried to boot this label, 1 if we have. |
| 35 | * localboot - 1 if this label specified 'localboot', 0 otherwise. |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 36 | * kaslrseed - 1 if generate kaslrseed from hw_rng |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 37 | * list - lets these form a list, which a pxe_menu struct will hold. |
| 38 | */ |
| 39 | struct pxe_label { |
| 40 | char num[4]; |
| 41 | char *name; |
| 42 | char *menu; |
| 43 | char *kernel; |
| 44 | char *config; |
| 45 | char *append; |
| 46 | char *initrd; |
| 47 | char *fdt; |
| 48 | char *fdtdir; |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 49 | char *fdtoverlays; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 50 | int ipappend; |
| 51 | int attempted; |
| 52 | int localboot; |
| 53 | int localboot_val; |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 54 | int kaslrseed; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 55 | struct list_head list; |
| 56 | }; |
| 57 | |
| 58 | /* |
| 59 | * Describes a pxe menu as given via pxe files. |
| 60 | * |
| 61 | * title - the name of the menu as given by a 'menu title' line. |
| 62 | * default_label - the name of the default label, if any. |
| 63 | * bmp - the bmp file name which is displayed in background |
| 64 | * timeout - time in tenths of a second to wait for a user key-press before |
| 65 | * booting the default label. |
| 66 | * prompt - if 0, don't prompt for a choice unless the timeout period is |
| 67 | * interrupted. If 1, always prompt for a choice regardless of |
| 68 | * timeout. |
| 69 | * labels - a list of labels defined for the menu. |
| 70 | */ |
| 71 | struct pxe_menu { |
| 72 | char *title; |
| 73 | char *default_label; |
| 74 | char *bmp; |
| 75 | int timeout; |
| 76 | int prompt; |
| 77 | struct list_head labels; |
| 78 | }; |
| 79 | |
Simon Glass | b1ead6b | 2021-10-14 12:47:57 -0600 | [diff] [blame] | 80 | struct pxe_context; |
| 81 | typedef int (*pxe_getfile_func)(struct pxe_context *ctx, const char *file_path, |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 82 | char *file_addr, ulong *filesizep); |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 83 | |
| 84 | /** |
| 85 | * struct pxe_context - context information for PXE parsing |
| 86 | * |
| 87 | * @cmdtp: Pointer to command table to use when calling other commands |
Simon Glass | b1ead6b | 2021-10-14 12:47:57 -0600 | [diff] [blame] | 88 | * @getfile: Function called by PXE to read a file |
Simon Glass | 4ad5d51 | 2021-10-14 12:47:58 -0600 | [diff] [blame] | 89 | * @userdata: Data the caller requires for @getfile |
Simon Glass | 8018b9a | 2021-10-14 12:47:59 -0600 | [diff] [blame] | 90 | * @allow_abs_path: true to allow absolute paths |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 91 | * @bootdir: Directory that files are loaded from ("" if no directory). This is |
| 92 | * allocated |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 93 | * @pxe_file_size: Size of the PXE file |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 94 | */ |
| 95 | struct pxe_context { |
| 96 | struct cmd_tbl *cmdtp; |
Simon Glass | b1ead6b | 2021-10-14 12:47:57 -0600 | [diff] [blame] | 97 | /** |
| 98 | * getfile() - read a file |
| 99 | * |
| 100 | * @ctx: PXE context |
| 101 | * @file_path: Path to the file |
| 102 | * @file_addr: String containing the hex address to put the file in |
| 103 | * memory |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 104 | * @filesizep: Returns the file size in bytes |
Simon Glass | b1ead6b | 2021-10-14 12:47:57 -0600 | [diff] [blame] | 105 | * Return 0 if OK, -ve on error |
| 106 | */ |
| 107 | pxe_getfile_func getfile; |
Simon Glass | 4ad5d51 | 2021-10-14 12:47:58 -0600 | [diff] [blame] | 108 | |
| 109 | void *userdata; |
Simon Glass | 8018b9a | 2021-10-14 12:47:59 -0600 | [diff] [blame] | 110 | bool allow_abs_path; |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 111 | char *bootdir; |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 112 | ulong pxe_file_size; |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | /** |
| 116 | * destroy_pxe_menu() - Destroy an allocated pxe structure |
| 117 | * |
| 118 | * Free the memory used by a pxe_menu and its labels |
| 119 | * |
| 120 | * @cfg: Config to destroy, previous returned from parse_pxefile() |
| 121 | */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 122 | void destroy_pxe_menu(struct pxe_menu *cfg); |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 123 | |
| 124 | /** |
| 125 | * get_pxe_file() - Read a file |
| 126 | * |
| 127 | * Retrieve the file at 'file_path' to the locate given by 'file_addr'. If |
| 128 | * 'bootfile' was specified in the environment, the path to bootfile will be |
| 129 | * prepended to 'file_path' and the resulting path will be used. |
| 130 | * |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 131 | * @ctx: PXE context |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 132 | * @file_path: Path to file |
| 133 | * @file_addr: Address to place file |
| 134 | * Returns 1 on success, or < 0 for error |
| 135 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 136 | int get_pxe_file(struct pxe_context *ctx, const char *file_path, |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 137 | ulong file_addr); |
| 138 | |
| 139 | /** |
| 140 | * get_pxelinux_path() - Read a file from the same place as pxelinux.cfg |
| 141 | * |
| 142 | * Retrieves a file in the 'pxelinux.cfg' folder. Since this uses get_pxe_file() |
| 143 | * to do the hard work, the location of the 'pxelinux.cfg' folder is generated |
| 144 | * from the bootfile path, as described in get_pxe_file(). |
| 145 | * |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 146 | * @ctx: PXE context |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 147 | * @file: Relative path to file |
| 148 | * @pxefile_addr_r: Address to load file |
| 149 | * Returns 1 on success or < 0 on error. |
| 150 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 151 | int get_pxelinux_path(struct pxe_context *ctx, const char *file, |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 152 | ulong pxefile_addr_r); |
| 153 | |
| 154 | /** |
| 155 | * handle_pxe_menu() - Boot the system as prescribed by a pxe_menu. |
| 156 | * |
| 157 | * Use the menu system to either get the user's choice or the default, based |
| 158 | * on config or user input. If there is no default or user's choice, |
| 159 | * attempted to boot labels in the order they were given in pxe files. |
| 160 | * If the default or user's choice fails to boot, attempt to boot other |
| 161 | * labels in the order they were given in pxe files. |
| 162 | * |
| 163 | * If this function returns, there weren't any labels that successfully |
| 164 | * booted, or the user interrupted the menu selection via ctrl+c. |
| 165 | * |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 166 | * @ctx: PXE context |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 167 | * @cfg: PXE menu |
| 168 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 169 | void handle_pxe_menu(struct pxe_context *ctx, struct pxe_menu *cfg); |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 170 | |
| 171 | /** |
| 172 | * parse_pxefile() - Parsing a pxe file |
| 173 | * |
| 174 | * This is only used for the top-level file. |
| 175 | * |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 176 | * @ctx: PXE context (provided by the caller) |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 177 | * Returns NULL if there is an error, otherwise, returns a pointer to a |
| 178 | * pxe_menu struct populated with the results of parsing the pxe file (and any |
| 179 | * files it includes). The resulting pxe_menu struct can be free()'d by using |
| 180 | * the destroy_pxe_menu() function. |
| 181 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 182 | struct pxe_menu *parse_pxefile(struct pxe_context *ctx, ulong menucfg); |
Simon Glass | 3d24636 | 2021-10-14 12:47:55 -0600 | [diff] [blame] | 183 | |
| 184 | /** |
| 185 | * format_mac_pxe() - Convert a MAC address to PXE format |
| 186 | * |
| 187 | * Convert an ethaddr from the environment to the format used by pxelinux |
| 188 | * filenames based on mac addresses. Convert's ':' to '-', and adds "01-" to |
| 189 | * the beginning of the ethernet address to indicate a hardware type of |
| 190 | * Ethernet. Also converts uppercase hex characters into lowercase, to match |
| 191 | * pxelinux's behavior. |
| 192 | * |
| 193 | * @outbuf: Buffer to hold the output (must hold 22 bytes) |
| 194 | * @outbuf_len: Length of buffer |
| 195 | * Returns 1 for success, -ENOENT if 'ethaddr' is undefined in the |
| 196 | * environment, or some other value < 0 on error. |
| 197 | */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 198 | int format_mac_pxe(char *outbuf, size_t outbuf_len); |
| 199 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 200 | /** |
| 201 | * pxe_setup_ctx() - Setup a new PXE context |
| 202 | * |
| 203 | * @ctx: Context to set up |
| 204 | * @cmdtp: Command table entry which started this action |
Simon Glass | b1ead6b | 2021-10-14 12:47:57 -0600 | [diff] [blame] | 205 | * @getfile: Function to call to read a file |
Simon Glass | 4ad5d51 | 2021-10-14 12:47:58 -0600 | [diff] [blame] | 206 | * @userdata: Data the caller requires for @getfile - stored in ctx->userdata |
Simon Glass | 8018b9a | 2021-10-14 12:47:59 -0600 | [diff] [blame] | 207 | * @allow_abs_path: true to allow absolute paths |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 208 | * @bootfile: Bootfile whose directory loaded files are relative to, NULL if |
| 209 | * none |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 210 | * Return: 0 if OK, -ENOMEM if out of memory, -E2BIG if bootfile is larger than |
Simon Glass | 74b7a2b | 2021-10-14 12:48:05 -0600 | [diff] [blame] | 211 | * MAX_TFTP_PATH_LEN bytes |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 212 | */ |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 213 | int pxe_setup_ctx(struct pxe_context *ctx, struct cmd_tbl *cmdtp, |
| 214 | pxe_getfile_func getfile, void *userdata, |
| 215 | bool allow_abs_path, const char *bootfile); |
| 216 | |
| 217 | /** |
| 218 | * pxe_destroy_ctx() - Destroy a PXE context |
| 219 | * |
| 220 | * @ctx: Context to destroy |
| 221 | */ |
| 222 | void pxe_destroy_ctx(struct pxe_context *ctx); |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 223 | |
Simon Glass | 9e62e7c | 2021-10-14 12:48:03 -0600 | [diff] [blame] | 224 | /** |
| 225 | * pxe_process() - Process a PXE file through to boot |
| 226 | * |
| 227 | * @ctx: PXE context created with pxe_setup_ctx() |
| 228 | * @pxefile_addr_r: Address to load file |
| 229 | * @prompt: Force a prompt for the user |
| 230 | */ |
| 231 | int pxe_process(struct pxe_context *ctx, ulong pxefile_addr_r, bool prompt); |
| 232 | |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 233 | /** |
| 234 | * pxe_get_file_size() - Read the value of the 'filesize' environment variable |
| 235 | * |
| 236 | * @sizep: Place to put the value |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 237 | * Return: 0 if OK, -ENOENT if no such variable, -EINVAL if format is invalid |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 238 | */ |
| 239 | int pxe_get_file_size(ulong *sizep); |
| 240 | |
Simon Glass | d50244e | 2021-10-14 12:48:11 -0600 | [diff] [blame] | 241 | /** |
| 242 | * pxe_get() - Get the PXE file from the server |
| 243 | * |
| 244 | * This tries various filenames to obtain a PXE file |
| 245 | * |
| 246 | * @pxefile_addr_r: Address to put file |
| 247 | * @bootdirp: Returns the boot filename, or NULL if none. This is the 'bootfile' |
| 248 | * option provided by the DHCP server. If none, returns NULL. For example, |
| 249 | * "rpi/info", which indicates that all files should be fetched from the |
| 250 | * "rpi/" subdirectory |
| 251 | * @sizep: Size of the PXE file (not bootfile) |
| 252 | */ |
| 253 | int pxe_get(ulong pxefile_addr_r, char **bootdirp, ulong *sizep); |
| 254 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 255 | #endif /* __PXE_UTILS_H */ |