2 * Copied from Linux Monitor (LiMon) - Networking.
4 * Copyright 1994 - 2000 Neil Russell.
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
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:
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
35 * Prerequisites: - own ethernet address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
43 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
50 * Prerequisites: - own ethernet 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
61 * Prerequisites: - own ethernet 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
70 * Prerequisites: - own ethernet address
72 * We want: - network time
80 #if defined(CONFIG_STATUS_LED)
82 #include <status_led.h>
85 #include <linux/compiler.h>
89 #if defined(CONFIG_CMD_DNS)
95 #if defined(CONFIG_CMD_SNTP)
100 DECLARE_GLOBAL_DATA_PTR;
102 /** BOOTP EXTENTIONS **/
104 /* Our subnet mask (0=unknown) */
105 IPaddr_t NetOurSubnetMask;
106 /* Our gateways IP address */
107 IPaddr_t NetOurGatewayIP;
108 /* Our DNS IP address */
109 IPaddr_t NetOurDNSIP;
110 #if defined(CONFIG_BOOTP_DNS2)
111 /* Our 2nd DNS IP address */
112 IPaddr_t NetOurDNS2IP;
115 char NetOurNISDomain[32] = {0,};
117 char NetOurHostName[32] = {0,};
119 char NetOurRootPath[64] = {0,};
120 /* Our bootfile size in blocks */
121 ushort NetBootFileSize;
123 #ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
127 /** END OF BOOTP EXTENTIONS **/
129 /* The actual transferred size of the bootfile (in bytes) */
130 ulong NetBootFileXferSize;
131 /* Our ethernet address */
132 uchar NetOurEther[6];
133 /* Boot server enet address */
134 uchar NetServerEther[6];
135 /* Our IP addr (0 = unknown) */
137 /* Server IP addr (0 = unknown) */
138 IPaddr_t NetServerIP;
139 /* Current receive packet */
141 /* Current rx packet length */
145 /* Ethernet bcast address */
146 uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
147 uchar NetEtherNullAddr[6];
149 void (*push_packet)(void *, int len) = 0;
151 /* Network loop state */
153 /* Tried all network devices */
155 /* Network loop restarted */
156 static int NetRestarted;
157 /* At least one device configured */
158 static int NetDevExists;
160 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
161 /* default is without VLAN */
162 ushort NetOurVLAN = 0xFFFF;
164 ushort NetOurNativeVLAN = 0xFFFF;
169 #if defined(CONFIG_CMD_SNTP)
170 /* NTP server IP address */
171 IPaddr_t NetNtpServerIP;
172 /* offset time from UTC */
176 uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
179 uchar *NetRxPackets[PKTBUFSRX];
181 /* Current RX packet handler */
182 static rxhand_f *packetHandler;
183 #ifdef CONFIG_CMD_TFTPPUT
184 static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
186 /* Current timeout handler */
187 static thand_f *timeHandler;
188 /* Time base value */
189 static ulong timeStart;
190 /* Current timeout value */
191 static ulong timeDelta;
192 /* THE transmit packet */
195 static int net_check_prereq(enum proto_t protocol);
197 static int NetTryCount;
199 /**********************************************************************/
202 * Check if autoload is enabled. If so, use either NFS or TFTP to download
205 void net_auto_load(void)
207 const char *s = getenv("autoload");
212 * Just use BOOTP/RARP to configure system;
213 * Do not use TFTP to load the bootfile.
215 NetState = NETLOOP_SUCCESS;
218 #if defined(CONFIG_CMD_NFS)
219 if (strcmp(s, "NFS") == 0) {
221 * Use NFS to load the bootfile.
231 static void NetInitLoop(enum proto_t protocol)
233 static int env_changed_id;
234 int env_id = get_env_id();
236 /* update only when the environment has changed */
237 if (env_changed_id != env_id) {
238 NetOurIP = getenv_IPaddr("ipaddr");
239 NetOurGatewayIP = getenv_IPaddr("gatewayip");
240 NetOurSubnetMask = getenv_IPaddr("netmask");
241 NetServerIP = getenv_IPaddr("serverip");
242 NetOurNativeVLAN = getenv_VLAN("nvlan");
243 NetOurVLAN = getenv_VLAN("vlan");
244 #if defined(CONFIG_CMD_DNS)
245 NetOurDNSIP = getenv_IPaddr("dnsip");
247 env_changed_id = env_id;
253 /**********************************************************************/
255 * Main network processing loop.
258 int NetLoop(enum proto_t protocol)
274 * Setup packet buffers, aligned correctly.
276 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
277 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
278 for (i = 0; i < PKTBUFSRX; i++)
279 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
282 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
285 if (eth_init(bd) < 0) {
291 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
293 NetState = NETLOOP_CONTINUE;
296 * Start the ball rolling with the given start function. From
297 * here on, this code is a state machine driven by received
298 * packets and timer events.
300 NetInitLoop(protocol);
302 switch (net_check_prereq(protocol)) {
304 /* network not configured */
309 /* network device not configured */
314 NetBootFileXferSize = 0;
317 #ifdef CONFIG_CMD_TFTPPUT
320 /* always use ARP to get server ethernet address */
323 #ifdef CONFIG_CMD_TFTPSRV
328 #if defined(CONFIG_CMD_DHCP)
332 DhcpRequest(); /* Basically same as BOOTP */
342 #if defined(CONFIG_CMD_RARP)
349 #if defined(CONFIG_CMD_PING)
354 #if defined(CONFIG_CMD_NFS)
359 #if defined(CONFIG_CMD_CDP)
364 #ifdef CONFIG_NETCONSOLE
369 #if defined(CONFIG_CMD_SNTP)
374 #if defined(CONFIG_CMD_DNS)
386 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
387 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
388 defined(CONFIG_STATUS_LED) && \
389 defined(STATUS_LED_RED)
391 * Echo the inverted link state to the fault LED.
393 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
394 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
396 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
397 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
398 #endif /* CONFIG_MII, ... */
401 * Main packet reception loop. Loop receiving packets until
402 * someone sets `NetState' to a state that terminates.
406 #ifdef CONFIG_SHOW_ACTIVITY
410 * Check the ethernet for a new packet. The ethernet
411 * receive routine will process it.
416 * Abort if ctrl-c was pressed.
427 * Check for a timeout, and run the timeout handler
430 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
433 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
434 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
435 defined(CONFIG_STATUS_LED) && \
436 defined(STATUS_LED_RED)
438 * Echo the inverted link state to the fault LED.
440 if (miiphy_link(eth_get_dev()->name,
441 CONFIG_SYS_FAULT_MII_ADDR)) {
442 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
444 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
446 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
447 #endif /* CONFIG_MII, ... */
449 timeHandler = (thand_f *)0;
456 case NETLOOP_RESTART:
460 case NETLOOP_SUCCESS:
461 if (NetBootFileXferSize > 0) {
463 printf("Bytes transferred = %ld (%lx hex)\n",
465 NetBootFileXferSize);
466 sprintf(buf, "%lX", NetBootFileXferSize);
467 setenv("filesize", buf);
469 sprintf(buf, "%lX", (unsigned long)load_addr);
470 setenv("fileaddr", buf);
473 ret = NetBootFileXferSize;
482 #ifdef CONFIG_CMD_TFTPPUT
483 /* Clear out the handlers */
485 net_set_icmp_handler(NULL);
490 /**********************************************************************/
493 startAgainTimeout(void)
495 NetState = NETLOOP_RESTART;
499 startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
500 unsigned src, unsigned len)
502 /* Totally ignore the packet */
505 void NetStartAgain(void)
508 int retry_forever = 0;
509 unsigned long retrycnt = 0;
511 nretry = getenv("netretry");
513 if (!strcmp(nretry, "yes"))
515 else if (!strcmp(nretry, "no"))
517 else if (!strcmp(nretry, "once"))
520 retrycnt = simple_strtoul(nretry, NULL, 0);
524 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
526 NetState = NETLOOP_FAIL;
533 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
534 eth_try_another(!NetRestarted);
537 if (NetRestartWrap) {
540 NetSetTimeout(10000UL, startAgainTimeout);
541 NetSetHandler(startAgainHandler);
543 NetState = NETLOOP_FAIL;
546 NetState = NETLOOP_RESTART;
550 /**********************************************************************/
558 return packetHandler;
563 NetSetHandler(rxhand_f *f)
568 #ifdef CONFIG_CMD_TFTPPUT
569 void net_set_icmp_handler(rxhand_icmp_f *f)
571 packet_icmp_handler = f;
576 NetSetTimeout(ulong iv, thand_f *f)
579 timeHandler = (thand_f *)0;
582 timeStart = get_timer(0);
589 NetSendPacket(uchar *pkt, int len)
591 (void) eth_send(pkt, len);
594 int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport,
602 /* convert to new style broadcast */
606 /* if broadcast, make the ether address a broadcast and don't do ARP */
607 if (dest == 0xFFFFFFFF)
608 ether = NetBcastAddr;
611 * if MAC address was not discovered yet, save the packet and do
614 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
616 pkt = NetArpWaitTxPacket;
618 pkt = (uchar *)NetTxPacket;
620 eth_hdr_size = NetSetEther(pkt, ether, PROT_IP);
622 net_set_udp_header(pkt, dest, dport, sport, payload_len);
623 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
626 debug("sending ARP for %pI4\n", &dest);
628 /* save the ip and eth addr for the packet to send after arp */
629 NetArpWaitPacketIP = dest;
630 NetArpWaitPacketMAC = ether;
633 * Copy the packet data from the NetTxPacket into the
634 * NetArpWaitTxPacket to send after arp
636 memcpy(pkt + IP_UDP_HDR_SIZE, (uchar *)NetTxPacket +
637 pkt_hdr_size, payload_len);
639 /* size of the waiting packet */
640 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
642 /* and do the ARP request */
644 NetArpWaitTimerStart = get_timer(0);
646 return 1; /* waiting */
648 debug("sending UDP to %pI4/%pM\n", &dest, ether);
649 eth_send(NetTxPacket, pkt_hdr_size + payload_len);
650 return 0; /* transmitted */
654 #ifdef CONFIG_IP_DEFRAG
656 * This function collects fragments in a single packet, according
657 * to the algorithm in RFC815. It returns NULL or the pointer to
658 * a complete packet, in static storage
660 #ifndef CONFIG_NET_MAXDEFRAG
661 #define CONFIG_NET_MAXDEFRAG 16384
664 * MAXDEFRAG, above, is chosen in the config file and is real data
665 * so we need to add the NFS overhead, which is more than TFTP.
666 * To use sizeof in the internal unnamed structures, we need a real
667 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
668 * The compiler doesn't complain nor allocates the actual structure
670 static struct rpc_t rpc_specimen;
671 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
673 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
676 * this is the packet being assembled, either data or frag control.
677 * Fragments go by 8 bytes, so this union must be 8 bytes long
680 /* first_byte is address of this structure */
681 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
682 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
683 u16 prev_hole; /* index of prev, 0 == none */
687 static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
689 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
690 static u16 first_hole, total_len;
691 struct hole *payload, *thisfrag, *h, *newh;
692 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
693 uchar *indata = (uchar *)ip;
694 int offset8, start, len, done = 0;
695 u16 ip_off = ntohs(ip->ip_off);
697 /* payload starts after IP header, this fragment is in there */
698 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
699 offset8 = (ip_off & IP_OFFS);
700 thisfrag = payload + offset8;
702 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
704 if (start + len > IP_MAXUDP) /* fragment extends too far */
707 if (!total_len || localip->ip_id != ip->ip_id) {
708 /* new (or different) packet, reset structs */
710 payload[0].last_byte = ~0;
711 payload[0].next_hole = 0;
712 payload[0].prev_hole = 0;
714 /* any IP header will work, copy the first we received */
715 memcpy(localip, ip, IP_HDR_SIZE);
719 * What follows is the reassembly algorithm. We use the payload
720 * array as a linked list of hole descriptors, as each hole starts
721 * at a multiple of 8 bytes. However, last byte can be whatever value,
722 * so it is represented as byte count, not as 8-byte blocks.
725 h = payload + first_hole;
726 while (h->last_byte < start) {
728 /* no hole that far away */
731 h = payload + h->next_hole;
734 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
735 if (offset8 + ((len + 7) / 8) <= h - payload) {
736 /* no overlap with holes (dup fragment?) */
740 if (!(ip_off & IP_FLAGS_MFRAG)) {
741 /* no more fragmentss: truncate this (last) hole */
742 total_len = start + len;
743 h->last_byte = start + len;
747 * There is some overlap: fix the hole list. This code doesn't
748 * deal with a fragment that overlaps with two different holes
749 * (thus being a superset of a previously-received fragment).
752 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
753 /* complete overlap with hole: remove hole */
754 if (!h->prev_hole && !h->next_hole) {
755 /* last remaining hole */
757 } else if (!h->prev_hole) {
759 first_hole = h->next_hole;
760 payload[h->next_hole].prev_hole = 0;
761 } else if (!h->next_hole) {
763 payload[h->prev_hole].next_hole = 0;
765 /* in the middle of the list */
766 payload[h->next_hole].prev_hole = h->prev_hole;
767 payload[h->prev_hole].next_hole = h->next_hole;
770 } else if (h->last_byte <= start + len) {
771 /* overlaps with final part of the hole: shorten this hole */
772 h->last_byte = start;
774 } else if (h >= thisfrag) {
775 /* overlaps with initial part of the hole: move this hole */
776 newh = thisfrag + (len / 8);
780 payload[h->next_hole].prev_hole = (h - payload);
782 payload[h->prev_hole].next_hole = (h - payload);
784 first_hole = (h - payload);
787 /* fragment sits in the middle: split the hole */
788 newh = thisfrag + (len / 8);
790 h->last_byte = start;
791 h->next_hole = (newh - payload);
792 newh->prev_hole = (h - payload);
794 payload[newh->next_hole].prev_hole = (newh - payload);
797 /* finally copy this fragment and possibly return whole packet */
798 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
802 localip->ip_len = htons(total_len);
803 *lenp = total_len + IP_HDR_SIZE;
807 static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
809 u16 ip_off = ntohs(ip->ip_off);
810 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
811 return ip; /* not a fragment */
812 return __NetDefragment(ip, lenp);
815 #else /* !CONFIG_IP_DEFRAG */
817 static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
819 u16 ip_off = ntohs(ip->ip_off);
820 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
821 return ip; /* not a fragment */
827 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
830 * @parma ip IP packet containing the ICMP
832 static void receive_icmp(struct ip_udp_hdr *ip, int len,
833 IPaddr_t src_ip, struct ethernet_hdr *et)
835 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
837 switch (icmph->type) {
839 if (icmph->code != ICMP_REDIR_HOST)
841 printf(" ICMP Host Redirect to %pI4 ",
845 #if defined(CONFIG_CMD_PING)
846 ping_receive(et, ip, len);
848 #ifdef CONFIG_CMD_TFTPPUT
849 if (packet_icmp_handler)
850 packet_icmp_handler(icmph->type, icmph->code,
851 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
852 icmph->un.data, ntohs(ip->udp_len));
859 NetReceive(uchar *inpkt, int len)
861 struct ethernet_hdr *et;
862 struct ip_udp_hdr *ip;
866 #if defined(CONFIG_CMD_CDP)
869 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
871 debug("packet received\n");
874 NetRxPacketLen = len;
875 et = (struct ethernet_hdr *)inpkt;
877 /* too small packet? */
878 if (len < ETHER_HDR_SIZE)
883 (*push_packet)(inpkt, len);
888 #if defined(CONFIG_CMD_CDP)
889 /* keep track if packet is CDP */
890 iscdp = is_cdp_packet(et->et_dest);
893 myvlanid = ntohs(NetOurVLAN);
894 if (myvlanid == (ushort)-1)
895 myvlanid = VLAN_NONE;
896 mynvlanid = ntohs(NetOurNativeVLAN);
897 if (mynvlanid == (ushort)-1)
898 mynvlanid = VLAN_NONE;
900 eth_proto = ntohs(et->et_protlen);
902 debug("packet received\n");
904 if (eth_proto < 1514) {
905 struct e802_hdr *et802 = (struct e802_hdr *)et;
907 * Got a 802.2 packet. Check the other protocol field.
908 * XXX VLAN over 802.2+SNAP not implemented!
910 eth_proto = ntohs(et802->et_prot);
912 ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE);
913 len -= E802_HDR_SIZE;
915 } else if (eth_proto != PROT_VLAN) { /* normal packet */
916 ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE);
917 len -= ETHER_HDR_SIZE;
919 } else { /* VLAN packet */
920 struct vlan_ethernet_hdr *vet =
921 (struct vlan_ethernet_hdr *)et;
923 debug("VLAN packet received\n");
925 /* too small packet? */
926 if (len < VLAN_ETHER_HDR_SIZE)
929 /* if no VLAN active */
930 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
931 #if defined(CONFIG_CMD_CDP)
937 cti = ntohs(vet->vet_tag);
938 vlanid = cti & VLAN_IDMASK;
939 eth_proto = ntohs(vet->vet_type);
941 ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE);
942 len -= VLAN_ETHER_HDR_SIZE;
945 debug("Receive from protocol 0x%x\n", eth_proto);
947 #if defined(CONFIG_CMD_CDP)
949 cdp_receive((uchar *)ip, len);
954 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
955 if (vlanid == VLAN_NONE)
956 vlanid = (mynvlanid & VLAN_IDMASK);
958 if (vlanid != (myvlanid & VLAN_IDMASK))
965 ArpReceive(et, ip, len);
968 #ifdef CONFIG_CMD_RARP
970 rarp_receive(ip, len);
975 /* Before we start poking the header, make sure it is there */
976 if (len < IP_UDP_HDR_SIZE) {
977 debug("len bad %d < %lu\n", len,
978 (ulong)IP_UDP_HDR_SIZE);
981 /* Check the packet length */
982 if (len < ntohs(ip->ip_len)) {
983 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
986 len = ntohs(ip->ip_len);
987 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
989 /* Can't deal with anything except IPv4 */
990 if ((ip->ip_hl_v & 0xf0) != 0x40)
992 /* Can't deal with IP options (headers != 20 bytes) */
993 if ((ip->ip_hl_v & 0x0f) > 0x05)
995 /* Check the Checksum of the header */
996 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) {
997 puts("checksum bad\n");
1000 /* If it is not for us, ignore it */
1001 dst_ip = NetReadIP(&ip->ip_dst);
1002 if (NetOurIP && dst_ip != NetOurIP && dst_ip != 0xFFFFFFFF) {
1003 #ifdef CONFIG_MCAST_TFTP
1004 if (Mcast_addr != dst_ip)
1008 /* Read source IP address for later use */
1009 src_ip = NetReadIP(&ip->ip_src);
1011 * The function returns the unchanged packet if it's not
1012 * a fragment, and either the complete packet or NULL if
1013 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1015 ip = NetDefragment(ip, &len);
1019 * watch for ICMP host redirects
1021 * There is no real handler code (yet). We just watch
1022 * for ICMP host redirect messages. In case anybody
1023 * sees these messages: please contact me
1024 * (wd@denx.de), or - even better - send me the
1025 * necessary fixes :-)
1027 * Note: in all cases where I have seen this so far
1028 * it was a problem with the router configuration,
1029 * for instance when a router was configured in the
1030 * BOOTP reply, but the TFTP server was on the same
1031 * subnet. So this is probably a warning that your
1032 * configuration might be wrong. But I'm not really
1033 * sure if there aren't any other situations.
1035 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1036 * we send a tftp packet to a dead connection, or when
1037 * there is no server at the other end.
1039 if (ip->ip_p == IPPROTO_ICMP) {
1040 receive_icmp(ip, len, src_ip, et);
1042 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1046 #ifdef CONFIG_UDP_CHECKSUM
1047 if (ip->udp_xsum != 0) {
1053 xsum += (ntohs(ip->udp_len));
1054 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1055 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1056 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1057 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1059 sumlen = ntohs(ip->udp_len);
1060 sumptr = (ushort *) &(ip->udp_src);
1062 while (sumlen > 1) {
1065 sumdata = *sumptr++;
1066 xsum += ntohs(sumdata);
1072 sumdata = *(unsigned char *) sumptr;
1073 sumdata = (sumdata << 8) & 0xff00;
1076 while ((xsum >> 16) != 0) {
1077 xsum = (xsum & 0x0000ffff) +
1078 ((xsum >> 16) & 0x0000ffff);
1080 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1081 printf(" UDP wrong checksum %08lx %08x\n",
1082 xsum, ntohs(ip->udp_xsum));
1089 #ifdef CONFIG_NETCONSOLE
1090 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1093 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1096 * IP header OK. Pass the packet to the current handler.
1098 (*packetHandler)((uchar *)ip + IP_UDP_HDR_SIZE,
1102 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1108 /**********************************************************************/
1110 static int net_check_prereq(enum proto_t protocol)
1114 #if defined(CONFIG_CMD_PING)
1116 if (NetPingIP == 0) {
1117 puts("*** ERROR: ping address not given\n");
1122 #if defined(CONFIG_CMD_SNTP)
1124 if (NetNtpServerIP == 0) {
1125 puts("*** ERROR: NTP server address not given\n");
1130 #if defined(CONFIG_CMD_DNS)
1132 if (NetOurDNSIP == 0) {
1133 puts("*** ERROR: DNS server address not given\n");
1138 #if defined(CONFIG_CMD_NFS)
1143 if (NetServerIP == 0) {
1144 puts("*** ERROR: `serverip' not set\n");
1147 #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1148 defined(CONFIG_CMD_DNS)
1155 if (NetOurIP == 0) {
1156 puts("*** ERROR: `ipaddr' not set\n");
1161 #ifdef CONFIG_CMD_RARP
1167 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
1168 int num = eth_get_dev_index();
1172 puts("*** ERROR: No ethernet found.\n");
1175 puts("*** ERROR: `ethaddr' not set\n");
1178 printf("*** ERROR: `eth%daddr' not set\n",
1192 /**********************************************************************/
1195 NetCksumOk(uchar *ptr, int len)
1197 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1202 NetCksum(uchar *ptr, int len)
1205 ushort *p = (ushort *)ptr;
1210 xsum = (xsum & 0xffff) + (xsum >> 16);
1211 xsum = (xsum & 0xffff) + (xsum >> 16);
1212 return xsum & 0xffff;
1220 myvlanid = ntohs(NetOurVLAN);
1221 if (myvlanid == (ushort)-1)
1222 myvlanid = VLAN_NONE;
1224 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1225 VLAN_ETHER_HDR_SIZE;
1229 NetSetEther(uchar *xet, uchar * addr, uint prot)
1231 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1234 myvlanid = ntohs(NetOurVLAN);
1235 if (myvlanid == (ushort)-1)
1236 myvlanid = VLAN_NONE;
1238 memcpy(et->et_dest, addr, 6);
1239 memcpy(et->et_src, NetOurEther, 6);
1240 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1241 et->et_protlen = htons(prot);
1242 return ETHER_HDR_SIZE;
1244 struct vlan_ethernet_hdr *vet =
1245 (struct vlan_ethernet_hdr *)xet;
1247 vet->vet_vlan_type = htons(PROT_VLAN);
1248 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1249 vet->vet_type = htons(prot);
1250 return VLAN_ETHER_HDR_SIZE;
1254 void net_set_ip_header(uchar *pkt, IPaddr_t dest, IPaddr_t source)
1256 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1259 * Construct an IP header.
1261 /* IP_HDR_SIZE / 4 (not including UDP) */
1264 ip->ip_len = htons(IP_HDR_SIZE);
1265 ip->ip_id = htons(NetIPID++);
1266 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1269 /* already in network byte order */
1270 NetCopyIP((void *)&ip->ip_src, &source);
1271 /* already in network byte order */
1272 NetCopyIP((void *)&ip->ip_dst, &dest);
1275 void net_set_udp_header(uchar *pkt, IPaddr_t dest, int dport, int sport,
1278 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1281 * If the data is an odd number of bytes, zero the
1282 * byte after the last byte so that the checksum
1286 pkt[IP_UDP_HDR_SIZE + len] = 0;
1288 net_set_ip_header(pkt, dest, NetOurIP);
1289 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
1290 ip->ip_p = IPPROTO_UDP;
1291 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE >> 1);
1293 ip->udp_src = htons(sport);
1294 ip->udp_dst = htons(dport);
1295 ip->udp_len = htons(UDP_HDR_SIZE + len);
1299 void copy_filename(char *dst, const char *src, int size)
1301 if (*src && (*src == '"')) {
1306 while ((--size > 0) && *src && (*src != '"'))
1311 #if defined(CONFIG_CMD_NFS) || \
1312 defined(CONFIG_CMD_SNTP) || \
1313 defined(CONFIG_CMD_DNS)
1315 * make port a little random (1024-17407)
1316 * This keeps the math somewhat trivial to compute, and seems to work with
1317 * all supported protocols/clients/servers
1319 unsigned int random_port(void)
1321 return 1024 + (get_timer(0) % 0x4000);
1325 void ip_to_string(IPaddr_t x, char *s)
1328 sprintf(s, "%d.%d.%d.%d",
1329 (int) ((x >> 24) & 0xff),
1330 (int) ((x >> 16) & 0xff),
1331 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
1335 void VLAN_to_string(ushort x, char *s)
1339 if (x == (ushort)-1)
1345 sprintf(s, "%d", x & VLAN_IDMASK);
1348 ushort string_to_VLAN(const char *s)
1353 return htons(VLAN_NONE);
1355 if (*s < '0' || *s > '9')
1358 id = (ushort)simple_strtoul(s, NULL, 10);
1363 ushort getenv_VLAN(char *var)
1365 return string_to_VLAN(getenv(var));