]> Git Repo - u-boot.git/blame - net/net.c
net: mvneta: zero Tx descriptors on init
[u-boot.git] / net / net.c
CommitLineData
f739fcd8 1// SPDX-License-Identifier: GPL-2.0
2d966958
WD
2/*
3 * Copied from Linux Monitor (LiMon) - Networking.
4 *
5 * Copyright 1994 - 2000 Neil Russell.
6 * (See License)
7 * Copyright 2000 Roland Borde
8 * Copyright 2000 Paolo Scaffardi
9 * Copyright 2000-2002 Wolfgang Denk, [email protected]
10 */
11
12/*
13 * General Desription:
14 *
15 * The user interface supports commands for BOOTP, RARP, and TFTP.
16 * Also, we support ARP internally. Depending on available data,
17 * these interact as follows:
18 *
19 * BOOTP:
20 *
21 * Prerequisites: - own ethernet address
22 * We want: - own IP address
23 * - TFTP server IP address
24 * - name of bootfile
25 * Next step: ARP
26 *
d22c338e
JH
27 * LINK_LOCAL:
28 *
29 * Prerequisites: - own ethernet address
30 * We want: - own IP address
31 * Next step: ARP
32 *
2d966958
WD
33 * RARP:
34 *
35 * Prerequisites: - own ethernet address
36 * We want: - own IP address
37 * - TFTP server IP address
38 * Next step: ARP
39 *
40 * ARP:
41 *
42 * Prerequisites: - own ethernet address
43 * - own IP address
44 * - TFTP server IP address
45 * We want: - TFTP server ethernet address
46 * Next step: TFTP
47 *
48 * DHCP:
49 *
b2f50807
WD
50 * Prerequisites: - own ethernet address
51 * We want: - IP, Netmask, ServerIP, Gateway IP
52 * - bootfilename, lease time
53 * Next step: - TFTP
2d966958
WD
54 *
55 * TFTP:
56 *
57 * Prerequisites: - own ethernet address
58 * - own IP address
59 * - TFTP server IP address
60 * - TFTP server ethernet address
61 * - name of bootfile (if unknown, we use a default name
62 * derived from our own IP address)
63 * We want: - load the boot file
64 * Next step: none
cbd8a35c
WD
65 *
66 * NFS:
67 *
68 * Prerequisites: - own ethernet address
69 * - own IP address
70 * - name of bootfile (if unknown, we use a default name
71 * derived from our own IP address)
72 * We want: - load the boot file
73 * Next step: none
ea287deb
WD
74 *
75 * SNTP:
76 *
b2f50807 77 * Prerequisites: - own ethernet address
ea287deb
WD
78 * - own IP address
79 * We want: - network time
80 * Next step: none
2d966958
WD
81 */
82
83
84#include <common.h>
2d966958 85#include <command.h>
24b852a7 86#include <console.h>
a9f51c9b 87#include <environment.h>
60304592 88#include <errno.h>
2d966958 89#include <net.h>
f73a7df9 90#include <net/fastboot.h>
34696958 91#include <net/tftp.h>
2d8d190c 92#if defined(CONFIG_LED_STATUS)
fc3e2165 93#include <miiphy.h>
4545f4e6 94#include <status_led.h>
fc3e2165 95#endif
4545f4e6
JH
96#include <watchdog.h>
97#include <linux/compiler.h>
98#include "arp.h"
99#include "bootp.h"
f575ae1f 100#include "cdp.h"
1a32bf41
RG
101#if defined(CONFIG_CMD_DNS)
102#include "dns.h"
103#endif
d22c338e 104#include "link_local.h"
4545f4e6 105#include "nfs.h"
a36b12f9 106#include "ping.h"
4545f4e6
JH
107#include "rarp.h"
108#if defined(CONFIG_CMD_SNTP)
109#include "sntp.h"
110#endif
2d966958 111
2d966958
WD
112/** BOOTP EXTENTIONS **/
113
3e38e429 114/* Our subnet mask (0=unknown) */
049a95a7 115struct in_addr net_netmask;
3e38e429 116/* Our gateways IP address */
049a95a7 117struct in_addr net_gateway;
3e38e429 118/* Our DNS IP address */
049a95a7 119struct in_addr net_dns_server;
1fe80d79 120#if defined(CONFIG_BOOTP_DNS2)
3e38e429 121/* Our 2nd DNS IP address */
049a95a7 122struct in_addr net_dns_server2;
3e38e429 123#endif
2d966958 124
53a5c424 125#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
049a95a7 126struct in_addr net_mcast_addr;
53a5c424
DU
127#endif
128
2d966958
WD
129/** END OF BOOTP EXTENTIONS **/
130
3e38e429 131/* Our ethernet address */
0adb5b76 132u8 net_ethaddr[6];
3e38e429 133/* Boot server enet address */
0adb5b76 134u8 net_server_ethaddr[6];
3e38e429 135/* Our IP addr (0 = unknown) */
049a95a7 136struct in_addr net_ip;
3e38e429 137/* Server IP addr (0 = unknown) */
049a95a7 138struct in_addr net_server_ip;
3e38e429 139/* Current receive packet */
1203fcce 140uchar *net_rx_packet;
3e38e429 141/* Current rx packet length */
1203fcce 142int net_rx_packet_len;
3e38e429 143/* IP packet ID */
bc0571fc 144static unsigned net_ip_id;
3e38e429 145/* Ethernet bcast address */
0adb5b76
JH
146const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
147const u8 net_null_ethaddr[6];
0efe1bcf 148#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
bc0571fc 149void (*push_packet)(void *, int len) = 0;
f85b6071 150#endif
3e38e429 151/* Network loop state */
22f6e99d 152enum net_loop_state net_state;
3e38e429 153/* Tried all network devices */
bc0571fc 154int net_restart_wrap;
3e38e429 155/* Network loop restarted */
bc0571fc 156static int net_restarted;
3e38e429 157/* At least one device configured */
bc0571fc 158static int net_dev_exists;
2d966958 159
6e592385 160/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
3e38e429 161/* default is without VLAN */
4fd5055f 162ushort net_our_vlan = 0xFFFF;
3e38e429 163/* ditto */
4fd5055f 164ushort net_native_vlan = 0xFFFF;
a3d991bd 165
3e38e429 166/* Boot File name */
11a69ff8 167char net_boot_file_name[1024];
1411157d
JH
168/* The actual transferred size of the bootfile (in bytes) */
169u32 net_boot_file_size;
170/* Boot file size in blocks as reported by the DHCP server */
171u32 net_boot_file_expected_size_in_blocks;
2d966958 172
643d1ab2 173#if defined(CONFIG_CMD_SNTP)
3e38e429 174/* NTP server IP address */
049a95a7 175struct in_addr net_ntp_server;
3e38e429 176/* offset time from UTC */
bc0571fc 177int net_ntp_time_offset;
ea287deb
WD
178#endif
179
1203fcce 180static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
2a504df0
JH
181/* Receive packets */
182uchar *net_rx_packets[PKTBUFSRX];
ece223b5
JH
183/* Current UDP RX packet handler */
184static rxhand_f *udp_packet_handler;
185/* Current ARP RX packet handler */
186static rxhand_f *arp_packet_handler;
39bccd21 187#ifdef CONFIG_CMD_TFTPPUT
ece223b5
JH
188/* Current ICMP rx handler */
189static rxhand_icmp_f *packet_icmp_handler;
39bccd21 190#endif
3e38e429 191/* Current timeout handler */
bc0571fc 192static thand_f *time_handler;
3e38e429 193/* Time base value */
bc0571fc 194static ulong time_start;
3e38e429 195/* Current timeout value */
bc0571fc 196static ulong time_delta;
3e38e429 197/* THE transmit packet */
1203fcce 198uchar *net_tx_packet;
2d966958 199
e4bf0c5c 200static int net_check_prereq(enum proto_t protocol);
2d966958 201
bc0571fc 202static int net_try_count;
67b96e87 203
b63056d6
JL
204int __maybe_unused net_busy_flag;
205
73a8b27c
WD
206/**********************************************************************/
207
a9f51c9b
JH
208static int on_bootfile(const char *name, const char *value, enum env_op op,
209 int flags)
210{
fd305633
JH
211 if (flags & H_PROGRAMMATIC)
212 return 0;
213
a9f51c9b
JH
214 switch (op) {
215 case env_op_create:
216 case env_op_overwrite:
1411157d
JH
217 copy_filename(net_boot_file_name, value,
218 sizeof(net_boot_file_name));
a9f51c9b
JH
219 break;
220 default:
221 break;
222 }
223
224 return 0;
225}
226U_BOOT_ENV_CALLBACK(bootfile, on_bootfile);
227
fd305633
JH
228static int on_ipaddr(const char *name, const char *value, enum env_op op,
229 int flags)
230{
231 if (flags & H_PROGRAMMATIC)
232 return 0;
233
234 net_ip = string_to_ip(value);
235
236 return 0;
237}
238U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
239
240static int on_gatewayip(const char *name, const char *value, enum env_op op,
241 int flags)
242{
243 if (flags & H_PROGRAMMATIC)
244 return 0;
245
246 net_gateway = string_to_ip(value);
247
248 return 0;
249}
250U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
251
252static int on_netmask(const char *name, const char *value, enum env_op op,
253 int flags)
254{
255 if (flags & H_PROGRAMMATIC)
256 return 0;
257
258 net_netmask = string_to_ip(value);
259
260 return 0;
261}
262U_BOOT_ENV_CALLBACK(netmask, on_netmask);
263
264static int on_serverip(const char *name, const char *value, enum env_op op,
265 int flags)
266{
267 if (flags & H_PROGRAMMATIC)
268 return 0;
269
270 net_server_ip = string_to_ip(value);
271
272 return 0;
273}
274U_BOOT_ENV_CALLBACK(serverip, on_serverip);
275
276static int on_nvlan(const char *name, const char *value, enum env_op op,
277 int flags)
278{
279 if (flags & H_PROGRAMMATIC)
280 return 0;
281
282 net_native_vlan = string_to_vlan(value);
283
284 return 0;
285}
286U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
287
288static int on_vlan(const char *name, const char *value, enum env_op op,
289 int flags)
290{
291 if (flags & H_PROGRAMMATIC)
292 return 0;
293
294 net_our_vlan = string_to_vlan(value);
295
296 return 0;
297}
298U_BOOT_ENV_CALLBACK(vlan, on_vlan);
299
300#if defined(CONFIG_CMD_DNS)
301static int on_dnsip(const char *name, const char *value, enum env_op op,
302 int flags)
303{
304 if (flags & H_PROGRAMMATIC)
305 return 0;
306
307 net_dns_server = string_to_ip(value);
308
309 return 0;
310}
311U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
312#endif
313
e4a3d57d
SG
314/*
315 * Check if autoload is enabled. If so, use either NFS or TFTP to download
316 * the boot file.
317 */
318void net_auto_load(void)
319{
ec8a252c 320#if defined(CONFIG_CMD_NFS)
00caae6d 321 const char *s = env_get("autoload");
e4a3d57d 322
ec8a252c
JH
323 if (s != NULL && strcmp(s, "NFS") == 0) {
324 /*
325 * Use NFS to load the bootfile.
326 */
68c76a3a 327 nfs_start();
ec8a252c
JH
328 return;
329 }
e4a3d57d 330#endif
bfebc8c9 331 if (env_get_yesno("autoload") == 0) {
ec8a252c
JH
332 /*
333 * Just use BOOTP/RARP to configure system;
334 * Do not use TFTP to load the bootfile.
335 */
336 net_set_state(NETLOOP_SUCCESS);
337 return;
e4a3d57d 338 }
8885c5fe 339 tftp_start(TFTPGET);
e4a3d57d
SG
340}
341
bc0571fc 342static void net_init_loop(void)
2f70c49e 343{
7315cfd9 344 if (eth_get_dev())
0adb5b76 345 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
3c172c4f 346
da95427c 347 return;
2f70c49e
HS
348}
349
ece223b5
JH
350static void net_clear_handlers(void)
351{
352 net_set_udp_handler(NULL);
353 net_set_arp_handler(NULL);
bc0571fc 354 net_set_timeout_handler(0, NULL);
ece223b5
JH
355}
356
357static void net_cleanup_loop(void)
358{
359 net_clear_handlers();
360}
361
46c495d5
JH
362void net_init(void)
363{
364 static int first_call = 1;
365
366 if (first_call) {
367 /*
368 * Setup packet buffers, aligned correctly.
369 */
370 int i;
371
1203fcce
JH
372 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
373 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
2a504df0 374 for (i = 0; i < PKTBUFSRX; i++) {
1203fcce
JH
375 net_rx_packets[i] = net_tx_packet +
376 (i + 1) * PKTSIZE_ALIGN;
2a504df0 377 }
85d25e0e 378 arp_init();
46c495d5
JH
379 net_clear_handlers();
380
381 /* Only need to setup buffer pointers once. */
382 first_call = 0;
383 }
384
bc0571fc 385 net_init_loop();
46c495d5
JH
386}
387
2d966958
WD
388/**********************************************************************/
389/*
390 * Main network processing loop.
391 */
392
bc0571fc 393int net_loop(enum proto_t protocol)
2d966958 394{
60304592 395 int ret = -EINVAL;
60177b26 396 enum net_loop_state prev_net_state = net_state;
2d966958 397
bc0571fc
JH
398 net_restarted = 0;
399 net_dev_exists = 0;
400 net_try_count = 1;
401 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
73a8b27c 402
573f14fe 403 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
46c495d5 404 net_init();
f8be7d65 405 if (eth_is_on_demand_init() || protocol != NETCONS) {
b1bf6f2c 406 eth_halt();
f8be7d65 407 eth_set_current();
60304592
JH
408 ret = eth_init();
409 if (ret < 0) {
f8be7d65 410 eth_halt();
60304592 411 return ret;
f8be7d65 412 }
bc0571fc 413 } else {
d2eaec60 414 eth_init_state_only();
bc0571fc 415 }
2d966958 416restart:
b63056d6
JL
417#ifdef CONFIG_USB_KEYBOARD
418 net_busy_flag = 0;
419#endif
22f6e99d 420 net_set_state(NETLOOP_CONTINUE);
2d966958
WD
421
422 /*
423 * Start the ball rolling with the given start function. From
424 * here on, this code is a state machine driven by received
425 * packets and timer events.
426 */
bc0571fc
JH
427 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
428 net_init_loop();
2d966958 429
4f63acd0 430 switch (net_check_prereq(protocol)) {
2d966958
WD
431 case 1:
432 /* network not configured */
b1bf6f2c 433 eth_halt();
60177b26 434 net_set_state(prev_net_state);
60304592 435 return -ENODEV;
2d966958 436
2d966958
WD
437 case 2:
438 /* network device not configured */
439 break;
2d966958
WD
440
441 case 0:
bc0571fc 442 net_dev_exists = 1;
1411157d 443 net_boot_file_size = 0;
2d966958 444 switch (protocol) {
e4bf0c5c 445 case TFTPGET:
1fb7cd49
SG
446#ifdef CONFIG_CMD_TFTPPUT
447 case TFTPPUT:
448#endif
2d966958 449 /* always use ARP to get server ethernet address */
8885c5fe 450 tftp_start(protocol);
2d966958 451 break;
7a83af07
LC
452#ifdef CONFIG_CMD_TFTPSRV
453 case TFTPSRV:
8885c5fe 454 tftp_start_server();
7a83af07
LC
455 break;
456#endif
f73a7df9
AK
457#ifdef CONFIG_UDP_FUNCTION_FASTBOOT
458 case FASTBOOT:
459 fastboot_start_server();
460 break;
461#endif
643d1ab2 462#if defined(CONFIG_CMD_DHCP)
2d966958 463 case DHCP:
7044c6bb 464 bootp_reset();
049a95a7 465 net_ip.s_addr = 0;
7044c6bb 466 dhcp_request(); /* Basically same as BOOTP */
2d966958 467 break;
610f2e9c 468#endif
2d966958
WD
469
470 case BOOTP:
7044c6bb 471 bootp_reset();
049a95a7 472 net_ip.s_addr = 0;
7044c6bb 473 bootp_request();
2d966958
WD
474 break;
475
bf6cb247 476#if defined(CONFIG_CMD_RARP)
2d966958 477 case RARP:
698d78e5 478 rarp_try = 0;
049a95a7 479 net_ip.s_addr = 0;
698d78e5 480 rarp_request();
2d966958 481 break;
bf6cb247 482#endif
643d1ab2 483#if defined(CONFIG_CMD_PING)
73a8b27c 484 case PING:
a36b12f9 485 ping_start();
73a8b27c 486 break;
cbd8a35c 487#endif
643d1ab2 488#if defined(CONFIG_CMD_NFS)
cbd8a35c 489 case NFS:
68c76a3a 490 nfs_start();
cbd8a35c 491 break;
a3d991bd 492#endif
643d1ab2 493#if defined(CONFIG_CMD_CDP)
a3d991bd 494 case CDP:
6aede5b7 495 cdp_start();
a3d991bd 496 break;
68ceb29e 497#endif
66c89ee3 498#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
68ceb29e 499 case NETCONS:
6a38a5f3 500 nc_start();
68ceb29e 501 break;
ea287deb 502#endif
643d1ab2 503#if defined(CONFIG_CMD_SNTP)
ea287deb 504 case SNTP:
38ba2558 505 sntp_start();
ea287deb 506 break;
1a32bf41
RG
507#endif
508#if defined(CONFIG_CMD_DNS)
509 case DNS:
786eac5f 510 dns_start();
1a32bf41 511 break;
d22c338e
JH
512#endif
513#if defined(CONFIG_CMD_LINK_LOCAL)
514 case LINKLOCAL:
515 link_local_start();
516 break;
73a8b27c 517#endif
2d966958
WD
518 default:
519 break;
520 }
521
2d966958
WD
522 break;
523 }
524
643d1ab2 525#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
3e38e429 526#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
2d8d190c
UM
527 defined(CONFIG_LED_STATUS) && \
528 defined(CONFIG_LED_STATUS_RED)
fc3e2165 529 /*
42d1f039 530 * Echo the inverted link state to the fault LED.
fc3e2165 531 */
d3c65b01 532 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
2d8d190c 533 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
d3c65b01 534 else
2d8d190c 535 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
6d0f6bcf 536#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
fc3e2165 537#endif /* CONFIG_MII, ... */
b63056d6
JL
538#ifdef CONFIG_USB_KEYBOARD
539 net_busy_flag = 1;
540#endif
2d966958
WD
541
542 /*
543 * Main packet reception loop. Loop receiving packets until
22f6e99d 544 * someone sets `net_state' to a state that terminates.
2d966958
WD
545 */
546 for (;;) {
547 WATCHDOG_RESET();
548#ifdef CONFIG_SHOW_ACTIVITY
48522bb5 549 show_activity(1);
2d966958 550#endif
c5a75339
JH
551 if (arp_timeout_check() > 0)
552 time_start = get_timer(0);
553
2d966958
WD
554 /*
555 * Check the ethernet for a new packet. The ethernet
556 * receive routine will process it.
60304592
JH
557 * Most drivers return the most recent packet size, but not
558 * errors that may have happened.
2d966958 559 */
40cb90ee 560 eth_rx();
2d966958
WD
561
562 /*
563 * Abort if ctrl-c was pressed.
564 */
565 if (ctrlc()) {
e94070c4 566 /* cancel any ARP that may not have completed */
049a95a7 567 net_arp_wait_packet_ip.s_addr = 0;
e94070c4 568
ece223b5 569 net_cleanup_loop();
8bde7f77 570 eth_halt();
f8be7d65
JH
571 /* Invalidate the last protocol */
572 eth_set_last_protocol(BOOTP);
573
4f63acd0 574 puts("\nAbort\n");
4ef8d53c
JH
575 /* include a debug print as well incase the debug
576 messages are directed to stderr */
bc0571fc 577 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
19a4fbaa 578 ret = -EINTR;
4793ee65 579 goto done;
2d966958
WD
580 }
581
2d966958
WD
582 /*
583 * Check for a timeout, and run the timeout handler
584 * if we have one.
585 */
bc0571fc
JH
586 if (time_handler &&
587 ((get_timer(0) - time_start) > time_delta)) {
2d966958
WD
588 thand_f *x;
589
643d1ab2 590#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
4f63acd0 591#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
2d8d190c
UM
592 defined(CONFIG_LED_STATUS) && \
593 defined(CONFIG_LED_STATUS_RED)
fc3e2165 594 /*
42d1f039 595 * Echo the inverted link state to the fault LED.
fc3e2165 596 */
4f63acd0 597 if (miiphy_link(eth_get_dev()->name,
bc0571fc 598 CONFIG_SYS_FAULT_MII_ADDR))
2d8d190c
UM
599 status_led_set(CONFIG_LED_STATUS_RED,
600 CONFIG_LED_STATUS_OFF);
bc0571fc 601 else
2d8d190c
UM
602 status_led_set(CONFIG_LED_STATUS_RED,
603 CONFIG_LED_STATUS_ON);
4f63acd0 604#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
fc3e2165 605#endif /* CONFIG_MII, ... */
bc0571fc
JH
606 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
607 x = time_handler;
608 time_handler = (thand_f *)0;
2d966958
WD
609 (*x)();
610 }
611
5c421331 612 if (net_state == NETLOOP_FAIL)
bc0571fc 613 ret = net_start_again();
2d966958 614
22f6e99d 615 switch (net_state) {
2d966958 616 case NETLOOP_RESTART:
bc0571fc 617 net_restarted = 1;
2d966958
WD
618 goto restart;
619
620 case NETLOOP_SUCCESS:
ece223b5 621 net_cleanup_loop();
1411157d
JH
622 if (net_boot_file_size > 0) {
623 printf("Bytes transferred = %d (%x hex)\n",
624 net_boot_file_size, net_boot_file_size);
018f5303
SG
625 env_set_hex("filesize", net_boot_file_size);
626 env_set_hex("fileaddr", load_addr);
2d966958 627 }
f8be7d65
JH
628 if (protocol != NETCONS)
629 eth_halt();
630 else
631 eth_halt_state_only();
632
633 eth_set_last_protocol(protocol);
634
1411157d 635 ret = net_boot_file_size;
bc0571fc 636 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
4793ee65 637 goto done;
2d966958
WD
638
639 case NETLOOP_FAIL:
ece223b5 640 net_cleanup_loop();
f8be7d65
JH
641 /* Invalidate the last protocol */
642 eth_set_last_protocol(BOOTP);
bc0571fc 643 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
4793ee65 644 goto done;
22f6e99d
JH
645
646 case NETLOOP_CONTINUE:
647 continue;
2d966958
WD
648 }
649 }
4793ee65
SG
650
651done:
b63056d6
JL
652#ifdef CONFIG_USB_KEYBOARD
653 net_busy_flag = 0;
654#endif
39bccd21 655#ifdef CONFIG_CMD_TFTPPUT
4793ee65 656 /* Clear out the handlers */
ece223b5 657 net_set_udp_handler(NULL);
4793ee65 658 net_set_icmp_handler(NULL);
39bccd21 659#endif
60177b26 660 net_set_state(prev_net_state);
4793ee65 661 return ret;
2d966958
WD
662}
663
664/**********************************************************************/
665
bc0571fc 666static void start_again_timeout_handler(void)
2d966958 667{
22f6e99d 668 net_set_state(NETLOOP_RESTART);
2d966958
WD
669}
670
bc0571fc 671int net_start_again(void)
2d966958 672{
6e592385 673 char *nretry;
67b96e87
RB
674 int retry_forever = 0;
675 unsigned long retrycnt = 0;
60304592 676 int ret;
67b96e87 677
00caae6d 678 nretry = env_get("netretry");
67b96e87
RB
679 if (nretry) {
680 if (!strcmp(nretry, "yes"))
681 retry_forever = 1;
682 else if (!strcmp(nretry, "no"))
683 retrycnt = 0;
684 else if (!strcmp(nretry, "once"))
685 retrycnt = 1;
686 else
687 retrycnt = simple_strtoul(nretry, NULL, 0);
5c421331
JH
688 } else {
689 retrycnt = 0;
690 retry_forever = 0;
691 }
67b96e87 692
17d413b2 693 if ((!retry_forever) && (net_try_count > retrycnt)) {
67b96e87 694 eth_halt();
22f6e99d 695 net_set_state(NETLOOP_FAIL);
60304592
JH
696 /*
697 * We don't provide a way for the protocol to return an error,
698 * but this is almost always the reason.
699 */
700 return -ETIMEDOUT;
a3d991bd 701 }
67b96e87 702
bc0571fc 703 net_try_count++;
67b96e87 704
4f63acd0 705 eth_halt();
8b0c5c12 706#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
bc0571fc 707 eth_try_another(!net_restarted);
8b0c5c12 708#endif
60304592 709 ret = eth_init();
bc0571fc
JH
710 if (net_restart_wrap) {
711 net_restart_wrap = 0;
712 if (net_dev_exists) {
713 net_set_timeout_handler(10000UL,
714 start_again_timeout_handler);
ece223b5 715 net_set_udp_handler(NULL);
6e592385 716 } else {
22f6e99d 717 net_set_state(NETLOOP_FAIL);
2d966958 718 }
6e592385 719 } else {
22f6e99d 720 net_set_state(NETLOOP_RESTART);
2d966958 721 }
60304592 722 return ret;
2d966958
WD
723}
724
725/**********************************************************************/
726/*
727 * Miscelaneous bits.
728 */
729
ece223b5 730static void dummy_handler(uchar *pkt, unsigned dport,
049a95a7 731 struct in_addr sip, unsigned sport,
ece223b5 732 unsigned len)
d280d3f4 733{
d280d3f4
JH
734}
735
ece223b5
JH
736rxhand_f *net_get_udp_handler(void)
737{
738 return udp_packet_handler;
739}
d280d3f4 740
ece223b5
JH
741void net_set_udp_handler(rxhand_f *f)
742{
bc0571fc 743 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
ece223b5
JH
744 if (f == NULL)
745 udp_packet_handler = dummy_handler;
746 else
747 udp_packet_handler = f;
748}
749
750rxhand_f *net_get_arp_handler(void)
2d966958 751{
ece223b5
JH
752 return arp_packet_handler;
753}
754
755void net_set_arp_handler(rxhand_f *f)
756{
bc0571fc 757 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
ece223b5
JH
758 if (f == NULL)
759 arp_packet_handler = dummy_handler;
760 else
761 arp_packet_handler = f;
2d966958
WD
762}
763
39bccd21 764#ifdef CONFIG_CMD_TFTPPUT
4793ee65
SG
765void net_set_icmp_handler(rxhand_icmp_f *f)
766{
767 packet_icmp_handler = f;
768}
39bccd21 769#endif
2d966958 770
bc0571fc 771void net_set_timeout_handler(ulong iv, thand_f *f)
2d966958
WD
772{
773 if (iv == 0) {
4ef8d53c 774 debug_cond(DEBUG_INT_STATE,
bc0571fc
JH
775 "--- net_loop timeout handler cancelled\n");
776 time_handler = (thand_f *)0;
2d966958 777 } else {
4ef8d53c 778 debug_cond(DEBUG_INT_STATE,
bc0571fc
JH
779 "--- net_loop timeout handler set (%p)\n", f);
780 time_handler = f;
781 time_start = get_timer(0);
782 time_delta = iv * CONFIG_SYS_HZ / 1000;
2d966958
WD
783 }
784}
785
1203fcce 786int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
206d07fd 787 int payload_len)
73a8b27c 788{
a3d991bd 789 uchar *pkt;
9214637a
JH
790 int eth_hdr_size;
791 int pkt_hdr_size;
a3d991bd 792
bc0571fc 793 /* make sure the net_tx_packet is initialized (net_init() was called) */
1203fcce
JH
794 assert(net_tx_packet != NULL);
795 if (net_tx_packet == NULL)
46c495d5
JH
796 return -1;
797
73a8b27c 798 /* convert to new style broadcast */
049a95a7
JH
799 if (dest.s_addr == 0)
800 dest.s_addr = 0xFFFFFFFF;
73a8b27c
WD
801
802 /* if broadcast, make the ether address a broadcast and don't do ARP */
049a95a7 803 if (dest.s_addr == 0xFFFFFFFF)
0adb5b76 804 ether = (uchar *)net_bcast_ethaddr;
73a8b27c 805
1203fcce 806 pkt = (uchar *)net_tx_packet;
9214637a 807
1203fcce 808 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
9214637a
JH
809 pkt += eth_hdr_size;
810 net_set_udp_header(pkt, dest, dport, sport, payload_len);
811 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
73a8b27c 812
e94070c4 813 /* if MAC address was not discovered yet, do an ARP request */
0adb5b76 814 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
4ef8d53c 815 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
0ebf04c6 816
9214637a 817 /* save the ip and eth addr for the packet to send after arp */
049a95a7 818 net_arp_wait_packet_ip = dest;
85d25e0e 819 arp_wait_packet_ethaddr = ether;
a3d991bd 820
73a8b27c 821 /* size of the waiting packet */
85d25e0e 822 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
73a8b27c
WD
823
824 /* and do the ARP request */
85d25e0e
JH
825 arp_wait_try = 1;
826 arp_wait_timer_start = get_timer(0);
827 arp_request();
73a8b27c 828 return 1; /* waiting */
9214637a 829 } else {
4ef8d53c 830 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
bc0571fc 831 &dest, ether);
1203fcce 832 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
9214637a 833 return 0; /* transmitted */
73a8b27c 834 }
73a8b27c
WD
835}
836
5cfaa4e5
AR
837#ifdef CONFIG_IP_DEFRAG
838/*
839 * This function collects fragments in a single packet, according
840 * to the algorithm in RFC815. It returns NULL or the pointer to
841 * a complete packet, in static storage
842 */
843#ifndef CONFIG_NET_MAXDEFRAG
844#define CONFIG_NET_MAXDEFRAG 16384
845#endif
aa7a6487 846#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
5cfaa4e5 847
c5c59df0 848#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
5cfaa4e5
AR
849
850/*
851 * this is the packet being assembled, either data or frag control.
852 * Fragments go by 8 bytes, so this union must be 8 bytes long
853 */
854struct hole {
855 /* first_byte is address of this structure */
856 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
857 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
858 u16 prev_hole; /* index of prev, 0 == none */
859 u16 unused;
860};
861
bc0571fc 862static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
5cfaa4e5 863{
48522bb5 864 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
5cfaa4e5
AR
865 static u16 first_hole, total_len;
866 struct hole *payload, *thisfrag, *h, *newh;
594c26f8 867 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
5cfaa4e5
AR
868 uchar *indata = (uchar *)ip;
869 int offset8, start, len, done = 0;
870 u16 ip_off = ntohs(ip->ip_off);
871
872 /* payload starts after IP header, this fragment is in there */
c5c59df0 873 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
5cfaa4e5
AR
874 offset8 = (ip_off & IP_OFFS);
875 thisfrag = payload + offset8;
876 start = offset8 * 8;
c5c59df0 877 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
5cfaa4e5
AR
878
879 if (start + len > IP_MAXUDP) /* fragment extends too far */
880 return NULL;
881
882 if (!total_len || localip->ip_id != ip->ip_id) {
883 /* new (or different) packet, reset structs */
884 total_len = 0xffff;
885 payload[0].last_byte = ~0;
886 payload[0].next_hole = 0;
887 payload[0].prev_hole = 0;
888 first_hole = 0;
889 /* any IP header will work, copy the first we received */
c5c59df0 890 memcpy(localip, ip, IP_HDR_SIZE);
5cfaa4e5
AR
891 }
892
893 /*
894 * What follows is the reassembly algorithm. We use the payload
895 * array as a linked list of hole descriptors, as each hole starts
896 * at a multiple of 8 bytes. However, last byte can be whatever value,
897 * so it is represented as byte count, not as 8-byte blocks.
898 */
899
900 h = payload + first_hole;
901 while (h->last_byte < start) {
902 if (!h->next_hole) {
903 /* no hole that far away */
904 return NULL;
905 }
906 h = payload + h->next_hole;
907 }
908
e397e59e
FS
909 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
910 if (offset8 + ((len + 7) / 8) <= h - payload) {
5cfaa4e5
AR
911 /* no overlap with holes (dup fragment?) */
912 return NULL;
913 }
914
915 if (!(ip_off & IP_FLAGS_MFRAG)) {
916 /* no more fragmentss: truncate this (last) hole */
917 total_len = start + len;
918 h->last_byte = start + len;
919 }
920
921 /*
922 * There is some overlap: fix the hole list. This code doesn't
923 * deal with a fragment that overlaps with two different holes
924 * (thus being a superset of a previously-received fragment).
925 */
926
4f63acd0 927 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
5cfaa4e5
AR
928 /* complete overlap with hole: remove hole */
929 if (!h->prev_hole && !h->next_hole) {
930 /* last remaining hole */
931 done = 1;
932 } else if (!h->prev_hole) {
933 /* first hole */
934 first_hole = h->next_hole;
935 payload[h->next_hole].prev_hole = 0;
936 } else if (!h->next_hole) {
937 /* last hole */
938 payload[h->prev_hole].next_hole = 0;
939 } else {
940 /* in the middle of the list */
941 payload[h->next_hole].prev_hole = h->prev_hole;
942 payload[h->prev_hole].next_hole = h->next_hole;
943 }
944
945 } else if (h->last_byte <= start + len) {
946 /* overlaps with final part of the hole: shorten this hole */
947 h->last_byte = start;
948
949 } else if (h >= thisfrag) {
950 /* overlaps with initial part of the hole: move this hole */
951 newh = thisfrag + (len / 8);
952 *newh = *h;
953 h = newh;
954 if (h->next_hole)
955 payload[h->next_hole].prev_hole = (h - payload);
956 if (h->prev_hole)
957 payload[h->prev_hole].next_hole = (h - payload);
958 else
959 first_hole = (h - payload);
960
961 } else {
962 /* fragment sits in the middle: split the hole */
963 newh = thisfrag + (len / 8);
964 *newh = *h;
965 h->last_byte = start;
966 h->next_hole = (newh - payload);
967 newh->prev_hole = (h - payload);
968 if (newh->next_hole)
969 payload[newh->next_hole].prev_hole = (newh - payload);
970 }
971
972 /* finally copy this fragment and possibly return whole packet */
c5c59df0 973 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
5cfaa4e5
AR
974 if (!done)
975 return NULL;
976
977 localip->ip_len = htons(total_len);
c5c59df0 978 *lenp = total_len + IP_HDR_SIZE;
5cfaa4e5
AR
979 return localip;
980}
981
bc0571fc
JH
982static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
983 int *lenp)
5cfaa4e5
AR
984{
985 u16 ip_off = ntohs(ip->ip_off);
986 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
987 return ip; /* not a fragment */
bc0571fc 988 return __net_defragment(ip, lenp);
5cfaa4e5
AR
989}
990
991#else /* !CONFIG_IP_DEFRAG */
992
bc0571fc
JH
993static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
994 int *lenp)
5cfaa4e5
AR
995{
996 u16 ip_off = ntohs(ip->ip_off);
997 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
998 return ip; /* not a fragment */
999 return NULL;
1000}
1001#endif
a3d991bd 1002
8f79bb17
SG
1003/**
1004 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1005 * drop others.
1006 *
1007 * @parma ip IP packet containing the ICMP
1008 */
594c26f8 1009static void receive_icmp(struct ip_udp_hdr *ip, int len,
049a95a7 1010 struct in_addr src_ip, struct ethernet_hdr *et)
8f79bb17 1011{
e0a63079 1012 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
8f79bb17
SG
1013
1014 switch (icmph->type) {
1015 case ICMP_REDIRECT:
1016 if (icmph->code != ICMP_REDIR_HOST)
1017 return;
1018 printf(" ICMP Host Redirect to %pI4 ",
bc0571fc 1019 &icmph->un.gateway);
8f79bb17 1020 break;
a36b12f9 1021 default:
8f79bb17 1022#if defined(CONFIG_CMD_PING)
a36b12f9 1023 ping_receive(et, ip, len);
8f79bb17 1024#endif
39bccd21 1025#ifdef CONFIG_CMD_TFTPPUT
4793ee65
SG
1026 if (packet_icmp_handler)
1027 packet_icmp_handler(icmph->type, icmph->code,
bc0571fc
JH
1028 ntohs(ip->udp_dst), src_ip,
1029 ntohs(ip->udp_src), icmph->un.data,
1030 ntohs(ip->udp_len));
39bccd21 1031#endif
8f79bb17
SG
1032 break;
1033 }
1034}
1035
2a504df0 1036void net_process_received_packet(uchar *in_packet, int len)
2d966958 1037{
cb487f56 1038 struct ethernet_hdr *et;
594c26f8 1039 struct ip_udp_hdr *ip;
049a95a7
JH
1040 struct in_addr dst_ip;
1041 struct in_addr src_ip;
8d353eb8 1042 int eth_proto;
643d1ab2 1043#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
1044 int iscdp;
1045#endif
1046 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1047
4ef8d53c 1048 debug_cond(DEBUG_NET_PKT, "packet received\n");
2d966958 1049
1203fcce
JH
1050 net_rx_packet = in_packet;
1051 net_rx_packet_len = len;
2a504df0 1052 et = (struct ethernet_hdr *)in_packet;
a3d991bd
WD
1053
1054 /* too small packet? */
1055 if (len < ETHER_HDR_SIZE)
1056 return;
1057
0efe1bcf 1058#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
f85b6071 1059 if (push_packet) {
2a504df0 1060 (*push_packet)(in_packet, len);
f85b6071
RJ
1061 return;
1062 }
1063#endif
1064
643d1ab2 1065#if defined(CONFIG_CMD_CDP)
a3d991bd 1066 /* keep track if packet is CDP */
17351883 1067 iscdp = is_cdp_packet(et->et_dest);
a3d991bd
WD
1068#endif
1069
4fd5055f 1070 myvlanid = ntohs(net_our_vlan);
a3d991bd
WD
1071 if (myvlanid == (ushort)-1)
1072 myvlanid = VLAN_NONE;
4fd5055f 1073 mynvlanid = ntohs(net_native_vlan);
a3d991bd
WD
1074 if (mynvlanid == (ushort)-1)
1075 mynvlanid = VLAN_NONE;
2d966958 1076
8d353eb8 1077 eth_proto = ntohs(et->et_protlen);
2d966958 1078
8d353eb8 1079 if (eth_proto < 1514) {
cb487f56 1080 struct e802_hdr *et802 = (struct e802_hdr *)et;
2d966958 1081 /*
da5ebe2c
JH
1082 * Got a 802.2 packet. Check the other protocol field.
1083 * XXX VLAN over 802.2+SNAP not implemented!
2d966958 1084 */
8d353eb8 1085 eth_proto = ntohs(et802->et_prot);
a3d991bd 1086
2a504df0 1087 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
2d966958 1088 len -= E802_HDR_SIZE;
a3d991bd 1089
8d353eb8 1090 } else if (eth_proto != PROT_VLAN) { /* normal packet */
2a504df0 1091 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
2d966958 1092 len -= ETHER_HDR_SIZE;
a3d991bd
WD
1093
1094 } else { /* VLAN packet */
c68cca35
JH
1095 struct vlan_ethernet_hdr *vet =
1096 (struct vlan_ethernet_hdr *)et;
a3d991bd 1097
4ef8d53c 1098 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
0ebf04c6 1099
a3d991bd
WD
1100 /* too small packet? */
1101 if (len < VLAN_ETHER_HDR_SIZE)
1102 return;
1103
1104 /* if no VLAN active */
4fd5055f 1105 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
643d1ab2 1106#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
1107 && iscdp == 0
1108#endif
1109 )
1110 return;
1111
1112 cti = ntohs(vet->vet_tag);
1113 vlanid = cti & VLAN_IDMASK;
8d353eb8 1114 eth_proto = ntohs(vet->vet_type);
a3d991bd 1115
2a504df0 1116 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
a3d991bd 1117 len -= VLAN_ETHER_HDR_SIZE;
2d966958
WD
1118 }
1119
4ef8d53c 1120 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
2d966958 1121
643d1ab2 1122#if defined(CONFIG_CMD_CDP)
a3d991bd 1123 if (iscdp) {
0b4c5ff4 1124 cdp_receive((uchar *)ip, len);
a3d991bd
WD
1125 return;
1126 }
1127#endif
1128
1129 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1130 if (vlanid == VLAN_NONE)
1131 vlanid = (mynvlanid & VLAN_IDMASK);
1132 /* not matched? */
1133 if (vlanid != (myvlanid & VLAN_IDMASK))
1134 return;
1135 }
1136
8d353eb8 1137 switch (eth_proto) {
2d966958 1138 case PROT_ARP:
85d25e0e 1139 arp_receive(et, ip, len);
289f932c 1140 break;
2d966958 1141
bf6cb247 1142#ifdef CONFIG_CMD_RARP
2d966958 1143 case PROT_RARP:
8b9c5322 1144 rarp_receive(ip, len);
2d966958 1145 break;
bf6cb247 1146#endif
2d966958 1147 case PROT_IP:
4ef8d53c 1148 debug_cond(DEBUG_NET_PKT, "Got IP\n");
5cfaa4e5 1149 /* Before we start poking the header, make sure it is there */
594c26f8
JH
1150 if (len < IP_UDP_HDR_SIZE) {
1151 debug("len bad %d < %lu\n", len,
bc0571fc 1152 (ulong)IP_UDP_HDR_SIZE);
2d966958
WD
1153 return;
1154 }
5cfaa4e5 1155 /* Check the packet length */
2d966958 1156 if (len < ntohs(ip->ip_len)) {
4ef8d53c 1157 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
2d966958
WD
1158 return;
1159 }
1160 len = ntohs(ip->ip_len);
4ef8d53c 1161 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
bc0571fc 1162 len, ip->ip_hl_v & 0xff);
0ebf04c6 1163
5cfaa4e5 1164 /* Can't deal with anything except IPv4 */
d3c65b01 1165 if ((ip->ip_hl_v & 0xf0) != 0x40)
2d966958 1166 return;
5cfaa4e5 1167 /* Can't deal with IP options (headers != 20 bytes) */
d3c65b01 1168 if ((ip->ip_hl_v & 0x0f) > 0x05)
6b52cfe1 1169 return;
5cfaa4e5 1170 /* Check the Checksum of the header */
0da0fcd5 1171 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
4ef8d53c 1172 debug("checksum bad\n");
2d966958
WD
1173 return;
1174 }
5cfaa4e5 1175 /* If it is not for us, ignore it */
049a95a7
JH
1176 dst_ip = net_read_ip(&ip->ip_dst);
1177 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1178 dst_ip.s_addr != 0xFFFFFFFF) {
53a5c424 1179#ifdef CONFIG_MCAST_TFTP
049a95a7 1180 if (net_mcast_addr != dst_ip)
53a5c424 1181#endif
c819abee 1182 return;
2d966958 1183 }
03eb129f 1184 /* Read source IP address for later use */
049a95a7 1185 src_ip = net_read_ip(&ip->ip_src);
5cfaa4e5
AR
1186 /*
1187 * The function returns the unchanged packet if it's not
1188 * a fragment, and either the complete packet or NULL if
1189 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1190 */
bc0571fc 1191 ip = net_defragment(ip, &len);
ccb9ebef 1192 if (!ip)
5cfaa4e5 1193 return;
2d966958
WD
1194 /*
1195 * watch for ICMP host redirects
1196 *
8bde7f77
WD
1197 * There is no real handler code (yet). We just watch
1198 * for ICMP host redirect messages. In case anybody
1199 * sees these messages: please contact me
1200 * ([email protected]), or - even better - send me the
1201 * necessary fixes :-)
2d966958 1202 *
8bde7f77
WD
1203 * Note: in all cases where I have seen this so far
1204 * it was a problem with the router configuration,
1205 * for instance when a router was configured in the
1206 * BOOTP reply, but the TFTP server was on the same
1207 * subnet. So this is probably a warning that your
1208 * configuration might be wrong. But I'm not really
1209 * sure if there aren't any other situations.
4793ee65
SG
1210 *
1211 * Simon Glass <[email protected]>: We get an ICMP when
1212 * we send a tftp packet to a dead connection, or when
1213 * there is no server at the other end.
2d966958
WD
1214 */
1215 if (ip->ip_p == IPPROTO_ICMP) {
8f79bb17
SG
1216 receive_icmp(ip, len, src_ip, et);
1217 return;
2d966958
WD
1218 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1219 return;
1220 }
1221
4ef8d53c 1222 debug_cond(DEBUG_DEV_PKT,
bc0571fc
JH
1223 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1224 &dst_ip, &src_ip, len);
4ef8d53c 1225
8534bf9a
SR
1226#ifdef CONFIG_UDP_CHECKSUM
1227 if (ip->udp_xsum != 0) {
b2f50807 1228 ulong xsum;
8534bf9a
SR
1229 ushort *sumptr;
1230 ushort sumlen;
1231
1232 xsum = ip->ip_p;
1233 xsum += (ntohs(ip->udp_len));
049a95a7
JH
1234 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1235 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1236 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1237 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
8534bf9a
SR
1238
1239 sumlen = ntohs(ip->udp_len);
bc0571fc 1240 sumptr = (ushort *)&(ip->udp_src);
8534bf9a
SR
1241
1242 while (sumlen > 1) {
b2f50807 1243 ushort sumdata;
8534bf9a
SR
1244
1245 sumdata = *sumptr++;
1246 xsum += ntohs(sumdata);
1247 sumlen -= 2;
1248 }
1249 if (sumlen > 0) {
b2f50807 1250 ushort sumdata;
8534bf9a 1251
bc0571fc 1252 sumdata = *(unsigned char *)sumptr;
b2f50807 1253 sumdata = (sumdata << 8) & 0xff00;
8534bf9a
SR
1254 xsum += sumdata;
1255 }
1256 while ((xsum >> 16) != 0) {
3e38e429
LC
1257 xsum = (xsum & 0x0000ffff) +
1258 ((xsum >> 16) & 0x0000ffff);
8534bf9a
SR
1259 }
1260 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
9b55a253 1261 printf(" UDP wrong checksum %08lx %08x\n",
bc0571fc 1262 xsum, ntohs(ip->udp_xsum));
8534bf9a
SR
1263 return;
1264 }
1265 }
1266#endif
1267
66c89ee3 1268#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
594c26f8 1269 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
bc0571fc
JH
1270 src_ip,
1271 ntohs(ip->udp_dst),
1272 ntohs(ip->udp_src),
1273 ntohs(ip->udp_len) - UDP_HDR_SIZE);
68ceb29e 1274#endif
2d966958 1275 /*
bc0571fc 1276 * IP header OK. Pass the packet to the current handler.
2d966958 1277 */
ece223b5 1278 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
bc0571fc
JH
1279 ntohs(ip->udp_dst),
1280 src_ip,
1281 ntohs(ip->udp_src),
1282 ntohs(ip->udp_len) - UDP_HDR_SIZE);
2d966958
WD
1283 break;
1284 }
1285}
1286
2d966958
WD
1287/**********************************************************************/
1288
e4bf0c5c 1289static int net_check_prereq(enum proto_t protocol)
2d966958
WD
1290{
1291 switch (protocol) {
6e592385 1292 /* Fall through */
643d1ab2 1293#if defined(CONFIG_CMD_PING)
73a8b27c 1294 case PING:
049a95a7 1295 if (net_ping_ip.s_addr == 0) {
4f63acd0 1296 puts("*** ERROR: ping address not given\n");
92895de9 1297 return 1;
6e592385
WD
1298 }
1299 goto common;
cbd8a35c 1300#endif
643d1ab2 1301#if defined(CONFIG_CMD_SNTP)
ea287deb 1302 case SNTP:
049a95a7 1303 if (net_ntp_server.s_addr == 0) {
4f63acd0 1304 puts("*** ERROR: NTP server address not given\n");
92895de9 1305 return 1;
ea287deb
WD
1306 }
1307 goto common;
1308#endif
1a32bf41
RG
1309#if defined(CONFIG_CMD_DNS)
1310 case DNS:
049a95a7 1311 if (net_dns_server.s_addr == 0) {
1a32bf41
RG
1312 puts("*** ERROR: DNS server address not given\n");
1313 return 1;
1314 }
1315 goto common;
1316#endif
643d1ab2 1317#if defined(CONFIG_CMD_NFS)
cbd8a35c 1318 case NFS:
73a8b27c 1319#endif
bc0571fc 1320 /* Fall through */
e4bf0c5c 1321 case TFTPGET:
1fb7cd49 1322 case TFTPPUT:
049a95a7 1323 if (net_server_ip.s_addr == 0) {
4f63acd0 1324 puts("*** ERROR: `serverip' not set\n");
92895de9 1325 return 1;
6e592385 1326 }
4f63acd0
LC
1327#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1328 defined(CONFIG_CMD_DNS)
1329common:
73a8b27c 1330#endif
8b6bbe10 1331 /* Fall through */
73a8b27c 1332
8b6bbe10 1333 case NETCONS:
f73a7df9 1334 case FASTBOOT:
7a83af07 1335 case TFTPSRV:
049a95a7 1336 if (net_ip.s_addr == 0) {
4f63acd0 1337 puts("*** ERROR: `ipaddr' not set\n");
92895de9 1338 return 1;
6e592385
WD
1339 }
1340 /* Fall through */
2d966958 1341
bf6cb247 1342#ifdef CONFIG_CMD_RARP
2d966958 1343 case RARP:
bf6cb247 1344#endif
2d966958 1345 case BOOTP:
a3d991bd 1346 case CDP:
bf6cb247 1347 case DHCP:
d22c338e 1348 case LINKLOCAL:
0adb5b76 1349 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
4f63acd0 1350 int num = eth_get_dev_index();
2d966958 1351
6e592385
WD
1352 switch (num) {
1353 case -1:
4f63acd0 1354 puts("*** ERROR: No ethernet found.\n");
92895de9 1355 return 1;
6e592385 1356 case 0:
4f63acd0 1357 puts("*** ERROR: `ethaddr' not set\n");
2d966958 1358 break;
6e592385 1359 default:
4f63acd0 1360 printf("*** ERROR: `eth%daddr' not set\n",
bc0571fc 1361 num);
2d966958 1362 break;
6e592385 1363 }
2d966958 1364
bc0571fc 1365 net_start_again();
92895de9 1366 return 2;
6e592385
WD
1367 }
1368 /* Fall through */
1369 default:
92895de9 1370 return 0;
2d966958 1371 }
92895de9 1372 return 0; /* OK */
2d966958
WD
1373}
1374/**********************************************************************/
1375
a3d991bd 1376int
1203fcce 1377net_eth_hdr_size(void)
a3d991bd
WD
1378{
1379 ushort myvlanid;
2d966958 1380
4fd5055f 1381 myvlanid = ntohs(net_our_vlan);
a3d991bd
WD
1382 if (myvlanid == (ushort)-1)
1383 myvlanid = VLAN_NONE;
1384
3e38e429
LC
1385 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1386 VLAN_ETHER_HDR_SIZE;
a3d991bd
WD
1387}
1388
1203fcce 1389int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
2d966958 1390{
cb487f56 1391 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
a3d991bd
WD
1392 ushort myvlanid;
1393
4fd5055f 1394 myvlanid = ntohs(net_our_vlan);
a3d991bd
WD
1395 if (myvlanid == (ushort)-1)
1396 myvlanid = VLAN_NONE;
2d966958 1397
0adb5b76
JH
1398 memcpy(et->et_dest, dest_ethaddr, 6);
1399 memcpy(et->et_src, net_ethaddr, 6);
a3d991bd 1400 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
c819abee 1401 et->et_protlen = htons(prot);
a3d991bd
WD
1402 return ETHER_HDR_SIZE;
1403 } else {
c68cca35
JH
1404 struct vlan_ethernet_hdr *vet =
1405 (struct vlan_ethernet_hdr *)xet;
2d966958 1406
a3d991bd
WD
1407 vet->vet_vlan_type = htons(PROT_VLAN);
1408 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1409 vet->vet_type = htons(prot);
1410 return VLAN_ETHER_HDR_SIZE;
1411 }
1412}
2d966958 1413
e7111015
JH
1414int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1415{
1416 ushort protlen;
1417
1418 memcpy(et->et_dest, addr, 6);
0adb5b76 1419 memcpy(et->et_src, net_ethaddr, 6);
e7111015
JH
1420 protlen = ntohs(et->et_protlen);
1421 if (protlen == PROT_VLAN) {
1422 struct vlan_ethernet_hdr *vet =
1423 (struct vlan_ethernet_hdr *)et;
1424 vet->vet_type = htons(prot);
1425 return VLAN_ETHER_HDR_SIZE;
1426 } else if (protlen > 1514) {
1427 et->et_protlen = htons(prot);
1428 return ETHER_HDR_SIZE;
1429 } else {
1430 /* 802.2 + SNAP */
1431 struct e802_hdr *et802 = (struct e802_hdr *)et;
1432 et802->et_prot = htons(prot);
1433 return E802_HDR_SIZE;
1434 }
1435}
1436
049a95a7 1437void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source)
2d966958 1438{
4b11c916 1439 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
2d966958
WD
1440
1441 /*
4b11c916 1442 * Construct an IP header.
2d966958 1443 */
3e38e429
LC
1444 /* IP_HDR_SIZE / 4 (not including UDP) */
1445 ip->ip_hl_v = 0x45;
2d966958 1446 ip->ip_tos = 0;
4b11c916 1447 ip->ip_len = htons(IP_HDR_SIZE);
bc0571fc 1448 ip->ip_id = htons(net_ip_id++);
e0c07b86 1449 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
2d966958 1450 ip->ip_ttl = 255;
2d966958 1451 ip->ip_sum = 0;
3e38e429 1452 /* already in network byte order */
049a95a7 1453 net_copy_ip((void *)&ip->ip_src, &source);
4b11c916 1454 /* already in network byte order */
049a95a7 1455 net_copy_ip((void *)&ip->ip_dst, &dest);
4b11c916
JH
1456}
1457
049a95a7 1458void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
4b11c916
JH
1459 int len)
1460{
1461 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1462
1463 /*
1464 * If the data is an odd number of bytes, zero the
1465 * byte after the last byte so that the checksum
1466 * will work.
1467 */
1468 if (len & 1)
1469 pkt[IP_UDP_HDR_SIZE + len] = 0;
1470
049a95a7 1471 net_set_ip_header(pkt, dest, net_ip);
4b11c916
JH
1472 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
1473 ip->ip_p = IPPROTO_UDP;
0da0fcd5 1474 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
4b11c916 1475
2d966958
WD
1476 ip->udp_src = htons(sport);
1477 ip->udp_dst = htons(dport);
594c26f8 1478 ip->udp_len = htons(UDP_HDR_SIZE + len);
2d966958 1479 ip->udp_xsum = 0;
2d966958
WD
1480}
1481
4f63acd0 1482void copy_filename(char *dst, const char *src, int size)
2d966958
WD
1483{
1484 if (*src && (*src == '"')) {
1485 ++src;
1486 --size;
1487 }
1488
d3c65b01 1489 while ((--size > 0) && *src && (*src != '"'))
2d966958 1490 *dst++ = *src++;
2d966958
WD
1491 *dst = '\0';
1492}
1493
3e38e429
LC
1494#if defined(CONFIG_CMD_NFS) || \
1495 defined(CONFIG_CMD_SNTP) || \
1496 defined(CONFIG_CMD_DNS)
1a32bf41 1497/*
9739946c
RG
1498 * make port a little random (1024-17407)
1499 * This keeps the math somewhat trivial to compute, and seems to work with
1500 * all supported protocols/clients/servers
1a32bf41
RG
1501 */
1502unsigned int random_port(void)
1503{
9739946c 1504 return 1024 + (get_timer(0) % 0x4000);
1a32bf41
RG
1505}
1506#endif
1507
049a95a7 1508void ip_to_string(struct in_addr x, char *s)
2d966958 1509{
049a95a7 1510 x.s_addr = ntohl(x.s_addr);
4f63acd0 1511 sprintf(s, "%d.%d.%d.%d",
049a95a7
JH
1512 (int) ((x.s_addr >> 24) & 0xff),
1513 (int) ((x.s_addr >> 16) & 0xff),
1514 (int) ((x.s_addr >> 8) & 0xff),
1515 (int) ((x.s_addr >> 0) & 0xff)
6e592385 1516 );
2d966958
WD
1517}
1518
4fd5055f 1519void vlan_to_string(ushort x, char *s)
a3d991bd
WD
1520{
1521 x = ntohs(x);
1522
1523 if (x == (ushort)-1)
1524 x = VLAN_NONE;
1525
1526 if (x == VLAN_NONE)
1527 strcpy(s, "none");
1528 else
1529 sprintf(s, "%d", x & VLAN_IDMASK);
1530}
1531
4fd5055f 1532ushort string_to_vlan(const char *s)
a3d991bd
WD
1533{
1534 ushort id;
1535
1536 if (s == NULL)
b9711de1 1537 return htons(VLAN_NONE);
a3d991bd
WD
1538
1539 if (*s < '0' || *s > '9')
1540 id = VLAN_NONE;
1541 else
1542 id = (ushort)simple_strtoul(s, NULL, 10);
1543
b9711de1 1544 return htons(id);
a3d991bd
WD
1545}
1546
723806cc 1547ushort env_get_vlan(char *var)
a3d991bd 1548{
00caae6d 1549 return string_to_vlan(env_get(var));
a3d991bd 1550}
This page took 0.557754 seconds and 4 git commands to generate.