blob: 68ac40b64ad92d748e3dd5ce3791fbcd4e24ff14 [file] [log] [blame]
Patrice Chotard2373cba2019-11-25 09:07:37 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2
3#ifndef __PXE_UTILS_H
4#define __PXE_UTILS_H
5
Simon Glass401d1c42020-10-30 21:38:53 -06006#include <linux/list.h>
7
Patrice Chotard2373cba2019-11-25 09:07:37 +01008/*
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.
Patrick Delaunaya5dacef2022-10-28 11:01:19 +020031 * kernel_label - the kernel label, including FIT config if present.
Patrice Chotard2373cba2019-11-25 09:07:37 +010032 * kernel - the path to the kernel file to use for this label.
33 * append - kernel command line to use when booting this label
34 * initrd - path to the initrd to use for this label.
35 * attempted - 0 if we haven't tried to boot this label, 1 if we have.
36 * localboot - 1 if this label specified 'localboot', 0 otherwise.
Zhang Ning02901462022-02-01 08:33:37 +080037 * kaslrseed - 1 if generate kaslrseed from hw_rng
Patrice Chotard2373cba2019-11-25 09:07:37 +010038 * list - lets these form a list, which a pxe_menu struct will hold.
39 */
40struct pxe_label {
41 char num[4];
42 char *name;
43 char *menu;
Patrick Delaunaya5dacef2022-10-28 11:01:19 +020044 char *kernel_label;
Patrice Chotard2373cba2019-11-25 09:07:37 +010045 char *kernel;
46 char *config;
47 char *append;
48 char *initrd;
49 char *fdt;
50 char *fdtdir;
Neil Armstrong69076df2021-01-20 09:54:53 +010051 char *fdtoverlays;
Patrice Chotard2373cba2019-11-25 09:07:37 +010052 int ipappend;
53 int attempted;
54 int localboot;
55 int localboot_val;
Zhang Ning02901462022-02-01 08:33:37 +080056 int kaslrseed;
Patrice Chotard2373cba2019-11-25 09:07:37 +010057 struct list_head list;
58};
59
60/*
61 * Describes a pxe menu as given via pxe files.
62 *
63 * title - the name of the menu as given by a 'menu title' line.
64 * default_label - the name of the default label, if any.
Martyn Welchd2faad32024-10-09 14:15:38 +010065 * fallback_label - the name of the fallback label, if any.
Patrice Chotard2373cba2019-11-25 09:07:37 +010066 * bmp - the bmp file name which is displayed in background
67 * timeout - time in tenths of a second to wait for a user key-press before
68 * booting the default label.
69 * prompt - if 0, don't prompt for a choice unless the timeout period is
70 * interrupted. If 1, always prompt for a choice regardless of
71 * timeout.
72 * labels - a list of labels defined for the menu.
73 */
74struct pxe_menu {
75 char *title;
76 char *default_label;
Martyn Welchd2faad32024-10-09 14:15:38 +010077 char *fallback_label;
Patrice Chotard2373cba2019-11-25 09:07:37 +010078 char *bmp;
79 int timeout;
80 int prompt;
81 struct list_head labels;
82};
83
Simon Glassb1ead6b2021-10-14 12:47:57 -060084struct pxe_context;
85typedef int (*pxe_getfile_func)(struct pxe_context *ctx, const char *file_path,
Simon Glass4d79e882021-10-14 12:48:08 -060086 char *file_addr, ulong *filesizep);
Simon Glassfd3fa5c2021-10-14 12:47:56 -060087
88/**
89 * struct pxe_context - context information for PXE parsing
90 *
91 * @cmdtp: Pointer to command table to use when calling other commands
Simon Glassb1ead6b2021-10-14 12:47:57 -060092 * @getfile: Function called by PXE to read a file
Simon Glass4ad5d512021-10-14 12:47:58 -060093 * @userdata: Data the caller requires for @getfile
Simon Glass8018b9a2021-10-14 12:47:59 -060094 * @allow_abs_path: true to allow absolute paths
Simon Glass12df8422021-10-14 12:48:04 -060095 * @bootdir: Directory that files are loaded from ("" if no directory). This is
96 * allocated
Simon Glass4d79e882021-10-14 12:48:08 -060097 * @pxe_file_size: Size of the PXE file
Sean Edmond7d018892023-04-11 10:48:47 -070098 * @use_ipv6: TRUE : use IPv6 addressing, FALSE : use IPv4 addressing
Martyn Welch8ba82a92024-10-09 14:15:39 +010099 * @use_fallback: TRUE : use "fallback" option as default, FALSE : use
100 * "default" option as default
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600101 */
102struct pxe_context {
103 struct cmd_tbl *cmdtp;
Simon Glassb1ead6b2021-10-14 12:47:57 -0600104 /**
105 * getfile() - read a file
106 *
107 * @ctx: PXE context
108 * @file_path: Path to the file
109 * @file_addr: String containing the hex address to put the file in
110 * memory
Simon Glass4d79e882021-10-14 12:48:08 -0600111 * @filesizep: Returns the file size in bytes
Simon Glassb1ead6b2021-10-14 12:47:57 -0600112 * Return 0 if OK, -ve on error
113 */
114 pxe_getfile_func getfile;
Simon Glass4ad5d512021-10-14 12:47:58 -0600115
116 void *userdata;
Simon Glass8018b9a2021-10-14 12:47:59 -0600117 bool allow_abs_path;
Simon Glass12df8422021-10-14 12:48:04 -0600118 char *bootdir;
Simon Glass4d79e882021-10-14 12:48:08 -0600119 ulong pxe_file_size;
Sean Edmond7d018892023-04-11 10:48:47 -0700120 bool use_ipv6;
Martyn Welch8ba82a92024-10-09 14:15:39 +0100121 bool use_fallback;
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600122};
123
124/**
125 * destroy_pxe_menu() - Destroy an allocated pxe structure
126 *
127 * Free the memory used by a pxe_menu and its labels
128 *
129 * @cfg: Config to destroy, previous returned from parse_pxefile()
130 */
Patrice Chotard2373cba2019-11-25 09:07:37 +0100131void destroy_pxe_menu(struct pxe_menu *cfg);
Simon Glass3d246362021-10-14 12:47:55 -0600132
133/**
134 * get_pxe_file() - Read a file
135 *
136 * Retrieve the file at 'file_path' to the locate given by 'file_addr'. If
137 * 'bootfile' was specified in the environment, the path to bootfile will be
138 * prepended to 'file_path' and the resulting path will be used.
139 *
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600140 * @ctx: PXE context
Simon Glass3d246362021-10-14 12:47:55 -0600141 * @file_path: Path to file
142 * @file_addr: Address to place file
143 * Returns 1 on success, or < 0 for error
144 */
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600145int get_pxe_file(struct pxe_context *ctx, const char *file_path,
Simon Glass3d246362021-10-14 12:47:55 -0600146 ulong file_addr);
147
148/**
149 * get_pxelinux_path() - Read a file from the same place as pxelinux.cfg
150 *
151 * Retrieves a file in the 'pxelinux.cfg' folder. Since this uses get_pxe_file()
152 * to do the hard work, the location of the 'pxelinux.cfg' folder is generated
153 * from the bootfile path, as described in get_pxe_file().
154 *
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600155 * @ctx: PXE context
Simon Glass3d246362021-10-14 12:47:55 -0600156 * @file: Relative path to file
157 * @pxefile_addr_r: Address to load file
158 * Returns 1 on success or < 0 on error.
159 */
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600160int get_pxelinux_path(struct pxe_context *ctx, const char *file,
Simon Glass3d246362021-10-14 12:47:55 -0600161 ulong pxefile_addr_r);
162
163/**
164 * handle_pxe_menu() - Boot the system as prescribed by a pxe_menu.
165 *
166 * Use the menu system to either get the user's choice or the default, based
167 * on config or user input. If there is no default or user's choice,
168 * attempted to boot labels in the order they were given in pxe files.
169 * If the default or user's choice fails to boot, attempt to boot other
170 * labels in the order they were given in pxe files.
171 *
172 * If this function returns, there weren't any labels that successfully
173 * booted, or the user interrupted the menu selection via ctrl+c.
174 *
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600175 * @ctx: PXE context
Simon Glass3d246362021-10-14 12:47:55 -0600176 * @cfg: PXE menu
177 */
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600178void handle_pxe_menu(struct pxe_context *ctx, struct pxe_menu *cfg);
Simon Glass3d246362021-10-14 12:47:55 -0600179
180/**
181 * parse_pxefile() - Parsing a pxe file
182 *
183 * This is only used for the top-level file.
184 *
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600185 * @ctx: PXE context (provided by the caller)
Simon Glass3d246362021-10-14 12:47:55 -0600186 * Returns NULL if there is an error, otherwise, returns a pointer to a
187 * pxe_menu struct populated with the results of parsing the pxe file (and any
188 * files it includes). The resulting pxe_menu struct can be free()'d by using
189 * the destroy_pxe_menu() function.
190 */
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600191struct pxe_menu *parse_pxefile(struct pxe_context *ctx, ulong menucfg);
Simon Glass3d246362021-10-14 12:47:55 -0600192
193/**
194 * format_mac_pxe() - Convert a MAC address to PXE format
195 *
196 * Convert an ethaddr from the environment to the format used by pxelinux
197 * filenames based on mac addresses. Convert's ':' to '-', and adds "01-" to
198 * the beginning of the ethernet address to indicate a hardware type of
199 * Ethernet. Also converts uppercase hex characters into lowercase, to match
200 * pxelinux's behavior.
201 *
202 * @outbuf: Buffer to hold the output (must hold 22 bytes)
203 * @outbuf_len: Length of buffer
204 * Returns 1 for success, -ENOENT if 'ethaddr' is undefined in the
205 * environment, or some other value < 0 on error.
206 */
Patrice Chotard2373cba2019-11-25 09:07:37 +0100207int format_mac_pxe(char *outbuf, size_t outbuf_len);
208
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600209/**
210 * pxe_setup_ctx() - Setup a new PXE context
211 *
212 * @ctx: Context to set up
213 * @cmdtp: Command table entry which started this action
Simon Glassb1ead6b2021-10-14 12:47:57 -0600214 * @getfile: Function to call to read a file
Simon Glass4ad5d512021-10-14 12:47:58 -0600215 * @userdata: Data the caller requires for @getfile - stored in ctx->userdata
Simon Glass8018b9a2021-10-14 12:47:59 -0600216 * @allow_abs_path: true to allow absolute paths
Simon Glass12df8422021-10-14 12:48:04 -0600217 * @bootfile: Bootfile whose directory loaded files are relative to, NULL if
218 * none
Sean Edmond7d018892023-04-11 10:48:47 -0700219 * @use_ipv6: TRUE : use IPv6 addressing
220 * FALSE : use IPv4 addressing
Martyn Welch8ba82a92024-10-09 14:15:39 +0100221 * @use_fallback: TRUE : Use "fallback" option instead of "default" should no
222 * other choice be selected
223 * FALSE : Use "default" option should no other choice be
224 * selected
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100225 * Return: 0 if OK, -ENOMEM if out of memory, -E2BIG if bootfile is larger than
Simon Glass74b7a2b2021-10-14 12:48:05 -0600226 * MAX_TFTP_PATH_LEN bytes
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600227 */
Simon Glass12df8422021-10-14 12:48:04 -0600228int pxe_setup_ctx(struct pxe_context *ctx, struct cmd_tbl *cmdtp,
229 pxe_getfile_func getfile, void *userdata,
Martyn Welch8ba82a92024-10-09 14:15:39 +0100230 bool allow_abs_path, const char *bootfile, bool use_ipv6,
231 bool use_fallback);
Simon Glass12df8422021-10-14 12:48:04 -0600232
233/**
234 * pxe_destroy_ctx() - Destroy a PXE context
235 *
236 * @ctx: Context to destroy
237 */
238void pxe_destroy_ctx(struct pxe_context *ctx);
Simon Glassfd3fa5c2021-10-14 12:47:56 -0600239
Simon Glass9e62e7c2021-10-14 12:48:03 -0600240/**
241 * pxe_process() - Process a PXE file through to boot
242 *
243 * @ctx: PXE context created with pxe_setup_ctx()
244 * @pxefile_addr_r: Address to load file
245 * @prompt: Force a prompt for the user
246 */
247int pxe_process(struct pxe_context *ctx, ulong pxefile_addr_r, bool prompt);
248
Simon Glass4d79e882021-10-14 12:48:08 -0600249/**
250 * pxe_get_file_size() - Read the value of the 'filesize' environment variable
251 *
252 * @sizep: Place to put the value
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100253 * Return: 0 if OK, -ENOENT if no such variable, -EINVAL if format is invalid
Simon Glass4d79e882021-10-14 12:48:08 -0600254 */
255int pxe_get_file_size(ulong *sizep);
256
Simon Glassd50244e2021-10-14 12:48:11 -0600257/**
258 * pxe_get() - Get the PXE file from the server
259 *
260 * This tries various filenames to obtain a PXE file
261 *
262 * @pxefile_addr_r: Address to put file
263 * @bootdirp: Returns the boot filename, or NULL if none. This is the 'bootfile'
264 * option provided by the DHCP server. If none, returns NULL. For example,
265 * "rpi/info", which indicates that all files should be fetched from the
266 * "rpi/" subdirectory
267 * @sizep: Size of the PXE file (not bootfile)
Sean Edmond7d018892023-04-11 10:48:47 -0700268 * @use_ipv6: TRUE : use IPv6 addressing
269 * FALSE : use IPv4 addressing
Simon Glassd50244e2021-10-14 12:48:11 -0600270 */
Sean Edmond7d018892023-04-11 10:48:47 -0700271int pxe_get(ulong pxefile_addr_r, char **bootdirp, ulong *sizep, bool use_ipv6);
Simon Glassd50244e2021-10-14 12:48:11 -0600272
Patrice Chotard2373cba2019-11-25 09:07:37 +0100273#endif /* __PXE_UTILS_H */