1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright 2010-2011 Calxeda, Inc.
4 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
5 */
6
7 #include <common.h>
8 #include <command.h>
9 #include <fs.h>
10 #include <net.h>
11
12 #include "pxe_utils.h"
13
14 #ifdef CONFIG_CMD_NET
15 const char *pxe_default_paths[] = {
16 #ifdef CONFIG_SYS_SOC
17 #ifdef CONFIG_SYS_BOARD
18 "default-" CONFIG_SYS_ARCH "-" CONFIG_SYS_SOC "-" CONFIG_SYS_BOARD,
19 #endif
20 "default-" CONFIG_SYS_ARCH "-" CONFIG_SYS_SOC,
21 #endif
22 "default-" CONFIG_SYS_ARCH,
23 "default",
24 NULL
25 };
26
do_get_tftp(struct cmd_tbl * cmdtp,const char * file_path,char * file_addr)27 static int do_get_tftp(struct cmd_tbl *cmdtp, const char *file_path,
28 char *file_addr)
29 {
30 char *tftp_argv[] = {"tftp", NULL, NULL, NULL};
31
32 tftp_argv[1] = file_addr;
33 tftp_argv[2] = (void *)file_path;
34
35 if (do_tftpb(cmdtp, 0, 3, tftp_argv))
36 return -ENOENT;
37
38 return 1;
39 }
40
41 /*
42 * Looks for a pxe file with a name based on the pxeuuid environment variable.
43 *
44 * Returns 1 on success or < 0 on error.
45 */
pxe_uuid_path(struct cmd_tbl * cmdtp,unsigned long pxefile_addr_r)46 static int pxe_uuid_path(struct cmd_tbl *cmdtp, unsigned long pxefile_addr_r)
47 {
48 char *uuid_str;
49
50 uuid_str = from_env("pxeuuid");
51
52 if (!uuid_str)
53 return -ENOENT;
54
55 return get_pxelinux_path(cmdtp, uuid_str, pxefile_addr_r);
56 }
57
58 /*
59 * Looks for a pxe file with a name based on the 'ethaddr' environment
60 * variable.
61 *
62 * Returns 1 on success or < 0 on error.
63 */
pxe_mac_path(struct cmd_tbl * cmdtp,unsigned long pxefile_addr_r)64 static int pxe_mac_path(struct cmd_tbl *cmdtp, unsigned long pxefile_addr_r)
65 {
66 char mac_str[21];
67 int err;
68
69 err = format_mac_pxe(mac_str, sizeof(mac_str));
70
71 if (err < 0)
72 return err;
73
74 return get_pxelinux_path(cmdtp, mac_str, pxefile_addr_r);
75 }
76
77 /*
78 * Looks for pxe files with names based on our IP address. See pxelinux
79 * documentation for details on what these file names look like. We match
80 * that exactly.
81 *
82 * Returns 1 on success or < 0 on error.
83 */
pxe_ipaddr_paths(struct cmd_tbl * cmdtp,unsigned long pxefile_addr_r)84 static int pxe_ipaddr_paths(struct cmd_tbl *cmdtp, unsigned long pxefile_addr_r)
85 {
86 char ip_addr[9];
87 int mask_pos, err;
88
89 sprintf(ip_addr, "%08X", ntohl(net_ip.s_addr));
90
91 for (mask_pos = 7; mask_pos >= 0; mask_pos--) {
92 err = get_pxelinux_path(cmdtp, ip_addr, pxefile_addr_r);
93
94 if (err > 0)
95 return err;
96
97 ip_addr[mask_pos] = '\0';
98 }
99
100 return -ENOENT;
101 }
102 /*
103 * Entry point for the 'pxe get' command.
104 * This Follows pxelinux's rules to download a config file from a tftp server.
105 * The file is stored at the location given by the pxefile_addr_r environment
106 * variable, which must be set.
107 *
108 * UUID comes from pxeuuid env variable, if defined
109 * MAC addr comes from ethaddr env variable, if defined
110 * IP
111 *
112 * see http://syslinux.zytor.com/wiki/index.php/PXELINUX
113 *
114 * Returns 0 on success or 1 on error.
115 */
116 static int
do_pxe_get(struct cmd_tbl * cmdtp,int flag,int argc,char * const argv[])117 do_pxe_get(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
118 {
119 char *pxefile_addr_str;
120 unsigned long pxefile_addr_r;
121 int err, i = 0;
122
123 do_getfile = do_get_tftp;
124
125 if (argc != 1)
126 return CMD_RET_USAGE;
127
128 pxefile_addr_str = from_env("pxefile_addr_r");
129
130 if (!pxefile_addr_str)
131 return 1;
132
133 err = strict_strtoul(pxefile_addr_str, 16,
134 (unsigned long *)&pxefile_addr_r);
135 if (err < 0)
136 return 1;
137
138 /*
139 * Keep trying paths until we successfully get a file we're looking
140 * for.
141 */
142 if (pxe_uuid_path(cmdtp, pxefile_addr_r) > 0 ||
143 pxe_mac_path(cmdtp, pxefile_addr_r) > 0 ||
144 pxe_ipaddr_paths(cmdtp, pxefile_addr_r) > 0) {
145 printf("Config file found\n");
146
147 return 0;
148 }
149
150 while (pxe_default_paths[i]) {
151 if (get_pxelinux_path(cmdtp, pxe_default_paths[i],
152 pxefile_addr_r) > 0) {
153 printf("Config file found\n");
154 return 0;
155 }
156 i++;
157 }
158
159 printf("Config file not found\n");
160
161 return 1;
162 }
163
164 /*
165 * Boots a system using a pxe file
166 *
167 * Returns 0 on success, 1 on error.
168 */
169 static int
do_pxe_boot(struct cmd_tbl * cmdtp,int flag,int argc,char * const argv[])170 do_pxe_boot(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
171 {
172 unsigned long pxefile_addr_r;
173 struct pxe_menu *cfg;
174 char *pxefile_addr_str;
175
176 do_getfile = do_get_tftp;
177
178 if (argc == 1) {
179 pxefile_addr_str = from_env("pxefile_addr_r");
180 if (!pxefile_addr_str)
181 return 1;
182
183 } else if (argc == 2) {
184 pxefile_addr_str = argv[1];
185 } else {
186 return CMD_RET_USAGE;
187 }
188
189 if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) {
190 printf("Invalid pxefile address: %s\n", pxefile_addr_str);
191 return 1;
192 }
193
194 cfg = parse_pxefile(cmdtp, pxefile_addr_r);
195
196 if (!cfg) {
197 printf("Error parsing config file\n");
198 return 1;
199 }
200
201 handle_pxe_menu(cmdtp, cfg);
202
203 destroy_pxe_menu(cfg);
204
205 copy_filename(net_boot_file_name, "", sizeof(net_boot_file_name));
206
207 return 0;
208 }
209
210 static struct cmd_tbl cmd_pxe_sub[] = {
211 U_BOOT_CMD_MKENT(get, 1, 1, do_pxe_get, "", ""),
212 U_BOOT_CMD_MKENT(boot, 2, 1, do_pxe_boot, "", "")
213 };
214
pxe_reloc(void)215 static void __maybe_unused pxe_reloc(void)
216 {
217 static int relocated_pxe;
218
219 if (!relocated_pxe) {
220 fixup_cmdtable(cmd_pxe_sub, ARRAY_SIZE(cmd_pxe_sub));
221 relocated_pxe = 1;
222 }
223 }
224
do_pxe(struct cmd_tbl * cmdtp,int flag,int argc,char * const argv[])225 static int do_pxe(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
226 {
227 struct cmd_tbl *cp;
228
229 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
230 pxe_reloc();
231 #endif
232
233 if (argc < 2)
234 return CMD_RET_USAGE;
235
236 is_pxe = true;
237
238 /* drop initial "pxe" arg */
239 argc--;
240 argv++;
241
242 cp = find_cmd_tbl(argv[0], cmd_pxe_sub, ARRAY_SIZE(cmd_pxe_sub));
243
244 if (cp)
245 return cp->cmd(cmdtp, flag, argc, argv);
246
247 return CMD_RET_USAGE;
248 }
249
250 U_BOOT_CMD(pxe, 3, 1, do_pxe,
251 "commands to get and boot from pxe files",
252 "get - try to retrieve a pxe file using tftp\n"
253 "pxe boot [pxefile_addr_r] - boot from the pxe file at pxefile_addr_r\n"
254 );
255 #endif
256