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 NetCopyIP(&NetOurIP, &bd->bi_ip_addr);
325 NetOurGatewayIP = getenv_IPaddr("gatewayip");
326 NetOurSubnetMask = getenv_IPaddr("netmask");
327 NetServerIP = getenv_IPaddr("serverip");
328 NetOurNativeVLAN = getenv_VLAN("nvlan");
329 NetOurVLAN = getenv_VLAN("vlan");
330 #if defined(CONFIG_CMD_DNS)
331 NetOurDNSIP = getenv_IPaddr("dnsip");
333 env_changed_id = env_id;
339 /**********************************************************************/
341 * Main network processing loop.
345 NetLoop(proto_t protocol)
349 #ifdef CONFIG_NET_MULTI
354 /* XXX problem with bss workaround */
355 NetArpWaitPacketMAC = NULL;
356 NetArpWaitTxPacket = NULL;
357 NetArpWaitPacketIP = 0;
358 NetArpWaitReplyIP = 0;
359 NetArpWaitTxPacket = NULL;
366 * Setup packet buffers, aligned correctly.
368 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
369 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
370 for (i = 0; i < PKTBUFSRX; i++)
371 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
374 if (!NetArpWaitTxPacket) {
375 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
376 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
377 NetArpWaitTxPacketSize = 0;
381 #ifdef CONFIG_NET_MULTI
384 if (eth_init(bd) < 0) {
390 #ifdef CONFIG_NET_MULTI
391 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
393 eth_getenv_enetaddr("ethaddr", NetOurEther);
396 NetState = NETLOOP_CONTINUE;
399 * Start the ball rolling with the given start function. From
400 * here on, this code is a state machine driven by received
401 * packets and timer events.
403 NetInitLoop(protocol);
405 switch (net_check_prereq(protocol)) {
407 /* network not configured */
411 #ifdef CONFIG_NET_MULTI
413 /* network device not configured */
415 #endif /* CONFIG_NET_MULTI */
418 #ifdef CONFIG_NET_MULTI
423 /* always use ARP to get server ethernet address */
426 #ifdef CONFIG_CMD_TFTPSRV
431 #if defined(CONFIG_CMD_DHCP)
435 DhcpRequest(); /* Basically same as BOOTP */
445 #if defined(CONFIG_CMD_RARP)
452 #if defined(CONFIG_CMD_PING)
457 #if defined(CONFIG_CMD_NFS)
462 #if defined(CONFIG_CMD_CDP)
467 #ifdef CONFIG_NETCONSOLE
472 #if defined(CONFIG_CMD_SNTP)
477 #if defined(CONFIG_CMD_DNS)
486 NetBootFileXferSize = 0;
490 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
491 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
492 defined(CONFIG_STATUS_LED) && \
493 defined(STATUS_LED_RED)
495 * Echo the inverted link state to the fault LED.
497 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
498 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
500 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
501 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
502 #endif /* CONFIG_MII, ... */
505 * Main packet reception loop. Loop receiving packets until
506 * someone sets `NetState' to a state that terminates.
510 #ifdef CONFIG_SHOW_ACTIVITY
512 extern void show_activity(int arg);
517 * Check the ethernet for a new packet. The ethernet
518 * receive routine will process it.
523 * Abort if ctrl-c was pressed.
534 * Check for a timeout, and run the timeout handler
537 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
540 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
541 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
542 defined(CONFIG_STATUS_LED) && \
543 defined(STATUS_LED_RED)
545 * Echo the inverted link state to the fault LED.
547 if (miiphy_link(eth_get_dev()->name,
548 CONFIG_SYS_FAULT_MII_ADDR)) {
549 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
551 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
553 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
554 #endif /* CONFIG_MII, ... */
556 timeHandler = (thand_f *)0;
563 case NETLOOP_RESTART:
564 #ifdef CONFIG_NET_MULTI
569 case NETLOOP_SUCCESS:
570 if (NetBootFileXferSize > 0) {
572 printf("Bytes transferred = %ld (%lx hex)\n",
574 NetBootFileXferSize);
575 sprintf(buf, "%lX", NetBootFileXferSize);
576 setenv("filesize", buf);
578 sprintf(buf, "%lX", (unsigned long)load_addr);
579 setenv("fileaddr", buf);
582 return NetBootFileXferSize;
590 /**********************************************************************/
593 startAgainTimeout(void)
595 NetState = NETLOOP_RESTART;
599 startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
600 unsigned src, unsigned len)
602 /* Totally ignore the packet */
605 void NetStartAgain(void)
608 int retry_forever = 0;
609 unsigned long retrycnt = 0;
611 nretry = getenv("netretry");
613 if (!strcmp(nretry, "yes"))
615 else if (!strcmp(nretry, "no"))
617 else if (!strcmp(nretry, "once"))
620 retrycnt = simple_strtoul(nretry, NULL, 0);
624 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
626 NetState = NETLOOP_FAIL;
632 #ifndef CONFIG_NET_MULTI
633 NetSetTimeout(10000UL, startAgainTimeout);
634 NetSetHandler(startAgainHandler);
635 #else /* !CONFIG_NET_MULTI*/
637 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
638 eth_try_another(!NetRestarted);
641 if (NetRestartWrap) {
644 NetSetTimeout(10000UL, startAgainTimeout);
645 NetSetHandler(startAgainHandler);
647 NetState = NETLOOP_FAIL;
650 NetState = NETLOOP_RESTART;
652 #endif /* CONFIG_NET_MULTI */
655 /**********************************************************************/
661 NetSetHandler(rxhand_f *f)
668 NetSetTimeout(ulong iv, thand_f *f)
671 timeHandler = (thand_f *)0;
674 timeStart = get_timer(0);
681 NetSendPacket(volatile uchar *pkt, int len)
683 (void) eth_send(pkt, len);
687 NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
691 /* convert to new style broadcast */
695 /* if broadcast, make the ether address a broadcast and don't do ARP */
696 if (dest == 0xFFFFFFFF)
697 ether = NetBcastAddr;
700 * if MAC address was not discovered yet, save the packet and do
703 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
705 debug("sending ARP for %08lx\n", dest);
707 NetArpWaitPacketIP = dest;
708 NetArpWaitPacketMAC = ether;
710 pkt = NetArpWaitTxPacket;
711 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
713 NetSetIP(pkt, dest, dport, sport, len);
714 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
715 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
717 /* size of the waiting packet */
718 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
721 /* and do the ARP request */
723 NetArpWaitTimerStart = get_timer(0);
725 return 1; /* waiting */
728 debug("sending UDP to %08lx/%pM\n", dest, ether);
730 pkt = (uchar *)NetTxPacket;
731 pkt += NetSetEther(pkt, ether, PROT_IP);
732 NetSetIP(pkt, dest, dport, sport, len);
733 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
735 return 0; /* transmitted */
738 #if defined(CONFIG_CMD_PING)
739 static ushort PingSeqNo;
748 /* XXX always send arp request */
750 memcpy(mac, NetEtherNullAddr, 6);
752 debug("sending ARP for %08lx\n", NetPingIP);
754 NetArpWaitPacketIP = NetPingIP;
755 NetArpWaitPacketMAC = mac;
757 pkt = NetArpWaitTxPacket;
758 pkt += NetSetEther(pkt, mac, PROT_IP);
760 ip = (volatile IP_t *)pkt;
763 * Construct an IP and ICMP header.
764 * (need to set no fragment bit - XXX)
766 /* IP_HDR_SIZE / 4 (not including UDP) */
769 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
770 ip->ip_id = htons(NetIPID++);
771 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
773 ip->ip_p = 0x01; /* ICMP */
775 /* already in network byte order */
776 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
778 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
779 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
781 s = &ip->udp_src; /* XXX ICMP starts here */
782 s[0] = htons(0x0800); /* echo-request, code */
783 s[1] = 0; /* checksum */
784 s[2] = 0; /* identifier */
785 s[3] = htons(PingSeqNo++); /* sequence number */
786 s[1] = ~NetCksum((uchar *)s, 8/2);
788 /* size of the waiting packet */
789 NetArpWaitTxPacketSize =
790 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
792 /* and do the ARP request */
794 NetArpWaitTimerStart = get_timer(0);
796 return 1; /* waiting */
803 NetState = NETLOOP_FAIL; /* we did not get the reply */
807 PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
810 if (sip != NetPingIP)
813 NetState = NETLOOP_SUCCESS;
816 static void PingStart(void)
818 #if defined(CONFIG_NET_MULTI)
819 printf("Using %s device\n", eth_get_name());
820 #endif /* CONFIG_NET_MULTI */
821 NetSetTimeout(10000UL, PingTimeout);
822 NetSetHandler(PingHandler);
828 #if defined(CONFIG_CMD_CDP)
830 #define CDP_DEVICE_ID_TLV 0x0001
831 #define CDP_ADDRESS_TLV 0x0002
832 #define CDP_PORT_ID_TLV 0x0003
833 #define CDP_CAPABILITIES_TLV 0x0004
834 #define CDP_VERSION_TLV 0x0005
835 #define CDP_PLATFORM_TLV 0x0006
836 #define CDP_NATIVE_VLAN_TLV 0x000a
837 #define CDP_APPLIANCE_VLAN_TLV 0x000e
838 #define CDP_TRIGGER_TLV 0x000f
839 #define CDP_POWER_CONSUMPTION_TLV 0x0010
840 #define CDP_SYSNAME_TLV 0x0014
841 #define CDP_SYSOBJECT_TLV 0x0015
842 #define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
844 #define CDP_TIMEOUT 250UL /* one packet every 250ms */
849 ushort CDPNativeVLAN;
850 ushort CDPApplianceVLAN;
852 static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
855 static ushort CDP_compute_csum(const uchar *buff, ushort len)
864 odd = 1 & (ulong)buff;
874 if (result & 0x80000000)
875 result = (result & 0xFFFF) + (result >> 16);
879 leftover = (signed short)(*(const signed char *)buff);
880 /* CISCO SUCKS big time! (and blows too):
881 * CDP uses the IP checksum algorithm with a twist;
882 * for the last byte it *sign* extends and sums.
884 result = (result & 0xffff0000) |
885 ((result + leftover) & 0x0000ffff);
888 result = (result & 0xFFFF) + (result >> 16);
891 result = ((result >> 8) & 0xff) |
892 ((result & 0xff) << 8);
895 /* add up 16-bit and 17-bit words for 17+c bits */
896 result = (result & 0xffff) + (result >> 16);
897 /* add up 16-bit and 2-bit for 16+c bit */
898 result = (result & 0xffff) + (result >> 16);
900 result = (result & 0xffff) + (result >> 16);
903 csum = ~(ushort)result;
905 /* run time endian detection */
906 if (csum != htons(csum)) /* little endian */
912 int CDPSendTrigger(void)
920 #if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
921 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
926 et = (Ethernet_t *)pkt;
928 /* NOTE: trigger sent not on any VLAN */
930 /* form ethernet header */
931 memcpy(et->et_dest, NetCDPAddr, 6);
932 memcpy(et->et_src, NetOurEther, 6);
934 pkt += ETHER_HDR_SIZE;
937 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
938 pkt += sizeof(CDP_SNAP_hdr);
941 *pkt++ = 0x02; /* CDP version 2 */
942 *pkt++ = 180; /* TTL */
943 s = (volatile ushort *)pkt;
945 /* checksum (0 for later calculation) */
949 #ifdef CONFIG_CDP_DEVICE_ID
950 *s++ = htons(CDP_DEVICE_ID_TLV);
951 *s++ = htons(CONFIG_CDP_DEVICE_ID);
952 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
953 memcpy((uchar *)s, buf, 16);
957 #ifdef CONFIG_CDP_PORT_ID
958 *s++ = htons(CDP_PORT_ID_TLV);
959 memset(buf, 0, sizeof(buf));
960 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
962 if (len & 1) /* make it even */
964 *s++ = htons(len + 4);
965 memcpy((uchar *)s, buf, len);
969 #ifdef CONFIG_CDP_CAPABILITIES
970 *s++ = htons(CDP_CAPABILITIES_TLV);
972 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
976 #ifdef CONFIG_CDP_VERSION
977 *s++ = htons(CDP_VERSION_TLV);
978 memset(buf, 0, sizeof(buf));
979 strcpy(buf, CONFIG_CDP_VERSION);
981 if (len & 1) /* make it even */
983 *s++ = htons(len + 4);
984 memcpy((uchar *)s, buf, len);
988 #ifdef CONFIG_CDP_PLATFORM
989 *s++ = htons(CDP_PLATFORM_TLV);
990 memset(buf, 0, sizeof(buf));
991 strcpy(buf, CONFIG_CDP_PLATFORM);
993 if (len & 1) /* make it even */
995 *s++ = htons(len + 4);
996 memcpy((uchar *)s, buf, len);
1000 #ifdef CONFIG_CDP_TRIGGER
1001 *s++ = htons(CDP_TRIGGER_TLV);
1003 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1007 #ifdef CONFIG_CDP_POWER_CONSUMPTION
1008 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1010 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1013 /* length of ethernet packet */
1014 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1015 et->et_protlen = htons(len);
1017 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
1018 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1019 (uchar *)s - (NetTxPacket + len));
1022 *cp = htons(chksum);
1024 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1034 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1039 /* if not OK try again */
1043 NetState = NETLOOP_SUCCESS;
1047 CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1054 CDPHandler(const uchar *pkt, unsigned len)
1063 if (len < sizeof(CDP_SNAP_hdr) + 4)
1066 /* check for valid CDP SNAP header */
1067 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1070 pkt += sizeof(CDP_SNAP_hdr);
1071 len -= sizeof(CDP_SNAP_hdr);
1073 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1074 if (pkt[0] < 0x02 || pkt[1] == 0)
1078 * if version is greater than 0x02 maybe we'll have a problem;
1082 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1085 if (CDP_compute_csum(pkt, len) != 0)
1097 ss = (const ushort *)pkt;
1098 type = ntohs(ss[0]);
1099 tlen = ntohs(ss[1]);
1106 ss += 2; /* point ss to the data of the TLV */
1110 case CDP_DEVICE_ID_TLV:
1112 case CDP_ADDRESS_TLV:
1114 case CDP_PORT_ID_TLV:
1116 case CDP_CAPABILITIES_TLV:
1118 case CDP_VERSION_TLV:
1120 case CDP_PLATFORM_TLV:
1122 case CDP_NATIVE_VLAN_TLV:
1125 case CDP_APPLIANCE_VLAN_TLV:
1126 t = (const uchar *)ss;
1132 ss = (const ushort *)(t + 1);
1134 #ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
1135 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1138 /* XXX will this work; dunno */
1144 case CDP_TRIGGER_TLV:
1146 case CDP_POWER_CONSUMPTION_TLV:
1148 case CDP_SYSNAME_TLV:
1150 case CDP_SYSOBJECT_TLV:
1152 case CDP_MANAGEMENT_ADDRESS_TLV:
1157 CDPApplianceVLAN = vlan;
1158 CDPNativeVLAN = nvlan;
1164 printf("** CDP packet is too short\n");
1168 static void CDPStart(void)
1170 #if defined(CONFIG_NET_MULTI)
1171 printf("Using %s device\n", eth_get_name());
1176 CDPNativeVLAN = htons(-1);
1177 CDPApplianceVLAN = htons(-1);
1179 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1180 NetSetHandler(CDPDummyHandler);
1186 #ifdef CONFIG_IP_DEFRAG
1188 * This function collects fragments in a single packet, according
1189 * to the algorithm in RFC815. It returns NULL or the pointer to
1190 * a complete packet, in static storage
1192 #ifndef CONFIG_NET_MAXDEFRAG
1193 #define CONFIG_NET_MAXDEFRAG 16384
1196 * MAXDEFRAG, above, is chosen in the config file and is real data
1197 * so we need to add the NFS overhead, which is more than TFTP.
1198 * To use sizeof in the internal unnamed structures, we need a real
1199 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1200 * The compiler doesn't complain nor allocates the actual structure
1202 static struct rpc_t rpc_specimen;
1203 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1205 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1208 * this is the packet being assembled, either data or frag control.
1209 * Fragments go by 8 bytes, so this union must be 8 bytes long
1212 /* first_byte is address of this structure */
1213 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1214 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1215 u16 prev_hole; /* index of prev, 0 == none */
1219 static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1221 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1222 static u16 first_hole, total_len;
1223 struct hole *payload, *thisfrag, *h, *newh;
1224 IP_t *localip = (IP_t *)pkt_buff;
1225 uchar *indata = (uchar *)ip;
1226 int offset8, start, len, done = 0;
1227 u16 ip_off = ntohs(ip->ip_off);
1229 /* payload starts after IP header, this fragment is in there */
1230 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1231 offset8 = (ip_off & IP_OFFS);
1232 thisfrag = payload + offset8;
1233 start = offset8 * 8;
1234 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1236 if (start + len > IP_MAXUDP) /* fragment extends too far */
1239 if (!total_len || localip->ip_id != ip->ip_id) {
1240 /* new (or different) packet, reset structs */
1242 payload[0].last_byte = ~0;
1243 payload[0].next_hole = 0;
1244 payload[0].prev_hole = 0;
1246 /* any IP header will work, copy the first we received */
1247 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1251 * What follows is the reassembly algorithm. We use the payload
1252 * array as a linked list of hole descriptors, as each hole starts
1253 * at a multiple of 8 bytes. However, last byte can be whatever value,
1254 * so it is represented as byte count, not as 8-byte blocks.
1257 h = payload + first_hole;
1258 while (h->last_byte < start) {
1259 if (!h->next_hole) {
1260 /* no hole that far away */
1263 h = payload + h->next_hole;
1266 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1267 if (offset8 + ((len + 7) / 8) <= h - payload) {
1268 /* no overlap with holes (dup fragment?) */
1272 if (!(ip_off & IP_FLAGS_MFRAG)) {
1273 /* no more fragmentss: truncate this (last) hole */
1274 total_len = start + len;
1275 h->last_byte = start + len;
1279 * There is some overlap: fix the hole list. This code doesn't
1280 * deal with a fragment that overlaps with two different holes
1281 * (thus being a superset of a previously-received fragment).
1284 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
1285 /* complete overlap with hole: remove hole */
1286 if (!h->prev_hole && !h->next_hole) {
1287 /* last remaining hole */
1289 } else if (!h->prev_hole) {
1291 first_hole = h->next_hole;
1292 payload[h->next_hole].prev_hole = 0;
1293 } else if (!h->next_hole) {
1295 payload[h->prev_hole].next_hole = 0;
1297 /* in the middle of the list */
1298 payload[h->next_hole].prev_hole = h->prev_hole;
1299 payload[h->prev_hole].next_hole = h->next_hole;
1302 } else if (h->last_byte <= start + len) {
1303 /* overlaps with final part of the hole: shorten this hole */
1304 h->last_byte = start;
1306 } else if (h >= thisfrag) {
1307 /* overlaps with initial part of the hole: move this hole */
1308 newh = thisfrag + (len / 8);
1312 payload[h->next_hole].prev_hole = (h - payload);
1314 payload[h->prev_hole].next_hole = (h - payload);
1316 first_hole = (h - payload);
1319 /* fragment sits in the middle: split the hole */
1320 newh = thisfrag + (len / 8);
1322 h->last_byte = start;
1323 h->next_hole = (newh - payload);
1324 newh->prev_hole = (h - payload);
1325 if (newh->next_hole)
1326 payload[newh->next_hole].prev_hole = (newh - payload);
1329 /* finally copy this fragment and possibly return whole packet */
1330 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1334 localip->ip_len = htons(total_len);
1335 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1339 static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1341 u16 ip_off = ntohs(ip->ip_off);
1342 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1343 return ip; /* not a fragment */
1344 return __NetDefragment(ip, lenp);
1347 #else /* !CONFIG_IP_DEFRAG */
1349 static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1351 u16 ip_off = ntohs(ip->ip_off);
1352 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1353 return ip; /* not a fragment */
1359 NetReceive(volatile uchar *inpkt, int len)
1368 #if defined(CONFIG_CMD_CDP)
1371 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1373 debug("packet received\n");
1375 NetRxPacket = inpkt;
1376 NetRxPacketLen = len;
1377 et = (Ethernet_t *)inpkt;
1379 /* too small packet? */
1380 if (len < ETHER_HDR_SIZE)
1385 (*push_packet)(inpkt, len);
1390 #if defined(CONFIG_CMD_CDP)
1391 /* keep track if packet is CDP */
1392 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1395 myvlanid = ntohs(NetOurVLAN);
1396 if (myvlanid == (ushort)-1)
1397 myvlanid = VLAN_NONE;
1398 mynvlanid = ntohs(NetOurNativeVLAN);
1399 if (mynvlanid == (ushort)-1)
1400 mynvlanid = VLAN_NONE;
1402 x = ntohs(et->et_protlen);
1404 debug("packet received\n");
1408 * Got a 802 packet. Check the other protocol field.
1410 x = ntohs(et->et_prot);
1412 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
1413 len -= E802_HDR_SIZE;
1415 } else if (x != PROT_VLAN) { /* normal packet */
1416 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
1417 len -= ETHER_HDR_SIZE;
1419 } else { /* VLAN packet */
1420 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1422 debug("VLAN packet received\n");
1424 /* too small packet? */
1425 if (len < VLAN_ETHER_HDR_SIZE)
1428 /* if no VLAN active */
1429 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
1430 #if defined(CONFIG_CMD_CDP)
1436 cti = ntohs(vet->vet_tag);
1437 vlanid = cti & VLAN_IDMASK;
1438 x = ntohs(vet->vet_type);
1440 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1441 len -= VLAN_ETHER_HDR_SIZE;
1444 debug("Receive from protocol 0x%x\n", x);
1446 #if defined(CONFIG_CMD_CDP)
1448 CDPHandler((uchar *)ip, len);
1453 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1454 if (vlanid == VLAN_NONE)
1455 vlanid = (mynvlanid & VLAN_IDMASK);
1457 if (vlanid != (myvlanid & VLAN_IDMASK))
1465 * We have to deal with two types of ARP packets:
1466 * - REQUEST packets will be answered by sending our
1467 * IP address - if we know it.
1468 * - REPLY packates are expected only after we asked
1469 * for the TFTP server's or the gateway's ethernet
1470 * address; so if we receive such a packet, we set
1471 * the server ethernet address
1476 if (len < ARP_HDR_SIZE) {
1477 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1480 if (ntohs(arp->ar_hrd) != ARP_ETHER)
1482 if (ntohs(arp->ar_pro) != PROT_IP)
1484 if (arp->ar_hln != 6)
1486 if (arp->ar_pln != 4)
1492 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
1495 switch (ntohs(arp->ar_op)) {
1497 /* reply with our IP address */
1498 debug("Got ARP REQUEST, return our IP\n");
1500 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
1501 arp->ar_op = htons(ARPOP_REPLY);
1502 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
1503 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
1504 memcpy(&arp->ar_data[0], NetOurEther, 6);
1505 NetCopyIP(&arp->ar_data[6], &NetOurIP);
1506 (void) eth_send((uchar *)et,
1507 (pkt - (uchar *)et) + ARP_HDR_SIZE);
1510 case ARPOP_REPLY: /* arp reply */
1511 /* are we waiting for a reply */
1512 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1515 #ifdef CONFIG_KEEP_SERVERADDR
1516 if (NetServerIP == NetArpWaitPacketIP) {
1518 sprintf(buf, "%pM", arp->ar_data);
1519 setenv("serveraddr", buf);
1523 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
1526 tmp = NetReadIP(&arp->ar_data[6]);
1528 /* matched waiting packet's address */
1529 if (tmp == NetArpWaitReplyIP) {
1531 /* save address for later use */
1532 memcpy(NetArpWaitPacketMAC,
1533 &arp->ar_data[0], 6);
1535 #ifdef CONFIG_NETCONSOLE
1536 (*packetHandler)(0, 0, 0, 0, 0);
1538 /* modify header, and transmit it */
1539 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
1540 (void) eth_send(NetArpWaitTxPacket,
1541 NetArpWaitTxPacketSize);
1543 /* no arp request pending now */
1544 NetArpWaitPacketIP = 0;
1545 NetArpWaitTxPacketSize = 0;
1546 NetArpWaitPacketMAC = NULL;
1551 debug("Unexpected ARP opcode 0x%x\n",
1557 #ifdef CONFIG_CMD_RARP
1559 debug("Got RARP\n");
1561 if (len < ARP_HDR_SIZE) {
1562 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1566 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1567 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1568 (ntohs(arp->ar_pro) != PROT_IP) ||
1569 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1571 puts("invalid RARP header\n");
1573 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
1574 if (NetServerIP == 0)
1575 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1576 memcpy(NetServerEther, &arp->ar_data[0], 6);
1578 (*packetHandler)(0, 0, 0, 0, 0);
1584 /* Before we start poking the header, make sure it is there */
1585 if (len < IP_HDR_SIZE) {
1586 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
1589 /* Check the packet length */
1590 if (len < ntohs(ip->ip_len)) {
1591 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1594 len = ntohs(ip->ip_len);
1595 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1597 /* Can't deal with anything except IPv4 */
1598 if ((ip->ip_hl_v & 0xf0) != 0x40)
1600 /* Can't deal with IP options (headers != 20 bytes) */
1601 if ((ip->ip_hl_v & 0x0f) > 0x05)
1603 /* Check the Checksum of the header */
1604 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
1605 puts("checksum bad\n");
1608 /* If it is not for us, ignore it */
1609 tmp = NetReadIP(&ip->ip_dst);
1610 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
1611 #ifdef CONFIG_MCAST_TFTP
1612 if (Mcast_addr != tmp)
1616 /* Read source IP address for later use */
1617 src_ip = NetReadIP(&ip->ip_src);
1619 * The function returns the unchanged packet if it's not
1620 * a fragment, and either the complete packet or NULL if
1621 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1623 ip = NetDefragment(ip, &len);
1627 * watch for ICMP host redirects
1629 * There is no real handler code (yet). We just watch
1630 * for ICMP host redirect messages. In case anybody
1631 * sees these messages: please contact me
1632 * (wd@denx.de), or - even better - send me the
1633 * necessary fixes :-)
1635 * Note: in all cases where I have seen this so far
1636 * it was a problem with the router configuration,
1637 * for instance when a router was configured in the
1638 * BOOTP reply, but the TFTP server was on the same
1639 * subnet. So this is probably a warning that your
1640 * configuration might be wrong. But I'm not really
1641 * sure if there aren't any other situations.
1643 if (ip->ip_p == IPPROTO_ICMP) {
1644 ICMP_t *icmph = (ICMP_t *)&(ip->udp_src);
1646 switch (icmph->type) {
1648 if (icmph->code != ICMP_REDIR_HOST)
1650 printf(" ICMP Host Redirect to %pI4 ",
1651 &icmph->un.gateway);
1653 #if defined(CONFIG_CMD_PING)
1654 case ICMP_ECHO_REPLY:
1656 * IP header OK. Pass the packet to the
1659 /* XXX point to ip packet */
1660 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1662 case ICMP_ECHO_REQUEST:
1663 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1664 ETHER_HDR_SIZE + len);
1666 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1667 memcpy(&et->et_src[0], NetOurEther, 6);
1671 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1672 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1673 ip->ip_sum = ~NetCksum((uchar *)ip,
1674 IP_HDR_SIZE_NO_UDP >> 1);
1676 icmph->type = ICMP_ECHO_REPLY;
1677 icmph->checksum = 0;
1678 icmph->checksum = ~NetCksum((uchar *)icmph,
1679 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1680 (void) eth_send((uchar *)et,
1681 ETHER_HDR_SIZE + len);
1687 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1691 #ifdef CONFIG_UDP_CHECKSUM
1692 if (ip->udp_xsum != 0) {
1698 xsum += (ntohs(ip->udp_len));
1699 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1700 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1701 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1702 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1704 sumlen = ntohs(ip->udp_len);
1705 sumptr = (ushort *) &(ip->udp_src);
1707 while (sumlen > 1) {
1710 sumdata = *sumptr++;
1711 xsum += ntohs(sumdata);
1717 sumdata = *(unsigned char *) sumptr;
1718 sumdata = (sumdata << 8) & 0xff00;
1721 while ((xsum >> 16) != 0) {
1722 xsum = (xsum & 0x0000ffff) +
1723 ((xsum >> 16) & 0x0000ffff);
1725 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1726 printf(" UDP wrong checksum %08lx %08x\n",
1727 xsum, ntohs(ip->udp_xsum));
1734 #ifdef CONFIG_NETCONSOLE
1735 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
1738 ntohs(ip->udp_len) - 8);
1741 * IP header OK. Pass the packet to the current handler.
1743 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
1747 ntohs(ip->udp_len) - 8);
1753 /**********************************************************************/
1755 static int net_check_prereq(proto_t protocol)
1759 #if defined(CONFIG_CMD_PING)
1761 if (NetPingIP == 0) {
1762 puts("*** ERROR: ping address not given\n");
1767 #if defined(CONFIG_CMD_SNTP)
1769 if (NetNtpServerIP == 0) {
1770 puts("*** ERROR: NTP server address not given\n");
1775 #if defined(CONFIG_CMD_DNS)
1777 if (NetOurDNSIP == 0) {
1778 puts("*** ERROR: DNS server address not given\n");
1783 #if defined(CONFIG_CMD_NFS)
1787 if (NetServerIP == 0) {
1788 puts("*** ERROR: `serverip' not set\n");
1791 #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1792 defined(CONFIG_CMD_DNS)
1799 if (NetOurIP == 0) {
1800 puts("*** ERROR: `ipaddr' not set\n");
1805 #ifdef CONFIG_CMD_RARP
1811 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
1812 #ifdef CONFIG_NET_MULTI
1813 extern int eth_get_dev_index(void);
1814 int num = eth_get_dev_index();
1818 puts("*** ERROR: No ethernet found.\n");
1821 puts("*** ERROR: `ethaddr' not set\n");
1824 printf("*** ERROR: `eth%daddr' not set\n",
1832 puts("*** ERROR: `ethaddr' not set\n");
1842 /**********************************************************************/
1845 NetCksumOk(uchar *ptr, int len)
1847 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1852 NetCksum(uchar *ptr, int len)
1855 ushort *p = (ushort *)ptr;
1860 xsum = (xsum & 0xffff) + (xsum >> 16);
1861 xsum = (xsum & 0xffff) + (xsum >> 16);
1862 return xsum & 0xffff;
1870 myvlanid = ntohs(NetOurVLAN);
1871 if (myvlanid == (ushort)-1)
1872 myvlanid = VLAN_NONE;
1874 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1875 VLAN_ETHER_HDR_SIZE;
1879 NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
1881 Ethernet_t *et = (Ethernet_t *)xet;
1884 myvlanid = ntohs(NetOurVLAN);
1885 if (myvlanid == (ushort)-1)
1886 myvlanid = VLAN_NONE;
1888 memcpy(et->et_dest, addr, 6);
1889 memcpy(et->et_src, NetOurEther, 6);
1890 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1891 et->et_protlen = htons(prot);
1892 return ETHER_HDR_SIZE;
1894 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
1896 vet->vet_vlan_type = htons(PROT_VLAN);
1897 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1898 vet->vet_type = htons(prot);
1899 return VLAN_ETHER_HDR_SIZE;
1904 NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
1906 IP_t *ip = (IP_t *)xip;
1909 * If the data is an odd number of bytes, zero the
1910 * byte after the last byte so that the checksum
1914 xip[IP_HDR_SIZE + len] = 0;
1917 * Construct an IP and UDP header.
1918 * (need to set no fragment bit - XXX)
1920 /* IP_HDR_SIZE / 4 (not including UDP) */
1923 ip->ip_len = htons(IP_HDR_SIZE + len);
1924 ip->ip_id = htons(NetIPID++);
1925 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1927 ip->ip_p = 17; /* UDP */
1929 /* already in network byte order */
1930 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1932 NetCopyIP((void *)&ip->ip_dst, &dest);
1933 ip->udp_src = htons(sport);
1934 ip->udp_dst = htons(dport);
1935 ip->udp_len = htons(8 + len);
1937 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1940 void copy_filename(char *dst, const char *src, int size)
1942 if (*src && (*src == '"')) {
1947 while ((--size > 0) && *src && (*src != '"'))
1952 #if defined(CONFIG_CMD_NFS) || \
1953 defined(CONFIG_CMD_SNTP) || \
1954 defined(CONFIG_CMD_DNS)
1956 * make port a little random (1024-17407)
1957 * This keeps the math somewhat trivial to compute, and seems to work with
1958 * all supported protocols/clients/servers
1960 unsigned int random_port(void)
1962 return 1024 + (get_timer(0) % 0x4000);
1966 void ip_to_string(IPaddr_t x, char *s)
1969 sprintf(s, "%d.%d.%d.%d",
1970 (int) ((x >> 24) & 0xff),
1971 (int) ((x >> 16) & 0xff),
1972 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
1976 void VLAN_to_string(ushort x, char *s)
1980 if (x == (ushort)-1)
1986 sprintf(s, "%d", x & VLAN_IDMASK);
1989 ushort string_to_VLAN(const char *s)
1994 return htons(VLAN_NONE);
1996 if (*s < '0' || *s > '9')
1999 id = (ushort)simple_strtoul(s, NULL, 10);
2004 ushort getenv_VLAN(char *var)
2006 return string_to_VLAN(getenv(var));