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