]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/net.c
net: cosmetic: eth.c checkpatch compliance
[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
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
b2f50807
WD
43 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
2d966958
WD
47 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
cbd8a35c
WD
58 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
ea287deb
WD
67 *
68 * SNTP:
69 *
b2f50807 70 * Prerequisites: - own ethernet address
ea287deb
WD
71 * - own IP address
72 * We want: - network time
73 * Next step: none
2d966958
WD
74 */
75
76
77#include <common.h>
78#include <watchdog.h>
79#include <command.h>
80#include <net.h>
81#include "bootp.h"
82#include "tftp.h"
bf6cb247 83#ifdef CONFIG_CMD_RARP
2d966958 84#include "rarp.h"
bf6cb247 85#endif
cbd8a35c 86#include "nfs.h"
fc3e2165
WD
87#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
643d1ab2 91#if defined(CONFIG_CMD_SNTP)
ea287deb
WD
92#include "sntp.h"
93#endif
561858ee
PT
94#if defined(CONFIG_CDP_VERSION)
95#include <timestamp.h>
96#endif
1a32bf41
RG
97#if defined(CONFIG_CMD_DNS)
98#include "dns.h"
99#endif
2d966958 100
d87080b7
WD
101DECLARE_GLOBAL_DATA_PTR;
102
40cb90ee 103#ifndef CONFIG_ARP_TIMEOUT
3e38e429
LC
104/* Milliseconds before trying ARP again */
105# define ARP_TIMEOUT 5000UL
40cb90ee 106#else
49f3bdbb 107# define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
40cb90ee
GL
108#endif
109
110
73a8b27c 111#ifndef CONFIG_NET_RETRY_COUNT
40cb90ee 112# define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
73a8b27c 113#else
40cb90ee 114# define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
73a8b27c
WD
115#endif
116
2d966958
WD
117/** BOOTP EXTENTIONS **/
118
3e38e429 119/* Our subnet mask (0=unknown) */
c586ce6e 120IPaddr_t NetOurSubnetMask;
3e38e429 121/* Our gateways IP address */
c586ce6e 122IPaddr_t NetOurGatewayIP;
3e38e429 123/* Our DNS IP address */
c586ce6e 124IPaddr_t NetOurDNSIP;
1fe80d79 125#if defined(CONFIG_BOOTP_DNS2)
3e38e429 126/* Our 2nd DNS IP address */
c586ce6e 127IPaddr_t NetOurDNS2IP;
3e38e429
LC
128#endif
129/* Our NIS domain */
c586ce6e 130char NetOurNISDomain[32] = {0,};
3e38e429 131/* Our hostname */
c586ce6e 132char NetOurHostName[32] = {0,};
3e38e429 133/* Our bootpath */
c586ce6e 134char NetOurRootPath[64] = {0,};
3e38e429 135/* Our bootfile size in blocks */
c586ce6e 136ushort NetBootFileSize;
2d966958 137
53a5c424
DU
138#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
139IPaddr_t Mcast_addr;
140#endif
141
2d966958
WD
142/** END OF BOOTP EXTENTIONS **/
143
3e38e429
LC
144/* The actual transferred size of the bootfile (in bytes) */
145ulong NetBootFileXferSize;
146/* Our ethernet address */
147uchar NetOurEther[6];
148/* Boot server enet address */
c586ce6e 149uchar NetServerEther[6];
3e38e429
LC
150/* Our IP addr (0 = unknown) */
151IPaddr_t NetOurIP;
152/* Server IP addr (0 = unknown) */
153IPaddr_t NetServerIP;
154/* Current receive packet */
db288a96 155uchar *NetRxPacket;
3e38e429
LC
156/* Current rx packet length */
157int NetRxPacketLen;
158/* IP packet ID */
159unsigned NetIPID;
160/* Ethernet bcast address */
c586ce6e
LC
161uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162uchar NetEtherNullAddr[6];
f85b6071 163#ifdef CONFIG_API
db288a96 164void (*push_packet)(void *, int len) = 0;
f85b6071 165#endif
643d1ab2 166#if defined(CONFIG_CMD_CDP)
3e38e429 167/* Ethernet bcast address */
c586ce6e 168uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
a3d991bd 169#endif
3e38e429
LC
170/* Network loop state */
171int NetState;
3e38e429 172/* Tried all network devices */
c586ce6e 173int NetRestartWrap;
3e38e429 174/* Network loop restarted */
c586ce6e 175static int NetRestarted;
3e38e429 176/* At least one device configured */
c586ce6e 177static int NetDevExists;
2d966958 178
6e592385 179/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
3e38e429
LC
180/* default is without VLAN */
181ushort NetOurVLAN = 0xFFFF;
182/* ditto */
183ushort NetOurNativeVLAN = 0xFFFF;
a3d991bd 184
3e38e429
LC
185/* Boot File name */
186char BootFile[128];
2d966958 187
643d1ab2 188#if defined(CONFIG_CMD_PING)
3e38e429
LC
189/* the ip address to ping */
190IPaddr_t NetPingIP;
73a8b27c
WD
191
192static void PingStart(void);
193#endif
194
643d1ab2 195#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
196static void CDPStart(void);
197#endif
198
643d1ab2 199#if defined(CONFIG_CMD_SNTP)
3e38e429
LC
200/* NTP server IP address */
201IPaddr_t NetNtpServerIP;
202/* offset time from UTC */
c586ce6e 203int NetTimeOffset;
ea287deb
WD
204#endif
205
68ceb29e
WD
206#ifdef CONFIG_NETCONSOLE
207void NcStart(void);
208int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
209#endif
210
db288a96 211uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
2d966958 212
3e38e429 213/* Receive packet */
db288a96 214uchar *NetRxPackets[PKTBUFSRX];
2d966958 215
3e38e429
LC
216/* Current RX packet handler */
217static rxhand_f *packetHandler;
39bccd21 218#ifdef CONFIG_CMD_TFTPPUT
4793ee65 219static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
39bccd21 220#endif
3e38e429
LC
221/* Current timeout handler */
222static thand_f *timeHandler;
223/* Time base value */
224static ulong timeStart;
225/* Current timeout value */
226static ulong timeDelta;
227/* THE transmit packet */
db288a96 228uchar *NetTxPacket;
2d966958 229
e4bf0c5c 230static int net_check_prereq(enum proto_t protocol);
2d966958 231
67b96e87
RB
232static int NetTryCount;
233
73a8b27c
WD
234/**********************************************************************/
235
236IPaddr_t NetArpWaitPacketIP;
237IPaddr_t NetArpWaitReplyIP;
3e38e429
LC
238/* MAC address of waiting packet's destination */
239uchar *NetArpWaitPacketMAC;
240/* THE transmit packet */
241uchar *NetArpWaitTxPacket;
73a8b27c 242int NetArpWaitTxPacketSize;
53677ef1 243uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
73a8b27c
WD
244ulong NetArpWaitTimerStart;
245int NetArpWaitTry;
246
4f63acd0 247void ArpRequest(void)
73a8b27c 248{
db288a96 249 uchar *pkt;
6e592385 250 ARP_t *arp;
73a8b27c 251
0ebf04c6
RG
252 debug("ARP broadcast %d\n", NetArpWaitTry);
253
73a8b27c
WD
254 pkt = NetTxPacket;
255
4f63acd0 256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
73a8b27c 257
6e592385 258 arp = (ARP_t *) pkt;
73a8b27c 259
4f63acd0
LC
260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
73a8b27c
WD
262 arp->ar_hln = 6;
263 arp->ar_pln = 4;
4f63acd0 264 arp->ar_op = htons(ARPOP_REQUEST);
73a8b27c 265
3e38e429 266 /* source ET addr */
4f63acd0 267 memcpy(&arp->ar_data[0], NetOurEther, 6);
3e38e429 268 /* source IP addr */
4f63acd0 269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
ed1ada71
SG
270 /* dest ET addr = 0 */
271 memset(&arp->ar_data[10], '\0', 6);
6e592385
WD
272 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
273 (NetOurIP & NetOurSubnetMask)) {
274 if (NetOurGatewayIP == 0) {
4f63acd0 275 puts("## Warning: gatewayip needed but not set\n");
d509b812
WD
276 NetArpWaitReplyIP = NetArpWaitPacketIP;
277 } else {
278 NetArpWaitReplyIP = NetOurGatewayIP;
6e592385 279 }
6e592385
WD
280 } else {
281 NetArpWaitReplyIP = NetArpWaitPacketIP;
282 }
73a8b27c 283
4f63acd0
LC
284 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
285 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
73a8b27c
WD
286}
287
288void ArpTimeoutCheck(void)
289{
290 ulong t;
291
292 if (!NetArpWaitPacketIP)
293 return;
294
295 t = get_timer(0);
296
297 /* check for arp timeout */
49f3bdbb 298 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
73a8b27c
WD
299 NetArpWaitTry++;
300
301 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
4f63acd0 302 puts("\nARP Retry count exceeded; starting again\n");
73a8b27c
WD
303 NetArpWaitTry = 0;
304 NetStartAgain();
305 } else {
306 NetArpWaitTimerStart = t;
307 ArpRequest();
308 }
309 }
310}
311
e4a3d57d
SG
312/*
313 * Check if autoload is enabled. If so, use either NFS or TFTP to download
314 * the boot file.
315 */
316void net_auto_load(void)
317{
318 const char *s = getenv("autoload");
319
320 if (s != NULL) {
321 if (*s == 'n') {
322 /*
323 * Just use BOOTP/RARP to configure system;
324 * Do not use TFTP to load the bootfile.
325 */
326 NetState = NETLOOP_SUCCESS;
327 return;
328 }
329#if defined(CONFIG_CMD_NFS)
330 if (strcmp(s, "NFS") == 0) {
331 /*
332 * Use NFS to load the bootfile.
333 */
334 NfsStart();
335 return;
336 }
337#endif
338 }
339 TftpStart(TFTPGET);
340}
341
e4bf0c5c 342static void NetInitLoop(enum proto_t protocol)
2f70c49e 343{
c586ce6e 344 static int env_changed_id;
2f70c49e 345 bd_t *bd = gd->bd;
4f63acd0 346 int env_id = get_env_id();
2f70c49e
HS
347
348 /* update only when the environment has changed */
3c172c4f 349 if (env_changed_id != env_id) {
23a70bf9
EBS
350 NetOurIP = getenv_IPaddr("ipaddr");
351 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
4f63acd0
LC
352 NetOurGatewayIP = getenv_IPaddr("gatewayip");
353 NetOurSubnetMask = getenv_IPaddr("netmask");
354 NetServerIP = getenv_IPaddr("serverip");
2f70c49e 355 NetOurNativeVLAN = getenv_VLAN("nvlan");
3c172c4f 356 NetOurVLAN = getenv_VLAN("vlan");
1a32bf41
RG
357#if defined(CONFIG_CMD_DNS)
358 NetOurDNSIP = getenv_IPaddr("dnsip");
359#endif
3c172c4f 360 env_changed_id = env_id;
2f70c49e 361 }
3c172c4f 362
da95427c 363 return;
2f70c49e
HS
364}
365
2d966958
WD
366/**********************************************************************/
367/*
368 * Main network processing loop.
369 */
370
e4bf0c5c 371int NetLoop(enum proto_t protocol)
2d966958 372{
2d966958 373 bd_t *bd = gd->bd;
4793ee65 374 int ret = -1;
2d966958 375
2d966958
WD
376 NetRestarted = 0;
377 NetDevExists = 0;
2d966958 378
73a8b27c
WD
379 /* XXX problem with bss workaround */
380 NetArpWaitPacketMAC = NULL;
381 NetArpWaitTxPacket = NULL;
382 NetArpWaitPacketIP = 0;
383 NetArpWaitReplyIP = 0;
384 NetArpWaitTxPacket = NULL;
385 NetTxPacket = NULL;
67b96e87 386 NetTryCount = 1;
73a8b27c 387
2d966958
WD
388 if (!NetTxPacket) {
389 int i;
2d966958
WD
390 /*
391 * Setup packet buffers, aligned correctly.
392 */
393 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
394 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
d3c65b01 395 for (i = 0; i < PKTBUFSRX; i++)
2d966958 396 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
73a8b27c
WD
397 }
398
399 if (!NetArpWaitTxPacket) {
400 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
401 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
402 NetArpWaitTxPacketSize = 0;
2d966958
WD
403 }
404
573f14fe 405 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
2d966958 406 eth_halt();
a3d991bd 407 eth_set_current();
b1bf6f2c
WD
408 if (eth_init(bd) < 0) {
409 eth_halt();
92895de9 410 return -1;
b1bf6f2c 411 }
2d966958
WD
412
413restart:
4f63acd0 414 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
2d966958
WD
415
416 NetState = NETLOOP_CONTINUE;
417
418 /*
419 * Start the ball rolling with the given start function. From
420 * here on, this code is a state machine driven by received
421 * packets and timer events.
422 */
2f70c49e 423 NetInitLoop(protocol);
2d966958 424
4f63acd0 425 switch (net_check_prereq(protocol)) {
2d966958
WD
426 case 1:
427 /* network not configured */
b1bf6f2c 428 eth_halt();
92895de9 429 return -1;
2d966958 430
2d966958
WD
431 case 2:
432 /* network device not configured */
433 break;
2d966958
WD
434
435 case 0:
2d966958 436 NetDevExists = 1;
e4bf0c5c 437 NetBootFileXferSize = 0;
2d966958 438 switch (protocol) {
e4bf0c5c 439 case TFTPGET:
1fb7cd49
SG
440#ifdef CONFIG_CMD_TFTPPUT
441 case TFTPPUT:
442#endif
2d966958 443 /* always use ARP to get server ethernet address */
e4bf0c5c 444 TftpStart(protocol);
2d966958 445 break;
7a83af07
LC
446#ifdef CONFIG_CMD_TFTPSRV
447 case TFTPSRV:
448 TftpStartServer();
449 break;
450#endif
643d1ab2 451#if defined(CONFIG_CMD_DHCP)
2d966958 452 case DHCP:
d407bf52 453 BootpTry = 0;
09133f85 454 NetOurIP = 0;
2d966958
WD
455 DhcpRequest(); /* Basically same as BOOTP */
456 break;
610f2e9c 457#endif
2d966958
WD
458
459 case BOOTP:
460 BootpTry = 0;
09133f85 461 NetOurIP = 0;
4f63acd0 462 BootpRequest();
2d966958
WD
463 break;
464
bf6cb247 465#if defined(CONFIG_CMD_RARP)
2d966958
WD
466 case RARP:
467 RarpTry = 0;
09133f85 468 NetOurIP = 0;
4f63acd0 469 RarpRequest();
2d966958 470 break;
bf6cb247 471#endif
643d1ab2 472#if defined(CONFIG_CMD_PING)
73a8b27c
WD
473 case PING:
474 PingStart();
475 break;
cbd8a35c 476#endif
643d1ab2 477#if defined(CONFIG_CMD_NFS)
cbd8a35c
WD
478 case NFS:
479 NfsStart();
480 break;
a3d991bd 481#endif
643d1ab2 482#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
483 case CDP:
484 CDPStart();
485 break;
68ceb29e
WD
486#endif
487#ifdef CONFIG_NETCONSOLE
488 case NETCONS:
489 NcStart();
490 break;
ea287deb 491#endif
643d1ab2 492#if defined(CONFIG_CMD_SNTP)
ea287deb
WD
493 case SNTP:
494 SntpStart();
495 break;
1a32bf41
RG
496#endif
497#if defined(CONFIG_CMD_DNS)
498 case DNS:
499 DnsStart();
500 break;
73a8b27c 501#endif
2d966958
WD
502 default:
503 break;
504 }
505
2d966958
WD
506 break;
507 }
508
643d1ab2 509#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
3e38e429
LC
510#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
511 defined(CONFIG_STATUS_LED) && \
512 defined(STATUS_LED_RED)
fc3e2165 513 /*
42d1f039 514 * Echo the inverted link state to the fault LED.
fc3e2165 515 */
d3c65b01 516 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
4f63acd0 517 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
d3c65b01 518 else
4f63acd0 519 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
6d0f6bcf 520#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
fc3e2165 521#endif /* CONFIG_MII, ... */
2d966958
WD
522
523 /*
524 * Main packet reception loop. Loop receiving packets until
59acc296 525 * someone sets `NetState' to a state that terminates.
2d966958
WD
526 */
527 for (;;) {
528 WATCHDOG_RESET();
529#ifdef CONFIG_SHOW_ACTIVITY
530 {
531 extern void show_activity(int arg);
532 show_activity(1);
533 }
534#endif
535 /*
536 * Check the ethernet for a new packet. The ethernet
537 * receive routine will process it.
538 */
40cb90ee 539 eth_rx();
2d966958
WD
540
541 /*
542 * Abort if ctrl-c was pressed.
543 */
544 if (ctrlc()) {
8bde7f77 545 eth_halt();
4f63acd0 546 puts("\nAbort\n");
4793ee65 547 goto done;
2d966958
WD
548 }
549
73a8b27c 550 ArpTimeoutCheck();
2d966958
WD
551
552 /*
553 * Check for a timeout, and run the timeout handler
554 * if we have one.
555 */
e0ac62d7 556 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
2d966958
WD
557 thand_f *x;
558
643d1ab2 559#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
4f63acd0
LC
560#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
561 defined(CONFIG_STATUS_LED) && \
562 defined(STATUS_LED_RED)
fc3e2165 563 /*
42d1f039 564 * Echo the inverted link state to the fault LED.
fc3e2165 565 */
4f63acd0 566 if (miiphy_link(eth_get_dev()->name,
3e38e429 567 CONFIG_SYS_FAULT_MII_ADDR)) {
4f63acd0 568 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
fc3e2165 569 } else {
4f63acd0 570 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
fc3e2165 571 }
4f63acd0 572#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
fc3e2165 573#endif /* CONFIG_MII, ... */
2d966958
WD
574 x = timeHandler;
575 timeHandler = (thand_f *)0;
576 (*x)();
577 }
578
579
580 switch (NetState) {
581
582 case NETLOOP_RESTART:
2d966958 583 NetRestarted = 1;
2d966958
WD
584 goto restart;
585
586 case NETLOOP_SUCCESS:
587 if (NetBootFileXferSize > 0) {
f34024d4 588 char buf[20];
2d966958
WD
589 printf("Bytes transferred = %ld (%lx hex)\n",
590 NetBootFileXferSize,
591 NetBootFileXferSize);
f34024d4 592 sprintf(buf, "%lX", NetBootFileXferSize);
2d966958 593 setenv("filesize", buf);
a3d991bd
WD
594
595 sprintf(buf, "%lX", (unsigned long)load_addr);
596 setenv("fileaddr", buf);
2d966958
WD
597 }
598 eth_halt();
4793ee65
SG
599 ret = NetBootFileXferSize;
600 goto done;
2d966958
WD
601
602 case NETLOOP_FAIL:
4793ee65 603 goto done;
2d966958
WD
604 }
605 }
4793ee65
SG
606
607done:
39bccd21 608#ifdef CONFIG_CMD_TFTPPUT
4793ee65
SG
609 /* Clear out the handlers */
610 NetSetHandler(NULL);
611 net_set_icmp_handler(NULL);
39bccd21 612#endif
4793ee65 613 return ret;
2d966958
WD
614}
615
616/**********************************************************************/
617
618static void
619startAgainTimeout(void)
620{
621 NetState = NETLOOP_RESTART;
622}
623
624static void
03eb129f
LC
625startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
626 unsigned src, unsigned len)
2d966958
WD
627{
628 /* Totally ignore the packet */
629}
630
4f63acd0 631void NetStartAgain(void)
2d966958 632{
6e592385 633 char *nretry;
67b96e87
RB
634 int retry_forever = 0;
635 unsigned long retrycnt = 0;
636
637 nretry = getenv("netretry");
638 if (nretry) {
639 if (!strcmp(nretry, "yes"))
640 retry_forever = 1;
641 else if (!strcmp(nretry, "no"))
642 retrycnt = 0;
643 else if (!strcmp(nretry, "once"))
644 retrycnt = 1;
645 else
646 retrycnt = simple_strtoul(nretry, NULL, 0);
647 } else
648 retry_forever = 1;
649
650 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
651 eth_halt();
a3d991bd
WD
652 NetState = NETLOOP_FAIL;
653 return;
654 }
67b96e87
RB
655
656 NetTryCount++;
657
4f63acd0 658 eth_halt();
8b0c5c12 659#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
4f63acd0 660 eth_try_another(!NetRestarted);
8b0c5c12 661#endif
4f63acd0 662 eth_init(gd->bd);
6e592385 663 if (NetRestartWrap) {
2d966958 664 NetRestartWrap = 0;
67b96e87 665 if (NetDevExists) {
4f63acd0
LC
666 NetSetTimeout(10000UL, startAgainTimeout);
667 NetSetHandler(startAgainHandler);
6e592385 668 } else {
2d966958
WD
669 NetState = NETLOOP_FAIL;
670 }
6e592385 671 } else {
2d966958
WD
672 NetState = NETLOOP_RESTART;
673 }
2d966958
WD
674}
675
676/**********************************************************************/
677/*
678 * Miscelaneous bits.
679 */
680
681void
6b147d11 682NetSetHandler(rxhand_f *f)
2d966958
WD
683{
684 packetHandler = f;
685}
686
39bccd21 687#ifdef CONFIG_CMD_TFTPPUT
4793ee65
SG
688void net_set_icmp_handler(rxhand_icmp_f *f)
689{
690 packet_icmp_handler = f;
691}
39bccd21 692#endif
2d966958
WD
693
694void
6b147d11 695NetSetTimeout(ulong iv, thand_f *f)
2d966958
WD
696{
697 if (iv == 0) {
698 timeHandler = (thand_f *)0;
699 } else {
700 timeHandler = f;
e0ac62d7
WD
701 timeStart = get_timer(0);
702 timeDelta = iv;
2d966958
WD
703 }
704}
705
706
707void
db288a96 708NetSendPacket(uchar *pkt, int len)
2d966958
WD
709{
710 (void) eth_send(pkt, len);
711}
712
73a8b27c
WD
713int
714NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
715{
a3d991bd
WD
716 uchar *pkt;
717
73a8b27c
WD
718 /* convert to new style broadcast */
719 if (dest == 0)
720 dest = 0xFFFFFFFF;
721
722 /* if broadcast, make the ether address a broadcast and don't do ARP */
723 if (dest == 0xFFFFFFFF)
724 ether = NetBcastAddr;
725
3e38e429
LC
726 /*
727 * if MAC address was not discovered yet, save the packet and do
728 * an ARP request
729 */
73a8b27c
WD
730 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
731
ea45cb0a 732 debug("sending ARP for %08x\n", dest);
0ebf04c6 733
73a8b27c
WD
734 NetArpWaitPacketIP = dest;
735 NetArpWaitPacketMAC = ether;
a3d991bd
WD
736
737 pkt = NetArpWaitTxPacket;
4f63acd0 738 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
a3d991bd 739
4f63acd0 740 NetSetIP(pkt, dest, dport, sport, len);
3e38e429
LC
741 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
742 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
73a8b27c
WD
743
744 /* size of the waiting packet */
3e38e429
LC
745 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
746 IP_HDR_SIZE + len;
73a8b27c
WD
747
748 /* and do the ARP request */
749 NetArpWaitTry = 1;
750 NetArpWaitTimerStart = get_timer(0);
751 ArpRequest();
752 return 1; /* waiting */
753 }
754
ea45cb0a 755 debug("sending UDP to %08x/%pM\n", dest, ether);
73a8b27c 756
a3d991bd 757 pkt = (uchar *)NetTxPacket;
4f63acd0
LC
758 pkt += NetSetEther(pkt, ether, PROT_IP);
759 NetSetIP(pkt, dest, dport, sport, len);
a3d991bd 760 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
73a8b27c 761
6e592385 762 return 0; /* transmitted */
73a8b27c
WD
763}
764
643d1ab2 765#if defined(CONFIG_CMD_PING)
73a8b27c
WD
766static ushort PingSeqNo;
767
768int PingSend(void)
769{
770 static uchar mac[6];
db288a96
JH
771 IP_t *ip;
772 ushort *s;
a3d991bd 773 uchar *pkt;
73a8b27c
WD
774
775 /* XXX always send arp request */
776
777 memcpy(mac, NetEtherNullAddr, 6);
778
ea45cb0a 779 debug("sending ARP for %08x\n", NetPingIP);
73a8b27c
WD
780
781 NetArpWaitPacketIP = NetPingIP;
782 NetArpWaitPacketMAC = mac;
783
a3d991bd
WD
784 pkt = NetArpWaitTxPacket;
785 pkt += NetSetEther(pkt, mac, PROT_IP);
73a8b27c 786
db288a96 787 ip = (IP_t *)pkt;
73a8b27c
WD
788
789 /*
3e38e429
LC
790 * Construct an IP and ICMP header.
791 * (need to set no fragment bit - XXX)
73a8b27c 792 */
3e38e429
LC
793 /* IP_HDR_SIZE / 4 (not including UDP) */
794 ip->ip_hl_v = 0x45;
73a8b27c
WD
795 ip->ip_tos = 0;
796 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
797 ip->ip_id = htons(NetIPID++);
e0c07b86 798 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
73a8b27c
WD
799 ip->ip_ttl = 255;
800 ip->ip_p = 0x01; /* ICMP */
801 ip->ip_sum = 0;
3e38e429 802 /* already in network byte order */
6b147d11 803 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
3e38e429 804 /* - "" - */
6b147d11 805 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
73a8b27c
WD
806 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
807
808 s = &ip->udp_src; /* XXX ICMP starts here */
809 s[0] = htons(0x0800); /* echo-request, code */
810 s[1] = 0; /* checksum */
53677ef1 811 s[2] = 0; /* identifier */
73a8b27c
WD
812 s[3] = htons(PingSeqNo++); /* sequence number */
813 s[1] = ~NetCksum((uchar *)s, 8/2);
814
815 /* size of the waiting packet */
3e38e429
LC
816 NetArpWaitTxPacketSize =
817 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
73a8b27c
WD
818
819 /* and do the ARP request */
820 NetArpWaitTry = 1;
821 NetArpWaitTimerStart = get_timer(0);
822 ArpRequest();
823 return 1; /* waiting */
824}
825
826static void
4f63acd0 827PingTimeout(void)
73a8b27c
WD
828{
829 eth_halt();
830 NetState = NETLOOP_FAIL; /* we did not get the reply */
831}
2d966958 832
73a8b27c 833static void
03eb129f
LC
834PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
835 unsigned len)
73a8b27c 836{
03eb129f 837 if (sip != NetPingIP)
73a8b27c
WD
838 return;
839
840 NetState = NETLOOP_SUCCESS;
841}
842
843static void PingStart(void)
844{
4f63acd0 845 printf("Using %s device\n", eth_get_name());
4f63acd0
LC
846 NetSetTimeout(10000UL, PingTimeout);
847 NetSetHandler(PingHandler);
73a8b27c
WD
848
849 PingSend();
850}
610f2e9c 851#endif
2d966958 852
643d1ab2 853#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
854
855#define CDP_DEVICE_ID_TLV 0x0001
856#define CDP_ADDRESS_TLV 0x0002
857#define CDP_PORT_ID_TLV 0x0003
858#define CDP_CAPABILITIES_TLV 0x0004
859#define CDP_VERSION_TLV 0x0005
860#define CDP_PLATFORM_TLV 0x0006
861#define CDP_NATIVE_VLAN_TLV 0x000a
862#define CDP_APPLIANCE_VLAN_TLV 0x000e
863#define CDP_TRIGGER_TLV 0x000f
864#define CDP_POWER_CONSUMPTION_TLV 0x0010
865#define CDP_SYSNAME_TLV 0x0014
866#define CDP_SYSOBJECT_TLV 0x0015
867#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
868
49f3bdbb 869#define CDP_TIMEOUT 250UL /* one packet every 250ms */
a3d991bd
WD
870
871static int CDPSeq;
872static int CDPOK;
873
874ushort CDPNativeVLAN;
875ushort CDPApplianceVLAN;
876
3e38e429
LC
877static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
878 0x00 };
a3d991bd
WD
879
880static ushort CDP_compute_csum(const uchar *buff, ushort len)
881{
882 ushort csum;
883 int odd;
884 ulong result = 0;
885 ushort leftover;
77ddac94 886 ushort *p;
a3d991bd
WD
887
888 if (len > 0) {
889 odd = 1 & (ulong)buff;
890 if (odd) {
891 result = *buff << 8;
892 len--;
893 buff++;
894 }
895 while (len > 1) {
77ddac94
WD
896 p = (ushort *)buff;
897 result += *p++;
898 buff = (uchar *)p;
a3d991bd
WD
899 if (result & 0x80000000)
900 result = (result & 0xFFFF) + (result >> 16);
901 len -= 2;
902 }
903 if (len) {
904 leftover = (signed short)(*(const signed char *)buff);
3ada834e
WD
905 /* CISCO SUCKS big time! (and blows too):
906 * CDP uses the IP checksum algorithm with a twist;
907 * for the last byte it *sign* extends and sums.
908 */
3e38e429
LC
909 result = (result & 0xffff0000) |
910 ((result + leftover) & 0x0000ffff);
a3d991bd
WD
911 }
912 while (result >> 16)
913 result = (result & 0xFFFF) + (result >> 16);
914
915 if (odd)
3e38e429
LC
916 result = ((result >> 8) & 0xff) |
917 ((result & 0xff) << 8);
a3d991bd
WD
918 }
919
920 /* add up 16-bit and 17-bit words for 17+c bits */
921 result = (result & 0xffff) + (result >> 16);
922 /* add up 16-bit and 2-bit for 16+c bit */
923 result = (result & 0xffff) + (result >> 16);
924 /* add up carry.. */
925 result = (result & 0xffff) + (result >> 16);
926
927 /* negate */
928 csum = ~(ushort)result;
929
930 /* run time endian detection */
931 if (csum != htons(csum)) /* little endian */
932 csum = htons(csum);
933
934 return csum;
935}
936
937int CDPSendTrigger(void)
938{
db288a96
JH
939 uchar *pkt;
940 ushort *s;
941 ushort *cp;
a3d991bd 942 Ethernet_t *et;
a3d991bd
WD
943 int len;
944 ushort chksum;
4f63acd0
LC
945#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
946 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
6e592385
WD
947 char buf[32];
948#endif
a3d991bd
WD
949
950 pkt = NetTxPacket;
951 et = (Ethernet_t *)pkt;
952
953 /* NOTE: trigger sent not on any VLAN */
954
955 /* form ethernet header */
956 memcpy(et->et_dest, NetCDPAddr, 6);
957 memcpy(et->et_src, NetOurEther, 6);
958
959 pkt += ETHER_HDR_SIZE;
960
961 /* SNAP header */
962 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
963 pkt += sizeof(CDP_SNAP_hdr);
964
965 /* CDP header */
966 *pkt++ = 0x02; /* CDP version 2 */
967 *pkt++ = 180; /* TTL */
db288a96 968 s = (ushort *)pkt;
a3d991bd 969 cp = s;
3e38e429
LC
970 /* checksum (0 for later calculation) */
971 *s++ = htons(0);
a3d991bd
WD
972
973 /* CDP fields */
974#ifdef CONFIG_CDP_DEVICE_ID
975 *s++ = htons(CDP_DEVICE_ID_TLV);
976 *s++ = htons(CONFIG_CDP_DEVICE_ID);
95823ca0 977 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
a3d991bd
WD
978 memcpy((uchar *)s, buf, 16);
979 s += 16 / 2;
980#endif
981
982#ifdef CONFIG_CDP_PORT_ID
983 *s++ = htons(CDP_PORT_ID_TLV);
984 memset(buf, 0, sizeof(buf));
985 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
986 len = strlen(buf);
987 if (len & 1) /* make it even */
988 len++;
989 *s++ = htons(len + 4);
990 memcpy((uchar *)s, buf, len);
991 s += len / 2;
992#endif
993
994#ifdef CONFIG_CDP_CAPABILITIES
995 *s++ = htons(CDP_CAPABILITIES_TLV);
996 *s++ = htons(8);
997 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
998 s += 2;
999#endif
1000
1001#ifdef CONFIG_CDP_VERSION
1002 *s++ = htons(CDP_VERSION_TLV);
1003 memset(buf, 0, sizeof(buf));
1004 strcpy(buf, CONFIG_CDP_VERSION);
1005 len = strlen(buf);
1006 if (len & 1) /* make it even */
1007 len++;
1008 *s++ = htons(len + 4);
1009 memcpy((uchar *)s, buf, len);
1010 s += len / 2;
1011#endif
1012
1013#ifdef CONFIG_CDP_PLATFORM
1014 *s++ = htons(CDP_PLATFORM_TLV);
1015 memset(buf, 0, sizeof(buf));
1016 strcpy(buf, CONFIG_CDP_PLATFORM);
1017 len = strlen(buf);
1018 if (len & 1) /* make it even */
1019 len++;
1020 *s++ = htons(len + 4);
1021 memcpy((uchar *)s, buf, len);
1022 s += len / 2;
1023#endif
1024
1025#ifdef CONFIG_CDP_TRIGGER
1026 *s++ = htons(CDP_TRIGGER_TLV);
1027 *s++ = htons(8);
1028 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1029 s += 2;
1030#endif
1031
1032#ifdef CONFIG_CDP_POWER_CONSUMPTION
1033 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1034 *s++ = htons(6);
1035 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1036#endif
1037
1038 /* length of ethernet packet */
1039 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1040 et->et_protlen = htons(len);
1041
1042 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
3e38e429
LC
1043 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1044 (uchar *)s - (NetTxPacket + len));
a3d991bd
WD
1045 if (chksum == 0)
1046 chksum = 0xFFFF;
1047 *cp = htons(chksum);
1048
1049 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1050 return 0;
1051}
1052
1053static void
4f63acd0 1054CDPTimeout(void)
a3d991bd
WD
1055{
1056 CDPSeq++;
1057
1058 if (CDPSeq < 3) {
4f63acd0 1059 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
a3d991bd
WD
1060 CDPSendTrigger();
1061 return;
1062 }
1063
1064 /* if not OK try again */
1065 if (!CDPOK)
1066 NetStartAgain();
1067 else
1068 NetState = NETLOOP_SUCCESS;
1069}
1070
1071static void
03eb129f
LC
1072CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1073 unsigned len)
a3d991bd
WD
1074{
1075 /* nothing */
1076}
1077
1078static void
6b147d11 1079CDPHandler(const uchar *pkt, unsigned len)
a3d991bd
WD
1080{
1081 const uchar *t;
1082 const ushort *ss;
1083 ushort type, tlen;
a3d991bd
WD
1084 ushort vlan, nvlan;
1085
1086 /* minimum size? */
1087 if (len < sizeof(CDP_SNAP_hdr) + 4)
1088 goto pkt_short;
1089
1090 /* check for valid CDP SNAP header */
1091 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1092 return;
1093
1094 pkt += sizeof(CDP_SNAP_hdr);
1095 len -= sizeof(CDP_SNAP_hdr);
1096
1097 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1098 if (pkt[0] < 0x02 || pkt[1] == 0)
1099 return;
1100
3e38e429
LC
1101 /*
1102 * if version is greater than 0x02 maybe we'll have a problem;
1103 * output a warning
1104 */
a3d991bd
WD
1105 if (pkt[0] != 0x02)
1106 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1107 pkt[0] & 0xff);
1108
1109 if (CDP_compute_csum(pkt, len) != 0)
1110 return;
1111
1112 pkt += 4;
1113 len -= 4;
1114
1115 vlan = htons(-1);
1116 nvlan = htons(-1);
1117 while (len > 0) {
1118 if (len < 4)
1119 goto pkt_short;
1120
1121 ss = (const ushort *)pkt;
1122 type = ntohs(ss[0]);
1123 tlen = ntohs(ss[1]);
d3c65b01 1124 if (tlen > len)
a3d991bd 1125 goto pkt_short;
a3d991bd
WD
1126
1127 pkt += tlen;
1128 len -= tlen;
1129
1130 ss += 2; /* point ss to the data of the TLV */
1131 tlen -= 4;
1132
1133 switch (type) {
c819abee
LC
1134 case CDP_DEVICE_ID_TLV:
1135 break;
1136 case CDP_ADDRESS_TLV:
1137 break;
1138 case CDP_PORT_ID_TLV:
1139 break;
1140 case CDP_CAPABILITIES_TLV:
1141 break;
1142 case CDP_VERSION_TLV:
1143 break;
1144 case CDP_PLATFORM_TLV:
1145 break;
1146 case CDP_NATIVE_VLAN_TLV:
1147 nvlan = *ss;
1148 break;
1149 case CDP_APPLIANCE_VLAN_TLV:
1150 t = (const uchar *)ss;
1151 while (tlen > 0) {
1152 if (tlen < 3)
1153 goto pkt_short;
a3d991bd 1154
c819abee 1155 ss = (const ushort *)(t + 1);
a3d991bd
WD
1156
1157#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
5c10419c 1158 if (t[0] == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
c819abee 1159 vlan = *ss;
a3d991bd 1160#else
c819abee
LC
1161 /* XXX will this work; dunno */
1162 vlan = ntohs(*ss);
a3d991bd 1163#endif
c819abee
LC
1164 t += 3; tlen -= 3;
1165 }
1166 break;
1167 case CDP_TRIGGER_TLV:
1168 break;
1169 case CDP_POWER_CONSUMPTION_TLV:
1170 break;
1171 case CDP_SYSNAME_TLV:
1172 break;
1173 case CDP_SYSOBJECT_TLV:
1174 break;
1175 case CDP_MANAGEMENT_ADDRESS_TLV:
1176 break;
a3d991bd
WD
1177 }
1178 }
1179
1180 CDPApplianceVLAN = vlan;
1181 CDPNativeVLAN = nvlan;
1182
1183 CDPOK = 1;
1184 return;
1185
1186 pkt_short:
1187 printf("** CDP packet is too short\n");
1188 return;
1189}
1190
1191static void CDPStart(void)
1192{
4f63acd0 1193 printf("Using %s device\n", eth_get_name());
a3d991bd
WD
1194 CDPSeq = 0;
1195 CDPOK = 0;
1196
1197 CDPNativeVLAN = htons(-1);
1198 CDPApplianceVLAN = htons(-1);
1199
4f63acd0
LC
1200 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1201 NetSetHandler(CDPDummyHandler);
a3d991bd
WD
1202
1203 CDPSendTrigger();
1204}
610f2e9c 1205#endif
a3d991bd 1206
5cfaa4e5
AR
1207#ifdef CONFIG_IP_DEFRAG
1208/*
1209 * This function collects fragments in a single packet, according
1210 * to the algorithm in RFC815. It returns NULL or the pointer to
1211 * a complete packet, in static storage
1212 */
1213#ifndef CONFIG_NET_MAXDEFRAG
1214#define CONFIG_NET_MAXDEFRAG 16384
1215#endif
1216/*
1217 * MAXDEFRAG, above, is chosen in the config file and is real data
1218 * so we need to add the NFS overhead, which is more than TFTP.
1219 * To use sizeof in the internal unnamed structures, we need a real
1220 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1221 * The compiler doesn't complain nor allocates the actual structure
1222 */
1223static struct rpc_t rpc_specimen;
1224#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1225
1226#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1227
1228/*
1229 * this is the packet being assembled, either data or frag control.
1230 * Fragments go by 8 bytes, so this union must be 8 bytes long
1231 */
1232struct hole {
1233 /* first_byte is address of this structure */
1234 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1235 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1236 u16 prev_hole; /* index of prev, 0 == none */
1237 u16 unused;
1238};
1239
1240static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1241{
1242 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1243 static u16 first_hole, total_len;
1244 struct hole *payload, *thisfrag, *h, *newh;
1245 IP_t *localip = (IP_t *)pkt_buff;
1246 uchar *indata = (uchar *)ip;
1247 int offset8, start, len, done = 0;
1248 u16 ip_off = ntohs(ip->ip_off);
1249
1250 /* payload starts after IP header, this fragment is in there */
1251 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1252 offset8 = (ip_off & IP_OFFS);
1253 thisfrag = payload + offset8;
1254 start = offset8 * 8;
1255 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1256
1257 if (start + len > IP_MAXUDP) /* fragment extends too far */
1258 return NULL;
1259
1260 if (!total_len || localip->ip_id != ip->ip_id) {
1261 /* new (or different) packet, reset structs */
1262 total_len = 0xffff;
1263 payload[0].last_byte = ~0;
1264 payload[0].next_hole = 0;
1265 payload[0].prev_hole = 0;
1266 first_hole = 0;
1267 /* any IP header will work, copy the first we received */
1268 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1269 }
1270
1271 /*
1272 * What follows is the reassembly algorithm. We use the payload
1273 * array as a linked list of hole descriptors, as each hole starts
1274 * at a multiple of 8 bytes. However, last byte can be whatever value,
1275 * so it is represented as byte count, not as 8-byte blocks.
1276 */
1277
1278 h = payload + first_hole;
1279 while (h->last_byte < start) {
1280 if (!h->next_hole) {
1281 /* no hole that far away */
1282 return NULL;
1283 }
1284 h = payload + h->next_hole;
1285 }
1286
e397e59e
FS
1287 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1288 if (offset8 + ((len + 7) / 8) <= h - payload) {
5cfaa4e5
AR
1289 /* no overlap with holes (dup fragment?) */
1290 return NULL;
1291 }
1292
1293 if (!(ip_off & IP_FLAGS_MFRAG)) {
1294 /* no more fragmentss: truncate this (last) hole */
1295 total_len = start + len;
1296 h->last_byte = start + len;
1297 }
1298
1299 /*
1300 * There is some overlap: fix the hole list. This code doesn't
1301 * deal with a fragment that overlaps with two different holes
1302 * (thus being a superset of a previously-received fragment).
1303 */
1304
4f63acd0 1305 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
5cfaa4e5
AR
1306 /* complete overlap with hole: remove hole */
1307 if (!h->prev_hole && !h->next_hole) {
1308 /* last remaining hole */
1309 done = 1;
1310 } else if (!h->prev_hole) {
1311 /* first hole */
1312 first_hole = h->next_hole;
1313 payload[h->next_hole].prev_hole = 0;
1314 } else if (!h->next_hole) {
1315 /* last hole */
1316 payload[h->prev_hole].next_hole = 0;
1317 } else {
1318 /* in the middle of the list */
1319 payload[h->next_hole].prev_hole = h->prev_hole;
1320 payload[h->prev_hole].next_hole = h->next_hole;
1321 }
1322
1323 } else if (h->last_byte <= start + len) {
1324 /* overlaps with final part of the hole: shorten this hole */
1325 h->last_byte = start;
1326
1327 } else if (h >= thisfrag) {
1328 /* overlaps with initial part of the hole: move this hole */
1329 newh = thisfrag + (len / 8);
1330 *newh = *h;
1331 h = newh;
1332 if (h->next_hole)
1333 payload[h->next_hole].prev_hole = (h - payload);
1334 if (h->prev_hole)
1335 payload[h->prev_hole].next_hole = (h - payload);
1336 else
1337 first_hole = (h - payload);
1338
1339 } else {
1340 /* fragment sits in the middle: split the hole */
1341 newh = thisfrag + (len / 8);
1342 *newh = *h;
1343 h->last_byte = start;
1344 h->next_hole = (newh - payload);
1345 newh->prev_hole = (h - payload);
1346 if (newh->next_hole)
1347 payload[newh->next_hole].prev_hole = (newh - payload);
1348 }
1349
1350 /* finally copy this fragment and possibly return whole packet */
1351 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1352 if (!done)
1353 return NULL;
1354
1355 localip->ip_len = htons(total_len);
1356 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1357 return localip;
1358}
1359
1360static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1361{
1362 u16 ip_off = ntohs(ip->ip_off);
1363 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1364 return ip; /* not a fragment */
1365 return __NetDefragment(ip, lenp);
1366}
1367
1368#else /* !CONFIG_IP_DEFRAG */
1369
1370static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1371{
1372 u16 ip_off = ntohs(ip->ip_off);
1373 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1374 return ip; /* not a fragment */
1375 return NULL;
1376}
1377#endif
a3d991bd 1378
8f79bb17
SG
1379/**
1380 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1381 * drop others.
1382 *
1383 * @parma ip IP packet containing the ICMP
1384 */
1385static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
1386{
1387 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
1388
1389 switch (icmph->type) {
1390 case ICMP_REDIRECT:
1391 if (icmph->code != ICMP_REDIR_HOST)
1392 return;
1393 printf(" ICMP Host Redirect to %pI4 ",
1394 &icmph->un.gateway);
1395 break;
1396#if defined(CONFIG_CMD_PING)
1397 case ICMP_ECHO_REPLY:
1398 /*
1399 * IP header OK. Pass the packet to the
1400 * current handler.
1401 */
1402 /*
1403 * XXX point to ip packet - should this use
1404 * packet_icmp_handler?
1405 */
1406 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1407 break;
1408 case ICMP_ECHO_REQUEST:
1409 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1410 ETHER_HDR_SIZE + len);
1411
1412 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1413 memcpy(&et->et_src[0], NetOurEther, 6);
1414
1415 ip->ip_sum = 0;
1416 ip->ip_off = 0;
1417 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1418 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1419 ip->ip_sum = ~NetCksum((uchar *)ip,
1420 IP_HDR_SIZE_NO_UDP >> 1);
1421
1422 icmph->type = ICMP_ECHO_REPLY;
1423 icmph->checksum = 0;
1424 icmph->checksum = ~NetCksum((uchar *)icmph,
1425 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1426 (void) eth_send((uchar *)et,
1427 ETHER_HDR_SIZE + len);
1428 break;
1429#endif
1430 default:
39bccd21 1431#ifdef CONFIG_CMD_TFTPPUT
4793ee65
SG
1432 if (packet_icmp_handler)
1433 packet_icmp_handler(icmph->type, icmph->code,
1434 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
1435 icmph->un.data, ntohs(ip->udp_len));
39bccd21 1436#endif
8f79bb17
SG
1437 break;
1438 }
1439}
1440
2d966958 1441void
db288a96 1442NetReceive(uchar *inpkt, int len)
2d966958
WD
1443{
1444 Ethernet_t *et;
1445 IP_t *ip;
1446 ARP_t *arp;
1447 IPaddr_t tmp;
03eb129f 1448 IPaddr_t src_ip;
2d966958 1449 int x;
a3d991bd 1450 uchar *pkt;
643d1ab2 1451#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
1452 int iscdp;
1453#endif
1454 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1455
0ebf04c6 1456 debug("packet received\n");
2d966958 1457
d9bec9f4
MF
1458 NetRxPacket = inpkt;
1459 NetRxPacketLen = len;
a3d991bd
WD
1460 et = (Ethernet_t *)inpkt;
1461
1462 /* too small packet? */
1463 if (len < ETHER_HDR_SIZE)
1464 return;
1465
f85b6071
RJ
1466#ifdef CONFIG_API
1467 if (push_packet) {
1468 (*push_packet)(inpkt, len);
1469 return;
1470 }
1471#endif
1472
643d1ab2 1473#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
1474 /* keep track if packet is CDP */
1475 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1476#endif
1477
1478 myvlanid = ntohs(NetOurVLAN);
1479 if (myvlanid == (ushort)-1)
1480 myvlanid = VLAN_NONE;
1481 mynvlanid = ntohs(NetOurNativeVLAN);
1482 if (mynvlanid == (ushort)-1)
1483 mynvlanid = VLAN_NONE;
2d966958
WD
1484
1485 x = ntohs(et->et_protlen);
1486
0ebf04c6 1487 debug("packet received\n");
a3d991bd 1488
2d966958
WD
1489 if (x < 1514) {
1490 /*
1491 * Got a 802 packet. Check the other protocol field.
1492 */
1493 x = ntohs(et->et_prot);
a3d991bd
WD
1494
1495 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
2d966958 1496 len -= E802_HDR_SIZE;
a3d991bd
WD
1497
1498 } else if (x != PROT_VLAN) { /* normal packet */
1499 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
2d966958 1500 len -= ETHER_HDR_SIZE;
a3d991bd
WD
1501
1502 } else { /* VLAN packet */
1503 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1504
0ebf04c6
RG
1505 debug("VLAN packet received\n");
1506
a3d991bd
WD
1507 /* too small packet? */
1508 if (len < VLAN_ETHER_HDR_SIZE)
1509 return;
1510
1511 /* if no VLAN active */
1512 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
643d1ab2 1513#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
1514 && iscdp == 0
1515#endif
1516 )
1517 return;
1518
1519 cti = ntohs(vet->vet_tag);
1520 vlanid = cti & VLAN_IDMASK;
1521 x = ntohs(vet->vet_type);
1522
1523 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1524 len -= VLAN_ETHER_HDR_SIZE;
2d966958
WD
1525 }
1526
0ebf04c6 1527 debug("Receive from protocol 0x%x\n", x);
2d966958 1528
643d1ab2 1529#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
1530 if (iscdp) {
1531 CDPHandler((uchar *)ip, len);
1532 return;
1533 }
1534#endif
1535
1536 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1537 if (vlanid == VLAN_NONE)
1538 vlanid = (mynvlanid & VLAN_IDMASK);
1539 /* not matched? */
1540 if (vlanid != (myvlanid & VLAN_IDMASK))
1541 return;
1542 }
1543
2d966958
WD
1544 switch (x) {
1545
1546 case PROT_ARP:
1547 /*
1548 * We have to deal with two types of ARP packets:
8bde7f77
WD
1549 * - REQUEST packets will be answered by sending our
1550 * IP address - if we know it.
1551 * - REPLY packates are expected only after we asked
1552 * for the TFTP server's or the gateway's ethernet
1553 * address; so if we receive such a packet, we set
1554 * the server ethernet address
2d966958 1555 */
0ebf04c6
RG
1556 debug("Got ARP\n");
1557
2d966958
WD
1558 arp = (ARP_t *)ip;
1559 if (len < ARP_HDR_SIZE) {
1560 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1561 return;
1562 }
d3c65b01 1563 if (ntohs(arp->ar_hrd) != ARP_ETHER)
2d966958 1564 return;
d3c65b01 1565 if (ntohs(arp->ar_pro) != PROT_IP)
2d966958 1566 return;
d3c65b01 1567 if (arp->ar_hln != 6)
2d966958 1568 return;
d3c65b01 1569 if (arp->ar_pln != 4)
2d966958 1570 return;
2d966958 1571
d3c65b01 1572 if (NetOurIP == 0)
2d966958 1573 return;
2d966958 1574
d3c65b01 1575 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
2d966958 1576 return;
2d966958
WD
1577
1578 switch (ntohs(arp->ar_op)) {
3e38e429
LC
1579 case ARPOP_REQUEST:
1580 /* reply with our IP address */
0ebf04c6 1581 debug("Got ARP REQUEST, return our IP\n");
a3d991bd
WD
1582 pkt = (uchar *)et;
1583 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
2d966958 1584 arp->ar_op = htons(ARPOP_REPLY);
4f63acd0 1585 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
2d966958 1586 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
4f63acd0
LC
1587 memcpy(&arp->ar_data[0], NetOurEther, 6);
1588 NetCopyIP(&arp->ar_data[6], &NetOurIP);
3e38e429
LC
1589 (void) eth_send((uchar *)et,
1590 (pkt - (uchar *)et) + ARP_HDR_SIZE);
2d966958 1591 return;
73a8b27c
WD
1592
1593 case ARPOP_REPLY: /* arp reply */
1594 /* are we waiting for a reply */
1595 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1596 break;
97cfe861
RG
1597
1598#ifdef CONFIG_KEEP_SERVERADDR
1599 if (NetServerIP == NetArpWaitPacketIP) {
1600 char buf[20];
1601 sprintf(buf, "%pM", arp->ar_data);
1602 setenv("serveraddr", buf);
1603 }
1604#endif
1605
0ebf04c6 1606 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
95823ca0 1607 arp->ar_data);
73a8b27c
WD
1608
1609 tmp = NetReadIP(&arp->ar_data[6]);
1610
1611 /* matched waiting packet's address */
1612 if (tmp == NetArpWaitReplyIP) {
0ebf04c6 1613 debug("Got it\n");
73a8b27c 1614 /* save address for later use */
3e38e429
LC
1615 memcpy(NetArpWaitPacketMAC,
1616 &arp->ar_data[0], 6);
73a8b27c 1617
68ceb29e 1618#ifdef CONFIG_NETCONSOLE
03eb129f 1619 (*packetHandler)(0, 0, 0, 0, 0);
68ceb29e 1620#endif
73a8b27c
WD
1621 /* modify header, and transmit it */
1622 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
3e38e429
LC
1623 (void) eth_send(NetArpWaitTxPacket,
1624 NetArpWaitTxPacketSize);
73a8b27c
WD
1625
1626 /* no arp request pending now */
1627 NetArpWaitPacketIP = 0;
1628 NetArpWaitTxPacketSize = 0;
1629 NetArpWaitPacketMAC = NULL;
1630
1631 }
2d966958
WD
1632 return;
1633 default:
3e38e429
LC
1634 debug("Unexpected ARP opcode 0x%x\n",
1635 ntohs(arp->ar_op));
2d966958
WD
1636 return;
1637 }
289f932c 1638 break;
2d966958 1639
bf6cb247 1640#ifdef CONFIG_CMD_RARP
2d966958 1641 case PROT_RARP:
0ebf04c6 1642 debug("Got RARP\n");
2d966958
WD
1643 arp = (ARP_t *)ip;
1644 if (len < ARP_HDR_SIZE) {
1645 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1646 return;
1647 }
1648
1649 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1650 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1651 (ntohs(arp->ar_pro) != PROT_IP) ||
1652 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1653
4f63acd0 1654 puts("invalid RARP header\n");
2d966958 1655 } else {
4f63acd0 1656 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
3d3befa7 1657 if (NetServerIP == 0)
4f63acd0
LC
1658 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1659 memcpy(NetServerEther, &arp->ar_data[0], 6);
2d966958 1660
03eb129f 1661 (*packetHandler)(0, 0, 0, 0, 0);
2d966958
WD
1662 }
1663 break;
bf6cb247 1664#endif
2d966958 1665 case PROT_IP:
0ebf04c6 1666 debug("Got IP\n");
5cfaa4e5 1667 /* Before we start poking the header, make sure it is there */
2d966958 1668 if (len < IP_HDR_SIZE) {
0ebf04c6 1669 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
2d966958
WD
1670 return;
1671 }
5cfaa4e5 1672 /* Check the packet length */
2d966958
WD
1673 if (len < ntohs(ip->ip_len)) {
1674 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1675 return;
1676 }
1677 len = ntohs(ip->ip_len);
0ebf04c6
RG
1678 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1679
5cfaa4e5 1680 /* Can't deal with anything except IPv4 */
d3c65b01 1681 if ((ip->ip_hl_v & 0xf0) != 0x40)
2d966958 1682 return;
5cfaa4e5 1683 /* Can't deal with IP options (headers != 20 bytes) */
d3c65b01 1684 if ((ip->ip_hl_v & 0x0f) > 0x05)
6b52cfe1 1685 return;
5cfaa4e5 1686 /* Check the Checksum of the header */
2d966958 1687 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
4f63acd0 1688 puts("checksum bad\n");
2d966958
WD
1689 return;
1690 }
5cfaa4e5 1691 /* If it is not for us, ignore it */
2d966958
WD
1692 tmp = NetReadIP(&ip->ip_dst);
1693 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
53a5c424 1694#ifdef CONFIG_MCAST_TFTP
85eb5caf 1695 if (Mcast_addr != tmp)
53a5c424 1696#endif
c819abee 1697 return;
2d966958 1698 }
03eb129f
LC
1699 /* Read source IP address for later use */
1700 src_ip = NetReadIP(&ip->ip_src);
5cfaa4e5
AR
1701 /*
1702 * The function returns the unchanged packet if it's not
1703 * a fragment, and either the complete packet or NULL if
1704 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1705 */
ccb9ebef
LC
1706 ip = NetDefragment(ip, &len);
1707 if (!ip)
5cfaa4e5 1708 return;
2d966958
WD
1709 /*
1710 * watch for ICMP host redirects
1711 *
8bde7f77
WD
1712 * There is no real handler code (yet). We just watch
1713 * for ICMP host redirect messages. In case anybody
1714 * sees these messages: please contact me
1715 * (wd@denx.de), or - even better - send me the
1716 * necessary fixes :-)
2d966958 1717 *
8bde7f77
WD
1718 * Note: in all cases where I have seen this so far
1719 * it was a problem with the router configuration,
1720 * for instance when a router was configured in the
1721 * BOOTP reply, but the TFTP server was on the same
1722 * subnet. So this is probably a warning that your
1723 * configuration might be wrong. But I'm not really
1724 * sure if there aren't any other situations.
4793ee65
SG
1725 *
1726 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1727 * we send a tftp packet to a dead connection, or when
1728 * there is no server at the other end.
2d966958
WD
1729 */
1730 if (ip->ip_p == IPPROTO_ICMP) {
8f79bb17
SG
1731 receive_icmp(ip, len, src_ip, et);
1732 return;
2d966958
WD
1733 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1734 return;
1735 }
1736
8534bf9a
SR
1737#ifdef CONFIG_UDP_CHECKSUM
1738 if (ip->udp_xsum != 0) {
b2f50807 1739 ulong xsum;
8534bf9a
SR
1740 ushort *sumptr;
1741 ushort sumlen;
1742
1743 xsum = ip->ip_p;
1744 xsum += (ntohs(ip->udp_len));
1745 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1746 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1747 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1748 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1749
1750 sumlen = ntohs(ip->udp_len);
1751 sumptr = (ushort *) &(ip->udp_src);
1752
1753 while (sumlen > 1) {
b2f50807 1754 ushort sumdata;
8534bf9a
SR
1755
1756 sumdata = *sumptr++;
1757 xsum += ntohs(sumdata);
1758 sumlen -= 2;
1759 }
1760 if (sumlen > 0) {
b2f50807 1761 ushort sumdata;
8534bf9a
SR
1762
1763 sumdata = *(unsigned char *) sumptr;
b2f50807 1764 sumdata = (sumdata << 8) & 0xff00;
8534bf9a
SR
1765 xsum += sumdata;
1766 }
1767 while ((xsum >> 16) != 0) {
3e38e429
LC
1768 xsum = (xsum & 0x0000ffff) +
1769 ((xsum >> 16) & 0x0000ffff);
8534bf9a
SR
1770 }
1771 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
9b55a253
WD
1772 printf(" UDP wrong checksum %08lx %08x\n",
1773 xsum, ntohs(ip->udp_xsum));
8534bf9a
SR
1774 return;
1775 }
1776 }
1777#endif
1778
53a5c424 1779
68ceb29e 1780#ifdef CONFIG_NETCONSOLE
4f63acd0 1781 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
68ceb29e
WD
1782 ntohs(ip->udp_dst),
1783 ntohs(ip->udp_src),
1784 ntohs(ip->udp_len) - 8);
1785#endif
2d966958
WD
1786 /*
1787 * IP header OK. Pass the packet to the current handler.
1788 */
4f63acd0 1789 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
2d966958 1790 ntohs(ip->udp_dst),
03eb129f 1791 src_ip,
2d966958
WD
1792 ntohs(ip->udp_src),
1793 ntohs(ip->udp_len) - 8);
2d966958
WD
1794 break;
1795 }
1796}
1797
1798
1799/**********************************************************************/
1800
e4bf0c5c 1801static int net_check_prereq(enum proto_t protocol)
2d966958
WD
1802{
1803 switch (protocol) {
6e592385 1804 /* Fall through */
643d1ab2 1805#if defined(CONFIG_CMD_PING)
73a8b27c 1806 case PING:
6e592385 1807 if (NetPingIP == 0) {
4f63acd0 1808 puts("*** ERROR: ping address not given\n");
92895de9 1809 return 1;
6e592385
WD
1810 }
1811 goto common;
cbd8a35c 1812#endif
643d1ab2 1813#if defined(CONFIG_CMD_SNTP)
ea287deb
WD
1814 case SNTP:
1815 if (NetNtpServerIP == 0) {
4f63acd0 1816 puts("*** ERROR: NTP server address not given\n");
92895de9 1817 return 1;
ea287deb
WD
1818 }
1819 goto common;
1820#endif
1a32bf41
RG
1821#if defined(CONFIG_CMD_DNS)
1822 case DNS:
1823 if (NetOurDNSIP == 0) {
1824 puts("*** ERROR: DNS server address not given\n");
1825 return 1;
1826 }
1827 goto common;
1828#endif
643d1ab2 1829#if defined(CONFIG_CMD_NFS)
cbd8a35c 1830 case NFS:
73a8b27c 1831#endif
e4bf0c5c 1832 case TFTPGET:
1fb7cd49 1833 case TFTPPUT:
6e592385 1834 if (NetServerIP == 0) {
4f63acd0 1835 puts("*** ERROR: `serverip' not set\n");
92895de9 1836 return 1;
6e592385 1837 }
4f63acd0
LC
1838#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1839 defined(CONFIG_CMD_DNS)
1840common:
73a8b27c 1841#endif
8b6bbe10 1842 /* Fall through */
73a8b27c 1843
8b6bbe10 1844 case NETCONS:
7a83af07 1845 case TFTPSRV:
6e592385 1846 if (NetOurIP == 0) {
4f63acd0 1847 puts("*** ERROR: `ipaddr' not set\n");
92895de9 1848 return 1;
6e592385
WD
1849 }
1850 /* Fall through */
2d966958 1851
bf6cb247 1852#ifdef CONFIG_CMD_RARP
2d966958 1853 case RARP:
bf6cb247 1854#endif
2d966958 1855 case BOOTP:
a3d991bd 1856 case CDP:
bf6cb247 1857 case DHCP:
4f63acd0 1858 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
4f63acd0
LC
1859 extern int eth_get_dev_index(void);
1860 int num = eth_get_dev_index();
2d966958 1861
6e592385
WD
1862 switch (num) {
1863 case -1:
4f63acd0 1864 puts("*** ERROR: No ethernet found.\n");
92895de9 1865 return 1;
6e592385 1866 case 0:
4f63acd0 1867 puts("*** ERROR: `ethaddr' not set\n");
2d966958 1868 break;
6e592385 1869 default:
4f63acd0 1870 printf("*** ERROR: `eth%daddr' not set\n",
2d966958
WD
1871 num);
1872 break;
6e592385 1873 }
2d966958 1874
4f63acd0 1875 NetStartAgain();
92895de9 1876 return 2;
6e592385
WD
1877 }
1878 /* Fall through */
1879 default:
92895de9 1880 return 0;
2d966958 1881 }
92895de9 1882 return 0; /* OK */
2d966958
WD
1883}
1884/**********************************************************************/
1885
1886int
6b147d11 1887NetCksumOk(uchar *ptr, int len)
2d966958
WD
1888{
1889 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1890}
1891
1892
1893unsigned
6b147d11 1894NetCksum(uchar *ptr, int len)
2d966958
WD
1895{
1896 ulong xsum;
9d2a873b 1897 ushort *p = (ushort *)ptr;
2d966958
WD
1898
1899 xsum = 0;
1900 while (len-- > 0)
7bc5ee07 1901 xsum += *p++;
2d966958
WD
1902 xsum = (xsum & 0xffff) + (xsum >> 16);
1903 xsum = (xsum & 0xffff) + (xsum >> 16);
92895de9 1904 return xsum & 0xffff;
2d966958
WD
1905}
1906
a3d991bd
WD
1907int
1908NetEthHdrSize(void)
1909{
1910 ushort myvlanid;
2d966958 1911
a3d991bd
WD
1912 myvlanid = ntohs(NetOurVLAN);
1913 if (myvlanid == (ushort)-1)
1914 myvlanid = VLAN_NONE;
1915
3e38e429
LC
1916 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1917 VLAN_ETHER_HDR_SIZE;
a3d991bd
WD
1918}
1919
1920int
db288a96 1921NetSetEther(uchar *xet, uchar * addr, uint prot)
2d966958
WD
1922{
1923 Ethernet_t *et = (Ethernet_t *)xet;
a3d991bd
WD
1924 ushort myvlanid;
1925
1926 myvlanid = ntohs(NetOurVLAN);
1927 if (myvlanid == (ushort)-1)
1928 myvlanid = VLAN_NONE;
2d966958 1929
4f63acd0
LC
1930 memcpy(et->et_dest, addr, 6);
1931 memcpy(et->et_src, NetOurEther, 6);
a3d991bd 1932 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
c819abee 1933 et->et_protlen = htons(prot);
a3d991bd
WD
1934 return ETHER_HDR_SIZE;
1935 } else {
1936 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
2d966958 1937
a3d991bd
WD
1938 vet->vet_vlan_type = htons(PROT_VLAN);
1939 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1940 vet->vet_type = htons(prot);
1941 return VLAN_ETHER_HDR_SIZE;
1942 }
1943}
2d966958
WD
1944
1945void
db288a96 1946NetSetIP(uchar *xip, IPaddr_t dest, int dport, int sport, int len)
2d966958 1947{
af8626e0 1948 IP_t *ip = (IP_t *)xip;
2d966958
WD
1949
1950 /*
1951 * If the data is an odd number of bytes, zero the
1952 * byte after the last byte so that the checksum
1953 * will work.
1954 */
1955 if (len & 1)
1956 xip[IP_HDR_SIZE + len] = 0;
1957
1958 /*
1959 * Construct an IP and UDP header.
6e592385 1960 * (need to set no fragment bit - XXX)
2d966958 1961 */
3e38e429
LC
1962 /* IP_HDR_SIZE / 4 (not including UDP) */
1963 ip->ip_hl_v = 0x45;
2d966958
WD
1964 ip->ip_tos = 0;
1965 ip->ip_len = htons(IP_HDR_SIZE + len);
1966 ip->ip_id = htons(NetIPID++);
e0c07b86 1967 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
2d966958
WD
1968 ip->ip_ttl = 255;
1969 ip->ip_p = 17; /* UDP */
1970 ip->ip_sum = 0;
3e38e429 1971 /* already in network byte order */
6b147d11 1972 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
3e38e429 1973 /* - "" - */
6b147d11 1974 NetCopyIP((void *)&ip->ip_dst, &dest);
2d966958
WD
1975 ip->udp_src = htons(sport);
1976 ip->udp_dst = htons(dport);
1977 ip->udp_len = htons(8 + len);
1978 ip->udp_xsum = 0;
1979 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1980}
1981
4f63acd0 1982void copy_filename(char *dst, const char *src, int size)
2d966958
WD
1983{
1984 if (*src && (*src == '"')) {
1985 ++src;
1986 --size;
1987 }
1988
d3c65b01 1989 while ((--size > 0) && *src && (*src != '"'))
2d966958 1990 *dst++ = *src++;
2d966958
WD
1991 *dst = '\0';
1992}
1993
3e38e429
LC
1994#if defined(CONFIG_CMD_NFS) || \
1995 defined(CONFIG_CMD_SNTP) || \
1996 defined(CONFIG_CMD_DNS)
1a32bf41 1997/*
9739946c
RG
1998 * make port a little random (1024-17407)
1999 * This keeps the math somewhat trivial to compute, and seems to work with
2000 * all supported protocols/clients/servers
1a32bf41
RG
2001 */
2002unsigned int random_port(void)
2003{
9739946c 2004 return 1024 + (get_timer(0) % 0x4000);
1a32bf41
RG
2005}
2006#endif
2007
4f63acd0 2008void ip_to_string(IPaddr_t x, char *s)
2d966958 2009{
4f63acd0
LC
2010 x = ntohl(x);
2011 sprintf(s, "%d.%d.%d.%d",
2012 (int) ((x >> 24) & 0xff),
2013 (int) ((x >> 16) & 0xff),
2014 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
6e592385 2015 );
2d966958
WD
2016}
2017
a3d991bd
WD
2018void VLAN_to_string(ushort x, char *s)
2019{
2020 x = ntohs(x);
2021
2022 if (x == (ushort)-1)
2023 x = VLAN_NONE;
2024
2025 if (x == VLAN_NONE)
2026 strcpy(s, "none");
2027 else
2028 sprintf(s, "%d", x & VLAN_IDMASK);
2029}
2030
2e3ef6e4 2031ushort string_to_VLAN(const char *s)
a3d991bd
WD
2032{
2033 ushort id;
2034
2035 if (s == NULL)
b9711de1 2036 return htons(VLAN_NONE);
a3d991bd
WD
2037
2038 if (*s < '0' || *s > '9')
2039 id = VLAN_NONE;
2040 else
2041 id = (ushort)simple_strtoul(s, NULL, 10);
2042
b9711de1 2043 return htons(id);
a3d991bd
WD
2044}
2045
a3d991bd
WD
2046ushort getenv_VLAN(char *var)
2047{
92895de9 2048 return string_to_VLAN(getenv(var));
a3d991bd 2049}