]> Git Repo - J-u-boot.git/blame - cmd/net.c
Merge patch series "Apply SoM overlays on phyCORE-AM6xx SoMs"
[J-u-boot.git] / cmd / net.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3863585b
WD
2/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
3863585b
WD
5 */
6
c8c3fd24
SG
7#define LOG_CATEGORY UCLASS_ETH
8
3863585b
WD
9/*
10 * Boot support
11 */
52f24238 12#include <bootstage.h>
3863585b 13#include <command.h>
8a3987f4 14#include <dm.h>
c85e96d0 15#include <dm/devres.h>
9fb625ce 16#include <env.h>
8e8ccfe1 17#include <image.h>
c8c3fd24 18#include <log.h>
3863585b 19#include <net.h>
7fbf230d 20#include <net6.h>
912ece4c
PR
21#include <net/udp.h>
22#include <net/sntp.h>
4b290d4a 23#include <net/ncsi.h>
3863585b 24
09140113 25static int netboot_common(enum proto_t, struct cmd_tbl *, int, char * const []);
3863585b 26
d7a45eaf 27#ifdef CONFIG_CMD_BOOTP
09140113
SG
28static int do_bootp(struct cmd_tbl *cmdtp, int flag, int argc,
29 char *const argv[])
3863585b 30{
088f1b19 31 return netboot_common(BOOTP, cmdtp, argc, argv);
3863585b
WD
32}
33
0d498393
WD
34U_BOOT_CMD(
35 bootp, 3, 1, do_bootp,
2fb2604d 36 "boot image via network using BOOTP/TFTP protocol",
a89c33db 37 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 38);
d7a45eaf 39#endif
8bde7f77 40
d7a45eaf 41#ifdef CONFIG_CMD_TFTPBOOT
09140113 42int do_tftpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
3863585b 43{
573f14fe
SG
44 int ret;
45
46 bootstage_mark_name(BOOTSTAGE_KERNELREAD_START, "tftp_start");
47 ret = netboot_common(TFTPGET, cmdtp, argc, argv);
48 bootstage_mark_name(BOOTSTAGE_KERNELREAD_STOP, "tftp_done");
49 return ret;
3863585b
WD
50}
51
7fbf230d
VM
52#if IS_ENABLED(CONFIG_IPV6)
53U_BOOT_CMD(
54 tftpboot, 4, 1, do_tftpb,
55 "boot image via network using TFTP protocol\n"
56 "To use IPv6 add -ipv6 parameter or use IPv6 hostIPaddr framed "
57 "with [] brackets",
58 "[loadAddress] [[hostIPaddr:]bootfilename] [" USE_IP6_CMD_PARAM "]"
59);
60#else
0d498393
WD
61U_BOOT_CMD(
62 tftpboot, 3, 1, do_tftpb,
651031ef 63 "load file via network using TFTP protocol",
a89c33db 64 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 65);
d7a45eaf 66#endif
7fbf230d 67#endif
8bde7f77 68
2d46cf29 69#ifdef CONFIG_CMD_TFTPPUT
09140113
SG
70static int do_tftpput(struct cmd_tbl *cmdtp, int flag, int argc,
71 char *const argv[])
2d46cf29 72{
85848f03 73 return netboot_common(TFTPPUT, cmdtp, argc, argv);
2d46cf29
SG
74}
75
76U_BOOT_CMD(
77 tftpput, 4, 1, do_tftpput,
78 "TFTP put command, for uploading files to a server",
79 "Address Size [[hostIPaddr:]filename]"
80);
81#endif
82
7a83af07 83#ifdef CONFIG_CMD_TFTPSRV
09140113
SG
84static int do_tftpsrv(struct cmd_tbl *cmdtp, int flag, int argc,
85 char *const argv[])
7a83af07
LC
86{
87 return netboot_common(TFTPSRV, cmdtp, argc, argv);
88}
89
90U_BOOT_CMD(
91 tftpsrv, 2, 1, do_tftpsrv,
92 "act as a TFTP server and boot the first received file",
93 "[loadAddress]\n"
94 "Listen for an incoming TFTP transfer, receive a file and boot it.\n"
95 "The transfer is aborted if a transfer has not been started after\n"
96 "about 50 seconds or if Ctrl-C is pressed."
97);
98#endif
99
bf6cb247 100#ifdef CONFIG_CMD_RARP
09140113 101int do_rarpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
3863585b 102{
088f1b19 103 return netboot_common(RARP, cmdtp, argc, argv);
3863585b
WD
104}
105
0d498393
WD
106U_BOOT_CMD(
107 rarpboot, 3, 1, do_rarpb,
2fb2604d 108 "boot image via network using RARP/TFTP protocol",
a89c33db 109 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 110);
bf6cb247 111#endif
8bde7f77 112
7d018892
SE
113#if defined(CONFIG_CMD_DHCP6)
114static int do_dhcp6(struct cmd_tbl *cmdtp, int flag, int argc,
115 char *const argv[])
116{
117 int i;
118 int dhcp_argc;
119 char *dhcp_argv[] = {NULL, NULL, NULL, NULL};
120
121 /* Add -ipv6 flag for autoload */
122 for (i = 0; i < argc; i++)
123 dhcp_argv[i] = argv[i];
124 dhcp_argc = argc + 1;
125 dhcp_argv[dhcp_argc - 1] = USE_IP6_CMD_PARAM;
126
127 return netboot_common(DHCP6, cmdtp, dhcp_argc, dhcp_argv);
128}
129
130U_BOOT_CMD(dhcp6, 3, 1, do_dhcp6,
131 "boot image via network using DHCPv6/TFTP protocol.\n"
132 "Use IPv6 hostIPaddr framed with [] brackets",
133 "[loadAddress] [[hostIPaddr:]bootfilename]");
134#endif
135
c76fe474 136#if defined(CONFIG_CMD_DHCP)
09140113
SG
137static int do_dhcp(struct cmd_tbl *cmdtp, int flag, int argc,
138 char *const argv[])
3863585b
WD
139{
140 return netboot_common(DHCP, cmdtp, argc, argv);
141}
8bde7f77 142
0d498393
WD
143U_BOOT_CMD(
144 dhcp, 3, 1, do_dhcp,
2fb2604d 145 "boot image via network using DHCP/TFTP protocol",
a89c33db 146 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 147);
c8c3fd24
SG
148
149int dhcp_run(ulong addr, const char *fname, bool autoload)
150{
151 char *dhcp_argv[] = {"dhcp", NULL, (char *)fname, NULL};
152 struct cmd_tbl cmdtp = {}; /* dummy */
153 char file_addr[17];
154 int old_autoload;
155 int ret, result;
156
157 log_debug("addr=%lx, fname=%s, autoload=%d\n", addr, fname, autoload);
158 old_autoload = env_get_yesno("autoload");
159 ret = env_set("autoload", autoload ? "y" : "n");
160 if (ret)
161 return log_msg_ret("en1", -EINVAL);
162
163 if (autoload) {
164 sprintf(file_addr, "%lx", addr);
165 dhcp_argv[1] = file_addr;
166 }
167
168 result = do_dhcp(&cmdtp, 0, !autoload ? 1 : fname ? 3 : 2, dhcp_argv);
169
170 ret = env_set("autoload", old_autoload == -1 ? NULL :
171 old_autoload ? "y" : "n");
172 if (ret)
173 return log_msg_ret("en2", -EINVAL);
174
175 if (result)
176 return log_msg_ret("res", -ENOENT);
177
178 return 0;
179}
90253178 180#endif
3863585b 181
c76fe474 182#if defined(CONFIG_CMD_NFS)
09140113
SG
183static int do_nfs(struct cmd_tbl *cmdtp, int flag, int argc,
184 char *const argv[])
cbd8a35c
WD
185{
186 return netboot_common(NFS, cmdtp, argc, argv);
187}
188
189U_BOOT_CMD(
190 nfs, 3, 1, do_nfs,
2fb2604d 191 "boot image via network using NFS protocol",
a89c33db 192 "[loadAddress] [[hostIPaddr:]bootfilename]"
cbd8a35c 193);
90253178 194#endif
cbd8a35c 195
cfbae482
YCLP
196#if defined(CONFIG_CMD_WGET)
197static int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
198{
199 return netboot_common(WGET, cmdtp, argc, argv);
200}
201
202U_BOOT_CMD(
203 wget, 3, 1, do_wget,
204 "boot image via network using HTTP protocol",
205 "[loadAddress] [[hostIPaddr:]path and image name]"
206);
207#endif
208
088f1b19 209static void netboot_update_env(void)
3863585b 210{
1b3117db 211 char tmp[46];
3863585b 212
049a95a7
JH
213 if (net_gateway.s_addr) {
214 ip_to_string(net_gateway, tmp);
382bee57 215 env_set("gatewayip", tmp);
6e592385 216 }
3863585b 217
049a95a7
JH
218 if (net_netmask.s_addr) {
219 ip_to_string(net_netmask, tmp);
382bee57 220 env_set("netmask", tmp);
6e592385 221 }
3863585b 222
808f13d8 223#ifdef CONFIG_CMD_BOOTP
586cbe51 224 if (net_hostname[0])
382bee57 225 env_set("hostname", net_hostname);
808f13d8 226#endif
3863585b 227
808f13d8 228#ifdef CONFIG_CMD_BOOTP
586cbe51 229 if (net_root_path[0])
382bee57 230 env_set("rootpath", net_root_path);
808f13d8 231#endif
3863585b 232
049a95a7
JH
233 if (net_ip.s_addr) {
234 ip_to_string(net_ip, tmp);
382bee57 235 env_set("ipaddr", tmp);
6e592385 236 }
a3e1a727 237 /*
ff78ad28 238 * Only attempt to change serverip if net/bootp.c:store_net_params()
a3e1a727
JH
239 * could have set it
240 */
43407539 241 if (!IS_ENABLED(CONFIG_BOOTP_SERVERIP) && net_server_ip.s_addr) {
049a95a7 242 ip_to_string(net_server_ip, tmp);
382bee57 243 env_set("serverip", tmp);
6e592385 244 }
049a95a7
JH
245 if (net_dns_server.s_addr) {
246 ip_to_string(net_dns_server, tmp);
382bee57 247 env_set("dnsip", tmp);
6e592385 248 }
1fe80d79 249#if defined(CONFIG_BOOTP_DNS2)
049a95a7
JH
250 if (net_dns_server2.s_addr) {
251 ip_to_string(net_dns_server2, tmp);
382bee57 252 env_set("dnsip2", tmp);
6e592385 253 }
fe389a82 254#endif
808f13d8 255#ifdef CONFIG_CMD_BOOTP
586cbe51 256 if (net_nis_domain[0])
382bee57 257 env_set("domain", net_nis_domain);
808f13d8 258#endif
ea287deb 259
4fd5055f 260#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
bc0571fc
JH
261 if (net_ntp_time_offset) {
262 sprintf(tmp, "%d", net_ntp_time_offset);
382bee57 263 env_set("timeoffset", tmp);
ea287deb
WD
264 }
265#endif
4fd5055f 266#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
049a95a7
JH
267 if (net_ntp_server.s_addr) {
268 ip_to_string(net_ntp_server, tmp);
382bee57 269 env_set("ntpserverip", tmp);
ea287deb
WD
270 }
271#endif
5e541c48
SE
272
273 if (IS_ENABLED(CONFIG_IPV6)) {
274 if (!ip6_is_unspecified_addr(&net_ip6) ||
275 net_prefix_length != 0) {
5e541c48 276 if (net_prefix_length != 0)
1b3117db
SE
277 snprintf(tmp, sizeof(tmp), "%pI6c/%d", &net_ip6, net_prefix_length);
278 else
279 snprintf(tmp, sizeof(tmp), "%pI6c", &net_ip6);
5e541c48
SE
280 env_set("ip6addr", tmp);
281 }
282
283 if (!ip6_is_unspecified_addr(&net_server_ip6)) {
1b3117db 284 snprintf(tmp, sizeof(tmp), "%pI6c", &net_server_ip6);
5e541c48
SE
285 env_set("serverip6", tmp);
286 }
287
288 if (!ip6_is_unspecified_addr(&net_gateway6)) {
1b3117db 289 snprintf(tmp, sizeof(tmp), "%pI6c", &net_gateway6);
5e541c48
SE
290 env_set("gatewayip6", tmp);
291 }
292 }
3863585b 293}
6e592385 294
5f46c6eb
HS
295/**
296 * parse_addr_size() - parse address and size arguments for tftpput
297 *
298 * @argv: command line arguments
299 * Return: 0 on success
300 */
301static int parse_addr_size(char * const argv[])
3863585b 302{
5f46c6eb
HS
303 if (strict_strtoul(argv[1], 16, &image_save_addr) < 0 ||
304 strict_strtoul(argv[2], 16, &image_save_size) < 0) {
305 printf("Invalid address/size\n");
306 return CMD_RET_USAGE;
307 }
308 return 0;
309}
449312c1 310
5f46c6eb
HS
311/**
312 * parse_args() - parse command line arguments
313 *
314 * @proto: command prototype
315 * @argc: number of arguments
316 * @argv: command line arguments
317 * Return: 0 on success
318 */
319static int parse_args(enum proto_t proto, int argc, char *const argv[])
320{
321 ulong addr;
322 char *end;
3863585b
WD
323
324 switch (argc) {
325 case 1:
b15a4af8 326 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT)
5f46c6eb
HS
327 return 1;
328
f43308fa
JH
329 /* refresh bootfile name from env */
330 copy_filename(net_boot_file_name, env_get("bootfile"),
331 sizeof(net_boot_file_name));
3863585b
WD
332 break;
333
5f46c6eb 334 case 2:
b15a4af8 335 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT)
5f46c6eb
HS
336 return 1;
337 /*
2e4970d8
PT
338 * Only one arg - accept two forms:
339 * Just load address, or just boot file name. The latter
340 * form must be written in a format which can not be
341 * mis-interpreted as a valid number.
3863585b 342 */
7e5f460e 343 addr = hextoul(argv[1], &end);
449312c1 344 if (end == (argv[1] + strlen(argv[1]))) {
bb872dd9 345 image_load_addr = addr;
f43308fa
JH
346 /* refresh bootfile name from env */
347 copy_filename(net_boot_file_name, env_get("bootfile"),
348 sizeof(net_boot_file_name));
449312c1
AG
349 } else {
350 net_boot_file_name_explicit = true;
1411157d
JH
351 copy_filename(net_boot_file_name, argv[1],
352 sizeof(net_boot_file_name));
449312c1 353 }
3863585b
WD
354 break;
355
4fd5055f 356 case 3:
b15a4af8 357 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT) {
5f46c6eb
HS
358 if (parse_addr_size(argv))
359 return 1;
360 } else {
361 image_load_addr = hextoul(argv[1], NULL);
362 net_boot_file_name_explicit = true;
363 copy_filename(net_boot_file_name, argv[2],
364 sizeof(net_boot_file_name));
365 }
3863585b
WD
366 break;
367
2d46cf29
SG
368#ifdef CONFIG_CMD_TFTPPUT
369 case 4:
5f46c6eb
HS
370 if (parse_addr_size(argv))
371 return 1;
449312c1 372 net_boot_file_name_explicit = true;
1411157d
JH
373 copy_filename(net_boot_file_name, argv[3],
374 sizeof(net_boot_file_name));
2d46cf29
SG
375 break;
376#endif
47e26b1b 377 default:
5f46c6eb
HS
378 return 1;
379 }
380 return 0;
381}
382
383static int netboot_common(enum proto_t proto, struct cmd_tbl *cmdtp, int argc,
384 char *const argv[])
385{
386 char *s;
387 int rcode = 0;
388 int size;
389
390 net_boot_file_name_explicit = false;
391 *net_boot_file_name = '\0';
392
393 /* pre-set image_load_addr */
394 s = env_get("loadaddr");
395 if (s != NULL)
396 image_load_addr = hextoul(s, NULL);
397
7fbf230d
VM
398 if (IS_ENABLED(CONFIG_IPV6)) {
399 use_ip6 = false;
400
401 /* IPv6 parameter has to be always *last* */
402 if (!strcmp(argv[argc - 1], USE_IP6_CMD_PARAM)) {
403 use_ip6 = true;
404 /* It is a hack not to break switch/case code */
405 --argc;
406 }
407 }
408
5f46c6eb 409 if (parse_args(proto, argc, argv)) {
770605e4 410 bootstage_error(BOOTSTAGE_ID_NET_START);
4c12eeb8 411 return CMD_RET_USAGE;
3863585b 412 }
5f46c6eb 413
770605e4 414 bootstage_mark(BOOTSTAGE_ID_NET_START);
3863585b 415
7fbf230d
VM
416 if (IS_ENABLED(CONFIG_IPV6) && !use_ip6) {
417 char *s, *e;
418 size_t len;
419
420 s = strchr(net_boot_file_name, '[');
421 e = strchr(net_boot_file_name, ']');
422 if (s && e) {
423 len = e - s;
424 if (!string_to_ip6(s + 1, len - 1, &net_server_ip6))
425 use_ip6 = true;
426 }
427 }
428
bc0571fc 429 size = net_loop(proto);
4fd5055f 430 if (size < 0) {
770605e4 431 bootstage_error(BOOTSTAGE_ID_NET_NETLOOP_OK);
85848f03 432 return CMD_RET_FAILURE;
566a494f 433 }
770605e4 434 bootstage_mark(BOOTSTAGE_ID_NET_NETLOOP_OK);
3863585b 435
bc0571fc 436 /* net_loop ok, update environment */
3863585b
WD
437 netboot_update_env();
438
eb9401e3 439 /* done if no file was loaded (no errors though) */
566a494f 440 if (size == 0) {
770605e4 441 bootstage_error(BOOTSTAGE_ID_NET_LOADED);
85848f03 442 return CMD_RET_SUCCESS;
566a494f 443 }
eb9401e3 444
770605e4 445 bootstage_mark(BOOTSTAGE_ID_NET_LOADED);
c8e66db7 446
67d668bf 447 rcode = bootm_maybe_autostart(cmdtp, argv[0]);
3863585b 448
85848f03 449 if (rcode == CMD_RET_SUCCESS)
770605e4 450 bootstage_mark(BOOTSTAGE_ID_NET_DONE);
85848f03
JH
451 else
452 bootstage_error(BOOTSTAGE_ID_NET_DONE_ERR);
3863585b
WD
453 return rcode;
454}
455
c76fe474 456#if defined(CONFIG_CMD_PING)
09140113
SG
457static int do_ping(struct cmd_tbl *cmdtp, int flag, int argc,
458 char *const argv[])
73a8b27c
WD
459{
460 if (argc < 2)
85848f03 461 return CMD_RET_USAGE;
73a8b27c 462
049a95a7
JH
463 net_ping_ip = string_to_ip(argv[1]);
464 if (net_ping_ip.s_addr == 0)
4c12eeb8 465 return CMD_RET_USAGE;
73a8b27c 466
bc0571fc 467 if (net_loop(PING) < 0) {
73a8b27c 468 printf("ping failed; host %s is not alive\n", argv[1]);
85848f03 469 return CMD_RET_FAILURE;
73a8b27c
WD
470 }
471
472 printf("host %s is alive\n", argv[1]);
473
85848f03 474 return CMD_RET_SUCCESS;
73a8b27c 475}
6dff5529
WD
476
477U_BOOT_CMD(
478 ping, 2, 1, do_ping,
2fb2604d 479 "send ICMP ECHO_REQUEST to network host",
a89c33db 480 "pingAddress"
6dff5529 481);
90253178 482#endif
73a8b27c 483
eeb0a2c6
VM
484#if IS_ENABLED(CONFIG_CMD_PING6)
485int do_ping6(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
486{
487 if (string_to_ip6(argv[1], strlen(argv[1]), &net_ping_ip6))
488 return CMD_RET_USAGE;
489
490 use_ip6 = true;
491 if (net_loop(PING6) < 0) {
492 use_ip6 = false;
493 printf("ping6 failed; host %pI6c is not alive\n",
494 &net_ping_ip6);
495 return 1;
496 }
497
498 use_ip6 = false;
499 printf("host %pI6c is alive\n", &net_ping_ip6);
500 return 0;
501}
502
503U_BOOT_CMD(
504 ping6, 2, 1, do_ping6,
505 "send ICMPv6 ECHO_REQUEST to network host",
506 "pingAddress"
507);
508#endif /* CONFIG_CMD_PING6 */
509
c76fe474 510#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
511
512static void cdp_update_env(void)
513{
514 char tmp[16];
515
6aede5b7
JH
516 if (cdp_appliance_vlan != htons(-1)) {
517 printf("CDP offered appliance VLAN %d\n",
518 ntohs(cdp_appliance_vlan));
4fd5055f 519 vlan_to_string(cdp_appliance_vlan, tmp);
382bee57 520 env_set("vlan", tmp);
4fd5055f 521 net_our_vlan = cdp_appliance_vlan;
a3d991bd
WD
522 }
523
6aede5b7
JH
524 if (cdp_native_vlan != htons(-1)) {
525 printf("CDP offered native VLAN %d\n", ntohs(cdp_native_vlan));
4fd5055f 526 vlan_to_string(cdp_native_vlan, tmp);
382bee57 527 env_set("nvlan", tmp);
4fd5055f 528 net_native_vlan = cdp_native_vlan;
a3d991bd 529 }
a3d991bd
WD
530}
531
09140113 532int do_cdp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
a3d991bd
WD
533{
534 int r;
535
bc0571fc 536 r = net_loop(CDP);
a3d991bd
WD
537 if (r < 0) {
538 printf("cdp failed; perhaps not a CISCO switch?\n");
85848f03 539 return CMD_RET_FAILURE;
a3d991bd
WD
540 }
541
542 cdp_update_env();
543
85848f03 544 return CMD_RET_SUCCESS;
a3d991bd
WD
545}
546
547U_BOOT_CMD(
548 cdp, 1, 1, do_cdp,
ec5c04cd 549 "Perform CDP network configuration",
4b58266e 550 "\n"
a3d991bd 551);
90253178 552#endif
a3d991bd 553
c76fe474 554#if defined(CONFIG_CMD_SNTP)
912ece4c
PR
555static struct udp_ops sntp_ops = {
556 .prereq = sntp_prereq,
557 .start = sntp_start,
558 .data = NULL,
559};
560
09140113 561int do_sntp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
ea287deb
WD
562{
563 char *toff;
564
565 if (argc < 2) {
723806cc 566 net_ntp_server = env_get_ip("ntpserverip");
049a95a7 567 if (net_ntp_server.s_addr == 0) {
088f1b19 568 printf("ntpserverip not set\n");
85848f03 569 return CMD_RET_FAILURE;
ea287deb
WD
570 }
571 } else {
049a95a7
JH
572 net_ntp_server = string_to_ip(argv[1]);
573 if (net_ntp_server.s_addr == 0) {
088f1b19 574 printf("Bad NTP server IP address\n");
85848f03 575 return CMD_RET_FAILURE;
ea287deb
WD
576 }
577 }
578
00caae6d 579 toff = env_get("timeoffset");
088f1b19 580 if (toff == NULL)
bc0571fc 581 net_ntp_time_offset = 0;
088f1b19 582 else
bc0571fc 583 net_ntp_time_offset = simple_strtol(toff, NULL, 10);
ea287deb 584
912ece4c 585 if (udp_loop(&sntp_ops) < 0) {
d6840e3d 586 printf("SNTP failed: host %pI4 not responding\n",
4fd5055f 587 &net_ntp_server);
85848f03 588 return CMD_RET_FAILURE;
ea287deb
WD
589 }
590
85848f03 591 return CMD_RET_SUCCESS;
ea287deb
WD
592}
593
594U_BOOT_CMD(
595 sntp, 2, 1, do_sntp,
2fb2604d 596 "synchronize RTC via network",
ea287deb
WD
597 "[NTP server IP]\n"
598);
90253178 599#endif
1a32bf41
RG
600
601#if defined(CONFIG_CMD_DNS)
09140113 602int do_dns(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
1a32bf41 603{
47e26b1b 604 if (argc == 1)
4c12eeb8 605 return CMD_RET_USAGE;
1a32bf41
RG
606
607 /*
608 * We should check for a valid hostname:
609 * - Each label must be between 1 and 63 characters long
610 * - the entire hostname has a maximum of 255 characters
611 * - only the ASCII letters 'a' through 'z' (case-insensitive),
612 * the digits '0' through '9', and the hyphen
613 * - cannot begin or end with a hyphen
614 * - no other symbols, punctuation characters, or blank spaces are
615 * permitted
616 * but hey - this is a minimalist implmentation, so only check length
617 * and let the name server deal with things.
618 */
619 if (strlen(argv[1]) >= 255) {
620 printf("dns error: hostname too long\n");
85848f03 621 return CMD_RET_FAILURE;
1a32bf41
RG
622 }
623
786eac5f 624 net_dns_resolve = argv[1];
1a32bf41
RG
625
626 if (argc == 3)
786eac5f 627 net_dns_env_var = argv[2];
1a32bf41 628 else
786eac5f 629 net_dns_env_var = NULL;
1a32bf41 630
bc0571fc 631 if (net_loop(DNS) < 0) {
1a32bf41 632 printf("dns lookup of %s failed, check setup\n", argv[1]);
85848f03 633 return CMD_RET_FAILURE;
1a32bf41
RG
634 }
635
85848f03 636 return CMD_RET_SUCCESS;
1a32bf41
RG
637}
638
639U_BOOT_CMD(
640 dns, 3, 1, do_dns,
641 "lookup the IP of a hostname",
642 "hostname [envvar]"
643);
644
645#endif /* CONFIG_CMD_DNS */
d22c338e
JH
646
647#if defined(CONFIG_CMD_LINK_LOCAL)
09140113
SG
648static int do_link_local(struct cmd_tbl *cmdtp, int flag, int argc,
649 char *const argv[])
d22c338e
JH
650{
651 char tmp[22];
652
bc0571fc 653 if (net_loop(LINKLOCAL) < 0)
85848f03 654 return CMD_RET_FAILURE;
d22c338e 655
049a95a7
JH
656 net_gateway.s_addr = 0;
657 ip_to_string(net_gateway, tmp);
382bee57 658 env_set("gatewayip", tmp);
d22c338e 659
049a95a7 660 ip_to_string(net_netmask, tmp);
382bee57 661 env_set("netmask", tmp);
d22c338e 662
049a95a7 663 ip_to_string(net_ip, tmp);
382bee57
SG
664 env_set("ipaddr", tmp);
665 env_set("llipaddr", tmp); /* store this for next time */
d22c338e 666
85848f03 667 return CMD_RET_SUCCESS;
d22c338e
JH
668}
669
670U_BOOT_CMD(
671 linklocal, 1, 1, do_link_local,
672 "acquire a network IP address using the link-local protocol",
673 ""
674);
675
676#endif /* CONFIG_CMD_LINK_LOCAL */
This page took 0.724084 seconds and 4 git commands to generate.