]> Git Repo - u-boot.git/blame - cmd/net.c
cmd: fwu: Also print information about size
[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
100
bf6cb247 101#ifdef CONFIG_CMD_RARP
09140113 102int do_rarpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
3863585b 103{
088f1b19 104 return netboot_common(RARP, cmdtp, argc, argv);
3863585b
WD
105}
106
0d498393
WD
107U_BOOT_CMD(
108 rarpboot, 3, 1, do_rarpb,
2fb2604d 109 "boot image via network using RARP/TFTP protocol",
a89c33db 110 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 111);
bf6cb247 112#endif
8bde7f77 113
7d018892
SE
114#if defined(CONFIG_CMD_DHCP6)
115static int do_dhcp6(struct cmd_tbl *cmdtp, int flag, int argc,
116 char *const argv[])
117{
118 int i;
119 int dhcp_argc;
120 char *dhcp_argv[] = {NULL, NULL, NULL, NULL};
121
122 /* Add -ipv6 flag for autoload */
123 for (i = 0; i < argc; i++)
124 dhcp_argv[i] = argv[i];
125 dhcp_argc = argc + 1;
126 dhcp_argv[dhcp_argc - 1] = USE_IP6_CMD_PARAM;
127
128 return netboot_common(DHCP6, cmdtp, dhcp_argc, dhcp_argv);
129}
130
131U_BOOT_CMD(dhcp6, 3, 1, do_dhcp6,
132 "boot image via network using DHCPv6/TFTP protocol.\n"
133 "Use IPv6 hostIPaddr framed with [] brackets",
134 "[loadAddress] [[hostIPaddr:]bootfilename]");
135#endif
136
c76fe474 137#if defined(CONFIG_CMD_DHCP)
09140113
SG
138static int do_dhcp(struct cmd_tbl *cmdtp, int flag, int argc,
139 char *const argv[])
3863585b
WD
140{
141 return netboot_common(DHCP, cmdtp, argc, argv);
142}
8bde7f77 143
0d498393
WD
144U_BOOT_CMD(
145 dhcp, 3, 1, do_dhcp,
2fb2604d 146 "boot image via network using DHCP/TFTP protocol",
a89c33db 147 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 148);
c8c3fd24
SG
149
150int dhcp_run(ulong addr, const char *fname, bool autoload)
151{
152 char *dhcp_argv[] = {"dhcp", NULL, (char *)fname, NULL};
153 struct cmd_tbl cmdtp = {}; /* dummy */
154 char file_addr[17];
155 int old_autoload;
156 int ret, result;
157
158 log_debug("addr=%lx, fname=%s, autoload=%d\n", addr, fname, autoload);
159 old_autoload = env_get_yesno("autoload");
160 ret = env_set("autoload", autoload ? "y" : "n");
161 if (ret)
162 return log_msg_ret("en1", -EINVAL);
163
164 if (autoload) {
165 sprintf(file_addr, "%lx", addr);
166 dhcp_argv[1] = file_addr;
167 }
168
169 result = do_dhcp(&cmdtp, 0, !autoload ? 1 : fname ? 3 : 2, dhcp_argv);
170
171 ret = env_set("autoload", old_autoload == -1 ? NULL :
172 old_autoload ? "y" : "n");
173 if (ret)
174 return log_msg_ret("en2", -EINVAL);
175
176 if (result)
177 return log_msg_ret("res", -ENOENT);
178
179 return 0;
180}
90253178 181#endif
3863585b 182
c76fe474 183#if defined(CONFIG_CMD_NFS)
09140113
SG
184static int do_nfs(struct cmd_tbl *cmdtp, int flag, int argc,
185 char *const argv[])
cbd8a35c
WD
186{
187 return netboot_common(NFS, cmdtp, argc, argv);
188}
189
190U_BOOT_CMD(
191 nfs, 3, 1, do_nfs,
2fb2604d 192 "boot image via network using NFS protocol",
a89c33db 193 "[loadAddress] [[hostIPaddr:]bootfilename]"
cbd8a35c 194);
90253178 195#endif
cbd8a35c 196
cfbae482
YCLP
197#if defined(CONFIG_CMD_WGET)
198static int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
199{
200 return netboot_common(WGET, cmdtp, argc, argv);
201}
202
203U_BOOT_CMD(
204 wget, 3, 1, do_wget,
205 "boot image via network using HTTP protocol",
206 "[loadAddress] [[hostIPaddr:]path and image name]"
207);
208#endif
209
088f1b19 210static void netboot_update_env(void)
3863585b 211{
1b3117db 212 char tmp[46];
3863585b 213
049a95a7
JH
214 if (net_gateway.s_addr) {
215 ip_to_string(net_gateway, tmp);
382bee57 216 env_set("gatewayip", tmp);
6e592385 217 }
3863585b 218
049a95a7
JH
219 if (net_netmask.s_addr) {
220 ip_to_string(net_netmask, tmp);
382bee57 221 env_set("netmask", tmp);
6e592385 222 }
3863585b 223
808f13d8 224#ifdef CONFIG_CMD_BOOTP
586cbe51 225 if (net_hostname[0])
382bee57 226 env_set("hostname", net_hostname);
808f13d8 227#endif
3863585b 228
808f13d8 229#ifdef CONFIG_CMD_BOOTP
586cbe51 230 if (net_root_path[0])
382bee57 231 env_set("rootpath", net_root_path);
808f13d8 232#endif
3863585b 233
049a95a7
JH
234 if (net_ip.s_addr) {
235 ip_to_string(net_ip, tmp);
382bee57 236 env_set("ipaddr", tmp);
6e592385 237 }
a3e1a727 238 /*
ff78ad28 239 * Only attempt to change serverip if net/bootp.c:store_net_params()
a3e1a727
JH
240 * could have set it
241 */
43407539 242 if (!IS_ENABLED(CONFIG_BOOTP_SERVERIP) && net_server_ip.s_addr) {
049a95a7 243 ip_to_string(net_server_ip, tmp);
382bee57 244 env_set("serverip", tmp);
6e592385 245 }
049a95a7
JH
246 if (net_dns_server.s_addr) {
247 ip_to_string(net_dns_server, tmp);
382bee57 248 env_set("dnsip", tmp);
6e592385 249 }
1fe80d79 250#if defined(CONFIG_BOOTP_DNS2)
049a95a7
JH
251 if (net_dns_server2.s_addr) {
252 ip_to_string(net_dns_server2, tmp);
382bee57 253 env_set("dnsip2", tmp);
6e592385 254 }
fe389a82 255#endif
808f13d8 256#ifdef CONFIG_CMD_BOOTP
586cbe51 257 if (net_nis_domain[0])
382bee57 258 env_set("domain", net_nis_domain);
808f13d8 259#endif
ea287deb 260
4fd5055f 261#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
bc0571fc
JH
262 if (net_ntp_time_offset) {
263 sprintf(tmp, "%d", net_ntp_time_offset);
382bee57 264 env_set("timeoffset", tmp);
ea287deb
WD
265 }
266#endif
4fd5055f 267#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
049a95a7
JH
268 if (net_ntp_server.s_addr) {
269 ip_to_string(net_ntp_server, tmp);
382bee57 270 env_set("ntpserverip", tmp);
ea287deb
WD
271 }
272#endif
5e541c48
SE
273
274 if (IS_ENABLED(CONFIG_IPV6)) {
275 if (!ip6_is_unspecified_addr(&net_ip6) ||
276 net_prefix_length != 0) {
5e541c48 277 if (net_prefix_length != 0)
1b3117db
SE
278 snprintf(tmp, sizeof(tmp), "%pI6c/%d", &net_ip6, net_prefix_length);
279 else
280 snprintf(tmp, sizeof(tmp), "%pI6c", &net_ip6);
5e541c48
SE
281 env_set("ip6addr", tmp);
282 }
283
284 if (!ip6_is_unspecified_addr(&net_server_ip6)) {
1b3117db 285 snprintf(tmp, sizeof(tmp), "%pI6c", &net_server_ip6);
5e541c48
SE
286 env_set("serverip6", tmp);
287 }
288
289 if (!ip6_is_unspecified_addr(&net_gateway6)) {
1b3117db 290 snprintf(tmp, sizeof(tmp), "%pI6c", &net_gateway6);
5e541c48
SE
291 env_set("gatewayip6", tmp);
292 }
293 }
3863585b 294}
6e592385 295
5f46c6eb
HS
296/**
297 * parse_addr_size() - parse address and size arguments for tftpput
298 *
299 * @argv: command line arguments
300 * Return: 0 on success
301 */
302static int parse_addr_size(char * const argv[])
3863585b 303{
5f46c6eb
HS
304 if (strict_strtoul(argv[1], 16, &image_save_addr) < 0 ||
305 strict_strtoul(argv[2], 16, &image_save_size) < 0) {
306 printf("Invalid address/size\n");
307 return CMD_RET_USAGE;
308 }
309 return 0;
310}
449312c1 311
5f46c6eb
HS
312/**
313 * parse_args() - parse command line arguments
314 *
315 * @proto: command prototype
316 * @argc: number of arguments
317 * @argv: command line arguments
318 * Return: 0 on success
319 */
320static int parse_args(enum proto_t proto, int argc, char *const argv[])
321{
322 ulong addr;
323 char *end;
3863585b
WD
324
325 switch (argc) {
326 case 1:
b15a4af8 327 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT)
5f46c6eb
HS
328 return 1;
329
f43308fa
JH
330 /* refresh bootfile name from env */
331 copy_filename(net_boot_file_name, env_get("bootfile"),
332 sizeof(net_boot_file_name));
3863585b
WD
333 break;
334
5f46c6eb 335 case 2:
b15a4af8 336 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT)
5f46c6eb
HS
337 return 1;
338 /*
2e4970d8
PT
339 * Only one arg - accept two forms:
340 * Just load address, or just boot file name. The latter
341 * form must be written in a format which can not be
342 * mis-interpreted as a valid number.
3863585b 343 */
7e5f460e 344 addr = hextoul(argv[1], &end);
449312c1 345 if (end == (argv[1] + strlen(argv[1]))) {
bb872dd9 346 image_load_addr = addr;
f43308fa
JH
347 /* refresh bootfile name from env */
348 copy_filename(net_boot_file_name, env_get("bootfile"),
349 sizeof(net_boot_file_name));
449312c1
AG
350 } else {
351 net_boot_file_name_explicit = true;
1411157d
JH
352 copy_filename(net_boot_file_name, argv[1],
353 sizeof(net_boot_file_name));
449312c1 354 }
3863585b
WD
355 break;
356
4fd5055f 357 case 3:
b15a4af8 358 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT) {
5f46c6eb
HS
359 if (parse_addr_size(argv))
360 return 1;
361 } else {
362 image_load_addr = hextoul(argv[1], NULL);
363 net_boot_file_name_explicit = true;
364 copy_filename(net_boot_file_name, argv[2],
365 sizeof(net_boot_file_name));
366 }
3863585b
WD
367 break;
368
2d46cf29
SG
369#ifdef CONFIG_CMD_TFTPPUT
370 case 4:
5f46c6eb
HS
371 if (parse_addr_size(argv))
372 return 1;
449312c1 373 net_boot_file_name_explicit = true;
1411157d
JH
374 copy_filename(net_boot_file_name, argv[3],
375 sizeof(net_boot_file_name));
2d46cf29
SG
376 break;
377#endif
47e26b1b 378 default:
5f46c6eb
HS
379 return 1;
380 }
381 return 0;
382}
383
384static int netboot_common(enum proto_t proto, struct cmd_tbl *cmdtp, int argc,
385 char *const argv[])
386{
387 char *s;
388 int rcode = 0;
389 int size;
390
391 net_boot_file_name_explicit = false;
392 *net_boot_file_name = '\0';
393
394 /* pre-set image_load_addr */
395 s = env_get("loadaddr");
396 if (s != NULL)
397 image_load_addr = hextoul(s, NULL);
398
7fbf230d
VM
399 if (IS_ENABLED(CONFIG_IPV6)) {
400 use_ip6 = false;
401
402 /* IPv6 parameter has to be always *last* */
403 if (!strcmp(argv[argc - 1], USE_IP6_CMD_PARAM)) {
404 use_ip6 = true;
405 /* It is a hack not to break switch/case code */
406 --argc;
407 }
408 }
409
5f46c6eb 410 if (parse_args(proto, argc, argv)) {
770605e4 411 bootstage_error(BOOTSTAGE_ID_NET_START);
4c12eeb8 412 return CMD_RET_USAGE;
3863585b 413 }
5f46c6eb 414
770605e4 415 bootstage_mark(BOOTSTAGE_ID_NET_START);
3863585b 416
7fbf230d
VM
417 if (IS_ENABLED(CONFIG_IPV6) && !use_ip6) {
418 char *s, *e;
419 size_t len;
420
421 s = strchr(net_boot_file_name, '[');
422 e = strchr(net_boot_file_name, ']');
423 if (s && e) {
424 len = e - s;
425 if (!string_to_ip6(s + 1, len - 1, &net_server_ip6))
426 use_ip6 = true;
427 }
428 }
429
bc0571fc 430 size = net_loop(proto);
4fd5055f 431 if (size < 0) {
770605e4 432 bootstage_error(BOOTSTAGE_ID_NET_NETLOOP_OK);
85848f03 433 return CMD_RET_FAILURE;
566a494f 434 }
770605e4 435 bootstage_mark(BOOTSTAGE_ID_NET_NETLOOP_OK);
3863585b 436
bc0571fc 437 /* net_loop ok, update environment */
3863585b
WD
438 netboot_update_env();
439
eb9401e3 440 /* done if no file was loaded (no errors though) */
566a494f 441 if (size == 0) {
770605e4 442 bootstage_error(BOOTSTAGE_ID_NET_LOADED);
85848f03 443 return CMD_RET_SUCCESS;
566a494f 444 }
eb9401e3 445
770605e4 446 bootstage_mark(BOOTSTAGE_ID_NET_LOADED);
c8e66db7 447
67d668bf 448 rcode = bootm_maybe_autostart(cmdtp, argv[0]);
3863585b 449
85848f03 450 if (rcode == CMD_RET_SUCCESS)
770605e4 451 bootstage_mark(BOOTSTAGE_ID_NET_DONE);
85848f03
JH
452 else
453 bootstage_error(BOOTSTAGE_ID_NET_DONE_ERR);
3863585b
WD
454 return rcode;
455}
456
c76fe474 457#if defined(CONFIG_CMD_PING)
09140113
SG
458static int do_ping(struct cmd_tbl *cmdtp, int flag, int argc,
459 char *const argv[])
73a8b27c
WD
460{
461 if (argc < 2)
85848f03 462 return CMD_RET_USAGE;
73a8b27c 463
049a95a7
JH
464 net_ping_ip = string_to_ip(argv[1]);
465 if (net_ping_ip.s_addr == 0)
4c12eeb8 466 return CMD_RET_USAGE;
73a8b27c 467
bc0571fc 468 if (net_loop(PING) < 0) {
73a8b27c 469 printf("ping failed; host %s is not alive\n", argv[1]);
85848f03 470 return CMD_RET_FAILURE;
73a8b27c
WD
471 }
472
473 printf("host %s is alive\n", argv[1]);
474
85848f03 475 return CMD_RET_SUCCESS;
73a8b27c 476}
6dff5529
WD
477
478U_BOOT_CMD(
479 ping, 2, 1, do_ping,
2fb2604d 480 "send ICMP ECHO_REQUEST to network host",
a89c33db 481 "pingAddress"
6dff5529 482);
90253178 483#endif
73a8b27c 484
eeb0a2c6
VM
485#if IS_ENABLED(CONFIG_CMD_PING6)
486int do_ping6(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
487{
488 if (string_to_ip6(argv[1], strlen(argv[1]), &net_ping_ip6))
489 return CMD_RET_USAGE;
490
491 use_ip6 = true;
492 if (net_loop(PING6) < 0) {
493 use_ip6 = false;
494 printf("ping6 failed; host %pI6c is not alive\n",
495 &net_ping_ip6);
496 return 1;
497 }
498
499 use_ip6 = false;
500 printf("host %pI6c is alive\n", &net_ping_ip6);
501 return 0;
502}
503
504U_BOOT_CMD(
505 ping6, 2, 1, do_ping6,
506 "send ICMPv6 ECHO_REQUEST to network host",
507 "pingAddress"
508);
509#endif /* CONFIG_CMD_PING6 */
510
c76fe474 511#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
512
513static void cdp_update_env(void)
514{
515 char tmp[16];
516
6aede5b7
JH
517 if (cdp_appliance_vlan != htons(-1)) {
518 printf("CDP offered appliance VLAN %d\n",
519 ntohs(cdp_appliance_vlan));
4fd5055f 520 vlan_to_string(cdp_appliance_vlan, tmp);
382bee57 521 env_set("vlan", tmp);
4fd5055f 522 net_our_vlan = cdp_appliance_vlan;
a3d991bd
WD
523 }
524
6aede5b7
JH
525 if (cdp_native_vlan != htons(-1)) {
526 printf("CDP offered native VLAN %d\n", ntohs(cdp_native_vlan));
4fd5055f 527 vlan_to_string(cdp_native_vlan, tmp);
382bee57 528 env_set("nvlan", tmp);
4fd5055f 529 net_native_vlan = cdp_native_vlan;
a3d991bd 530 }
a3d991bd
WD
531}
532
09140113 533int do_cdp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
a3d991bd
WD
534{
535 int r;
536
bc0571fc 537 r = net_loop(CDP);
a3d991bd
WD
538 if (r < 0) {
539 printf("cdp failed; perhaps not a CISCO switch?\n");
85848f03 540 return CMD_RET_FAILURE;
a3d991bd
WD
541 }
542
543 cdp_update_env();
544
85848f03 545 return CMD_RET_SUCCESS;
a3d991bd
WD
546}
547
548U_BOOT_CMD(
549 cdp, 1, 1, do_cdp,
ec5c04cd 550 "Perform CDP network configuration",
4b58266e 551 "\n"
a3d991bd 552);
90253178 553#endif
a3d991bd 554
c76fe474 555#if defined(CONFIG_CMD_SNTP)
912ece4c
PR
556static struct udp_ops sntp_ops = {
557 .prereq = sntp_prereq,
558 .start = sntp_start,
559 .data = NULL,
560};
561
09140113 562int do_sntp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
ea287deb
WD
563{
564 char *toff;
565
566 if (argc < 2) {
723806cc 567 net_ntp_server = env_get_ip("ntpserverip");
049a95a7 568 if (net_ntp_server.s_addr == 0) {
088f1b19 569 printf("ntpserverip not set\n");
85848f03 570 return CMD_RET_FAILURE;
ea287deb
WD
571 }
572 } else {
049a95a7
JH
573 net_ntp_server = string_to_ip(argv[1]);
574 if (net_ntp_server.s_addr == 0) {
088f1b19 575 printf("Bad NTP server IP address\n");
85848f03 576 return CMD_RET_FAILURE;
ea287deb
WD
577 }
578 }
579
00caae6d 580 toff = env_get("timeoffset");
088f1b19 581 if (toff == NULL)
bc0571fc 582 net_ntp_time_offset = 0;
088f1b19 583 else
bc0571fc 584 net_ntp_time_offset = simple_strtol(toff, NULL, 10);
ea287deb 585
912ece4c 586 if (udp_loop(&sntp_ops) < 0) {
d6840e3d 587 printf("SNTP failed: host %pI4 not responding\n",
4fd5055f 588 &net_ntp_server);
85848f03 589 return CMD_RET_FAILURE;
ea287deb
WD
590 }
591
85848f03 592 return CMD_RET_SUCCESS;
ea287deb
WD
593}
594
595U_BOOT_CMD(
596 sntp, 2, 1, do_sntp,
2fb2604d 597 "synchronize RTC via network",
ea287deb
WD
598 "[NTP server IP]\n"
599);
90253178 600#endif
1a32bf41
RG
601
602#if defined(CONFIG_CMD_DNS)
09140113 603int do_dns(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
1a32bf41 604{
47e26b1b 605 if (argc == 1)
4c12eeb8 606 return CMD_RET_USAGE;
1a32bf41
RG
607
608 /*
609 * We should check for a valid hostname:
610 * - Each label must be between 1 and 63 characters long
611 * - the entire hostname has a maximum of 255 characters
612 * - only the ASCII letters 'a' through 'z' (case-insensitive),
613 * the digits '0' through '9', and the hyphen
614 * - cannot begin or end with a hyphen
615 * - no other symbols, punctuation characters, or blank spaces are
616 * permitted
617 * but hey - this is a minimalist implmentation, so only check length
618 * and let the name server deal with things.
619 */
620 if (strlen(argv[1]) >= 255) {
621 printf("dns error: hostname too long\n");
85848f03 622 return CMD_RET_FAILURE;
1a32bf41
RG
623 }
624
786eac5f 625 net_dns_resolve = argv[1];
1a32bf41
RG
626
627 if (argc == 3)
786eac5f 628 net_dns_env_var = argv[2];
1a32bf41 629 else
786eac5f 630 net_dns_env_var = NULL;
1a32bf41 631
bc0571fc 632 if (net_loop(DNS) < 0) {
1a32bf41 633 printf("dns lookup of %s failed, check setup\n", argv[1]);
85848f03 634 return CMD_RET_FAILURE;
1a32bf41
RG
635 }
636
85848f03 637 return CMD_RET_SUCCESS;
1a32bf41
RG
638}
639
640U_BOOT_CMD(
641 dns, 3, 1, do_dns,
642 "lookup the IP of a hostname",
643 "hostname [envvar]"
644);
645
646#endif /* CONFIG_CMD_DNS */
d22c338e
JH
647
648#if defined(CONFIG_CMD_LINK_LOCAL)
09140113
SG
649static int do_link_local(struct cmd_tbl *cmdtp, int flag, int argc,
650 char *const argv[])
d22c338e
JH
651{
652 char tmp[22];
653
bc0571fc 654 if (net_loop(LINKLOCAL) < 0)
85848f03 655 return CMD_RET_FAILURE;
d22c338e 656
049a95a7
JH
657 net_gateway.s_addr = 0;
658 ip_to_string(net_gateway, tmp);
382bee57 659 env_set("gatewayip", tmp);
d22c338e 660
049a95a7 661 ip_to_string(net_netmask, tmp);
382bee57 662 env_set("netmask", tmp);
d22c338e 663
049a95a7 664 ip_to_string(net_ip, tmp);
382bee57
SG
665 env_set("ipaddr", tmp);
666 env_set("llipaddr", tmp); /* store this for next time */
d22c338e 667
85848f03 668 return CMD_RET_SUCCESS;
d22c338e
JH
669}
670
671U_BOOT_CMD(
672 linklocal, 1, 1, do_link_local,
673 "acquire a network IP address using the link-local protocol",
674 ""
675);
676
677#endif /* CONFIG_CMD_LINK_LOCAL */
8a3987f4 678
8a3987f4
TH
679static int do_net_list(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
680{
681 const struct udevice *current = eth_get_dev();
682 unsigned char env_enetaddr[ARP_HLEN];
683 const struct udevice *dev;
684 struct uclass *uc;
685
686 uclass_id_foreach_dev(UCLASS_ETH, dev, uc) {
687 eth_env_get_enetaddr_by_index("eth", dev_seq(dev), env_enetaddr);
688 printf("eth%d : %s %pM %s\n", dev_seq(dev), dev->name, env_enetaddr,
689 current == dev ? "active" : "");
690 }
691 return CMD_RET_SUCCESS;
692}
693
c85e96d0
IC
694static int do_net_stats(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
695{
696 int nstats, err, i, off;
697 struct udevice *dev;
698 u64 *values;
699 u8 *strings;
700
701 if (argc < 2)
702 return CMD_RET_USAGE;
703
704 err = uclass_get_device_by_name(UCLASS_ETH, argv[1], &dev);
705 if (err) {
706 printf("Could not find device %s\n", argv[1]);
707 return CMD_RET_FAILURE;
708 }
709
710 if (!eth_get_ops(dev)->get_sset_count ||
711 !eth_get_ops(dev)->get_strings ||
712 !eth_get_ops(dev)->get_stats) {
713 printf("Driver does not implement stats dump!\n");
714 return CMD_RET_FAILURE;
715 }
716
717 nstats = eth_get_ops(dev)->get_sset_count(dev);
718 strings = kcalloc(nstats, ETH_GSTRING_LEN, GFP_KERNEL);
719 if (!strings)
720 return CMD_RET_FAILURE;
721
722 values = kcalloc(nstats, sizeof(u64), GFP_KERNEL);
723 if (!values)
724 goto err_free_strings;
725
726 eth_get_ops(dev)->get_strings(dev, strings);
727 eth_get_ops(dev)->get_stats(dev, values);
728
729 off = 0;
730 for (i = 0; i < nstats; i++) {
731 printf(" %s: %llu\n", &strings[off], values[i]);
732 off += ETH_GSTRING_LEN;
733 };
734
735 return CMD_RET_SUCCESS;
736
737err_free_strings:
738 kfree(strings);
739
740 return CMD_RET_FAILURE;
741}
742
8a3987f4
TH
743static struct cmd_tbl cmd_net[] = {
744 U_BOOT_CMD_MKENT(list, 1, 0, do_net_list, "", ""),
c85e96d0 745 U_BOOT_CMD_MKENT(stats, 2, 0, do_net_stats, "", ""),
8a3987f4
TH
746};
747
748static int do_net(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
749{
750 struct cmd_tbl *cp;
751
752 cp = find_cmd_tbl(argv[1], cmd_net, ARRAY_SIZE(cmd_net));
753
754 /* Drop the net command */
755 argc--;
756 argv++;
757
758 if (!cp || argc > cp->maxargs)
759 return CMD_RET_USAGE;
760 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
761 return CMD_RET_SUCCESS;
762
763 return cp->cmd(cmdtp, flag, argc, argv);
764}
765
766U_BOOT_CMD(
c85e96d0 767 net, 3, 1, do_net,
8a3987f4
TH
768 "NET sub-system",
769 "list - list available devices\n"
c85e96d0 770 "stats <device> - dump statistics for specified device\n"
8a3987f4 771);
4b290d4a
SMJ
772
773#if defined(CONFIG_CMD_NCSI)
774static int do_ncsi(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
775{
776 if (!phy_interface_is_ncsi() || !ncsi_active()) {
777 printf("Device not configured for NC-SI\n");
778 return CMD_RET_FAILURE;
779 }
780
781 if (net_loop(NCSI) < 0)
782 return CMD_RET_FAILURE;
783
784 return CMD_RET_SUCCESS;
785}
786
787U_BOOT_CMD(
788 ncsi, 1, 1, do_ncsi,
789 "Configure attached NIC via NC-SI",
790 ""
791);
792#endif /* CONFIG_CMD_NCSI */
This page took 0.504546 seconds and 4 git commands to generate.