]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - net/net.c
net: Move PING out of net.c
[karo-tx-uboot.git] / net / net.c
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  *
43  *     Prerequisites:   - own ethernet address
44  *     We want:         - IP, Netmask, ServerIP, Gateway IP
45  *                      - bootfilename, lease time
46  *     Next step:       - TFTP
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
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
67  *
68  * SNTP:
69  *
70  *      Prerequisites:  - own ethernet address
71  *                      - own IP address
72  *      We want:        - network time
73  *      Next step:      none
74  */
75
76
77 #include <common.h>
78 #include <watchdog.h>
79 #include <command.h>
80 #include <linux/compiler.h>
81 #include <net.h>
82 #include "arp.h"
83 #include "bootp.h"
84 #include "tftp.h"
85 #ifdef CONFIG_CMD_RARP
86 #include "rarp.h"
87 #endif
88 #include "nfs.h"
89 #ifdef CONFIG_STATUS_LED
90 #include <status_led.h>
91 #include <miiphy.h>
92 #endif
93 #if defined(CONFIG_CMD_SNTP)
94 #include "sntp.h"
95 #endif
96 #include "cdp.h"
97 #if defined(CONFIG_CMD_DNS)
98 #include "dns.h"
99 #endif
100 #include "ping.h"
101
102 DECLARE_GLOBAL_DATA_PTR;
103
104 /** BOOTP EXTENTIONS **/
105
106 /* Our subnet mask (0=unknown) */
107 IPaddr_t        NetOurSubnetMask;
108 /* Our gateways IP address */
109 IPaddr_t        NetOurGatewayIP;
110 /* Our DNS IP address */
111 IPaddr_t        NetOurDNSIP;
112 #if defined(CONFIG_BOOTP_DNS2)
113 /* Our 2nd DNS IP address */
114 IPaddr_t        NetOurDNS2IP;
115 #endif
116 /* Our NIS domain */
117 char            NetOurNISDomain[32] = {0,};
118 /* Our hostname */
119 char            NetOurHostName[32] = {0,};
120 /* Our bootpath */
121 char            NetOurRootPath[64] = {0,};
122 /* Our bootfile size in blocks */
123 ushort          NetBootFileSize;
124
125 #ifdef CONFIG_MCAST_TFTP        /* Multicast TFTP */
126 IPaddr_t Mcast_addr;
127 #endif
128
129 /** END OF BOOTP EXTENTIONS **/
130
131 /* The actual transferred size of the bootfile (in bytes) */
132 ulong           NetBootFileXferSize;
133 /* Our ethernet address */
134 uchar           NetOurEther[6];
135 /* Boot server enet address */
136 uchar           NetServerEther[6];
137 /* Our IP addr (0 = unknown) */
138 IPaddr_t        NetOurIP;
139 /* Server IP addr (0 = unknown) */
140 IPaddr_t        NetServerIP;
141 /* Current receive packet */
142 uchar *NetRxPacket;
143 /* Current rx packet length */
144 int             NetRxPacketLen;
145 /* IP packet ID */
146 unsigned        NetIPID;
147 /* Ethernet bcast address */
148 uchar           NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
149 uchar           NetEtherNullAddr[6];
150 #ifdef CONFIG_API
151 void            (*push_packet)(void *, int len) = 0;
152 #endif
153 /* Network loop state */
154 int             NetState;
155 /* Tried all network devices */
156 int             NetRestartWrap;
157 /* Network loop restarted */
158 static int      NetRestarted;
159 /* At least one device configured */
160 static int      NetDevExists;
161
162 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
163 /* default is without VLAN */
164 ushort          NetOurVLAN = 0xFFFF;
165 /* ditto */
166 ushort          NetOurNativeVLAN = 0xFFFF;
167
168 /* Boot File name */
169 char            BootFile[128];
170
171 #if defined(CONFIG_CMD_SNTP)
172 /* NTP server IP address */
173 IPaddr_t        NetNtpServerIP;
174 /* offset time from UTC */
175 int             NetTimeOffset;
176 #endif
177
178 uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
179
180 /* Receive packet */
181 uchar *NetRxPackets[PKTBUFSRX];
182
183 /* Current RX packet handler */
184 static rxhand_f *packetHandler;
185 #ifdef CONFIG_CMD_TFTPPUT
186 static rxhand_icmp_f *packet_icmp_handler;      /* Current ICMP rx handler */
187 #endif
188 /* Current timeout handler */
189 static thand_f *timeHandler;
190 /* Time base value */
191 static ulong    timeStart;
192 /* Current timeout value */
193 static ulong    timeDelta;
194 /* THE transmit packet */
195 uchar *NetTxPacket;
196
197 static int net_check_prereq(enum proto_t protocol);
198
199 static int NetTryCount;
200
201 /**********************************************************************/
202
203 /*
204  * Check if autoload is enabled. If so, use either NFS or TFTP to download
205  * the boot file.
206  */
207 void net_auto_load(void)
208 {
209         const char *s = getenv("autoload");
210
211         if (s != NULL) {
212                 if (*s == 'n') {
213                         /*
214                          * Just use BOOTP/RARP to configure system;
215                          * Do not use TFTP to load the bootfile.
216                          */
217                         NetState = NETLOOP_SUCCESS;
218                         return;
219                 }
220 #if defined(CONFIG_CMD_NFS)
221                 if (strcmp(s, "NFS") == 0) {
222                         /*
223                          * Use NFS to load the bootfile.
224                          */
225                         NfsStart();
226                         return;
227                 }
228 #endif
229         }
230         TftpStart(TFTPGET);
231 }
232
233 static void NetInitLoop(enum proto_t protocol)
234 {
235         static int env_changed_id;
236         int env_id = get_env_id();
237
238         /* update only when the environment has changed */
239         if (env_changed_id != env_id) {
240                 NetOurIP = getenv_IPaddr("ipaddr");
241                 NetOurGatewayIP = getenv_IPaddr("gatewayip");
242                 NetOurSubnetMask = getenv_IPaddr("netmask");
243                 NetServerIP = getenv_IPaddr("serverip");
244                 NetOurNativeVLAN = getenv_VLAN("nvlan");
245                 NetOurVLAN = getenv_VLAN("vlan");
246 #if defined(CONFIG_CMD_DNS)
247                 NetOurDNSIP = getenv_IPaddr("dnsip");
248 #endif
249                 env_changed_id = env_id;
250         }
251
252         return;
253 }
254
255 /**********************************************************************/
256 /*
257  *      Main network processing loop.
258  */
259
260 int NetLoop(enum proto_t protocol)
261 {
262         bd_t *bd = gd->bd;
263         int ret = -1;
264
265         NetRestarted = 0;
266         NetDevExists = 0;
267
268         NetTxPacket = NULL;
269         NetTryCount = 1;
270
271         ArpInit();
272
273         if (!NetTxPacket) {
274                 int     i;
275                 /*
276                  *      Setup packet buffers, aligned correctly.
277                  */
278                 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
279                 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
280                 for (i = 0; i < PKTBUFSRX; i++)
281                         NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
282         }
283
284         bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
285         eth_halt();
286         eth_set_current();
287         if (eth_init(bd) < 0) {
288                 eth_halt();
289                 return -1;
290         }
291
292 restart:
293         memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
294
295         NetState = NETLOOP_CONTINUE;
296
297         /*
298          *      Start the ball rolling with the given start function.  From
299          *      here on, this code is a state machine driven by received
300          *      packets and timer events.
301          */
302         NetInitLoop(protocol);
303
304         switch (net_check_prereq(protocol)) {
305         case 1:
306                 /* network not configured */
307                 eth_halt();
308                 return -1;
309
310         case 2:
311                 /* network device not configured */
312                 break;
313
314         case 0:
315                 NetDevExists = 1;
316                 NetBootFileXferSize = 0;
317                 switch (protocol) {
318                 case TFTPGET:
319 #ifdef CONFIG_CMD_TFTPPUT
320                 case TFTPPUT:
321 #endif
322                         /* always use ARP to get server ethernet address */
323                         TftpStart(protocol);
324                         break;
325 #ifdef CONFIG_CMD_TFTPSRV
326                 case TFTPSRV:
327                         TftpStartServer();
328                         break;
329 #endif
330 #if defined(CONFIG_CMD_DHCP)
331                 case DHCP:
332                         BootpTry = 0;
333                         NetOurIP = 0;
334                         DhcpRequest();          /* Basically same as BOOTP */
335                         break;
336 #endif
337
338                 case BOOTP:
339                         BootpTry = 0;
340                         NetOurIP = 0;
341                         BootpRequest();
342                         break;
343
344 #if defined(CONFIG_CMD_RARP)
345                 case RARP:
346                         RarpTry = 0;
347                         NetOurIP = 0;
348                         RarpRequest();
349                         break;
350 #endif
351 #if defined(CONFIG_CMD_PING)
352                 case PING:
353                         ping_start();
354                         break;
355 #endif
356 #if defined(CONFIG_CMD_NFS)
357                 case NFS:
358                         NfsStart();
359                         break;
360 #endif
361 #if defined(CONFIG_CMD_CDP)
362                 case CDP:
363                         CDPStart();
364                         break;
365 #endif
366 #ifdef CONFIG_NETCONSOLE
367                 case NETCONS:
368                         NcStart();
369                         break;
370 #endif
371 #if defined(CONFIG_CMD_SNTP)
372                 case SNTP:
373                         SntpStart();
374                         break;
375 #endif
376 #if defined(CONFIG_CMD_DNS)
377                 case DNS:
378                         DnsStart();
379                         break;
380 #endif
381                 default:
382                         break;
383                 }
384
385                 break;
386         }
387
388 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
389 #if     defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN)        && \
390         defined(CONFIG_STATUS_LED)                      && \
391         defined(STATUS_LED_RED)
392         /*
393          * Echo the inverted link state to the fault LED.
394          */
395         if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
396                 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
397         else
398                 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
399 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
400 #endif /* CONFIG_MII, ... */
401
402         /*
403          *      Main packet reception loop.  Loop receiving packets until
404          *      someone sets `NetState' to a state that terminates.
405          */
406         for (;;) {
407                 WATCHDOG_RESET();
408 #ifdef CONFIG_SHOW_ACTIVITY
409                 show_activity(1);
410 #endif
411                 /*
412                  *      Check the ethernet for a new packet.  The ethernet
413                  *      receive routine will process it.
414                  */
415                 eth_rx();
416
417                 /*
418                  *      Abort if ctrl-c was pressed.
419                  */
420                 if (ctrlc()) {
421                         eth_halt();
422                         puts("\nAbort\n");
423                         goto done;
424                 }
425
426                 ArpTimeoutCheck();
427
428                 /*
429                  *      Check for a timeout, and run the timeout handler
430                  *      if we have one.
431                  */
432                 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
433                         thand_f *x;
434
435 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
436 #if     defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN)        && \
437         defined(CONFIG_STATUS_LED)                      && \
438         defined(STATUS_LED_RED)
439                         /*
440                          * Echo the inverted link state to the fault LED.
441                          */
442                         if (miiphy_link(eth_get_dev()->name,
443                                        CONFIG_SYS_FAULT_MII_ADDR)) {
444                                 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
445                         } else {
446                                 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
447                         }
448 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
449 #endif /* CONFIG_MII, ... */
450                         x = timeHandler;
451                         timeHandler = (thand_f *)0;
452                         (*x)();
453                 }
454
455
456                 switch (NetState) {
457
458                 case NETLOOP_RESTART:
459                         NetRestarted = 1;
460                         goto restart;
461
462                 case NETLOOP_SUCCESS:
463                         if (NetBootFileXferSize > 0) {
464                                 char buf[20];
465                                 printf("Bytes transferred = %ld (%lx hex)\n",
466                                         NetBootFileXferSize,
467                                         NetBootFileXferSize);
468                                 sprintf(buf, "%lX", NetBootFileXferSize);
469                                 setenv("filesize", buf);
470
471                                 sprintf(buf, "%lX", (unsigned long)load_addr);
472                                 setenv("fileaddr", buf);
473                         }
474                         eth_halt();
475                         ret = NetBootFileXferSize;
476                         goto done;
477
478                 case NETLOOP_FAIL:
479                         goto done;
480                 }
481         }
482
483 done:
484 #ifdef CONFIG_CMD_TFTPPUT
485         /* Clear out the handlers */
486         NetSetHandler(NULL);
487         net_set_icmp_handler(NULL);
488 #endif
489         return ret;
490 }
491
492 /**********************************************************************/
493
494 static void
495 startAgainTimeout(void)
496 {
497         NetState = NETLOOP_RESTART;
498 }
499
500 static void
501 startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
502                   unsigned src, unsigned len)
503 {
504         /* Totally ignore the packet */
505 }
506
507 void NetStartAgain(void)
508 {
509         char *nretry;
510         int retry_forever = 0;
511         unsigned long retrycnt = 0;
512
513         nretry = getenv("netretry");
514         if (nretry) {
515                 if (!strcmp(nretry, "yes"))
516                         retry_forever = 1;
517                 else if (!strcmp(nretry, "no"))
518                         retrycnt = 0;
519                 else if (!strcmp(nretry, "once"))
520                         retrycnt = 1;
521                 else
522                         retrycnt = simple_strtoul(nretry, NULL, 0);
523         } else
524                 retry_forever = 1;
525
526         if ((!retry_forever) && (NetTryCount >= retrycnt)) {
527                 eth_halt();
528                 NetState = NETLOOP_FAIL;
529                 return;
530         }
531
532         NetTryCount++;
533
534         eth_halt();
535 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
536         eth_try_another(!NetRestarted);
537 #endif
538         eth_init(gd->bd);
539         if (NetRestartWrap) {
540                 NetRestartWrap = 0;
541                 if (NetDevExists) {
542                         NetSetTimeout(10000UL, startAgainTimeout);
543                         NetSetHandler(startAgainHandler);
544                 } else {
545                         NetState = NETLOOP_FAIL;
546                 }
547         } else {
548                 NetState = NETLOOP_RESTART;
549         }
550 }
551
552 /**********************************************************************/
553 /*
554  *      Miscelaneous bits.
555  */
556
557 rxhand_f *
558 NetGetHandler(void)
559 {
560         return packetHandler;
561 }
562
563
564 void
565 NetSetHandler(rxhand_f *f)
566 {
567         packetHandler = f;
568 }
569
570 #ifdef CONFIG_CMD_TFTPPUT
571 void net_set_icmp_handler(rxhand_icmp_f *f)
572 {
573         packet_icmp_handler = f;
574 }
575 #endif
576
577 void
578 NetSetTimeout(ulong iv, thand_f *f)
579 {
580         if (iv == 0) {
581                 timeHandler = (thand_f *)0;
582         } else {
583                 timeHandler = f;
584                 timeStart = get_timer(0);
585                 timeDelta = iv;
586         }
587 }
588
589
590 void
591 NetSendPacket(uchar *pkt, int len)
592 {
593         (void) eth_send(pkt, len);
594 }
595
596 int
597 NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
598 {
599         uchar *pkt;
600
601         /* convert to new style broadcast */
602         if (dest == 0)
603                 dest = 0xFFFFFFFF;
604
605         /* if broadcast, make the ether address a broadcast and don't do ARP */
606         if (dest == 0xFFFFFFFF)
607                 ether = NetBcastAddr;
608
609         /*
610          * if MAC address was not discovered yet, save the packet and do
611          * an ARP request
612          */
613         if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
614
615                 debug("sending ARP for %08x\n", dest);
616
617                 NetArpWaitPacketIP = dest;
618                 NetArpWaitPacketMAC = ether;
619
620                 pkt = NetArpWaitTxPacket;
621                 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
622
623                 NetSetIP(pkt, dest, dport, sport, len);
624                 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
625                        (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
626
627                 /* size of the waiting packet */
628                 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
629                         IP_HDR_SIZE + len;
630
631                 /* and do the ARP request */
632                 NetArpWaitTry = 1;
633                 NetArpWaitTimerStart = get_timer(0);
634                 ArpRequest();
635                 return 1;       /* waiting */
636         }
637
638         debug("sending UDP to %08x/%pM\n", dest, ether);
639
640         pkt = (uchar *)NetTxPacket;
641         pkt += NetSetEther(pkt, ether, PROT_IP);
642         NetSetIP(pkt, dest, dport, sport, len);
643         (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
644
645         return 0;       /* transmitted */
646 }
647
648 #ifdef CONFIG_IP_DEFRAG
649 /*
650  * This function collects fragments in a single packet, according
651  * to the algorithm in RFC815. It returns NULL or the pointer to
652  * a complete packet, in static storage
653  */
654 #ifndef CONFIG_NET_MAXDEFRAG
655 #define CONFIG_NET_MAXDEFRAG 16384
656 #endif
657 /*
658  * MAXDEFRAG, above, is chosen in the config file and  is real data
659  * so we need to add the NFS overhead, which is more than TFTP.
660  * To use sizeof in the internal unnamed structures, we need a real
661  * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
662  * The compiler doesn't complain nor allocates the actual structure
663  */
664 static struct rpc_t rpc_specimen;
665 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
666
667 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
668
669 /*
670  * this is the packet being assembled, either data or frag control.
671  * Fragments go by 8 bytes, so this union must be 8 bytes long
672  */
673 struct hole {
674         /* first_byte is address of this structure */
675         u16 last_byte;  /* last byte in this hole + 1 (begin of next hole) */
676         u16 next_hole;  /* index of next (in 8-b blocks), 0 == none */
677         u16 prev_hole;  /* index of prev, 0 == none */
678         u16 unused;
679 };
680
681 static IP_t *__NetDefragment(IP_t *ip, int *lenp)
682 {
683         static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
684         static u16 first_hole, total_len;
685         struct hole *payload, *thisfrag, *h, *newh;
686         IP_t *localip = (IP_t *)pkt_buff;
687         uchar *indata = (uchar *)ip;
688         int offset8, start, len, done = 0;
689         u16 ip_off = ntohs(ip->ip_off);
690
691         /* payload starts after IP header, this fragment is in there */
692         payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
693         offset8 =  (ip_off & IP_OFFS);
694         thisfrag = payload + offset8;
695         start = offset8 * 8;
696         len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
697
698         if (start + len > IP_MAXUDP) /* fragment extends too far */
699                 return NULL;
700
701         if (!total_len || localip->ip_id != ip->ip_id) {
702                 /* new (or different) packet, reset structs */
703                 total_len = 0xffff;
704                 payload[0].last_byte = ~0;
705                 payload[0].next_hole = 0;
706                 payload[0].prev_hole = 0;
707                 first_hole = 0;
708                 /* any IP header will work, copy the first we received */
709                 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
710         }
711
712         /*
713          * What follows is the reassembly algorithm. We use the payload
714          * array as a linked list of hole descriptors, as each hole starts
715          * at a multiple of 8 bytes. However, last byte can be whatever value,
716          * so it is represented as byte count, not as 8-byte blocks.
717          */
718
719         h = payload + first_hole;
720         while (h->last_byte < start) {
721                 if (!h->next_hole) {
722                         /* no hole that far away */
723                         return NULL;
724                 }
725                 h = payload + h->next_hole;
726         }
727
728         /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
729         if (offset8 + ((len + 7) / 8) <= h - payload) {
730                 /* no overlap with holes (dup fragment?) */
731                 return NULL;
732         }
733
734         if (!(ip_off & IP_FLAGS_MFRAG)) {
735                 /* no more fragmentss: truncate this (last) hole */
736                 total_len = start + len;
737                 h->last_byte = start + len;
738         }
739
740         /*
741          * There is some overlap: fix the hole list. This code doesn't
742          * deal with a fragment that overlaps with two different holes
743          * (thus being a superset of a previously-received fragment).
744          */
745
746         if ((h >= thisfrag) && (h->last_byte <= start + len)) {
747                 /* complete overlap with hole: remove hole */
748                 if (!h->prev_hole && !h->next_hole) {
749                         /* last remaining hole */
750                         done = 1;
751                 } else if (!h->prev_hole) {
752                         /* first hole */
753                         first_hole = h->next_hole;
754                         payload[h->next_hole].prev_hole = 0;
755                 } else if (!h->next_hole) {
756                         /* last hole */
757                         payload[h->prev_hole].next_hole = 0;
758                 } else {
759                         /* in the middle of the list */
760                         payload[h->next_hole].prev_hole = h->prev_hole;
761                         payload[h->prev_hole].next_hole = h->next_hole;
762                 }
763
764         } else if (h->last_byte <= start + len) {
765                 /* overlaps with final part of the hole: shorten this hole */
766                 h->last_byte = start;
767
768         } else if (h >= thisfrag) {
769                 /* overlaps with initial part of the hole: move this hole */
770                 newh = thisfrag + (len / 8);
771                 *newh = *h;
772                 h = newh;
773                 if (h->next_hole)
774                         payload[h->next_hole].prev_hole = (h - payload);
775                 if (h->prev_hole)
776                         payload[h->prev_hole].next_hole = (h - payload);
777                 else
778                         first_hole = (h - payload);
779
780         } else {
781                 /* fragment sits in the middle: split the hole */
782                 newh = thisfrag + (len / 8);
783                 *newh = *h;
784                 h->last_byte = start;
785                 h->next_hole = (newh - payload);
786                 newh->prev_hole = (h - payload);
787                 if (newh->next_hole)
788                         payload[newh->next_hole].prev_hole = (newh - payload);
789         }
790
791         /* finally copy this fragment and possibly return whole packet */
792         memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
793         if (!done)
794                 return NULL;
795
796         localip->ip_len = htons(total_len);
797         *lenp = total_len + IP_HDR_SIZE_NO_UDP;
798         return localip;
799 }
800
801 static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
802 {
803         u16 ip_off = ntohs(ip->ip_off);
804         if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
805                 return ip; /* not a fragment */
806         return __NetDefragment(ip, lenp);
807 }
808
809 #else /* !CONFIG_IP_DEFRAG */
810
811 static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
812 {
813         u16 ip_off = ntohs(ip->ip_off);
814         if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
815                 return ip; /* not a fragment */
816         return NULL;
817 }
818 #endif
819
820 /**
821  * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
822  * drop others.
823  *
824  * @parma ip    IP packet containing the ICMP
825  */
826 static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
827 {
828         ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
829
830         switch (icmph->type) {
831         case ICMP_REDIRECT:
832                 if (icmph->code != ICMP_REDIR_HOST)
833                         return;
834                 printf(" ICMP Host Redirect to %pI4 ",
835                         &icmph->un.gateway);
836                 break;
837         default:
838 #if defined(CONFIG_CMD_PING)
839                 ping_receive(et, ip, len);
840 #endif
841 #ifdef CONFIG_CMD_TFTPPUT
842                 if (packet_icmp_handler)
843                         packet_icmp_handler(icmph->type, icmph->code,
844                                 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
845                                 icmph->un.data, ntohs(ip->udp_len));
846 #endif
847                 break;
848         }
849 }
850
851 void
852 NetReceive(uchar *inpkt, int len)
853 {
854         Ethernet_t *et;
855         IP_t    *ip;
856 #ifdef CONFIG_CMD_RARP
857         ARP_t   *arp;
858 #endif
859         IPaddr_t tmp;
860         IPaddr_t src_ip;
861         int     x;
862 #if defined(CONFIG_CMD_CDP)
863         int iscdp;
864 #endif
865         ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
866
867         debug("packet received\n");
868
869         NetRxPacket = inpkt;
870         NetRxPacketLen = len;
871         et = (Ethernet_t *)inpkt;
872
873         /* too small packet? */
874         if (len < ETHER_HDR_SIZE)
875                 return;
876
877 #ifdef CONFIG_API
878         if (push_packet) {
879                 (*push_packet)(inpkt, len);
880                 return;
881         }
882 #endif
883
884 #if defined(CONFIG_CMD_CDP)
885         /* keep track if packet is CDP */
886         iscdp = is_cdp_packet(et->et_dest);
887 #endif
888
889         myvlanid = ntohs(NetOurVLAN);
890         if (myvlanid == (ushort)-1)
891                 myvlanid = VLAN_NONE;
892         mynvlanid = ntohs(NetOurNativeVLAN);
893         if (mynvlanid == (ushort)-1)
894                 mynvlanid = VLAN_NONE;
895
896         x = ntohs(et->et_protlen);
897
898         debug("packet received\n");
899
900         if (x < 1514) {
901                 /*
902                  *      Got a 802 packet.  Check the other protocol field.
903                  */
904                 x = ntohs(et->et_prot);
905
906                 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
907                 len -= E802_HDR_SIZE;
908
909         } else if (x != PROT_VLAN) {    /* normal packet */
910                 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
911                 len -= ETHER_HDR_SIZE;
912
913         } else {                        /* VLAN packet */
914                 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
915
916                 debug("VLAN packet received\n");
917
918                 /* too small packet? */
919                 if (len < VLAN_ETHER_HDR_SIZE)
920                         return;
921
922                 /* if no VLAN active */
923                 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
924 #if defined(CONFIG_CMD_CDP)
925                                 && iscdp == 0
926 #endif
927                                 )
928                         return;
929
930                 cti = ntohs(vet->vet_tag);
931                 vlanid = cti & VLAN_IDMASK;
932                 x = ntohs(vet->vet_type);
933
934                 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
935                 len -= VLAN_ETHER_HDR_SIZE;
936         }
937
938         debug("Receive from protocol 0x%x\n", x);
939
940 #if defined(CONFIG_CMD_CDP)
941         if (iscdp) {
942                 CDPHandler((uchar *)ip, len);
943                 return;
944         }
945 #endif
946
947         if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
948                 if (vlanid == VLAN_NONE)
949                         vlanid = (mynvlanid & VLAN_IDMASK);
950                 /* not matched? */
951                 if (vlanid != (myvlanid & VLAN_IDMASK))
952                         return;
953         }
954
955         switch (x) {
956
957         case PROT_ARP:
958                 ArpReceive(et, ip, len);
959                 break;
960
961 #ifdef CONFIG_CMD_RARP
962         case PROT_RARP:
963                 debug("Got RARP\n");
964                 arp = (ARP_t *)ip;
965                 if (len < ARP_HDR_SIZE) {
966                         printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
967                         return;
968                 }
969
970                 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
971                         (ntohs(arp->ar_hrd) != ARP_ETHER)   ||
972                         (ntohs(arp->ar_pro) != PROT_IP)     ||
973                         (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
974
975                         puts("invalid RARP header\n");
976                 } else {
977                         NetCopyIP(&NetOurIP, &arp->ar_data[16]);
978                         if (NetServerIP == 0)
979                                 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
980                         memcpy(NetServerEther, &arp->ar_data[0], 6);
981
982                         (*packetHandler)(0, 0, 0, 0, 0);
983                 }
984                 break;
985 #endif
986         case PROT_IP:
987                 debug("Got IP\n");
988                 /* Before we start poking the header, make sure it is there */
989                 if (len < IP_HDR_SIZE) {
990                         debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
991                         return;
992                 }
993                 /* Check the packet length */
994                 if (len < ntohs(ip->ip_len)) {
995                         printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
996                         return;
997                 }
998                 len = ntohs(ip->ip_len);
999                 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1000
1001                 /* Can't deal with anything except IPv4 */
1002                 if ((ip->ip_hl_v & 0xf0) != 0x40)
1003                         return;
1004                 /* Can't deal with IP options (headers != 20 bytes) */
1005                 if ((ip->ip_hl_v & 0x0f) > 0x05)
1006                         return;
1007                 /* Check the Checksum of the header */
1008                 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
1009                         puts("checksum bad\n");
1010                         return;
1011                 }
1012                 /* If it is not for us, ignore it */
1013                 tmp = NetReadIP(&ip->ip_dst);
1014                 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
1015 #ifdef CONFIG_MCAST_TFTP
1016                         if (Mcast_addr != tmp)
1017 #endif
1018                                 return;
1019                 }
1020                 /* Read source IP address for later use */
1021                 src_ip = NetReadIP(&ip->ip_src);
1022                 /*
1023                  * The function returns the unchanged packet if it's not
1024                  * a fragment, and either the complete packet or NULL if
1025                  * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1026                  */
1027                 ip = NetDefragment(ip, &len);
1028                 if (!ip)
1029                         return;
1030                 /*
1031                  * watch for ICMP host redirects
1032                  *
1033                  * There is no real handler code (yet). We just watch
1034                  * for ICMP host redirect messages. In case anybody
1035                  * sees these messages: please contact me
1036                  * (wd@denx.de), or - even better - send me the
1037                  * necessary fixes :-)
1038                  *
1039                  * Note: in all cases where I have seen this so far
1040                  * it was a problem with the router configuration,
1041                  * for instance when a router was configured in the
1042                  * BOOTP reply, but the TFTP server was on the same
1043                  * subnet. So this is probably a warning that your
1044                  * configuration might be wrong. But I'm not really
1045                  * sure if there aren't any other situations.
1046                  *
1047                  * Simon Glass <sjg@chromium.org>: We get an ICMP when
1048                  * we send a tftp packet to a dead connection, or when
1049                  * there is no server at the other end.
1050                  */
1051                 if (ip->ip_p == IPPROTO_ICMP) {
1052                         receive_icmp(ip, len, src_ip, et);
1053                         return;
1054                 } else if (ip->ip_p != IPPROTO_UDP) {   /* Only UDP packets */
1055                         return;
1056                 }
1057
1058 #ifdef CONFIG_UDP_CHECKSUM
1059                 if (ip->udp_xsum != 0) {
1060                         ulong   xsum;
1061                         ushort *sumptr;
1062                         ushort  sumlen;
1063
1064                         xsum  = ip->ip_p;
1065                         xsum += (ntohs(ip->udp_len));
1066                         xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1067                         xsum += (ntohl(ip->ip_src) >>  0) & 0x0000ffff;
1068                         xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1069                         xsum += (ntohl(ip->ip_dst) >>  0) & 0x0000ffff;
1070
1071                         sumlen = ntohs(ip->udp_len);
1072                         sumptr = (ushort *) &(ip->udp_src);
1073
1074                         while (sumlen > 1) {
1075                                 ushort sumdata;
1076
1077                                 sumdata = *sumptr++;
1078                                 xsum += ntohs(sumdata);
1079                                 sumlen -= 2;
1080                         }
1081                         if (sumlen > 0) {
1082                                 ushort sumdata;
1083
1084                                 sumdata = *(unsigned char *) sumptr;
1085                                 sumdata = (sumdata << 8) & 0xff00;
1086                                 xsum += sumdata;
1087                         }
1088                         while ((xsum >> 16) != 0) {
1089                                 xsum = (xsum & 0x0000ffff) +
1090                                        ((xsum >> 16) & 0x0000ffff);
1091                         }
1092                         if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1093                                 printf(" UDP wrong checksum %08lx %08x\n",
1094                                         xsum, ntohs(ip->udp_xsum));
1095                                 return;
1096                         }
1097                 }
1098 #endif
1099
1100
1101 #ifdef CONFIG_NETCONSOLE
1102                 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
1103                                                 ntohs(ip->udp_dst),
1104                                                 ntohs(ip->udp_src),
1105                                                 ntohs(ip->udp_len) - 8);
1106 #endif
1107                 /*
1108                  *      IP header OK.  Pass the packet to the current handler.
1109                  */
1110                 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
1111                                                 ntohs(ip->udp_dst),
1112                                                 src_ip,
1113                                                 ntohs(ip->udp_src),
1114                                                 ntohs(ip->udp_len) - 8);
1115                 break;
1116         }
1117 }
1118
1119
1120 /**********************************************************************/
1121
1122 static int net_check_prereq(enum proto_t protocol)
1123 {
1124         switch (protocol) {
1125                 /* Fall through */
1126 #if defined(CONFIG_CMD_PING)
1127         case PING:
1128                 if (NetPingIP == 0) {
1129                         puts("*** ERROR: ping address not given\n");
1130                         return 1;
1131                 }
1132                 goto common;
1133 #endif
1134 #if defined(CONFIG_CMD_SNTP)
1135         case SNTP:
1136                 if (NetNtpServerIP == 0) {
1137                         puts("*** ERROR: NTP server address not given\n");
1138                         return 1;
1139                 }
1140                 goto common;
1141 #endif
1142 #if defined(CONFIG_CMD_DNS)
1143         case DNS:
1144                 if (NetOurDNSIP == 0) {
1145                         puts("*** ERROR: DNS server address not given\n");
1146                         return 1;
1147                 }
1148                 goto common;
1149 #endif
1150 #if defined(CONFIG_CMD_NFS)
1151         case NFS:
1152 #endif
1153         case TFTPGET:
1154         case TFTPPUT:
1155                 if (NetServerIP == 0) {
1156                         puts("*** ERROR: `serverip' not set\n");
1157                         return 1;
1158                 }
1159 #if     defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1160         defined(CONFIG_CMD_DNS)
1161 common:
1162 #endif
1163                 /* Fall through */
1164
1165         case NETCONS:
1166         case TFTPSRV:
1167                 if (NetOurIP == 0) {
1168                         puts("*** ERROR: `ipaddr' not set\n");
1169                         return 1;
1170                 }
1171                 /* Fall through */
1172
1173 #ifdef CONFIG_CMD_RARP
1174         case RARP:
1175 #endif
1176         case BOOTP:
1177         case CDP:
1178         case DHCP:
1179                 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
1180                         int num = eth_get_dev_index();
1181
1182                         switch (num) {
1183                         case -1:
1184                                 puts("*** ERROR: No ethernet found.\n");
1185                                 return 1;
1186                         case 0:
1187                                 puts("*** ERROR: `ethaddr' not set\n");
1188                                 break;
1189                         default:
1190                                 printf("*** ERROR: `eth%daddr' not set\n",
1191                                         num);
1192                                 break;
1193                         }
1194
1195                         NetStartAgain();
1196                         return 2;
1197                 }
1198                 /* Fall through */
1199         default:
1200                 return 0;
1201         }
1202         return 0;               /* OK */
1203 }
1204 /**********************************************************************/
1205
1206 int
1207 NetCksumOk(uchar *ptr, int len)
1208 {
1209         return !((NetCksum(ptr, len) + 1) & 0xfffe);
1210 }
1211
1212
1213 unsigned
1214 NetCksum(uchar *ptr, int len)
1215 {
1216         ulong   xsum;
1217         ushort *p = (ushort *)ptr;
1218
1219         xsum = 0;
1220         while (len-- > 0)
1221                 xsum += *p++;
1222         xsum = (xsum & 0xffff) + (xsum >> 16);
1223         xsum = (xsum & 0xffff) + (xsum >> 16);
1224         return xsum & 0xffff;
1225 }
1226
1227 int
1228 NetEthHdrSize(void)
1229 {
1230         ushort myvlanid;
1231
1232         myvlanid = ntohs(NetOurVLAN);
1233         if (myvlanid == (ushort)-1)
1234                 myvlanid = VLAN_NONE;
1235
1236         return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1237                 VLAN_ETHER_HDR_SIZE;
1238 }
1239
1240 int
1241 NetSetEther(uchar *xet, uchar * addr, uint prot)
1242 {
1243         Ethernet_t *et = (Ethernet_t *)xet;
1244         ushort myvlanid;
1245
1246         myvlanid = ntohs(NetOurVLAN);
1247         if (myvlanid == (ushort)-1)
1248                 myvlanid = VLAN_NONE;
1249
1250         memcpy(et->et_dest, addr, 6);
1251         memcpy(et->et_src, NetOurEther, 6);
1252         if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1253                 et->et_protlen = htons(prot);
1254                 return ETHER_HDR_SIZE;
1255         } else {
1256                 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
1257
1258                 vet->vet_vlan_type = htons(PROT_VLAN);
1259                 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1260                 vet->vet_type = htons(prot);
1261                 return VLAN_ETHER_HDR_SIZE;
1262         }
1263 }
1264
1265 void
1266 NetSetIP(uchar *xip, IPaddr_t dest, int dport, int sport, int len)
1267 {
1268         IP_t *ip = (IP_t *)xip;
1269
1270         /*
1271          *      If the data is an odd number of bytes, zero the
1272          *      byte after the last byte so that the checksum
1273          *      will work.
1274          */
1275         if (len & 1)
1276                 xip[IP_HDR_SIZE + len] = 0;
1277
1278         /*
1279          *      Construct an IP and UDP header.
1280          *      (need to set no fragment bit - XXX)
1281          */
1282         /* IP_HDR_SIZE / 4 (not including UDP) */
1283         ip->ip_hl_v  = 0x45;
1284         ip->ip_tos   = 0;
1285         ip->ip_len   = htons(IP_HDR_SIZE + len);
1286         ip->ip_id    = htons(NetIPID++);
1287         ip->ip_off   = htons(IP_FLAGS_DFRAG);   /* Don't fragment */
1288         ip->ip_ttl   = 255;
1289         ip->ip_p     = 17;              /* UDP */
1290         ip->ip_sum   = 0;
1291         /* already in network byte order */
1292         NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1293         /* - "" - */
1294         NetCopyIP((void *)&ip->ip_dst, &dest);
1295         ip->udp_src  = htons(sport);
1296         ip->udp_dst  = htons(dport);
1297         ip->udp_len  = htons(8 + len);
1298         ip->udp_xsum = 0;
1299         ip->ip_sum   = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1300 }
1301
1302 void copy_filename(char *dst, const char *src, int size)
1303 {
1304         if (*src && (*src == '"')) {
1305                 ++src;
1306                 --size;
1307         }
1308
1309         while ((--size > 0) && *src && (*src != '"'))
1310                 *dst++ = *src++;
1311         *dst = '\0';
1312 }
1313
1314 #if     defined(CONFIG_CMD_NFS)         || \
1315         defined(CONFIG_CMD_SNTP)        || \
1316         defined(CONFIG_CMD_DNS)
1317 /*
1318  * make port a little random (1024-17407)
1319  * This keeps the math somewhat trivial to compute, and seems to work with
1320  * all supported protocols/clients/servers
1321  */
1322 unsigned int random_port(void)
1323 {
1324         return 1024 + (get_timer(0) % 0x4000);
1325 }
1326 #endif
1327
1328 void ip_to_string(IPaddr_t x, char *s)
1329 {
1330         x = ntohl(x);
1331         sprintf(s, "%d.%d.%d.%d",
1332                 (int) ((x >> 24) & 0xff),
1333                 (int) ((x >> 16) & 0xff),
1334                 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
1335         );
1336 }
1337
1338 void VLAN_to_string(ushort x, char *s)
1339 {
1340         x = ntohs(x);
1341
1342         if (x == (ushort)-1)
1343                 x = VLAN_NONE;
1344
1345         if (x == VLAN_NONE)
1346                 strcpy(s, "none");
1347         else
1348                 sprintf(s, "%d", x & VLAN_IDMASK);
1349 }
1350
1351 ushort string_to_VLAN(const char *s)
1352 {
1353         ushort id;
1354
1355         if (s == NULL)
1356                 return htons(VLAN_NONE);
1357
1358         if (*s < '0' || *s > '9')
1359                 id = VLAN_NONE;
1360         else
1361                 id = (ushort)simple_strtoul(s, NULL, 10);
1362
1363         return htons(id);
1364 }
1365
1366 ushort getenv_VLAN(char *var)
1367 {
1368         return string_to_VLAN(getenv(var));
1369 }