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