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