Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
3863585b WD |
2 | /* |
3 | * (C) Copyright 2000 | |
4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. | |
3863585b WD |
5 | */ |
6 | ||
7 | /* | |
8 | * Boot support | |
9 | */ | |
10 | #include <common.h> | |
11 | #include <command.h> | |
3863585b WD |
12 | #include <net.h> |
13 | ||
e4bf0c5c | 14 | static int netboot_common(enum proto_t, cmd_tbl_t *, int, char * const []); |
3863585b | 15 | |
d7a45eaf | 16 | #ifdef CONFIG_CMD_BOOTP |
088f1b19 | 17 | static int do_bootp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
3863585b | 18 | { |
088f1b19 | 19 | return netboot_common(BOOTP, cmdtp, argc, argv); |
3863585b WD |
20 | } |
21 | ||
0d498393 WD |
22 | U_BOOT_CMD( |
23 | bootp, 3, 1, do_bootp, | |
2fb2604d | 24 | "boot image via network using BOOTP/TFTP protocol", |
a89c33db | 25 | "[loadAddress] [[hostIPaddr:]bootfilename]" |
8bde7f77 | 26 | ); |
d7a45eaf | 27 | #endif |
8bde7f77 | 28 | |
d7a45eaf | 29 | #ifdef CONFIG_CMD_TFTPBOOT |
088f1b19 | 30 | int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
3863585b | 31 | { |
573f14fe SG |
32 | int ret; |
33 | ||
34 | bootstage_mark_name(BOOTSTAGE_KERNELREAD_START, "tftp_start"); | |
35 | ret = netboot_common(TFTPGET, cmdtp, argc, argv); | |
36 | bootstage_mark_name(BOOTSTAGE_KERNELREAD_STOP, "tftp_done"); | |
37 | return ret; | |
3863585b WD |
38 | } |
39 | ||
0d498393 WD |
40 | U_BOOT_CMD( |
41 | tftpboot, 3, 1, do_tftpb, | |
2fb2604d | 42 | "boot image via network using TFTP protocol", |
a89c33db | 43 | "[loadAddress] [[hostIPaddr:]bootfilename]" |
8bde7f77 | 44 | ); |
d7a45eaf | 45 | #endif |
8bde7f77 | 46 | |
2d46cf29 | 47 | #ifdef CONFIG_CMD_TFTPPUT |
0c1b869b | 48 | static int do_tftpput(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
2d46cf29 | 49 | { |
85848f03 | 50 | return netboot_common(TFTPPUT, cmdtp, argc, argv); |
2d46cf29 SG |
51 | } |
52 | ||
53 | U_BOOT_CMD( | |
54 | tftpput, 4, 1, do_tftpput, | |
55 | "TFTP put command, for uploading files to a server", | |
56 | "Address Size [[hostIPaddr:]filename]" | |
57 | ); | |
58 | #endif | |
59 | ||
7a83af07 LC |
60 | #ifdef CONFIG_CMD_TFTPSRV |
61 | static int do_tftpsrv(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) | |
62 | { | |
63 | return netboot_common(TFTPSRV, cmdtp, argc, argv); | |
64 | } | |
65 | ||
66 | U_BOOT_CMD( | |
67 | tftpsrv, 2, 1, do_tftpsrv, | |
68 | "act as a TFTP server and boot the first received file", | |
69 | "[loadAddress]\n" | |
70 | "Listen for an incoming TFTP transfer, receive a file and boot it.\n" | |
71 | "The transfer is aborted if a transfer has not been started after\n" | |
72 | "about 50 seconds or if Ctrl-C is pressed." | |
73 | ); | |
74 | #endif | |
75 | ||
76 | ||
bf6cb247 | 77 | #ifdef CONFIG_CMD_RARP |
088f1b19 | 78 | int do_rarpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
3863585b | 79 | { |
088f1b19 | 80 | return netboot_common(RARP, cmdtp, argc, argv); |
3863585b WD |
81 | } |
82 | ||
0d498393 WD |
83 | U_BOOT_CMD( |
84 | rarpboot, 3, 1, do_rarpb, | |
2fb2604d | 85 | "boot image via network using RARP/TFTP protocol", |
a89c33db | 86 | "[loadAddress] [[hostIPaddr:]bootfilename]" |
8bde7f77 | 87 | ); |
bf6cb247 | 88 | #endif |
8bde7f77 | 89 | |
c76fe474 | 90 | #if defined(CONFIG_CMD_DHCP) |
088f1b19 | 91 | static int do_dhcp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
3863585b WD |
92 | { |
93 | return netboot_common(DHCP, cmdtp, argc, argv); | |
94 | } | |
8bde7f77 | 95 | |
0d498393 WD |
96 | U_BOOT_CMD( |
97 | dhcp, 3, 1, do_dhcp, | |
2fb2604d | 98 | "boot image via network using DHCP/TFTP protocol", |
a89c33db | 99 | "[loadAddress] [[hostIPaddr:]bootfilename]" |
8bde7f77 | 100 | ); |
90253178 | 101 | #endif |
3863585b | 102 | |
c76fe474 | 103 | #if defined(CONFIG_CMD_NFS) |
088f1b19 | 104 | static int do_nfs(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
cbd8a35c WD |
105 | { |
106 | return netboot_common(NFS, cmdtp, argc, argv); | |
107 | } | |
108 | ||
109 | U_BOOT_CMD( | |
110 | nfs, 3, 1, do_nfs, | |
2fb2604d | 111 | "boot image via network using NFS protocol", |
a89c33db | 112 | "[loadAddress] [[hostIPaddr:]bootfilename]" |
cbd8a35c | 113 | ); |
90253178 | 114 | #endif |
cbd8a35c | 115 | |
088f1b19 | 116 | static void netboot_update_env(void) |
3863585b | 117 | { |
6e592385 | 118 | char tmp[22]; |
3863585b | 119 | |
049a95a7 JH |
120 | if (net_gateway.s_addr) { |
121 | ip_to_string(net_gateway, tmp); | |
382bee57 | 122 | env_set("gatewayip", tmp); |
6e592385 | 123 | } |
3863585b | 124 | |
049a95a7 JH |
125 | if (net_netmask.s_addr) { |
126 | ip_to_string(net_netmask, tmp); | |
382bee57 | 127 | env_set("netmask", tmp); |
6e592385 | 128 | } |
3863585b | 129 | |
586cbe51 | 130 | if (net_hostname[0]) |
382bee57 | 131 | env_set("hostname", net_hostname); |
3863585b | 132 | |
586cbe51 | 133 | if (net_root_path[0]) |
382bee57 | 134 | env_set("rootpath", net_root_path); |
3863585b | 135 | |
049a95a7 JH |
136 | if (net_ip.s_addr) { |
137 | ip_to_string(net_ip, tmp); | |
382bee57 | 138 | env_set("ipaddr", tmp); |
6e592385 | 139 | } |
a3e1a727 JH |
140 | #if !defined(CONFIG_BOOTP_SERVERIP) |
141 | /* | |
ff78ad28 | 142 | * Only attempt to change serverip if net/bootp.c:store_net_params() |
a3e1a727 JH |
143 | * could have set it |
144 | */ | |
049a95a7 JH |
145 | if (net_server_ip.s_addr) { |
146 | ip_to_string(net_server_ip, tmp); | |
382bee57 | 147 | env_set("serverip", tmp); |
6e592385 | 148 | } |
a3e1a727 | 149 | #endif |
049a95a7 JH |
150 | if (net_dns_server.s_addr) { |
151 | ip_to_string(net_dns_server, tmp); | |
382bee57 | 152 | env_set("dnsip", tmp); |
6e592385 | 153 | } |
1fe80d79 | 154 | #if defined(CONFIG_BOOTP_DNS2) |
049a95a7 JH |
155 | if (net_dns_server2.s_addr) { |
156 | ip_to_string(net_dns_server2, tmp); | |
382bee57 | 157 | env_set("dnsip2", tmp); |
6e592385 | 158 | } |
fe389a82 | 159 | #endif |
586cbe51 | 160 | if (net_nis_domain[0]) |
382bee57 | 161 | env_set("domain", net_nis_domain); |
ea287deb | 162 | |
4fd5055f | 163 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET) |
bc0571fc JH |
164 | if (net_ntp_time_offset) { |
165 | sprintf(tmp, "%d", net_ntp_time_offset); | |
382bee57 | 166 | env_set("timeoffset", tmp); |
ea287deb WD |
167 | } |
168 | #endif | |
4fd5055f | 169 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER) |
049a95a7 JH |
170 | if (net_ntp_server.s_addr) { |
171 | ip_to_string(net_ntp_server, tmp); | |
382bee57 | 172 | env_set("ntpserverip", tmp); |
ea287deb WD |
173 | } |
174 | #endif | |
3863585b | 175 | } |
6e592385 | 176 | |
e4bf0c5c SG |
177 | static int netboot_common(enum proto_t proto, cmd_tbl_t *cmdtp, int argc, |
178 | char * const argv[]) | |
3863585b WD |
179 | { |
180 | char *s; | |
2e4970d8 | 181 | char *end; |
3863585b WD |
182 | int rcode = 0; |
183 | int size; | |
2e4970d8 | 184 | ulong addr; |
3863585b | 185 | |
449312c1 AG |
186 | net_boot_file_name_explicit = false; |
187 | ||
3863585b | 188 | /* pre-set load_addr */ |
00caae6d | 189 | s = env_get("loadaddr"); |
4fd5055f | 190 | if (s != NULL) |
3863585b | 191 | load_addr = simple_strtoul(s, NULL, 16); |
3863585b WD |
192 | |
193 | switch (argc) { | |
194 | case 1: | |
f43308fa JH |
195 | /* refresh bootfile name from env */ |
196 | copy_filename(net_boot_file_name, env_get("bootfile"), | |
197 | sizeof(net_boot_file_name)); | |
3863585b WD |
198 | break; |
199 | ||
2e4970d8 PT |
200 | case 2: /* |
201 | * Only one arg - accept two forms: | |
202 | * Just load address, or just boot file name. The latter | |
203 | * form must be written in a format which can not be | |
204 | * mis-interpreted as a valid number. | |
3863585b | 205 | */ |
2e4970d8 | 206 | addr = simple_strtoul(argv[1], &end, 16); |
449312c1 | 207 | if (end == (argv[1] + strlen(argv[1]))) { |
2e4970d8 | 208 | load_addr = addr; |
f43308fa JH |
209 | /* refresh bootfile name from env */ |
210 | copy_filename(net_boot_file_name, env_get("bootfile"), | |
211 | sizeof(net_boot_file_name)); | |
449312c1 AG |
212 | } else { |
213 | net_boot_file_name_explicit = true; | |
1411157d JH |
214 | copy_filename(net_boot_file_name, argv[1], |
215 | sizeof(net_boot_file_name)); | |
449312c1 | 216 | } |
3863585b WD |
217 | break; |
218 | ||
4fd5055f JH |
219 | case 3: |
220 | load_addr = simple_strtoul(argv[1], NULL, 16); | |
449312c1 | 221 | net_boot_file_name_explicit = true; |
1411157d JH |
222 | copy_filename(net_boot_file_name, argv[2], |
223 | sizeof(net_boot_file_name)); | |
3863585b WD |
224 | |
225 | break; | |
226 | ||
2d46cf29 SG |
227 | #ifdef CONFIG_CMD_TFTPPUT |
228 | case 4: | |
38bd80b4 | 229 | if (strict_strtoul(argv[1], 16, &save_addr) < 0 || |
4fd5055f | 230 | strict_strtoul(argv[2], 16, &save_size) < 0) { |
38bd80b4 | 231 | printf("Invalid address/size\n"); |
85848f03 | 232 | return CMD_RET_USAGE; |
38bd80b4 | 233 | } |
449312c1 | 234 | net_boot_file_name_explicit = true; |
1411157d JH |
235 | copy_filename(net_boot_file_name, argv[3], |
236 | sizeof(net_boot_file_name)); | |
2d46cf29 SG |
237 | break; |
238 | #endif | |
47e26b1b | 239 | default: |
770605e4 | 240 | bootstage_error(BOOTSTAGE_ID_NET_START); |
4c12eeb8 | 241 | return CMD_RET_USAGE; |
3863585b | 242 | } |
770605e4 | 243 | bootstage_mark(BOOTSTAGE_ID_NET_START); |
3863585b | 244 | |
bc0571fc | 245 | size = net_loop(proto); |
4fd5055f | 246 | if (size < 0) { |
770605e4 | 247 | bootstage_error(BOOTSTAGE_ID_NET_NETLOOP_OK); |
85848f03 | 248 | return CMD_RET_FAILURE; |
566a494f | 249 | } |
770605e4 | 250 | bootstage_mark(BOOTSTAGE_ID_NET_NETLOOP_OK); |
3863585b | 251 | |
bc0571fc | 252 | /* net_loop ok, update environment */ |
3863585b WD |
253 | netboot_update_env(); |
254 | ||
eb9401e3 | 255 | /* done if no file was loaded (no errors though) */ |
566a494f | 256 | if (size == 0) { |
770605e4 | 257 | bootstage_error(BOOTSTAGE_ID_NET_LOADED); |
85848f03 | 258 | return CMD_RET_SUCCESS; |
566a494f | 259 | } |
eb9401e3 | 260 | |
770605e4 | 261 | bootstage_mark(BOOTSTAGE_ID_NET_LOADED); |
c8e66db7 | 262 | |
67d668bf | 263 | rcode = bootm_maybe_autostart(cmdtp, argv[0]); |
3863585b | 264 | |
85848f03 | 265 | if (rcode == CMD_RET_SUCCESS) |
770605e4 | 266 | bootstage_mark(BOOTSTAGE_ID_NET_DONE); |
85848f03 JH |
267 | else |
268 | bootstage_error(BOOTSTAGE_ID_NET_DONE_ERR); | |
3863585b WD |
269 | return rcode; |
270 | } | |
271 | ||
c76fe474 | 272 | #if defined(CONFIG_CMD_PING) |
088f1b19 | 273 | static int do_ping(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
73a8b27c WD |
274 | { |
275 | if (argc < 2) | |
85848f03 | 276 | return CMD_RET_USAGE; |
73a8b27c | 277 | |
049a95a7 JH |
278 | net_ping_ip = string_to_ip(argv[1]); |
279 | if (net_ping_ip.s_addr == 0) | |
4c12eeb8 | 280 | return CMD_RET_USAGE; |
73a8b27c | 281 | |
bc0571fc | 282 | if (net_loop(PING) < 0) { |
73a8b27c | 283 | printf("ping failed; host %s is not alive\n", argv[1]); |
85848f03 | 284 | return CMD_RET_FAILURE; |
73a8b27c WD |
285 | } |
286 | ||
287 | printf("host %s is alive\n", argv[1]); | |
288 | ||
85848f03 | 289 | return CMD_RET_SUCCESS; |
73a8b27c | 290 | } |
6dff5529 WD |
291 | |
292 | U_BOOT_CMD( | |
293 | ping, 2, 1, do_ping, | |
2fb2604d | 294 | "send ICMP ECHO_REQUEST to network host", |
a89c33db | 295 | "pingAddress" |
6dff5529 | 296 | ); |
90253178 | 297 | #endif |
73a8b27c | 298 | |
c76fe474 | 299 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
300 | |
301 | static void cdp_update_env(void) | |
302 | { | |
303 | char tmp[16]; | |
304 | ||
6aede5b7 JH |
305 | if (cdp_appliance_vlan != htons(-1)) { |
306 | printf("CDP offered appliance VLAN %d\n", | |
307 | ntohs(cdp_appliance_vlan)); | |
4fd5055f | 308 | vlan_to_string(cdp_appliance_vlan, tmp); |
382bee57 | 309 | env_set("vlan", tmp); |
4fd5055f | 310 | net_our_vlan = cdp_appliance_vlan; |
a3d991bd WD |
311 | } |
312 | ||
6aede5b7 JH |
313 | if (cdp_native_vlan != htons(-1)) { |
314 | printf("CDP offered native VLAN %d\n", ntohs(cdp_native_vlan)); | |
4fd5055f | 315 | vlan_to_string(cdp_native_vlan, tmp); |
382bee57 | 316 | env_set("nvlan", tmp); |
4fd5055f | 317 | net_native_vlan = cdp_native_vlan; |
a3d991bd | 318 | } |
a3d991bd WD |
319 | } |
320 | ||
088f1b19 | 321 | int do_cdp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
a3d991bd WD |
322 | { |
323 | int r; | |
324 | ||
bc0571fc | 325 | r = net_loop(CDP); |
a3d991bd WD |
326 | if (r < 0) { |
327 | printf("cdp failed; perhaps not a CISCO switch?\n"); | |
85848f03 | 328 | return CMD_RET_FAILURE; |
a3d991bd WD |
329 | } |
330 | ||
331 | cdp_update_env(); | |
332 | ||
85848f03 | 333 | return CMD_RET_SUCCESS; |
a3d991bd WD |
334 | } |
335 | ||
336 | U_BOOT_CMD( | |
337 | cdp, 1, 1, do_cdp, | |
ec5c04cd | 338 | "Perform CDP network configuration", |
4b58266e | 339 | "\n" |
a3d991bd | 340 | ); |
90253178 | 341 | #endif |
a3d991bd | 342 | |
c76fe474 | 343 | #if defined(CONFIG_CMD_SNTP) |
088f1b19 | 344 | int do_sntp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
ea287deb WD |
345 | { |
346 | char *toff; | |
347 | ||
348 | if (argc < 2) { | |
723806cc | 349 | net_ntp_server = env_get_ip("ntpserverip"); |
049a95a7 | 350 | if (net_ntp_server.s_addr == 0) { |
088f1b19 | 351 | printf("ntpserverip not set\n"); |
85848f03 | 352 | return CMD_RET_FAILURE; |
ea287deb WD |
353 | } |
354 | } else { | |
049a95a7 JH |
355 | net_ntp_server = string_to_ip(argv[1]); |
356 | if (net_ntp_server.s_addr == 0) { | |
088f1b19 | 357 | printf("Bad NTP server IP address\n"); |
85848f03 | 358 | return CMD_RET_FAILURE; |
ea287deb WD |
359 | } |
360 | } | |
361 | ||
00caae6d | 362 | toff = env_get("timeoffset"); |
088f1b19 | 363 | if (toff == NULL) |
bc0571fc | 364 | net_ntp_time_offset = 0; |
088f1b19 | 365 | else |
bc0571fc | 366 | net_ntp_time_offset = simple_strtol(toff, NULL, 10); |
ea287deb | 367 | |
bc0571fc | 368 | if (net_loop(SNTP) < 0) { |
d6840e3d | 369 | printf("SNTP failed: host %pI4 not responding\n", |
4fd5055f | 370 | &net_ntp_server); |
85848f03 | 371 | return CMD_RET_FAILURE; |
ea287deb WD |
372 | } |
373 | ||
85848f03 | 374 | return CMD_RET_SUCCESS; |
ea287deb WD |
375 | } |
376 | ||
377 | U_BOOT_CMD( | |
378 | sntp, 2, 1, do_sntp, | |
2fb2604d | 379 | "synchronize RTC via network", |
ea287deb WD |
380 | "[NTP server IP]\n" |
381 | ); | |
90253178 | 382 | #endif |
1a32bf41 RG |
383 | |
384 | #if defined(CONFIG_CMD_DNS) | |
54841ab5 | 385 | int do_dns(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
1a32bf41 | 386 | { |
47e26b1b | 387 | if (argc == 1) |
4c12eeb8 | 388 | return CMD_RET_USAGE; |
1a32bf41 RG |
389 | |
390 | /* | |
391 | * We should check for a valid hostname: | |
392 | * - Each label must be between 1 and 63 characters long | |
393 | * - the entire hostname has a maximum of 255 characters | |
394 | * - only the ASCII letters 'a' through 'z' (case-insensitive), | |
395 | * the digits '0' through '9', and the hyphen | |
396 | * - cannot begin or end with a hyphen | |
397 | * - no other symbols, punctuation characters, or blank spaces are | |
398 | * permitted | |
399 | * but hey - this is a minimalist implmentation, so only check length | |
400 | * and let the name server deal with things. | |
401 | */ | |
402 | if (strlen(argv[1]) >= 255) { | |
403 | printf("dns error: hostname too long\n"); | |
85848f03 | 404 | return CMD_RET_FAILURE; |
1a32bf41 RG |
405 | } |
406 | ||
786eac5f | 407 | net_dns_resolve = argv[1]; |
1a32bf41 RG |
408 | |
409 | if (argc == 3) | |
786eac5f | 410 | net_dns_env_var = argv[2]; |
1a32bf41 | 411 | else |
786eac5f | 412 | net_dns_env_var = NULL; |
1a32bf41 | 413 | |
bc0571fc | 414 | if (net_loop(DNS) < 0) { |
1a32bf41 | 415 | printf("dns lookup of %s failed, check setup\n", argv[1]); |
85848f03 | 416 | return CMD_RET_FAILURE; |
1a32bf41 RG |
417 | } |
418 | ||
85848f03 | 419 | return CMD_RET_SUCCESS; |
1a32bf41 RG |
420 | } |
421 | ||
422 | U_BOOT_CMD( | |
423 | dns, 3, 1, do_dns, | |
424 | "lookup the IP of a hostname", | |
425 | "hostname [envvar]" | |
426 | ); | |
427 | ||
428 | #endif /* CONFIG_CMD_DNS */ | |
d22c338e JH |
429 | |
430 | #if defined(CONFIG_CMD_LINK_LOCAL) | |
431 | static int do_link_local(cmd_tbl_t *cmdtp, int flag, int argc, | |
432 | char * const argv[]) | |
433 | { | |
434 | char tmp[22]; | |
435 | ||
bc0571fc | 436 | if (net_loop(LINKLOCAL) < 0) |
85848f03 | 437 | return CMD_RET_FAILURE; |
d22c338e | 438 | |
049a95a7 JH |
439 | net_gateway.s_addr = 0; |
440 | ip_to_string(net_gateway, tmp); | |
382bee57 | 441 | env_set("gatewayip", tmp); |
d22c338e | 442 | |
049a95a7 | 443 | ip_to_string(net_netmask, tmp); |
382bee57 | 444 | env_set("netmask", tmp); |
d22c338e | 445 | |
049a95a7 | 446 | ip_to_string(net_ip, tmp); |
382bee57 SG |
447 | env_set("ipaddr", tmp); |
448 | env_set("llipaddr", tmp); /* store this for next time */ | |
d22c338e | 449 | |
85848f03 | 450 | return CMD_RET_SUCCESS; |
d22c338e JH |
451 | } |
452 | ||
453 | U_BOOT_CMD( | |
454 | linklocal, 1, 1, do_link_local, | |
455 | "acquire a network IP address using the link-local protocol", | |
456 | "" | |
457 | ); | |
458 | ||
459 | #endif /* CONFIG_CMD_LINK_LOCAL */ |