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
83 #ifdef CONFIG_CMD_RARP
87 #ifdef CONFIG_STATUS_LED
88 #include <status_led.h>
91 #if defined(CONFIG_CMD_SNTP)
94 #if defined(CONFIG_CDP_VERSION)
95 #include <timestamp.h>
97 #if defined(CONFIG_CMD_DNS)
101 DECLARE_GLOBAL_DATA_PTR;
103 #ifndef CONFIG_ARP_TIMEOUT
104 /* Milliseconds before trying ARP again */
105 # define ARP_TIMEOUT 5000UL
107 # define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
111 #ifndef CONFIG_NET_RETRY_COUNT
112 # define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
114 # define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
117 /** BOOTP EXTENTIONS **/
119 /* Our subnet mask (0=unknown) */
120 IPaddr_t NetOurSubnetMask;
121 /* Our gateways IP address */
122 IPaddr_t NetOurGatewayIP;
123 /* Our DNS IP address */
124 IPaddr_t NetOurDNSIP;
125 #if defined(CONFIG_BOOTP_DNS2)
126 /* Our 2nd DNS IP address */
127 IPaddr_t NetOurDNS2IP;
130 char NetOurNISDomain[32] = {0,};
132 char NetOurHostName[32] = {0,};
134 char NetOurRootPath[64] = {0,};
135 /* Our bootfile size in blocks */
136 ushort NetBootFileSize;
138 #ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
142 /** END OF BOOTP EXTENTIONS **/
144 /* The actual transferred size of the bootfile (in bytes) */
145 ulong NetBootFileXferSize;
146 /* Our ethernet address */
147 uchar NetOurEther[6];
148 /* Boot server enet address */
149 uchar NetServerEther[6];
150 /* Our IP addr (0 = unknown) */
152 /* Server IP addr (0 = unknown) */
153 IPaddr_t NetServerIP;
154 /* Current receive packet */
155 volatile uchar *NetRxPacket;
156 /* Current rx packet length */
160 /* Ethernet bcast address */
161 uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162 uchar NetEtherNullAddr[6];
164 void (*push_packet)(volatile void *, int len) = 0;
166 #if defined(CONFIG_CMD_CDP)
167 /* Ethernet bcast address */
168 uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
170 /* Network loop state */
172 #ifdef CONFIG_NET_MULTI
173 /* Tried all network devices */
175 /* Network loop restarted */
176 static int NetRestarted;
177 /* At least one device configured */
178 static int NetDevExists;
181 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
182 /* default is without VLAN */
183 ushort NetOurVLAN = 0xFFFF;
185 ushort NetOurNativeVLAN = 0xFFFF;
190 #if defined(CONFIG_CMD_PING)
191 /* the ip address to ping */
194 static void PingStart(void);
197 #if defined(CONFIG_CMD_CDP)
198 static void CDPStart(void);
201 #if defined(CONFIG_CMD_SNTP)
202 /* NTP server IP address */
203 IPaddr_t NetNtpServerIP;
204 /* offset time from UTC */
208 #ifdef CONFIG_NETCONSOLE
210 int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
213 volatile uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
216 volatile uchar *NetRxPackets[PKTBUFSRX];
218 /* Current RX packet handler */
219 static rxhand_f *packetHandler;
220 /* Current timeout handler */
221 static thand_f *timeHandler;
222 /* Time base value */
223 static ulong timeStart;
224 /* Current timeout value */
225 static ulong timeDelta;
226 /* THE transmit packet */
227 volatile uchar *NetTxPacket;
229 static int net_check_prereq(proto_t protocol);
231 static int NetTryCount;
233 /**********************************************************************/
235 IPaddr_t NetArpWaitPacketIP;
236 IPaddr_t NetArpWaitReplyIP;
237 /* MAC address of waiting packet's destination */
238 uchar *NetArpWaitPacketMAC;
239 /* THE transmit packet */
240 uchar *NetArpWaitTxPacket;
241 int NetArpWaitTxPacketSize;
242 uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
243 ulong NetArpWaitTimerStart;
246 void ArpRequest(void)
252 debug("ARP broadcast %d\n", NetArpWaitTry);
256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
264 arp->ar_op = htons(ARPOP_REQUEST);
267 memcpy(&arp->ar_data[0], NetOurEther, 6);
269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
270 for (i = 10; i < 16; ++i) {
271 /* dest ET addr = 0 */
275 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
276 (NetOurIP & NetOurSubnetMask)) {
277 if (NetOurGatewayIP == 0) {
278 puts("## Warning: gatewayip needed but not set\n");
279 NetArpWaitReplyIP = NetArpWaitPacketIP;
281 NetArpWaitReplyIP = NetOurGatewayIP;
284 NetArpWaitReplyIP = NetArpWaitPacketIP;
287 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
288 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
291 void ArpTimeoutCheck(void)
295 if (!NetArpWaitPacketIP)
300 /* check for arp timeout */
301 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
304 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
305 puts("\nARP Retry count exceeded; starting again\n");
309 NetArpWaitTimerStart = t;
316 NetInitLoop(proto_t protocol)
318 static int env_changed_id;
320 int env_id = get_env_id();
322 /* update only when the environment has changed */
323 if (env_changed_id != env_id) {
324 NetOurIP = getenv_IPaddr("ipaddr");
325 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
326 NetOurGatewayIP = getenv_IPaddr("gatewayip");
327 NetOurSubnetMask = getenv_IPaddr("netmask");
328 NetServerIP = getenv_IPaddr("serverip");
329 NetOurNativeVLAN = getenv_VLAN("nvlan");
330 NetOurVLAN = getenv_VLAN("vlan");
331 #if defined(CONFIG_CMD_DNS)
332 NetOurDNSIP = getenv_IPaddr("dnsip");
334 env_changed_id = env_id;
340 /**********************************************************************/
342 * Main network processing loop.
346 NetLoop(proto_t protocol)
350 #ifdef CONFIG_NET_MULTI
355 /* XXX problem with bss workaround */
356 NetArpWaitPacketMAC = NULL;
357 NetArpWaitTxPacket = NULL;
358 NetArpWaitPacketIP = 0;
359 NetArpWaitReplyIP = 0;
360 NetArpWaitTxPacket = NULL;
367 * Setup packet buffers, aligned correctly.
369 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
370 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
371 for (i = 0; i < PKTBUFSRX; i++)
372 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
375 if (!NetArpWaitTxPacket) {
376 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
377 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
378 NetArpWaitTxPacketSize = 0;
382 #ifdef CONFIG_NET_MULTI
385 if (eth_init(bd) < 0) {
391 #ifdef CONFIG_NET_MULTI
392 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
394 eth_getenv_enetaddr("ethaddr", NetOurEther);
397 NetState = NETLOOP_CONTINUE;
400 * Start the ball rolling with the given start function. From
401 * here on, this code is a state machine driven by received
402 * packets and timer events.
404 NetInitLoop(protocol);
406 switch (net_check_prereq(protocol)) {
408 /* network not configured */
412 #ifdef CONFIG_NET_MULTI
414 /* network device not configured */
416 #endif /* CONFIG_NET_MULTI */
419 #ifdef CONFIG_NET_MULTI
424 /* always use ARP to get server ethernet address */
427 #ifdef CONFIG_CMD_TFTPSRV
432 #if defined(CONFIG_CMD_DHCP)
436 DhcpRequest(); /* Basically same as BOOTP */
446 #if defined(CONFIG_CMD_RARP)
453 #if defined(CONFIG_CMD_PING)
458 #if defined(CONFIG_CMD_NFS)
463 #if defined(CONFIG_CMD_CDP)
468 #ifdef CONFIG_NETCONSOLE
473 #if defined(CONFIG_CMD_SNTP)
478 #if defined(CONFIG_CMD_DNS)
487 NetBootFileXferSize = 0;
491 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
492 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
493 defined(CONFIG_STATUS_LED) && \
494 defined(STATUS_LED_RED)
496 * Echo the inverted link state to the fault LED.
498 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
499 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
501 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
502 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
503 #endif /* CONFIG_MII, ... */
506 * Main packet reception loop. Loop receiving packets until
507 * someone sets `NetState' to a state that terminates.
511 #ifdef CONFIG_SHOW_ACTIVITY
513 extern void show_activity(int arg);
518 * Check the ethernet for a new packet. The ethernet
519 * receive routine will process it.
524 * Abort if ctrl-c was pressed.
535 * Check for a timeout, and run the timeout handler
538 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
541 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
542 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
543 defined(CONFIG_STATUS_LED) && \
544 defined(STATUS_LED_RED)
546 * Echo the inverted link state to the fault LED.
548 if (miiphy_link(eth_get_dev()->name,
549 CONFIG_SYS_FAULT_MII_ADDR)) {
550 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
552 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
554 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
555 #endif /* CONFIG_MII, ... */
557 timeHandler = (thand_f *)0;
564 case NETLOOP_RESTART:
565 #ifdef CONFIG_NET_MULTI
570 case NETLOOP_SUCCESS:
571 if (NetBootFileXferSize > 0) {
573 printf("Bytes transferred = %ld (%lx hex)\n",
575 NetBootFileXferSize);
576 sprintf(buf, "%lX", NetBootFileXferSize);
577 setenv("filesize", buf);
579 sprintf(buf, "%lX", (unsigned long)load_addr);
580 setenv("fileaddr", buf);
583 return NetBootFileXferSize;
591 /**********************************************************************/
594 startAgainTimeout(void)
596 NetState = NETLOOP_RESTART;
600 startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
601 unsigned src, unsigned len)
603 /* Totally ignore the packet */
606 void NetStartAgain(void)
609 int retry_forever = 0;
610 unsigned long retrycnt = 0;
612 nretry = getenv("netretry");
614 if (!strcmp(nretry, "yes"))
616 else if (!strcmp(nretry, "no"))
618 else if (!strcmp(nretry, "once"))
621 retrycnt = simple_strtoul(nretry, NULL, 0);
625 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
627 NetState = NETLOOP_FAIL;
633 #ifndef CONFIG_NET_MULTI
634 NetSetTimeout(10000UL, startAgainTimeout);
635 NetSetHandler(startAgainHandler);
636 #else /* !CONFIG_NET_MULTI*/
638 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
639 eth_try_another(!NetRestarted);
642 if (NetRestartWrap) {
645 NetSetTimeout(10000UL, startAgainTimeout);
646 NetSetHandler(startAgainHandler);
648 NetState = NETLOOP_FAIL;
651 NetState = NETLOOP_RESTART;
653 #endif /* CONFIG_NET_MULTI */
656 /**********************************************************************/
662 NetSetHandler(rxhand_f *f)
669 NetSetTimeout(ulong iv, thand_f *f)
672 timeHandler = (thand_f *)0;
675 timeStart = get_timer(0);
682 NetSendPacket(volatile uchar *pkt, int len)
684 (void) eth_send(pkt, len);
688 NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
692 /* convert to new style broadcast */
696 /* if broadcast, make the ether address a broadcast and don't do ARP */
697 if (dest == 0xFFFFFFFF)
698 ether = NetBcastAddr;
701 * if MAC address was not discovered yet, save the packet and do
704 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
706 debug("sending ARP for %08lx\n", dest);
708 NetArpWaitPacketIP = dest;
709 NetArpWaitPacketMAC = ether;
711 pkt = NetArpWaitTxPacket;
712 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
714 NetSetIP(pkt, dest, dport, sport, len);
715 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
716 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
718 /* size of the waiting packet */
719 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
722 /* and do the ARP request */
724 NetArpWaitTimerStart = get_timer(0);
726 return 1; /* waiting */
729 debug("sending UDP to %08lx/%pM\n", dest, ether);
731 pkt = (uchar *)NetTxPacket;
732 pkt += NetSetEther(pkt, ether, PROT_IP);
733 NetSetIP(pkt, dest, dport, sport, len);
734 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
736 return 0; /* transmitted */
739 #if defined(CONFIG_CMD_PING)
740 static ushort PingSeqNo;
749 /* XXX always send arp request */
751 memcpy(mac, NetEtherNullAddr, 6);
753 debug("sending ARP for %08lx\n", NetPingIP);
755 NetArpWaitPacketIP = NetPingIP;
756 NetArpWaitPacketMAC = mac;
758 pkt = NetArpWaitTxPacket;
759 pkt += NetSetEther(pkt, mac, PROT_IP);
761 ip = (volatile IP_t *)pkt;
764 * Construct an IP and ICMP header.
765 * (need to set no fragment bit - XXX)
767 /* IP_HDR_SIZE / 4 (not including UDP) */
770 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
771 ip->ip_id = htons(NetIPID++);
772 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
774 ip->ip_p = 0x01; /* ICMP */
776 /* already in network byte order */
777 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
779 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
780 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
782 s = &ip->udp_src; /* XXX ICMP starts here */
783 s[0] = htons(0x0800); /* echo-request, code */
784 s[1] = 0; /* checksum */
785 s[2] = 0; /* identifier */
786 s[3] = htons(PingSeqNo++); /* sequence number */
787 s[1] = ~NetCksum((uchar *)s, 8/2);
789 /* size of the waiting packet */
790 NetArpWaitTxPacketSize =
791 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
793 /* and do the ARP request */
795 NetArpWaitTimerStart = get_timer(0);
797 return 1; /* waiting */
804 NetState = NETLOOP_FAIL; /* we did not get the reply */
808 PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
811 if (sip != NetPingIP)
814 NetState = NETLOOP_SUCCESS;
817 static void PingStart(void)
819 #if defined(CONFIG_NET_MULTI)
820 printf("Using %s device\n", eth_get_name());
821 #endif /* CONFIG_NET_MULTI */
822 NetSetTimeout(10000UL, PingTimeout);
823 NetSetHandler(PingHandler);
829 #if defined(CONFIG_CMD_CDP)
831 #define CDP_DEVICE_ID_TLV 0x0001
832 #define CDP_ADDRESS_TLV 0x0002
833 #define CDP_PORT_ID_TLV 0x0003
834 #define CDP_CAPABILITIES_TLV 0x0004
835 #define CDP_VERSION_TLV 0x0005
836 #define CDP_PLATFORM_TLV 0x0006
837 #define CDP_NATIVE_VLAN_TLV 0x000a
838 #define CDP_APPLIANCE_VLAN_TLV 0x000e
839 #define CDP_TRIGGER_TLV 0x000f
840 #define CDP_POWER_CONSUMPTION_TLV 0x0010
841 #define CDP_SYSNAME_TLV 0x0014
842 #define CDP_SYSOBJECT_TLV 0x0015
843 #define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
845 #define CDP_TIMEOUT 250UL /* one packet every 250ms */
850 ushort CDPNativeVLAN;
851 ushort CDPApplianceVLAN;
853 static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
856 static ushort CDP_compute_csum(const uchar *buff, ushort len)
865 odd = 1 & (ulong)buff;
875 if (result & 0x80000000)
876 result = (result & 0xFFFF) + (result >> 16);
880 leftover = (signed short)(*(const signed char *)buff);
881 /* CISCO SUCKS big time! (and blows too):
882 * CDP uses the IP checksum algorithm with a twist;
883 * for the last byte it *sign* extends and sums.
885 result = (result & 0xffff0000) |
886 ((result + leftover) & 0x0000ffff);
889 result = (result & 0xFFFF) + (result >> 16);
892 result = ((result >> 8) & 0xff) |
893 ((result & 0xff) << 8);
896 /* add up 16-bit and 17-bit words for 17+c bits */
897 result = (result & 0xffff) + (result >> 16);
898 /* add up 16-bit and 2-bit for 16+c bit */
899 result = (result & 0xffff) + (result >> 16);
901 result = (result & 0xffff) + (result >> 16);
904 csum = ~(ushort)result;
906 /* run time endian detection */
907 if (csum != htons(csum)) /* little endian */
913 int CDPSendTrigger(void)
921 #if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
922 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
927 et = (Ethernet_t *)pkt;
929 /* NOTE: trigger sent not on any VLAN */
931 /* form ethernet header */
932 memcpy(et->et_dest, NetCDPAddr, 6);
933 memcpy(et->et_src, NetOurEther, 6);
935 pkt += ETHER_HDR_SIZE;
938 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
939 pkt += sizeof(CDP_SNAP_hdr);
942 *pkt++ = 0x02; /* CDP version 2 */
943 *pkt++ = 180; /* TTL */
944 s = (volatile ushort *)pkt;
946 /* checksum (0 for later calculation) */
950 #ifdef CONFIG_CDP_DEVICE_ID
951 *s++ = htons(CDP_DEVICE_ID_TLV);
952 *s++ = htons(CONFIG_CDP_DEVICE_ID);
953 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
954 memcpy((uchar *)s, buf, 16);
958 #ifdef CONFIG_CDP_PORT_ID
959 *s++ = htons(CDP_PORT_ID_TLV);
960 memset(buf, 0, sizeof(buf));
961 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
963 if (len & 1) /* make it even */
965 *s++ = htons(len + 4);
966 memcpy((uchar *)s, buf, len);
970 #ifdef CONFIG_CDP_CAPABILITIES
971 *s++ = htons(CDP_CAPABILITIES_TLV);
973 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
977 #ifdef CONFIG_CDP_VERSION
978 *s++ = htons(CDP_VERSION_TLV);
979 memset(buf, 0, sizeof(buf));
980 strcpy(buf, CONFIG_CDP_VERSION);
982 if (len & 1) /* make it even */
984 *s++ = htons(len + 4);
985 memcpy((uchar *)s, buf, len);
989 #ifdef CONFIG_CDP_PLATFORM
990 *s++ = htons(CDP_PLATFORM_TLV);
991 memset(buf, 0, sizeof(buf));
992 strcpy(buf, CONFIG_CDP_PLATFORM);
994 if (len & 1) /* make it even */
996 *s++ = htons(len + 4);
997 memcpy((uchar *)s, buf, len);
1001 #ifdef CONFIG_CDP_TRIGGER
1002 *s++ = htons(CDP_TRIGGER_TLV);
1004 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1008 #ifdef CONFIG_CDP_POWER_CONSUMPTION
1009 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1011 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1014 /* length of ethernet packet */
1015 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1016 et->et_protlen = htons(len);
1018 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
1019 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1020 (uchar *)s - (NetTxPacket + len));
1023 *cp = htons(chksum);
1025 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1035 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1040 /* if not OK try again */
1044 NetState = NETLOOP_SUCCESS;
1048 CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1055 CDPHandler(const uchar *pkt, unsigned len)
1064 if (len < sizeof(CDP_SNAP_hdr) + 4)
1067 /* check for valid CDP SNAP header */
1068 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1071 pkt += sizeof(CDP_SNAP_hdr);
1072 len -= sizeof(CDP_SNAP_hdr);
1074 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1075 if (pkt[0] < 0x02 || pkt[1] == 0)
1079 * if version is greater than 0x02 maybe we'll have a problem;
1083 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1086 if (CDP_compute_csum(pkt, len) != 0)
1098 ss = (const ushort *)pkt;
1099 type = ntohs(ss[0]);
1100 tlen = ntohs(ss[1]);
1107 ss += 2; /* point ss to the data of the TLV */
1111 case CDP_DEVICE_ID_TLV:
1113 case CDP_ADDRESS_TLV:
1115 case CDP_PORT_ID_TLV:
1117 case CDP_CAPABILITIES_TLV:
1119 case CDP_VERSION_TLV:
1121 case CDP_PLATFORM_TLV:
1123 case CDP_NATIVE_VLAN_TLV:
1126 case CDP_APPLIANCE_VLAN_TLV:
1127 t = (const uchar *)ss;
1133 ss = (const ushort *)(t + 1);
1135 #ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
1136 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1139 /* XXX will this work; dunno */
1145 case CDP_TRIGGER_TLV:
1147 case CDP_POWER_CONSUMPTION_TLV:
1149 case CDP_SYSNAME_TLV:
1151 case CDP_SYSOBJECT_TLV:
1153 case CDP_MANAGEMENT_ADDRESS_TLV:
1158 CDPApplianceVLAN = vlan;
1159 CDPNativeVLAN = nvlan;
1165 printf("** CDP packet is too short\n");
1169 static void CDPStart(void)
1171 #if defined(CONFIG_NET_MULTI)
1172 printf("Using %s device\n", eth_get_name());
1177 CDPNativeVLAN = htons(-1);
1178 CDPApplianceVLAN = htons(-1);
1180 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1181 NetSetHandler(CDPDummyHandler);
1187 #ifdef CONFIG_IP_DEFRAG
1189 * This function collects fragments in a single packet, according
1190 * to the algorithm in RFC815. It returns NULL or the pointer to
1191 * a complete packet, in static storage
1193 #ifndef CONFIG_NET_MAXDEFRAG
1194 #define CONFIG_NET_MAXDEFRAG 16384
1197 * MAXDEFRAG, above, is chosen in the config file and is real data
1198 * so we need to add the NFS overhead, which is more than TFTP.
1199 * To use sizeof in the internal unnamed structures, we need a real
1200 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1201 * The compiler doesn't complain nor allocates the actual structure
1203 static struct rpc_t rpc_specimen;
1204 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1206 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1209 * this is the packet being assembled, either data or frag control.
1210 * Fragments go by 8 bytes, so this union must be 8 bytes long
1213 /* first_byte is address of this structure */
1214 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1215 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1216 u16 prev_hole; /* index of prev, 0 == none */
1220 static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1222 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1223 static u16 first_hole, total_len;
1224 struct hole *payload, *thisfrag, *h, *newh;
1225 IP_t *localip = (IP_t *)pkt_buff;
1226 uchar *indata = (uchar *)ip;
1227 int offset8, start, len, done = 0;
1228 u16 ip_off = ntohs(ip->ip_off);
1230 /* payload starts after IP header, this fragment is in there */
1231 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1232 offset8 = (ip_off & IP_OFFS);
1233 thisfrag = payload + offset8;
1234 start = offset8 * 8;
1235 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1237 if (start + len > IP_MAXUDP) /* fragment extends too far */
1240 if (!total_len || localip->ip_id != ip->ip_id) {
1241 /* new (or different) packet, reset structs */
1243 payload[0].last_byte = ~0;
1244 payload[0].next_hole = 0;
1245 payload[0].prev_hole = 0;
1247 /* any IP header will work, copy the first we received */
1248 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1252 * What follows is the reassembly algorithm. We use the payload
1253 * array as a linked list of hole descriptors, as each hole starts
1254 * at a multiple of 8 bytes. However, last byte can be whatever value,
1255 * so it is represented as byte count, not as 8-byte blocks.
1258 h = payload + first_hole;
1259 while (h->last_byte < start) {
1260 if (!h->next_hole) {
1261 /* no hole that far away */
1264 h = payload + h->next_hole;
1267 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1268 if (offset8 + ((len + 7) / 8) <= h - payload) {
1269 /* no overlap with holes (dup fragment?) */
1273 if (!(ip_off & IP_FLAGS_MFRAG)) {
1274 /* no more fragmentss: truncate this (last) hole */
1275 total_len = start + len;
1276 h->last_byte = start + len;
1280 * There is some overlap: fix the hole list. This code doesn't
1281 * deal with a fragment that overlaps with two different holes
1282 * (thus being a superset of a previously-received fragment).
1285 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
1286 /* complete overlap with hole: remove hole */
1287 if (!h->prev_hole && !h->next_hole) {
1288 /* last remaining hole */
1290 } else if (!h->prev_hole) {
1292 first_hole = h->next_hole;
1293 payload[h->next_hole].prev_hole = 0;
1294 } else if (!h->next_hole) {
1296 payload[h->prev_hole].next_hole = 0;
1298 /* in the middle of the list */
1299 payload[h->next_hole].prev_hole = h->prev_hole;
1300 payload[h->prev_hole].next_hole = h->next_hole;
1303 } else if (h->last_byte <= start + len) {
1304 /* overlaps with final part of the hole: shorten this hole */
1305 h->last_byte = start;
1307 } else if (h >= thisfrag) {
1308 /* overlaps with initial part of the hole: move this hole */
1309 newh = thisfrag + (len / 8);
1313 payload[h->next_hole].prev_hole = (h - payload);
1315 payload[h->prev_hole].next_hole = (h - payload);
1317 first_hole = (h - payload);
1320 /* fragment sits in the middle: split the hole */
1321 newh = thisfrag + (len / 8);
1323 h->last_byte = start;
1324 h->next_hole = (newh - payload);
1325 newh->prev_hole = (h - payload);
1326 if (newh->next_hole)
1327 payload[newh->next_hole].prev_hole = (newh - payload);
1330 /* finally copy this fragment and possibly return whole packet */
1331 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1335 localip->ip_len = htons(total_len);
1336 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1340 static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1342 u16 ip_off = ntohs(ip->ip_off);
1343 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1344 return ip; /* not a fragment */
1345 return __NetDefragment(ip, lenp);
1348 #else /* !CONFIG_IP_DEFRAG */
1350 static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1352 u16 ip_off = ntohs(ip->ip_off);
1353 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1354 return ip; /* not a fragment */
1360 NetReceive(volatile uchar *inpkt, int len)
1369 #if defined(CONFIG_CMD_CDP)
1372 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1374 debug("packet received\n");
1376 NetRxPacket = inpkt;
1377 NetRxPacketLen = len;
1378 et = (Ethernet_t *)inpkt;
1380 /* too small packet? */
1381 if (len < ETHER_HDR_SIZE)
1386 (*push_packet)(inpkt, len);
1391 #if defined(CONFIG_CMD_CDP)
1392 /* keep track if packet is CDP */
1393 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1396 myvlanid = ntohs(NetOurVLAN);
1397 if (myvlanid == (ushort)-1)
1398 myvlanid = VLAN_NONE;
1399 mynvlanid = ntohs(NetOurNativeVLAN);
1400 if (mynvlanid == (ushort)-1)
1401 mynvlanid = VLAN_NONE;
1403 x = ntohs(et->et_protlen);
1405 debug("packet received\n");
1409 * Got a 802 packet. Check the other protocol field.
1411 x = ntohs(et->et_prot);
1413 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
1414 len -= E802_HDR_SIZE;
1416 } else if (x != PROT_VLAN) { /* normal packet */
1417 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
1418 len -= ETHER_HDR_SIZE;
1420 } else { /* VLAN packet */
1421 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1423 debug("VLAN packet received\n");
1425 /* too small packet? */
1426 if (len < VLAN_ETHER_HDR_SIZE)
1429 /* if no VLAN active */
1430 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
1431 #if defined(CONFIG_CMD_CDP)
1437 cti = ntohs(vet->vet_tag);
1438 vlanid = cti & VLAN_IDMASK;
1439 x = ntohs(vet->vet_type);
1441 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1442 len -= VLAN_ETHER_HDR_SIZE;
1445 debug("Receive from protocol 0x%x\n", x);
1447 #if defined(CONFIG_CMD_CDP)
1449 CDPHandler((uchar *)ip, len);
1454 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1455 if (vlanid == VLAN_NONE)
1456 vlanid = (mynvlanid & VLAN_IDMASK);
1458 if (vlanid != (myvlanid & VLAN_IDMASK))
1466 * We have to deal with two types of ARP packets:
1467 * - REQUEST packets will be answered by sending our
1468 * IP address - if we know it.
1469 * - REPLY packates are expected only after we asked
1470 * for the TFTP server's or the gateway's ethernet
1471 * address; so if we receive such a packet, we set
1472 * the server ethernet address
1477 if (len < ARP_HDR_SIZE) {
1478 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1481 if (ntohs(arp->ar_hrd) != ARP_ETHER)
1483 if (ntohs(arp->ar_pro) != PROT_IP)
1485 if (arp->ar_hln != 6)
1487 if (arp->ar_pln != 4)
1493 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
1496 switch (ntohs(arp->ar_op)) {
1498 /* reply with our IP address */
1499 debug("Got ARP REQUEST, return our IP\n");
1501 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
1502 arp->ar_op = htons(ARPOP_REPLY);
1503 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
1504 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
1505 memcpy(&arp->ar_data[0], NetOurEther, 6);
1506 NetCopyIP(&arp->ar_data[6], &NetOurIP);
1507 (void) eth_send((uchar *)et,
1508 (pkt - (uchar *)et) + ARP_HDR_SIZE);
1511 case ARPOP_REPLY: /* arp reply */
1512 /* are we waiting for a reply */
1513 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1516 #ifdef CONFIG_KEEP_SERVERADDR
1517 if (NetServerIP == NetArpWaitPacketIP) {
1519 sprintf(buf, "%pM", arp->ar_data);
1520 setenv("serveraddr", buf);
1524 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
1527 tmp = NetReadIP(&arp->ar_data[6]);
1529 /* matched waiting packet's address */
1530 if (tmp == NetArpWaitReplyIP) {
1532 /* save address for later use */
1533 memcpy(NetArpWaitPacketMAC,
1534 &arp->ar_data[0], 6);
1536 #ifdef CONFIG_NETCONSOLE
1537 (*packetHandler)(0, 0, 0, 0, 0);
1539 /* modify header, and transmit it */
1540 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
1541 (void) eth_send(NetArpWaitTxPacket,
1542 NetArpWaitTxPacketSize);
1544 /* no arp request pending now */
1545 NetArpWaitPacketIP = 0;
1546 NetArpWaitTxPacketSize = 0;
1547 NetArpWaitPacketMAC = NULL;
1552 debug("Unexpected ARP opcode 0x%x\n",
1558 #ifdef CONFIG_CMD_RARP
1560 debug("Got RARP\n");
1562 if (len < ARP_HDR_SIZE) {
1563 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1567 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1568 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1569 (ntohs(arp->ar_pro) != PROT_IP) ||
1570 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1572 puts("invalid RARP header\n");
1574 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
1575 if (NetServerIP == 0)
1576 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1577 memcpy(NetServerEther, &arp->ar_data[0], 6);
1579 (*packetHandler)(0, 0, 0, 0, 0);
1585 /* Before we start poking the header, make sure it is there */
1586 if (len < IP_HDR_SIZE) {
1587 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
1590 /* Check the packet length */
1591 if (len < ntohs(ip->ip_len)) {
1592 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1595 len = ntohs(ip->ip_len);
1596 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1598 /* Can't deal with anything except IPv4 */
1599 if ((ip->ip_hl_v & 0xf0) != 0x40)
1601 /* Can't deal with IP options (headers != 20 bytes) */
1602 if ((ip->ip_hl_v & 0x0f) > 0x05)
1604 /* Check the Checksum of the header */
1605 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
1606 puts("checksum bad\n");
1609 /* If it is not for us, ignore it */
1610 tmp = NetReadIP(&ip->ip_dst);
1611 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
1612 #ifdef CONFIG_MCAST_TFTP
1613 if (Mcast_addr != tmp)
1617 /* Read source IP address for later use */
1618 src_ip = NetReadIP(&ip->ip_src);
1620 * The function returns the unchanged packet if it's not
1621 * a fragment, and either the complete packet or NULL if
1622 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1624 ip = NetDefragment(ip, &len);
1628 * watch for ICMP host redirects
1630 * There is no real handler code (yet). We just watch
1631 * for ICMP host redirect messages. In case anybody
1632 * sees these messages: please contact me
1633 * (wd@denx.de), or - even better - send me the
1634 * necessary fixes :-)
1636 * Note: in all cases where I have seen this so far
1637 * it was a problem with the router configuration,
1638 * for instance when a router was configured in the
1639 * BOOTP reply, but the TFTP server was on the same
1640 * subnet. So this is probably a warning that your
1641 * configuration might be wrong. But I'm not really
1642 * sure if there aren't any other situations.
1644 if (ip->ip_p == IPPROTO_ICMP) {
1645 ICMP_t *icmph = (ICMP_t *)&(ip->udp_src);
1647 switch (icmph->type) {
1649 if (icmph->code != ICMP_REDIR_HOST)
1651 printf(" ICMP Host Redirect to %pI4 ",
1652 &icmph->un.gateway);
1654 #if defined(CONFIG_CMD_PING)
1655 case ICMP_ECHO_REPLY:
1657 * IP header OK. Pass the packet to the
1660 /* XXX point to ip packet */
1661 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1663 case ICMP_ECHO_REQUEST:
1664 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1665 ETHER_HDR_SIZE + len);
1667 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1668 memcpy(&et->et_src[0], NetOurEther, 6);
1672 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1673 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1674 ip->ip_sum = ~NetCksum((uchar *)ip,
1675 IP_HDR_SIZE_NO_UDP >> 1);
1677 icmph->type = ICMP_ECHO_REPLY;
1678 icmph->checksum = 0;
1679 icmph->checksum = ~NetCksum((uchar *)icmph,
1680 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1681 (void) eth_send((uchar *)et,
1682 ETHER_HDR_SIZE + len);
1688 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1692 #ifdef CONFIG_UDP_CHECKSUM
1693 if (ip->udp_xsum != 0) {
1699 xsum += (ntohs(ip->udp_len));
1700 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1701 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1702 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1703 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1705 sumlen = ntohs(ip->udp_len);
1706 sumptr = (ushort *) &(ip->udp_src);
1708 while (sumlen > 1) {
1711 sumdata = *sumptr++;
1712 xsum += ntohs(sumdata);
1718 sumdata = *(unsigned char *) sumptr;
1719 sumdata = (sumdata << 8) & 0xff00;
1722 while ((xsum >> 16) != 0) {
1723 xsum = (xsum & 0x0000ffff) +
1724 ((xsum >> 16) & 0x0000ffff);
1726 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1727 printf(" UDP wrong checksum %08lx %08x\n",
1728 xsum, ntohs(ip->udp_xsum));
1735 #ifdef CONFIG_NETCONSOLE
1736 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
1739 ntohs(ip->udp_len) - 8);
1742 * IP header OK. Pass the packet to the current handler.
1744 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
1748 ntohs(ip->udp_len) - 8);
1754 /**********************************************************************/
1756 static int net_check_prereq(proto_t protocol)
1760 #if defined(CONFIG_CMD_PING)
1762 if (NetPingIP == 0) {
1763 puts("*** ERROR: ping address not given\n");
1768 #if defined(CONFIG_CMD_SNTP)
1770 if (NetNtpServerIP == 0) {
1771 puts("*** ERROR: NTP server address not given\n");
1776 #if defined(CONFIG_CMD_DNS)
1778 if (NetOurDNSIP == 0) {
1779 puts("*** ERROR: DNS server address not given\n");
1784 #if defined(CONFIG_CMD_NFS)
1788 if (NetServerIP == 0) {
1789 puts("*** ERROR: `serverip' not set\n");
1792 #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1793 defined(CONFIG_CMD_DNS)
1800 if (NetOurIP == 0) {
1801 puts("*** ERROR: `ipaddr' not set\n");
1806 #ifdef CONFIG_CMD_RARP
1812 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
1813 #ifdef CONFIG_NET_MULTI
1814 extern int eth_get_dev_index(void);
1815 int num = eth_get_dev_index();
1819 puts("*** ERROR: No ethernet found.\n");
1822 puts("*** ERROR: `ethaddr' not set\n");
1825 printf("*** ERROR: `eth%daddr' not set\n",
1833 puts("*** ERROR: `ethaddr' not set\n");
1843 /**********************************************************************/
1846 NetCksumOk(uchar *ptr, int len)
1848 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1853 NetCksum(uchar *ptr, int len)
1856 ushort *p = (ushort *)ptr;
1861 xsum = (xsum & 0xffff) + (xsum >> 16);
1862 xsum = (xsum & 0xffff) + (xsum >> 16);
1863 return xsum & 0xffff;
1871 myvlanid = ntohs(NetOurVLAN);
1872 if (myvlanid == (ushort)-1)
1873 myvlanid = VLAN_NONE;
1875 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1876 VLAN_ETHER_HDR_SIZE;
1880 NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
1882 Ethernet_t *et = (Ethernet_t *)xet;
1885 myvlanid = ntohs(NetOurVLAN);
1886 if (myvlanid == (ushort)-1)
1887 myvlanid = VLAN_NONE;
1889 memcpy(et->et_dest, addr, 6);
1890 memcpy(et->et_src, NetOurEther, 6);
1891 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1892 et->et_protlen = htons(prot);
1893 return ETHER_HDR_SIZE;
1895 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
1897 vet->vet_vlan_type = htons(PROT_VLAN);
1898 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1899 vet->vet_type = htons(prot);
1900 return VLAN_ETHER_HDR_SIZE;
1905 NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
1907 IP_t *ip = (IP_t *)xip;
1910 * If the data is an odd number of bytes, zero the
1911 * byte after the last byte so that the checksum
1915 xip[IP_HDR_SIZE + len] = 0;
1918 * Construct an IP and UDP header.
1919 * (need to set no fragment bit - XXX)
1921 /* IP_HDR_SIZE / 4 (not including UDP) */
1924 ip->ip_len = htons(IP_HDR_SIZE + len);
1925 ip->ip_id = htons(NetIPID++);
1926 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1928 ip->ip_p = 17; /* UDP */
1930 /* already in network byte order */
1931 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1933 NetCopyIP((void *)&ip->ip_dst, &dest);
1934 ip->udp_src = htons(sport);
1935 ip->udp_dst = htons(dport);
1936 ip->udp_len = htons(8 + len);
1938 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1941 void copy_filename(char *dst, const char *src, int size)
1943 if (*src && (*src == '"')) {
1948 while ((--size > 0) && *src && (*src != '"'))
1953 #if defined(CONFIG_CMD_NFS) || \
1954 defined(CONFIG_CMD_SNTP) || \
1955 defined(CONFIG_CMD_DNS)
1957 * make port a little random (1024-17407)
1958 * This keeps the math somewhat trivial to compute, and seems to work with
1959 * all supported protocols/clients/servers
1961 unsigned int random_port(void)
1963 return 1024 + (get_timer(0) % 0x4000);
1967 void ip_to_string(IPaddr_t x, char *s)
1970 sprintf(s, "%d.%d.%d.%d",
1971 (int) ((x >> 24) & 0xff),
1972 (int) ((x >> 16) & 0xff),
1973 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
1977 void VLAN_to_string(ushort x, char *s)
1981 if (x == (ushort)-1)
1987 sprintf(s, "%d", x & VLAN_IDMASK);
1990 ushort string_to_VLAN(const char *s)
1995 return htons(VLAN_NONE);
1997 if (*s < '0' || *s > '9')
2000 id = (ushort)simple_strtoul(s, NULL, 10);
2005 ushort getenv_VLAN(char *var)
2007 return string_to_VLAN(getenv(var));