2 * Copied from Linux Monitor (LiMon) - Networking.
4 * Copyright 1994 - 2000 Neil Russell.
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
9 * SPDX-License-Identifier: GPL-2.0
15 * The user interface supports commands for BOOTP, RARP, and TFTP.
16 * Also, we support ARP internally. Depending on available data,
17 * these interact as follows:
21 * Prerequisites: - own ethernet address
22 * We want: - own IP address
23 * - TFTP server IP address
29 * Prerequisites: - own ethernet address
30 * We want: - own IP address
35 * Prerequisites: - own ethernet address
36 * We want: - own IP address
37 * - TFTP server IP address
42 * Prerequisites: - own ethernet address
44 * - TFTP server IP address
45 * We want: - TFTP server ethernet address
50 * Prerequisites: - own ethernet address
51 * We want: - IP, Netmask, ServerIP, Gateway IP
52 * - bootfilename, lease time
57 * Prerequisites: - own ethernet address
59 * - TFTP server IP address
60 * - TFTP server ethernet address
61 * - name of bootfile (if unknown, we use a default name
62 * derived from our own IP address)
63 * We want: - load the boot file
68 * Prerequisites: - own ethernet address
70 * - name of bootfile (if unknown, we use a default name
71 * derived from our own IP address)
72 * We want: - load the boot file
77 * Prerequisites: - own ethernet address
79 * We want: - network time
86 #include <environment.h>
89 #if defined(CONFIG_STATUS_LED)
91 #include <status_led.h>
94 #include <linux/compiler.h>
98 #if defined(CONFIG_CMD_DNS)
101 #include "link_local.h"
105 #if defined(CONFIG_CMD_SNTP)
110 DECLARE_GLOBAL_DATA_PTR;
112 /** BOOTP EXTENTIONS **/
114 /* Our subnet mask (0=unknown) */
115 struct in_addr net_netmask;
116 /* Our gateways IP address */
117 struct in_addr net_gateway;
118 /* Our DNS IP address */
119 struct in_addr net_dns_server;
120 #if defined(CONFIG_BOOTP_DNS2)
121 /* Our 2nd DNS IP address */
122 struct in_addr net_dns_server2;
125 #ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
126 struct in_addr net_mcast_addr;
129 /** END OF BOOTP EXTENTIONS **/
131 /* Our ethernet address */
133 /* Boot server enet address */
134 u8 net_server_ethaddr[6];
135 /* Our IP addr (0 = unknown) */
136 struct in_addr net_ip;
137 /* Server IP addr (0 = unknown) */
138 struct in_addr net_server_ip;
139 /* Current receive packet */
140 uchar *net_rx_packet;
141 /* Current rx packet length */
142 int net_rx_packet_len;
145 /* Ethernet bcast address */
146 const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
147 const u8 net_null_ethaddr[6];
149 void (*push_packet)(void *, int len) = 0;
151 /* Network loop state */
152 enum net_loop_state net_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;
167 char net_boot_file_name[128];
168 /* The actual transferred size of the bootfile (in bytes) */
169 u32 net_boot_file_size;
170 /* Boot file size in blocks as reported by the DHCP server */
171 u32 net_boot_file_expected_size_in_blocks;
173 #if defined(CONFIG_CMD_SNTP)
174 /* NTP server IP address */
175 struct in_addr net_ntp_server;
176 /* offset time from UTC */
180 static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
181 /* Receive packets */
182 uchar *net_rx_packets[PKTBUFSRX];
183 /* Current UDP RX packet handler */
184 static rxhand_f *udp_packet_handler;
185 /* Current ARP RX packet handler */
186 static rxhand_f *arp_packet_handler;
187 #ifdef CONFIG_CMD_TFTPPUT
188 /* Current ICMP rx handler */
189 static rxhand_icmp_f *packet_icmp_handler;
191 /* Current timeout handler */
192 static thand_f *timeHandler;
193 /* Time base value */
194 static ulong timeStart;
195 /* Current timeout value */
196 static ulong timeDelta;
197 /* THE transmit packet */
198 uchar *net_tx_packet;
200 static int net_check_prereq(enum proto_t protocol);
202 static int NetTryCount;
204 int __maybe_unused net_busy_flag;
206 /**********************************************************************/
208 static int on_bootfile(const char *name, const char *value, enum env_op op,
213 case env_op_overwrite:
214 copy_filename(net_boot_file_name, value,
215 sizeof(net_boot_file_name));
223 U_BOOT_ENV_CALLBACK(bootfile, on_bootfile);
226 * Check if autoload is enabled. If so, use either NFS or TFTP to download
229 void net_auto_load(void)
231 #if defined(CONFIG_CMD_NFS)
232 const char *s = getenv("autoload");
234 if (s != NULL && strcmp(s, "NFS") == 0) {
236 * Use NFS to load the bootfile.
242 if (getenv_yesno("autoload") == 0) {
244 * Just use BOOTP/RARP to configure system;
245 * Do not use TFTP to load the bootfile.
247 net_set_state(NETLOOP_SUCCESS);
253 static void NetInitLoop(void)
255 static int env_changed_id;
256 int env_id = get_env_id();
258 /* update only when the environment has changed */
259 if (env_changed_id != env_id) {
260 net_ip = getenv_ip("ipaddr");
261 net_gateway = getenv_ip("gatewayip");
262 net_netmask = getenv_ip("netmask");
263 net_server_ip = getenv_ip("serverip");
264 NetOurNativeVLAN = getenv_VLAN("nvlan");
265 NetOurVLAN = getenv_VLAN("vlan");
266 #if defined(CONFIG_CMD_DNS)
267 net_dns_server = getenv_ip("dnsip");
269 env_changed_id = env_id;
272 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
277 static void net_clear_handlers(void)
279 net_set_udp_handler(NULL);
280 net_set_arp_handler(NULL);
281 NetSetTimeout(0, NULL);
284 static void net_cleanup_loop(void)
286 net_clear_handlers();
291 static int first_call = 1;
295 * Setup packet buffers, aligned correctly.
299 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
300 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
301 for (i = 0; i < PKTBUFSRX; i++) {
302 net_rx_packets[i] = net_tx_packet +
303 (i + 1) * PKTSIZE_ALIGN;
306 net_clear_handlers();
308 /* Only need to setup buffer pointers once. */
315 /**********************************************************************/
317 * Main network processing loop.
320 int NetLoop(enum proto_t protocol)
327 debug_cond(DEBUG_INT_STATE, "--- NetLoop Entry\n");
329 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
331 if (eth_is_on_demand_init() || protocol != NETCONS) {
340 eth_init_state_only();
343 #ifdef CONFIG_USB_KEYBOARD
346 net_set_state(NETLOOP_CONTINUE);
349 * Start the ball rolling with the given start function. From
350 * here on, this code is a state machine driven by received
351 * packets and timer events.
353 debug_cond(DEBUG_INT_STATE, "--- NetLoop Init\n");
356 switch (net_check_prereq(protocol)) {
358 /* network not configured */
363 /* network device not configured */
368 net_boot_file_size = 0;
371 #ifdef CONFIG_CMD_TFTPPUT
374 /* always use ARP to get server ethernet address */
377 #ifdef CONFIG_CMD_TFTPSRV
382 #if defined(CONFIG_CMD_DHCP)
386 DhcpRequest(); /* Basically same as BOOTP */
396 #if defined(CONFIG_CMD_RARP)
403 #if defined(CONFIG_CMD_PING)
408 #if defined(CONFIG_CMD_NFS)
413 #if defined(CONFIG_CMD_CDP)
418 #if defined (CONFIG_NETCONSOLE) && !(CONFIG_SPL_BUILD)
423 #if defined(CONFIG_CMD_SNTP)
428 #if defined(CONFIG_CMD_DNS)
433 #if defined(CONFIG_CMD_LINK_LOCAL)
445 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
446 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
447 defined(CONFIG_STATUS_LED) && \
448 defined(STATUS_LED_RED)
450 * Echo the inverted link state to the fault LED.
452 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
453 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
455 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
456 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
457 #endif /* CONFIG_MII, ... */
458 #ifdef CONFIG_USB_KEYBOARD
463 * Main packet reception loop. Loop receiving packets until
464 * someone sets `net_state' to a state that terminates.
468 #ifdef CONFIG_SHOW_ACTIVITY
472 * Check the ethernet for a new packet. The ethernet
473 * receive routine will process it.
474 * Most drivers return the most recent packet size, but not
475 * errors that may have happened.
480 * Abort if ctrl-c was pressed.
483 /* cancel any ARP that may not have completed */
484 net_arp_wait_packet_ip.s_addr = 0;
488 /* Invalidate the last protocol */
489 eth_set_last_protocol(BOOTP);
492 /* include a debug print as well incase the debug
493 messages are directed to stderr */
494 debug_cond(DEBUG_INT_STATE, "--- NetLoop Abort!\n");
501 * Check for a timeout, and run the timeout handler
504 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
507 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
508 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
509 defined(CONFIG_STATUS_LED) && \
510 defined(STATUS_LED_RED)
512 * Echo the inverted link state to the fault LED.
514 if (miiphy_link(eth_get_dev()->name,
515 CONFIG_SYS_FAULT_MII_ADDR)) {
516 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
518 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
520 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
521 #endif /* CONFIG_MII, ... */
522 debug_cond(DEBUG_INT_STATE, "--- NetLoop timeout\n");
524 timeHandler = (thand_f *)0;
528 if (net_state == NETLOOP_FAIL)
529 ret = NetStartAgain();
533 case NETLOOP_RESTART:
537 case NETLOOP_SUCCESS:
539 if (net_boot_file_size > 0) {
540 printf("Bytes transferred = %d (%x hex)\n",
541 net_boot_file_size, net_boot_file_size);
542 setenv_hex("filesize", net_boot_file_size);
543 setenv_hex("fileaddr", load_addr);
545 if (protocol != NETCONS)
548 eth_halt_state_only();
550 eth_set_last_protocol(protocol);
552 ret = net_boot_file_size;
553 debug_cond(DEBUG_INT_STATE, "--- NetLoop Success!\n");
558 /* Invalidate the last protocol */
559 eth_set_last_protocol(BOOTP);
560 debug_cond(DEBUG_INT_STATE, "--- NetLoop Fail!\n");
563 case NETLOOP_CONTINUE:
569 #ifdef CONFIG_USB_KEYBOARD
572 #ifdef CONFIG_CMD_TFTPPUT
573 /* Clear out the handlers */
574 net_set_udp_handler(NULL);
575 net_set_icmp_handler(NULL);
580 /**********************************************************************/
583 startAgainTimeout(void)
585 net_set_state(NETLOOP_RESTART);
588 int NetStartAgain(void)
591 int retry_forever = 0;
592 unsigned long retrycnt = 0;
595 nretry = getenv("netretry");
597 if (!strcmp(nretry, "yes"))
599 else if (!strcmp(nretry, "no"))
601 else if (!strcmp(nretry, "once"))
604 retrycnt = simple_strtoul(nretry, NULL, 0);
610 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
612 net_set_state(NETLOOP_FAIL);
614 * We don't provide a way for the protocol to return an error,
615 * but this is almost always the reason.
623 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
624 eth_try_another(!NetRestarted);
627 if (NetRestartWrap) {
630 NetSetTimeout(10000UL, startAgainTimeout);
631 net_set_udp_handler(NULL);
633 net_set_state(NETLOOP_FAIL);
636 net_set_state(NETLOOP_RESTART);
641 /**********************************************************************/
646 static void dummy_handler(uchar *pkt, unsigned dport,
647 struct in_addr sip, unsigned sport,
652 rxhand_f *net_get_udp_handler(void)
654 return udp_packet_handler;
657 void net_set_udp_handler(rxhand_f *f)
659 debug_cond(DEBUG_INT_STATE, "--- NetLoop UDP handler set (%p)\n", f);
661 udp_packet_handler = dummy_handler;
663 udp_packet_handler = f;
666 rxhand_f *net_get_arp_handler(void)
668 return arp_packet_handler;
671 void net_set_arp_handler(rxhand_f *f)
673 debug_cond(DEBUG_INT_STATE, "--- NetLoop ARP handler set (%p)\n", f);
675 arp_packet_handler = dummy_handler;
677 arp_packet_handler = f;
680 #ifdef CONFIG_CMD_TFTPPUT
681 void net_set_icmp_handler(rxhand_icmp_f *f)
683 packet_icmp_handler = f;
688 NetSetTimeout(ulong iv, thand_f *f)
691 debug_cond(DEBUG_INT_STATE,
692 "--- NetLoop timeout handler cancelled\n");
693 timeHandler = (thand_f *)0;
695 debug_cond(DEBUG_INT_STATE,
696 "--- NetLoop timeout handler set (%p)\n", f);
698 timeStart = get_timer(0);
699 timeDelta = iv * CONFIG_SYS_HZ / 1000;
703 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
710 /* make sure the net_tx_packet is initialized (NetInit() was called) */
711 assert(net_tx_packet != NULL);
712 if (net_tx_packet == NULL)
715 /* convert to new style broadcast */
716 if (dest.s_addr == 0)
717 dest.s_addr = 0xFFFFFFFF;
719 /* if broadcast, make the ether address a broadcast and don't do ARP */
720 if (dest.s_addr == 0xFFFFFFFF)
721 ether = (uchar *)net_bcast_ethaddr;
723 pkt = (uchar *)net_tx_packet;
725 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
727 net_set_udp_header(pkt, dest, dport, sport, payload_len);
728 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
730 /* if MAC address was not discovered yet, do an ARP request */
731 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
732 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
734 /* save the ip and eth addr for the packet to send after arp */
735 net_arp_wait_packet_ip = dest;
736 NetArpWaitPacketMAC = ether;
738 /* size of the waiting packet */
739 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
741 /* and do the ARP request */
743 NetArpWaitTimerStart = get_timer(0);
745 return 1; /* waiting */
747 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
749 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
750 return 0; /* transmitted */
754 #ifdef CONFIG_IP_DEFRAG
756 * This function collects fragments in a single packet, according
757 * to the algorithm in RFC815. It returns NULL or the pointer to
758 * a complete packet, in static storage
760 #ifndef CONFIG_NET_MAXDEFRAG
761 #define CONFIG_NET_MAXDEFRAG 16384
764 * MAXDEFRAG, above, is chosen in the config file and is real data
765 * so we need to add the NFS overhead, which is more than TFTP.
766 * To use sizeof in the internal unnamed structures, we need a real
767 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
768 * The compiler doesn't complain nor allocates the actual structure
770 static struct rpc_t rpc_specimen;
771 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
773 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
776 * this is the packet being assembled, either data or frag control.
777 * Fragments go by 8 bytes, so this union must be 8 bytes long
780 /* first_byte is address of this structure */
781 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
782 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
783 u16 prev_hole; /* index of prev, 0 == none */
787 static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
789 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
790 static u16 first_hole, total_len;
791 struct hole *payload, *thisfrag, *h, *newh;
792 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
793 uchar *indata = (uchar *)ip;
794 int offset8, start, len, done = 0;
795 u16 ip_off = ntohs(ip->ip_off);
797 /* payload starts after IP header, this fragment is in there */
798 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
799 offset8 = (ip_off & IP_OFFS);
800 thisfrag = payload + offset8;
802 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
804 if (start + len > IP_MAXUDP) /* fragment extends too far */
807 if (!total_len || localip->ip_id != ip->ip_id) {
808 /* new (or different) packet, reset structs */
810 payload[0].last_byte = ~0;
811 payload[0].next_hole = 0;
812 payload[0].prev_hole = 0;
814 /* any IP header will work, copy the first we received */
815 memcpy(localip, ip, IP_HDR_SIZE);
819 * What follows is the reassembly algorithm. We use the payload
820 * array as a linked list of hole descriptors, as each hole starts
821 * at a multiple of 8 bytes. However, last byte can be whatever value,
822 * so it is represented as byte count, not as 8-byte blocks.
825 h = payload + first_hole;
826 while (h->last_byte < start) {
828 /* no hole that far away */
831 h = payload + h->next_hole;
834 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
835 if (offset8 + ((len + 7) / 8) <= h - payload) {
836 /* no overlap with holes (dup fragment?) */
840 if (!(ip_off & IP_FLAGS_MFRAG)) {
841 /* no more fragmentss: truncate this (last) hole */
842 total_len = start + len;
843 h->last_byte = start + len;
847 * There is some overlap: fix the hole list. This code doesn't
848 * deal with a fragment that overlaps with two different holes
849 * (thus being a superset of a previously-received fragment).
852 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
853 /* complete overlap with hole: remove hole */
854 if (!h->prev_hole && !h->next_hole) {
855 /* last remaining hole */
857 } else if (!h->prev_hole) {
859 first_hole = h->next_hole;
860 payload[h->next_hole].prev_hole = 0;
861 } else if (!h->next_hole) {
863 payload[h->prev_hole].next_hole = 0;
865 /* in the middle of the list */
866 payload[h->next_hole].prev_hole = h->prev_hole;
867 payload[h->prev_hole].next_hole = h->next_hole;
870 } else if (h->last_byte <= start + len) {
871 /* overlaps with final part of the hole: shorten this hole */
872 h->last_byte = start;
874 } else if (h >= thisfrag) {
875 /* overlaps with initial part of the hole: move this hole */
876 newh = thisfrag + (len / 8);
880 payload[h->next_hole].prev_hole = (h - payload);
882 payload[h->prev_hole].next_hole = (h - payload);
884 first_hole = (h - payload);
887 /* fragment sits in the middle: split the hole */
888 newh = thisfrag + (len / 8);
890 h->last_byte = start;
891 h->next_hole = (newh - payload);
892 newh->prev_hole = (h - payload);
894 payload[newh->next_hole].prev_hole = (newh - payload);
897 /* finally copy this fragment and possibly return whole packet */
898 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
902 localip->ip_len = htons(total_len);
903 *lenp = total_len + IP_HDR_SIZE;
907 static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
909 u16 ip_off = ntohs(ip->ip_off);
910 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
911 return ip; /* not a fragment */
912 return __NetDefragment(ip, lenp);
915 #else /* !CONFIG_IP_DEFRAG */
917 static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
919 u16 ip_off = ntohs(ip->ip_off);
920 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
921 return ip; /* not a fragment */
927 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
930 * @parma ip IP packet containing the ICMP
932 static void receive_icmp(struct ip_udp_hdr *ip, int len,
933 struct in_addr src_ip, struct ethernet_hdr *et)
935 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
937 switch (icmph->type) {
939 if (icmph->code != ICMP_REDIR_HOST)
941 printf(" ICMP Host Redirect to %pI4 ",
945 #if defined(CONFIG_CMD_PING)
946 ping_receive(et, ip, len);
948 #ifdef CONFIG_CMD_TFTPPUT
949 if (packet_icmp_handler)
950 packet_icmp_handler(icmph->type, icmph->code,
951 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
952 icmph->un.data, ntohs(ip->udp_len));
958 void net_process_received_packet(uchar *in_packet, int len)
960 struct ethernet_hdr *et;
961 struct ip_udp_hdr *ip;
962 struct in_addr dst_ip;
963 struct in_addr src_ip;
965 #if defined(CONFIG_CMD_CDP)
968 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
970 debug_cond(DEBUG_NET_PKT, "packet received\n");
972 net_rx_packet = in_packet;
973 net_rx_packet_len = len;
974 et = (struct ethernet_hdr *)in_packet;
976 /* too small packet? */
977 if (len < ETHER_HDR_SIZE)
982 (*push_packet)(in_packet, len);
987 #if defined(CONFIG_CMD_CDP)
988 /* keep track if packet is CDP */
989 iscdp = is_cdp_packet(et->et_dest);
992 myvlanid = ntohs(NetOurVLAN);
993 if (myvlanid == (ushort)-1)
994 myvlanid = VLAN_NONE;
995 mynvlanid = ntohs(NetOurNativeVLAN);
996 if (mynvlanid == (ushort)-1)
997 mynvlanid = VLAN_NONE;
999 eth_proto = ntohs(et->et_protlen);
1001 if (eth_proto < 1514) {
1002 struct e802_hdr *et802 = (struct e802_hdr *)et;
1004 * Got a 802.2 packet. Check the other protocol field.
1005 * XXX VLAN over 802.2+SNAP not implemented!
1007 eth_proto = ntohs(et802->et_prot);
1009 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
1010 len -= E802_HDR_SIZE;
1012 } else if (eth_proto != PROT_VLAN) { /* normal packet */
1013 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
1014 len -= ETHER_HDR_SIZE;
1016 } else { /* VLAN packet */
1017 struct vlan_ethernet_hdr *vet =
1018 (struct vlan_ethernet_hdr *)et;
1020 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
1022 /* too small packet? */
1023 if (len < VLAN_ETHER_HDR_SIZE)
1026 /* if no VLAN active */
1027 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
1028 #if defined(CONFIG_CMD_CDP)
1034 cti = ntohs(vet->vet_tag);
1035 vlanid = cti & VLAN_IDMASK;
1036 eth_proto = ntohs(vet->vet_type);
1038 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
1039 len -= VLAN_ETHER_HDR_SIZE;
1042 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
1044 #if defined(CONFIG_CMD_CDP)
1046 cdp_receive((uchar *)ip, len);
1051 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1052 if (vlanid == VLAN_NONE)
1053 vlanid = (mynvlanid & VLAN_IDMASK);
1055 if (vlanid != (myvlanid & VLAN_IDMASK))
1059 switch (eth_proto) {
1062 ArpReceive(et, ip, len);
1065 #ifdef CONFIG_CMD_RARP
1067 rarp_receive(ip, len);
1071 debug_cond(DEBUG_NET_PKT, "Got IP\n");
1072 /* Before we start poking the header, make sure it is there */
1073 if (len < IP_UDP_HDR_SIZE) {
1074 debug("len bad %d < %lu\n", len,
1075 (ulong)IP_UDP_HDR_SIZE);
1078 /* Check the packet length */
1079 if (len < ntohs(ip->ip_len)) {
1080 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
1083 len = ntohs(ip->ip_len);
1084 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1085 len, ip->ip_hl_v & 0xff);
1087 /* Can't deal with anything except IPv4 */
1088 if ((ip->ip_hl_v & 0xf0) != 0x40)
1090 /* Can't deal with IP options (headers != 20 bytes) */
1091 if ((ip->ip_hl_v & 0x0f) > 0x05)
1093 /* Check the Checksum of the header */
1094 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
1095 debug("checksum bad\n");
1098 /* If it is not for us, ignore it */
1099 dst_ip = net_read_ip(&ip->ip_dst);
1100 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1101 dst_ip.s_addr != 0xFFFFFFFF) {
1102 #ifdef CONFIG_MCAST_TFTP
1103 if (net_mcast_addr != dst_ip)
1107 /* Read source IP address for later use */
1108 src_ip = net_read_ip(&ip->ip_src);
1110 * The function returns the unchanged packet if it's not
1111 * a fragment, and either the complete packet or NULL if
1112 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1114 ip = NetDefragment(ip, &len);
1118 * watch for ICMP host redirects
1120 * There is no real handler code (yet). We just watch
1121 * for ICMP host redirect messages. In case anybody
1122 * sees these messages: please contact me
1124 * necessary fixes :-)
1126 * Note: in all cases where I have seen this so far
1127 * it was a problem with the router configuration,
1128 * for instance when a router was configured in the
1129 * BOOTP reply, but the TFTP server was on the same
1130 * subnet. So this is probably a warning that your
1131 * configuration might be wrong. But I'm not really
1132 * sure if there aren't any other situations.
1135 * we send a tftp packet to a dead connection, or when
1136 * there is no server at the other end.
1138 if (ip->ip_p == IPPROTO_ICMP) {
1139 receive_icmp(ip, len, src_ip, et);
1141 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1145 debug_cond(DEBUG_DEV_PKT,
1146 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1147 &dst_ip, &src_ip, len);
1149 #ifdef CONFIG_UDP_CHECKSUM
1150 if (ip->udp_xsum != 0) {
1156 xsum += (ntohs(ip->udp_len));
1157 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1158 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1159 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1160 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
1162 sumlen = ntohs(ip->udp_len);
1163 sumptr = (ushort *) &(ip->udp_src);
1165 while (sumlen > 1) {
1168 sumdata = *sumptr++;
1169 xsum += ntohs(sumdata);
1175 sumdata = *(unsigned char *) sumptr;
1176 sumdata = (sumdata << 8) & 0xff00;
1179 while ((xsum >> 16) != 0) {
1180 xsum = (xsum & 0x0000ffff) +
1181 ((xsum >> 16) & 0x0000ffff);
1183 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1184 printf(" UDP wrong checksum %08lx %08x\n",
1185 xsum, ntohs(ip->udp_xsum));
1192 #if defined (CONFIG_NETCONSOLE) && !(CONFIG_SPL_BUILD)
1193 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1197 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1200 * IP header OK. Pass the packet to the current handler.
1202 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1206 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1212 /**********************************************************************/
1214 static int net_check_prereq(enum proto_t protocol)
1218 #if defined(CONFIG_CMD_PING)
1220 if (net_ping_ip.s_addr == 0) {
1221 puts("*** ERROR: ping address not given\n");
1226 #if defined(CONFIG_CMD_SNTP)
1228 if (net_ntp_server.s_addr == 0) {
1229 puts("*** ERROR: NTP server address not given\n");
1234 #if defined(CONFIG_CMD_DNS)
1236 if (net_dns_server.s_addr == 0) {
1237 puts("*** ERROR: DNS server address not given\n");
1242 #if defined(CONFIG_CMD_NFS)
1247 if (net_server_ip.s_addr == 0) {
1248 puts("*** ERROR: `serverip' not set\n");
1251 #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1252 defined(CONFIG_CMD_DNS)
1259 if (net_ip.s_addr == 0) {
1260 puts("*** ERROR: `ipaddr' not set\n");
1265 #ifdef CONFIG_CMD_RARP
1272 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
1273 int num = eth_get_dev_index();
1277 puts("*** ERROR: No ethernet found.\n");
1280 puts("*** ERROR: `ethaddr' not set\n");
1283 printf("*** ERROR: `eth%daddr' not set\n",
1297 /**********************************************************************/
1300 net_eth_hdr_size(void)
1304 myvlanid = ntohs(NetOurVLAN);
1305 if (myvlanid == (ushort)-1)
1306 myvlanid = VLAN_NONE;
1308 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1309 VLAN_ETHER_HDR_SIZE;
1312 int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
1314 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1317 myvlanid = ntohs(NetOurVLAN);
1318 if (myvlanid == (ushort)-1)
1319 myvlanid = VLAN_NONE;
1321 memcpy(et->et_dest, dest_ethaddr, 6);
1322 memcpy(et->et_src, net_ethaddr, 6);
1323 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1324 et->et_protlen = htons(prot);
1325 return ETHER_HDR_SIZE;
1327 struct vlan_ethernet_hdr *vet =
1328 (struct vlan_ethernet_hdr *)xet;
1330 vet->vet_vlan_type = htons(PROT_VLAN);
1331 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1332 vet->vet_type = htons(prot);
1333 return VLAN_ETHER_HDR_SIZE;
1337 int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1341 memcpy(et->et_dest, addr, 6);
1342 memcpy(et->et_src, net_ethaddr, 6);
1343 protlen = ntohs(et->et_protlen);
1344 if (protlen == PROT_VLAN) {
1345 struct vlan_ethernet_hdr *vet =
1346 (struct vlan_ethernet_hdr *)et;
1347 vet->vet_type = htons(prot);
1348 return VLAN_ETHER_HDR_SIZE;
1349 } else if (protlen > 1514) {
1350 et->et_protlen = htons(prot);
1351 return ETHER_HDR_SIZE;
1354 struct e802_hdr *et802 = (struct e802_hdr *)et;
1355 et802->et_prot = htons(prot);
1356 return E802_HDR_SIZE;
1360 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source)
1362 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1365 * Construct an IP header.
1367 /* IP_HDR_SIZE / 4 (not including UDP) */
1370 ip->ip_len = htons(IP_HDR_SIZE);
1371 ip->ip_id = htons(NetIPID++);
1372 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1375 /* already in network byte order */
1376 net_copy_ip((void *)&ip->ip_src, &source);
1377 /* already in network byte order */
1378 net_copy_ip((void *)&ip->ip_dst, &dest);
1381 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
1384 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1387 * If the data is an odd number of bytes, zero the
1388 * byte after the last byte so that the checksum
1392 pkt[IP_UDP_HDR_SIZE + len] = 0;
1394 net_set_ip_header(pkt, dest, net_ip);
1395 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
1396 ip->ip_p = IPPROTO_UDP;
1397 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
1399 ip->udp_src = htons(sport);
1400 ip->udp_dst = htons(dport);
1401 ip->udp_len = htons(UDP_HDR_SIZE + len);
1405 void copy_filename(char *dst, const char *src, int size)
1407 if (*src && (*src == '"')) {
1412 while ((--size > 0) && *src && (*src != '"'))
1417 #if defined(CONFIG_CMD_NFS) || \
1418 defined(CONFIG_CMD_SNTP) || \
1419 defined(CONFIG_CMD_DNS)
1421 * make port a little random (1024-17407)
1422 * This keeps the math somewhat trivial to compute, and seems to work with
1423 * all supported protocols/clients/servers
1425 unsigned int random_port(void)
1427 return 1024 + (get_timer(0) % 0x4000);
1431 void ip_to_string(struct in_addr x, char *s)
1433 x.s_addr = ntohl(x.s_addr);
1434 sprintf(s, "%d.%d.%d.%d",
1435 (int) ((x.s_addr >> 24) & 0xff),
1436 (int) ((x.s_addr >> 16) & 0xff),
1437 (int) ((x.s_addr >> 8) & 0xff),
1438 (int) ((x.s_addr >> 0) & 0xff)
1442 void VLAN_to_string(ushort x, char *s)
1446 if (x == (ushort)-1)
1452 sprintf(s, "%d", x & VLAN_IDMASK);
1455 ushort string_to_VLAN(const char *s)
1460 return htons(VLAN_NONE);
1462 if (*s < '0' || *s > '9')
1465 id = (ushort)simple_strtoul(s, NULL, 10);
1470 ushort getenv_VLAN(char *var)
1472 return string_to_VLAN(getenv(var));