1 // SPDX-License-Identifier: GPL-2.0
3 * Copied from Linux Monitor (LiMon) - Networking.
5 * Copyright 1994 - 2000 Neil Russell.
7 * Copyright 2000 Roland Borde
8 * Copyright 2000 Paolo Scaffardi
9 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
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
87 #include <environment.h>
90 #include <net/fastboot.h>
92 #if defined(CONFIG_LED_STATUS)
94 #include <status_led.h>
97 #include <linux/compiler.h>
101 #if defined(CONFIG_CMD_DNS)
104 #include "link_local.h"
108 #if defined(CONFIG_CMD_SNTP)
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;
144 static unsigned net_ip_id;
145 /* Ethernet bcast address */
146 const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
147 const u8 net_null_ethaddr[6];
148 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
149 void (*push_packet)(void *, int len) = 0;
151 /* Network loop state */
152 enum net_loop_state net_state;
153 /* Tried all network devices */
154 int net_restart_wrap;
155 /* Network loop restarted */
156 static int net_restarted;
157 /* At least one device configured */
158 static int net_dev_exists;
160 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
161 /* default is without VLAN */
162 ushort net_our_vlan = 0xFFFF;
164 ushort net_native_vlan = 0xFFFF;
167 char net_boot_file_name[1024];
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 */
177 int net_ntp_time_offset;
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 *time_handler;
193 /* Time base value */
194 static ulong time_start;
195 /* Current timeout value */
196 static ulong time_delta;
197 /* THE transmit packet */
198 uchar *net_tx_packet;
200 static int net_check_prereq(enum proto_t protocol);
202 static int net_try_count;
204 int __maybe_unused net_busy_flag;
206 /**********************************************************************/
208 static int on_bootfile(const char *name, const char *value, enum env_op op,
211 if (flags & H_PROGRAMMATIC)
216 case env_op_overwrite:
217 copy_filename(net_boot_file_name, value,
218 sizeof(net_boot_file_name));
226 U_BOOT_ENV_CALLBACK(bootfile, on_bootfile);
228 static int on_ipaddr(const char *name, const char *value, enum env_op op,
231 if (flags & H_PROGRAMMATIC)
234 net_ip = string_to_ip(value);
238 U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
240 static int on_gatewayip(const char *name, const char *value, enum env_op op,
243 if (flags & H_PROGRAMMATIC)
246 net_gateway = string_to_ip(value);
250 U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
252 static int on_netmask(const char *name, const char *value, enum env_op op,
255 if (flags & H_PROGRAMMATIC)
258 net_netmask = string_to_ip(value);
262 U_BOOT_ENV_CALLBACK(netmask, on_netmask);
264 static int on_serverip(const char *name, const char *value, enum env_op op,
267 if (flags & H_PROGRAMMATIC)
270 net_server_ip = string_to_ip(value);
274 U_BOOT_ENV_CALLBACK(serverip, on_serverip);
276 static int on_nvlan(const char *name, const char *value, enum env_op op,
279 if (flags & H_PROGRAMMATIC)
282 net_native_vlan = string_to_vlan(value);
286 U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
288 static int on_vlan(const char *name, const char *value, enum env_op op,
291 if (flags & H_PROGRAMMATIC)
294 net_our_vlan = string_to_vlan(value);
298 U_BOOT_ENV_CALLBACK(vlan, on_vlan);
300 #if defined(CONFIG_CMD_DNS)
301 static int on_dnsip(const char *name, const char *value, enum env_op op,
304 if (flags & H_PROGRAMMATIC)
307 net_dns_server = string_to_ip(value);
311 U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
315 * Check if autoload is enabled. If so, use either NFS or TFTP to download
318 void net_auto_load(void)
320 #if defined(CONFIG_CMD_NFS)
321 const char *s = env_get("autoload");
323 if (s != NULL && strcmp(s, "NFS") == 0) {
325 * Use NFS to load the bootfile.
331 if (env_get_yesno("autoload") == 0) {
333 * Just use BOOTP/RARP to configure system;
334 * Do not use TFTP to load the bootfile.
336 net_set_state(NETLOOP_SUCCESS);
342 static void net_init_loop(void)
345 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
350 static void net_clear_handlers(void)
352 net_set_udp_handler(NULL);
353 net_set_arp_handler(NULL);
354 net_set_timeout_handler(0, NULL);
357 static void net_cleanup_loop(void)
359 net_clear_handlers();
364 static int first_call = 1;
368 * Setup packet buffers, aligned correctly.
372 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
373 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
374 for (i = 0; i < PKTBUFSRX; i++) {
375 net_rx_packets[i] = net_tx_packet +
376 (i + 1) * PKTSIZE_ALIGN;
379 net_clear_handlers();
381 /* Only need to setup buffer pointers once. */
388 /**********************************************************************/
390 * Main network processing loop.
393 int net_loop(enum proto_t protocol)
396 enum net_loop_state prev_net_state = net_state;
401 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
403 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
405 if (eth_is_on_demand_init() || protocol != NETCONS) {
414 eth_init_state_only();
417 #ifdef CONFIG_USB_KEYBOARD
420 net_set_state(NETLOOP_CONTINUE);
423 * Start the ball rolling with the given start function. From
424 * here on, this code is a state machine driven by received
425 * packets and timer events.
427 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
430 switch (net_check_prereq(protocol)) {
432 /* network not configured */
434 net_set_state(prev_net_state);
438 /* network device not configured */
443 net_boot_file_size = 0;
446 #ifdef CONFIG_CMD_TFTPPUT
449 /* always use ARP to get server ethernet address */
450 tftp_start(protocol);
452 #ifdef CONFIG_CMD_TFTPSRV
457 #ifdef CONFIG_UDP_FUNCTION_FASTBOOT
459 fastboot_start_server();
462 #if defined(CONFIG_CMD_DHCP)
466 dhcp_request(); /* Basically same as BOOTP */
476 #if defined(CONFIG_CMD_RARP)
483 #if defined(CONFIG_CMD_PING)
488 #if defined(CONFIG_CMD_NFS)
493 #if defined(CONFIG_CMD_CDP)
498 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
503 #if defined(CONFIG_CMD_SNTP)
508 #if defined(CONFIG_CMD_DNS)
513 #if defined(CONFIG_CMD_LINK_LOCAL)
525 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
526 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
527 defined(CONFIG_LED_STATUS) && \
528 defined(CONFIG_LED_STATUS_RED)
530 * Echo the inverted link state to the fault LED.
532 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
533 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
535 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
536 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
537 #endif /* CONFIG_MII, ... */
538 #ifdef CONFIG_USB_KEYBOARD
543 * Main packet reception loop. Loop receiving packets until
544 * someone sets `net_state' to a state that terminates.
548 #ifdef CONFIG_SHOW_ACTIVITY
551 if (arp_timeout_check() > 0)
552 time_start = get_timer(0);
555 * Check the ethernet for a new packet. The ethernet
556 * receive routine will process it.
557 * Most drivers return the most recent packet size, but not
558 * errors that may have happened.
563 * Abort if ctrl-c was pressed.
566 /* cancel any ARP that may not have completed */
567 net_arp_wait_packet_ip.s_addr = 0;
571 /* Invalidate the last protocol */
572 eth_set_last_protocol(BOOTP);
575 /* include a debug print as well incase the debug
576 messages are directed to stderr */
577 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
583 * Check for a timeout, and run the timeout handler
587 ((get_timer(0) - time_start) > time_delta)) {
590 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
591 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
592 defined(CONFIG_LED_STATUS) && \
593 defined(CONFIG_LED_STATUS_RED)
595 * Echo the inverted link state to the fault LED.
597 if (miiphy_link(eth_get_dev()->name,
598 CONFIG_SYS_FAULT_MII_ADDR))
599 status_led_set(CONFIG_LED_STATUS_RED,
600 CONFIG_LED_STATUS_OFF);
602 status_led_set(CONFIG_LED_STATUS_RED,
603 CONFIG_LED_STATUS_ON);
604 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
605 #endif /* CONFIG_MII, ... */
606 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
608 time_handler = (thand_f *)0;
612 if (net_state == NETLOOP_FAIL)
613 ret = net_start_again();
616 case NETLOOP_RESTART:
620 case NETLOOP_SUCCESS:
622 if (net_boot_file_size > 0) {
623 printf("Bytes transferred = %d (%x hex)\n",
624 net_boot_file_size, net_boot_file_size);
625 env_set_hex("filesize", net_boot_file_size);
626 env_set_hex("fileaddr", load_addr);
628 if (protocol != NETCONS)
631 eth_halt_state_only();
633 eth_set_last_protocol(protocol);
635 ret = net_boot_file_size;
636 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
641 /* Invalidate the last protocol */
642 eth_set_last_protocol(BOOTP);
643 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
646 case NETLOOP_CONTINUE:
652 #ifdef CONFIG_USB_KEYBOARD
655 #ifdef CONFIG_CMD_TFTPPUT
656 /* Clear out the handlers */
657 net_set_udp_handler(NULL);
658 net_set_icmp_handler(NULL);
660 net_set_state(prev_net_state);
664 /**********************************************************************/
666 static void start_again_timeout_handler(void)
668 net_set_state(NETLOOP_RESTART);
671 int net_start_again(void)
674 int retry_forever = 0;
675 unsigned long retrycnt = 0;
678 nretry = env_get("netretry");
680 if (!strcmp(nretry, "yes"))
682 else if (!strcmp(nretry, "no"))
684 else if (!strcmp(nretry, "once"))
687 retrycnt = simple_strtoul(nretry, NULL, 0);
693 if ((!retry_forever) && (net_try_count > retrycnt)) {
695 net_set_state(NETLOOP_FAIL);
697 * We don't provide a way for the protocol to return an error,
698 * but this is almost always the reason.
706 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
707 eth_try_another(!net_restarted);
710 if (net_restart_wrap) {
711 net_restart_wrap = 0;
712 if (net_dev_exists) {
713 net_set_timeout_handler(10000UL,
714 start_again_timeout_handler);
715 net_set_udp_handler(NULL);
717 net_set_state(NETLOOP_FAIL);
720 net_set_state(NETLOOP_RESTART);
725 /**********************************************************************/
730 static void dummy_handler(uchar *pkt, unsigned dport,
731 struct in_addr sip, unsigned sport,
736 rxhand_f *net_get_udp_handler(void)
738 return udp_packet_handler;
741 void net_set_udp_handler(rxhand_f *f)
743 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
745 udp_packet_handler = dummy_handler;
747 udp_packet_handler = f;
750 rxhand_f *net_get_arp_handler(void)
752 return arp_packet_handler;
755 void net_set_arp_handler(rxhand_f *f)
757 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
759 arp_packet_handler = dummy_handler;
761 arp_packet_handler = f;
764 #ifdef CONFIG_CMD_TFTPPUT
765 void net_set_icmp_handler(rxhand_icmp_f *f)
767 packet_icmp_handler = f;
771 void net_set_timeout_handler(ulong iv, thand_f *f)
774 debug_cond(DEBUG_INT_STATE,
775 "--- net_loop timeout handler cancelled\n");
776 time_handler = (thand_f *)0;
778 debug_cond(DEBUG_INT_STATE,
779 "--- net_loop timeout handler set (%p)\n", f);
781 time_start = get_timer(0);
782 time_delta = iv * CONFIG_SYS_HZ / 1000;
786 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
793 /* make sure the net_tx_packet is initialized (net_init() was called) */
794 assert(net_tx_packet != NULL);
795 if (net_tx_packet == NULL)
798 /* convert to new style broadcast */
799 if (dest.s_addr == 0)
800 dest.s_addr = 0xFFFFFFFF;
802 /* if broadcast, make the ether address a broadcast and don't do ARP */
803 if (dest.s_addr == 0xFFFFFFFF)
804 ether = (uchar *)net_bcast_ethaddr;
806 pkt = (uchar *)net_tx_packet;
808 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
810 net_set_udp_header(pkt, dest, dport, sport, payload_len);
811 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
813 /* if MAC address was not discovered yet, do an ARP request */
814 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
815 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
817 /* save the ip and eth addr for the packet to send after arp */
818 net_arp_wait_packet_ip = dest;
819 arp_wait_packet_ethaddr = ether;
821 /* size of the waiting packet */
822 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
824 /* and do the ARP request */
826 arp_wait_timer_start = get_timer(0);
828 return 1; /* waiting */
830 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
832 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
833 return 0; /* transmitted */
837 #ifdef CONFIG_IP_DEFRAG
839 * This function collects fragments in a single packet, according
840 * to the algorithm in RFC815. It returns NULL or the pointer to
841 * a complete packet, in static storage
843 #ifndef CONFIG_NET_MAXDEFRAG
844 #define CONFIG_NET_MAXDEFRAG 16384
846 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
848 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
851 * this is the packet being assembled, either data or frag control.
852 * Fragments go by 8 bytes, so this union must be 8 bytes long
855 /* first_byte is address of this structure */
856 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
857 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
858 u16 prev_hole; /* index of prev, 0 == none */
862 static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
864 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
865 static u16 first_hole, total_len;
866 struct hole *payload, *thisfrag, *h, *newh;
867 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
868 uchar *indata = (uchar *)ip;
869 int offset8, start, len, done = 0;
870 u16 ip_off = ntohs(ip->ip_off);
872 /* payload starts after IP header, this fragment is in there */
873 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
874 offset8 = (ip_off & IP_OFFS);
875 thisfrag = payload + offset8;
877 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
879 if (start + len > IP_MAXUDP) /* fragment extends too far */
882 if (!total_len || localip->ip_id != ip->ip_id) {
883 /* new (or different) packet, reset structs */
885 payload[0].last_byte = ~0;
886 payload[0].next_hole = 0;
887 payload[0].prev_hole = 0;
889 /* any IP header will work, copy the first we received */
890 memcpy(localip, ip, IP_HDR_SIZE);
894 * What follows is the reassembly algorithm. We use the payload
895 * array as a linked list of hole descriptors, as each hole starts
896 * at a multiple of 8 bytes. However, last byte can be whatever value,
897 * so it is represented as byte count, not as 8-byte blocks.
900 h = payload + first_hole;
901 while (h->last_byte < start) {
903 /* no hole that far away */
906 h = payload + h->next_hole;
909 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
910 if (offset8 + ((len + 7) / 8) <= h - payload) {
911 /* no overlap with holes (dup fragment?) */
915 if (!(ip_off & IP_FLAGS_MFRAG)) {
916 /* no more fragmentss: truncate this (last) hole */
917 total_len = start + len;
918 h->last_byte = start + len;
922 * There is some overlap: fix the hole list. This code doesn't
923 * deal with a fragment that overlaps with two different holes
924 * (thus being a superset of a previously-received fragment).
927 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
928 /* complete overlap with hole: remove hole */
929 if (!h->prev_hole && !h->next_hole) {
930 /* last remaining hole */
932 } else if (!h->prev_hole) {
934 first_hole = h->next_hole;
935 payload[h->next_hole].prev_hole = 0;
936 } else if (!h->next_hole) {
938 payload[h->prev_hole].next_hole = 0;
940 /* in the middle of the list */
941 payload[h->next_hole].prev_hole = h->prev_hole;
942 payload[h->prev_hole].next_hole = h->next_hole;
945 } else if (h->last_byte <= start + len) {
946 /* overlaps with final part of the hole: shorten this hole */
947 h->last_byte = start;
949 } else if (h >= thisfrag) {
950 /* overlaps with initial part of the hole: move this hole */
951 newh = thisfrag + (len / 8);
955 payload[h->next_hole].prev_hole = (h - payload);
957 payload[h->prev_hole].next_hole = (h - payload);
959 first_hole = (h - payload);
962 /* fragment sits in the middle: split the hole */
963 newh = thisfrag + (len / 8);
965 h->last_byte = start;
966 h->next_hole = (newh - payload);
967 newh->prev_hole = (h - payload);
969 payload[newh->next_hole].prev_hole = (newh - payload);
972 /* finally copy this fragment and possibly return whole packet */
973 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
977 localip->ip_len = htons(total_len);
978 *lenp = total_len + IP_HDR_SIZE;
982 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
985 u16 ip_off = ntohs(ip->ip_off);
986 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
987 return ip; /* not a fragment */
988 return __net_defragment(ip, lenp);
991 #else /* !CONFIG_IP_DEFRAG */
993 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
996 u16 ip_off = ntohs(ip->ip_off);
997 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
998 return ip; /* not a fragment */
1004 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1007 * @parma ip IP packet containing the ICMP
1009 static void receive_icmp(struct ip_udp_hdr *ip, int len,
1010 struct in_addr src_ip, struct ethernet_hdr *et)
1012 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
1014 switch (icmph->type) {
1016 if (icmph->code != ICMP_REDIR_HOST)
1018 printf(" ICMP Host Redirect to %pI4 ",
1019 &icmph->un.gateway);
1022 #if defined(CONFIG_CMD_PING)
1023 ping_receive(et, ip, len);
1025 #ifdef CONFIG_CMD_TFTPPUT
1026 if (packet_icmp_handler)
1027 packet_icmp_handler(icmph->type, icmph->code,
1028 ntohs(ip->udp_dst), src_ip,
1029 ntohs(ip->udp_src), icmph->un.data,
1030 ntohs(ip->udp_len));
1036 void net_process_received_packet(uchar *in_packet, int len)
1038 struct ethernet_hdr *et;
1039 struct ip_udp_hdr *ip;
1040 struct in_addr dst_ip;
1041 struct in_addr src_ip;
1043 #if defined(CONFIG_CMD_CDP)
1046 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1048 debug_cond(DEBUG_NET_PKT, "packet received\n");
1050 net_rx_packet = in_packet;
1051 net_rx_packet_len = len;
1052 et = (struct ethernet_hdr *)in_packet;
1054 /* too small packet? */
1055 if (len < ETHER_HDR_SIZE)
1058 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
1060 (*push_packet)(in_packet, len);
1065 #if defined(CONFIG_CMD_CDP)
1066 /* keep track if packet is CDP */
1067 iscdp = is_cdp_packet(et->et_dest);
1070 myvlanid = ntohs(net_our_vlan);
1071 if (myvlanid == (ushort)-1)
1072 myvlanid = VLAN_NONE;
1073 mynvlanid = ntohs(net_native_vlan);
1074 if (mynvlanid == (ushort)-1)
1075 mynvlanid = VLAN_NONE;
1077 eth_proto = ntohs(et->et_protlen);
1079 if (eth_proto < 1514) {
1080 struct e802_hdr *et802 = (struct e802_hdr *)et;
1082 * Got a 802.2 packet. Check the other protocol field.
1083 * XXX VLAN over 802.2+SNAP not implemented!
1085 eth_proto = ntohs(et802->et_prot);
1087 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
1088 len -= E802_HDR_SIZE;
1090 } else if (eth_proto != PROT_VLAN) { /* normal packet */
1091 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
1092 len -= ETHER_HDR_SIZE;
1094 } else { /* VLAN packet */
1095 struct vlan_ethernet_hdr *vet =
1096 (struct vlan_ethernet_hdr *)et;
1098 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
1100 /* too small packet? */
1101 if (len < VLAN_ETHER_HDR_SIZE)
1104 /* if no VLAN active */
1105 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
1106 #if defined(CONFIG_CMD_CDP)
1112 cti = ntohs(vet->vet_tag);
1113 vlanid = cti & VLAN_IDMASK;
1114 eth_proto = ntohs(vet->vet_type);
1116 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
1117 len -= VLAN_ETHER_HDR_SIZE;
1120 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
1122 #if defined(CONFIG_CMD_CDP)
1124 cdp_receive((uchar *)ip, len);
1129 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1130 if (vlanid == VLAN_NONE)
1131 vlanid = (mynvlanid & VLAN_IDMASK);
1133 if (vlanid != (myvlanid & VLAN_IDMASK))
1137 switch (eth_proto) {
1139 arp_receive(et, ip, len);
1142 #ifdef CONFIG_CMD_RARP
1144 rarp_receive(ip, len);
1148 debug_cond(DEBUG_NET_PKT, "Got IP\n");
1149 /* Before we start poking the header, make sure it is there */
1150 if (len < IP_UDP_HDR_SIZE) {
1151 debug("len bad %d < %lu\n", len,
1152 (ulong)IP_UDP_HDR_SIZE);
1155 /* Check the packet length */
1156 if (len < ntohs(ip->ip_len)) {
1157 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
1160 len = ntohs(ip->ip_len);
1161 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1162 len, ip->ip_hl_v & 0xff);
1164 /* Can't deal with anything except IPv4 */
1165 if ((ip->ip_hl_v & 0xf0) != 0x40)
1167 /* Can't deal with IP options (headers != 20 bytes) */
1168 if ((ip->ip_hl_v & 0x0f) > 0x05)
1170 /* Check the Checksum of the header */
1171 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
1172 debug("checksum bad\n");
1175 /* If it is not for us, ignore it */
1176 dst_ip = net_read_ip(&ip->ip_dst);
1177 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1178 dst_ip.s_addr != 0xFFFFFFFF) {
1179 #ifdef CONFIG_MCAST_TFTP
1180 if (net_mcast_addr != dst_ip)
1184 /* Read source IP address for later use */
1185 src_ip = net_read_ip(&ip->ip_src);
1187 * The function returns the unchanged packet if it's not
1188 * a fragment, and either the complete packet or NULL if
1189 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1191 ip = net_defragment(ip, &len);
1195 * watch for ICMP host redirects
1197 * There is no real handler code (yet). We just watch
1198 * for ICMP host redirect messages. In case anybody
1199 * sees these messages: please contact me
1200 * (wd@denx.de), or - even better - send me the
1201 * necessary fixes :-)
1203 * Note: in all cases where I have seen this so far
1204 * it was a problem with the router configuration,
1205 * for instance when a router was configured in the
1206 * BOOTP reply, but the TFTP server was on the same
1207 * subnet. So this is probably a warning that your
1208 * configuration might be wrong. But I'm not really
1209 * sure if there aren't any other situations.
1211 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1212 * we send a tftp packet to a dead connection, or when
1213 * there is no server at the other end.
1215 if (ip->ip_p == IPPROTO_ICMP) {
1216 receive_icmp(ip, len, src_ip, et);
1218 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1222 debug_cond(DEBUG_DEV_PKT,
1223 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1224 &dst_ip, &src_ip, len);
1226 #ifdef CONFIG_UDP_CHECKSUM
1227 if (ip->udp_xsum != 0) {
1233 xsum += (ntohs(ip->udp_len));
1234 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1235 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1236 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1237 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
1239 sumlen = ntohs(ip->udp_len);
1240 sumptr = (ushort *)&(ip->udp_src);
1242 while (sumlen > 1) {
1245 sumdata = *sumptr++;
1246 xsum += ntohs(sumdata);
1252 sumdata = *(unsigned char *)sumptr;
1253 sumdata = (sumdata << 8) & 0xff00;
1256 while ((xsum >> 16) != 0) {
1257 xsum = (xsum & 0x0000ffff) +
1258 ((xsum >> 16) & 0x0000ffff);
1260 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1261 printf(" UDP wrong checksum %08lx %08x\n",
1262 xsum, ntohs(ip->udp_xsum));
1268 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
1269 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1273 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1276 * IP header OK. Pass the packet to the current handler.
1278 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1282 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1287 /**********************************************************************/
1289 static int net_check_prereq(enum proto_t protocol)
1293 #if defined(CONFIG_CMD_PING)
1295 if (net_ping_ip.s_addr == 0) {
1296 puts("*** ERROR: ping address not given\n");
1301 #if defined(CONFIG_CMD_SNTP)
1303 if (net_ntp_server.s_addr == 0) {
1304 puts("*** ERROR: NTP server address not given\n");
1309 #if defined(CONFIG_CMD_DNS)
1311 if (net_dns_server.s_addr == 0) {
1312 puts("*** ERROR: DNS server address not given\n");
1317 #if defined(CONFIG_CMD_NFS)
1323 if (net_server_ip.s_addr == 0) {
1324 puts("*** ERROR: `serverip' not set\n");
1327 #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1328 defined(CONFIG_CMD_DNS)
1336 if (net_ip.s_addr == 0) {
1337 puts("*** ERROR: `ipaddr' not set\n");
1342 #ifdef CONFIG_CMD_RARP
1349 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
1350 int num = eth_get_dev_index();
1354 puts("*** ERROR: No ethernet found.\n");
1357 puts("*** ERROR: `ethaddr' not set\n");
1360 printf("*** ERROR: `eth%daddr' not set\n",
1374 /**********************************************************************/
1377 net_eth_hdr_size(void)
1381 myvlanid = ntohs(net_our_vlan);
1382 if (myvlanid == (ushort)-1)
1383 myvlanid = VLAN_NONE;
1385 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1386 VLAN_ETHER_HDR_SIZE;
1389 int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
1391 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1394 myvlanid = ntohs(net_our_vlan);
1395 if (myvlanid == (ushort)-1)
1396 myvlanid = VLAN_NONE;
1398 memcpy(et->et_dest, dest_ethaddr, 6);
1399 memcpy(et->et_src, net_ethaddr, 6);
1400 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1401 et->et_protlen = htons(prot);
1402 return ETHER_HDR_SIZE;
1404 struct vlan_ethernet_hdr *vet =
1405 (struct vlan_ethernet_hdr *)xet;
1407 vet->vet_vlan_type = htons(PROT_VLAN);
1408 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1409 vet->vet_type = htons(prot);
1410 return VLAN_ETHER_HDR_SIZE;
1414 int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1418 memcpy(et->et_dest, addr, 6);
1419 memcpy(et->et_src, net_ethaddr, 6);
1420 protlen = ntohs(et->et_protlen);
1421 if (protlen == PROT_VLAN) {
1422 struct vlan_ethernet_hdr *vet =
1423 (struct vlan_ethernet_hdr *)et;
1424 vet->vet_type = htons(prot);
1425 return VLAN_ETHER_HDR_SIZE;
1426 } else if (protlen > 1514) {
1427 et->et_protlen = htons(prot);
1428 return ETHER_HDR_SIZE;
1431 struct e802_hdr *et802 = (struct e802_hdr *)et;
1432 et802->et_prot = htons(prot);
1433 return E802_HDR_SIZE;
1437 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source)
1439 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1442 * Construct an IP header.
1444 /* IP_HDR_SIZE / 4 (not including UDP) */
1447 ip->ip_len = htons(IP_HDR_SIZE);
1448 ip->ip_id = htons(net_ip_id++);
1449 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1452 /* already in network byte order */
1453 net_copy_ip((void *)&ip->ip_src, &source);
1454 /* already in network byte order */
1455 net_copy_ip((void *)&ip->ip_dst, &dest);
1458 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
1461 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1464 * If the data is an odd number of bytes, zero the
1465 * byte after the last byte so that the checksum
1469 pkt[IP_UDP_HDR_SIZE + len] = 0;
1471 net_set_ip_header(pkt, dest, net_ip);
1472 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
1473 ip->ip_p = IPPROTO_UDP;
1474 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
1476 ip->udp_src = htons(sport);
1477 ip->udp_dst = htons(dport);
1478 ip->udp_len = htons(UDP_HDR_SIZE + len);
1482 void copy_filename(char *dst, const char *src, int size)
1484 if (*src && (*src == '"')) {
1489 while ((--size > 0) && *src && (*src != '"'))
1494 #if defined(CONFIG_CMD_NFS) || \
1495 defined(CONFIG_CMD_SNTP) || \
1496 defined(CONFIG_CMD_DNS)
1498 * make port a little random (1024-17407)
1499 * This keeps the math somewhat trivial to compute, and seems to work with
1500 * all supported protocols/clients/servers
1502 unsigned int random_port(void)
1504 return 1024 + (get_timer(0) % 0x4000);
1508 void ip_to_string(struct in_addr x, char *s)
1510 x.s_addr = ntohl(x.s_addr);
1511 sprintf(s, "%d.%d.%d.%d",
1512 (int) ((x.s_addr >> 24) & 0xff),
1513 (int) ((x.s_addr >> 16) & 0xff),
1514 (int) ((x.s_addr >> 8) & 0xff),
1515 (int) ((x.s_addr >> 0) & 0xff)
1519 void vlan_to_string(ushort x, char *s)
1523 if (x == (ushort)-1)
1529 sprintf(s, "%d", x & VLAN_IDMASK);
1532 ushort string_to_vlan(const char *s)
1537 return htons(VLAN_NONE);
1539 if (*s < '0' || *s > '9')
1542 id = (ushort)simple_strtoul(s, NULL, 10);
1547 ushort env_get_vlan(char *var)
1549 return string_to_vlan(env_get(var));