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