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
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
78 * Prerequisites: - own ethernet address
79 * We want: - magic packet or timeout
85 #include <bootstage.h>
89 #include <env_internal.h>
96 #include <net/fastboot.h>
99 #if defined(CONFIG_CMD_PCAP)
100 #include <net/pcap.h>
103 #if defined(CONFIG_LED_STATUS)
105 #include <status_led.h>
107 #include <watchdog.h>
108 #include <linux/compiler.h>
112 #if defined(CONFIG_CMD_DNS)
115 #include "link_local.h"
119 #if defined(CONFIG_CMD_WOL)
123 #include <net/wget.h>
125 /** BOOTP EXTENTIONS **/
127 /* Our subnet mask (0=unknown) */
128 struct in_addr net_netmask;
129 /* Our gateways IP address */
130 struct in_addr net_gateway;
131 /* Our DNS IP address */
132 struct in_addr net_dns_server;
133 #if defined(CONFIG_BOOTP_DNS2)
134 /* Our 2nd DNS IP address */
135 struct in_addr net_dns_server2;
138 /** END OF BOOTP EXTENTIONS **/
140 /* Our ethernet address */
142 /* Boot server enet address */
143 u8 net_server_ethaddr[6];
144 /* Our IP addr (0 = unknown) */
145 struct in_addr net_ip;
146 /* Server IP addr (0 = unknown) */
147 struct in_addr net_server_ip;
148 /* Current receive packet */
149 uchar *net_rx_packet;
150 /* Current rx packet length */
151 int net_rx_packet_len;
153 static unsigned net_ip_id;
154 /* Ethernet bcast address */
155 const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
156 const u8 net_null_ethaddr[6];
157 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
158 void (*push_packet)(void *, int len) = 0;
160 /* Network loop state */
161 enum net_loop_state net_state;
162 /* Tried all network devices */
163 int net_restart_wrap;
164 /* Network loop restarted */
165 static int net_restarted;
166 /* At least one device configured */
167 static int net_dev_exists;
169 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
170 /* default is without VLAN */
171 ushort net_our_vlan = 0xFFFF;
173 ushort net_native_vlan = 0xFFFF;
176 char net_boot_file_name[1024];
177 /* Indicates whether the file name was specified on the command line */
178 bool net_boot_file_name_explicit;
179 /* The actual transferred size of the bootfile (in bytes) */
180 u32 net_boot_file_size;
181 /* Boot file size in blocks as reported by the DHCP server */
182 u32 net_boot_file_expected_size_in_blocks;
184 static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
185 /* Receive packets */
186 uchar *net_rx_packets[PKTBUFSRX];
187 /* Current UDP RX packet handler */
188 static rxhand_f *udp_packet_handler;
189 /* Current ARP RX packet handler */
190 static rxhand_f *arp_packet_handler;
191 #ifdef CONFIG_CMD_TFTPPUT
192 /* Current ICMP rx handler */
193 static rxhand_icmp_f *packet_icmp_handler;
195 /* Current timeout handler */
196 static thand_f *time_handler;
197 /* Time base value */
198 static ulong time_start;
199 /* Current timeout value */
200 static ulong time_delta;
201 /* THE transmit packet */
202 uchar *net_tx_packet;
204 static int net_check_prereq(enum proto_t protocol);
206 static int net_try_count;
208 int __maybe_unused net_busy_flag;
210 /**********************************************************************/
212 static int on_ipaddr(const char *name, const char *value, enum env_op op,
215 if (flags & H_PROGRAMMATIC)
218 net_ip = string_to_ip(value);
222 U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
224 static int on_gatewayip(const char *name, const char *value, enum env_op op,
227 if (flags & H_PROGRAMMATIC)
230 net_gateway = string_to_ip(value);
234 U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
236 static int on_netmask(const char *name, const char *value, enum env_op op,
239 if (flags & H_PROGRAMMATIC)
242 net_netmask = string_to_ip(value);
246 U_BOOT_ENV_CALLBACK(netmask, on_netmask);
248 static int on_serverip(const char *name, const char *value, enum env_op op,
251 if (flags & H_PROGRAMMATIC)
254 net_server_ip = string_to_ip(value);
258 U_BOOT_ENV_CALLBACK(serverip, on_serverip);
260 static int on_nvlan(const char *name, const char *value, enum env_op op,
263 if (flags & H_PROGRAMMATIC)
266 net_native_vlan = string_to_vlan(value);
270 U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
272 static int on_vlan(const char *name, const char *value, enum env_op op,
275 if (flags & H_PROGRAMMATIC)
278 net_our_vlan = string_to_vlan(value);
282 U_BOOT_ENV_CALLBACK(vlan, on_vlan);
284 #if defined(CONFIG_CMD_DNS)
285 static int on_dnsip(const char *name, const char *value, enum env_op op,
288 if (flags & H_PROGRAMMATIC)
291 net_dns_server = string_to_ip(value);
295 U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
299 * Check if autoload is enabled. If so, use either NFS or TFTP to download
302 void net_auto_load(void)
304 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
305 const char *s = env_get("autoload");
307 if (s != NULL && strcmp(s, "NFS") == 0) {
308 if (net_check_prereq(NFS)) {
309 /* We aren't expecting to get a serverip, so just accept the assigned IP */
310 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
311 net_set_state(NETLOOP_SUCCESS);
313 printf("Cannot autoload with NFS\n");
314 net_set_state(NETLOOP_FAIL);
319 * Use NFS to load the bootfile.
325 if (env_get_yesno("autoload") == 0) {
327 * Just use BOOTP/RARP to configure system;
328 * Do not use TFTP to load the bootfile.
330 net_set_state(NETLOOP_SUCCESS);
333 if (net_check_prereq(TFTPGET)) {
334 /* We aren't expecting to get a serverip, so just accept the assigned IP */
335 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
336 net_set_state(NETLOOP_SUCCESS);
338 printf("Cannot autoload with TFTPGET\n");
339 net_set_state(NETLOOP_FAIL);
346 static int net_init_loop(void)
349 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
351 if (IS_ENABLED(CONFIG_IPV6)) {
352 ip6_make_lladdr(&net_link_local_ip6, net_ethaddr);
353 if (!memcmp(&net_ip6, &net_null_addr_ip6,
354 sizeof(struct in6_addr)))
355 memcpy(&net_ip6, &net_link_local_ip6,
356 sizeof(struct in6_addr));
361 * Not ideal, but there's no way to get the actual error, and I
362 * don't feel like fixing all the users of eth_get_dev to deal
370 static void net_clear_handlers(void)
372 net_set_udp_handler(NULL);
373 net_set_arp_handler(NULL);
374 net_set_timeout_handler(0, NULL);
377 static void net_cleanup_loop(void)
379 net_clear_handlers();
384 static int first_call = 1;
388 * Setup packet buffers, aligned correctly.
392 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
393 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
394 for (i = 0; i < PKTBUFSRX; i++) {
395 net_rx_packets[i] = net_tx_packet +
396 (i + 1) * PKTSIZE_ALIGN;
400 net_clear_handlers();
402 /* Only need to setup buffer pointers once. */
404 if (IS_ENABLED(CONFIG_PROT_TCP))
405 tcp_set_tcp_state(TCP_CLOSED);
408 return net_init_loop();
411 /**********************************************************************/
413 * Main network processing loop.
416 int net_loop(enum proto_t protocol)
419 enum net_loop_state prev_net_state = net_state;
421 #if defined(CONFIG_CMD_PING)
422 if (protocol != PING)
423 net_ping_ip.s_addr = 0;
428 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
430 #ifdef CONFIG_PHY_NCSI
431 if (phy_interface_is_ncsi() && protocol != NCSI && !ncsi_active()) {
432 printf("%s: configuring NCSI first\n", __func__);
433 if (net_loop(NCSI) < 0)
435 eth_init_state_only();
440 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
442 if (eth_is_on_demand_init()) {
451 eth_init_state_only();
455 #ifdef CONFIG_USB_KEYBOARD
458 net_set_state(NETLOOP_CONTINUE);
461 * Start the ball rolling with the given start function. From
462 * here on, this code is a state machine driven by received
463 * packets and timer events.
465 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
468 switch (net_check_prereq(protocol)) {
470 /* network not configured */
472 net_set_state(prev_net_state);
476 /* network device not configured */
481 net_boot_file_size = 0;
483 #ifdef CONFIG_CMD_TFTPBOOT
485 #ifdef CONFIG_CMD_TFTPPUT
488 /* always use ARP to get server ethernet address */
489 tftp_start(protocol);
492 #ifdef CONFIG_CMD_TFTPSRV
497 #ifdef CONFIG_UDP_FUNCTION_FASTBOOT
499 fastboot_start_server();
502 #if defined(CONFIG_CMD_DHCP)
506 dhcp_request(); /* Basically same as BOOTP */
509 #if defined(CONFIG_CMD_BOOTP)
516 #if defined(CONFIG_CMD_RARP)
523 #if defined(CONFIG_CMD_PING)
528 #if defined(CONFIG_CMD_PING6)
533 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
538 #if defined(CONFIG_CMD_WGET)
543 #if defined(CONFIG_CMD_CDP)
548 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
553 #if defined(CONFIG_CMD_DNS)
558 #if defined(CONFIG_CMD_LINK_LOCAL)
563 #if defined(CONFIG_CMD_WOL)
568 #if defined(CONFIG_PHY_NCSI)
570 ncsi_probe_packages();
577 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
583 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
584 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
585 defined(CONFIG_LED_STATUS) && \
586 defined(CONFIG_LED_STATUS_RED)
588 * Echo the inverted link state to the fault LED.
590 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
591 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
593 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
594 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
595 #endif /* CONFIG_MII, ... */
596 #ifdef CONFIG_USB_KEYBOARD
601 * Main packet reception loop. Loop receiving packets until
602 * someone sets `net_state' to a state that terminates.
606 if (arp_timeout_check() > 0)
607 time_start = get_timer(0);
609 if (IS_ENABLED(CONFIG_IPV6)) {
610 if (use_ip6 && (ndisc_timeout_check() > 0))
611 time_start = get_timer(0);
615 * Check the ethernet for a new packet. The ethernet
616 * receive routine will process it.
617 * Most drivers return the most recent packet size, but not
618 * errors that may have happened.
623 * Abort if ctrl-c was pressed.
626 /* cancel any ARP that may not have completed */
627 net_arp_wait_packet_ip.s_addr = 0;
631 /* Invalidate the last protocol */
632 eth_set_last_protocol(BOOTP);
635 /* include a debug print as well incase the debug
636 messages are directed to stderr */
637 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
643 * Check for a timeout, and run the timeout handler
647 ((get_timer(0) - time_start) > time_delta)) {
650 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
651 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
652 defined(CONFIG_LED_STATUS) && \
653 defined(CONFIG_LED_STATUS_RED)
655 * Echo the inverted link state to the fault LED.
657 if (miiphy_link(eth_get_dev()->name,
658 CONFIG_SYS_FAULT_MII_ADDR))
659 status_led_set(CONFIG_LED_STATUS_RED,
660 CONFIG_LED_STATUS_OFF);
662 status_led_set(CONFIG_LED_STATUS_RED,
663 CONFIG_LED_STATUS_ON);
664 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
665 #endif /* CONFIG_MII, ... */
666 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
668 time_handler = (thand_f *)0;
672 if (net_state == NETLOOP_FAIL)
673 ret = net_start_again();
676 case NETLOOP_RESTART:
680 case NETLOOP_SUCCESS:
682 if (net_boot_file_size > 0) {
683 printf("Bytes transferred = %d (%x hex)\n",
684 net_boot_file_size, net_boot_file_size);
685 env_set_hex("filesize", net_boot_file_size);
686 env_set_hex("fileaddr", image_load_addr);
688 if (protocol != NETCONS && protocol != NCSI)
691 eth_halt_state_only();
693 eth_set_last_protocol(protocol);
695 ret = net_boot_file_size;
696 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
701 /* Invalidate the last protocol */
702 eth_set_last_protocol(BOOTP);
703 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
707 case NETLOOP_CONTINUE:
713 #ifdef CONFIG_USB_KEYBOARD
716 #ifdef CONFIG_CMD_TFTPPUT
717 /* Clear out the handlers */
718 net_set_udp_handler(NULL);
719 net_set_icmp_handler(NULL);
721 net_set_state(prev_net_state);
723 #if defined(CONFIG_CMD_PCAP)
730 /**********************************************************************/
732 static void start_again_timeout_handler(void)
734 net_set_state(NETLOOP_RESTART);
737 int net_start_again(void)
740 int retry_forever = 0;
741 unsigned long retrycnt = 0;
744 nretry = env_get("netretry");
746 if (!strcmp(nretry, "yes"))
748 else if (!strcmp(nretry, "no"))
750 else if (!strcmp(nretry, "once"))
753 retrycnt = simple_strtoul(nretry, NULL, 0);
759 if ((!retry_forever) && (net_try_count > retrycnt)) {
761 net_set_state(NETLOOP_FAIL);
763 * We don't provide a way for the protocol to return an error,
764 * but this is almost always the reason.
772 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
773 eth_try_another(!net_restarted);
776 if (net_restart_wrap) {
777 net_restart_wrap = 0;
778 if (net_dev_exists) {
779 net_set_timeout_handler(10000UL,
780 start_again_timeout_handler);
781 net_set_udp_handler(NULL);
783 net_set_state(NETLOOP_FAIL);
786 net_set_state(NETLOOP_RESTART);
791 /**********************************************************************/
796 static void dummy_handler(uchar *pkt, unsigned dport,
797 struct in_addr sip, unsigned sport,
802 rxhand_f *net_get_udp_handler(void)
804 return udp_packet_handler;
807 void net_set_udp_handler(rxhand_f *f)
809 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
811 udp_packet_handler = dummy_handler;
813 udp_packet_handler = f;
816 rxhand_f *net_get_arp_handler(void)
818 return arp_packet_handler;
821 void net_set_arp_handler(rxhand_f *f)
823 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
825 arp_packet_handler = dummy_handler;
827 arp_packet_handler = f;
830 #ifdef CONFIG_CMD_TFTPPUT
831 void net_set_icmp_handler(rxhand_icmp_f *f)
833 packet_icmp_handler = f;
837 void net_set_timeout_handler(ulong iv, thand_f *f)
840 debug_cond(DEBUG_INT_STATE,
841 "--- net_loop timeout handler cancelled\n");
842 time_handler = (thand_f *)0;
844 debug_cond(DEBUG_INT_STATE,
845 "--- net_loop timeout handler set (%p)\n", f);
847 time_start = get_timer(0);
848 time_delta = iv * CONFIG_SYS_HZ / 1000;
852 uchar *net_get_async_tx_pkt_buf(void)
854 if (arp_is_waiting())
855 return arp_tx_packet; /* If we are waiting, we already sent */
857 return net_tx_packet;
860 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
863 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
864 IPPROTO_UDP, 0, 0, 0);
867 #if defined(CONFIG_PROT_TCP)
868 int net_send_tcp_packet(int payload_len, int dport, int sport, u8 action,
869 u32 tcp_seq_num, u32 tcp_ack_num)
871 return net_send_ip_packet(net_server_ethaddr, net_server_ip, dport,
872 sport, payload_len, IPPROTO_TCP, action,
873 tcp_seq_num, tcp_ack_num);
877 int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
878 int payload_len, int proto, u8 action, u32 tcp_seq_num,
885 /* make sure the net_tx_packet is initialized (net_init() was called) */
886 assert(net_tx_packet != NULL);
887 if (net_tx_packet == NULL)
890 /* convert to new style broadcast */
891 if (dest.s_addr == 0)
892 dest.s_addr = 0xFFFFFFFF;
894 /* if broadcast, make the ether address a broadcast and don't do ARP */
895 if (dest.s_addr == 0xFFFFFFFF)
896 ether = (uchar *)net_bcast_ethaddr;
898 pkt = (uchar *)net_tx_packet;
900 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
904 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
906 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
908 #if defined(CONFIG_PROT_TCP)
910 pkt_hdr_size = eth_hdr_size
911 + tcp_set_tcp_header(pkt + eth_hdr_size, dport, sport,
912 payload_len, action, tcp_seq_num,
920 /* if MAC address was not discovered yet, do an ARP request */
921 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
922 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
924 /* save the ip and eth addr for the packet to send after arp */
925 net_arp_wait_packet_ip = dest;
926 arp_wait_packet_ethaddr = ether;
928 /* size of the waiting packet */
929 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
931 /* and do the ARP request */
933 arp_wait_timer_start = get_timer(0);
935 return 1; /* waiting */
937 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
939 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
940 return 0; /* transmitted */
944 #ifdef CONFIG_IP_DEFRAG
946 * This function collects fragments in a single packet, according
947 * to the algorithm in RFC815. It returns NULL or the pointer to
948 * a complete packet, in static storage
950 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
952 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
955 * this is the packet being assembled, either data or frag control.
956 * Fragments go by 8 bytes, so this union must be 8 bytes long
959 /* first_byte is address of this structure */
960 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
961 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
962 u16 prev_hole; /* index of prev, 0 == none */
966 static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
968 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
969 static u16 first_hole, total_len;
970 struct hole *payload, *thisfrag, *h, *newh;
971 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
972 uchar *indata = (uchar *)ip;
973 int offset8, start, len, done = 0;
974 u16 ip_off = ntohs(ip->ip_off);
977 * Calling code already rejected <, but we don't have to deal
978 * with an IP fragment with no payload.
980 if (ntohs(ip->ip_len) <= IP_HDR_SIZE)
983 /* payload starts after IP header, this fragment is in there */
984 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
985 offset8 = (ip_off & IP_OFFS);
986 thisfrag = payload + offset8;
988 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
990 /* All but last fragment must have a multiple-of-8 payload. */
991 if ((len & 7) && (ip_off & IP_FLAGS_MFRAG))
994 if (start + len > IP_MAXUDP) /* fragment extends too far */
997 if (!total_len || localip->ip_id != ip->ip_id) {
998 /* new (or different) packet, reset structs */
1000 payload[0].last_byte = ~0;
1001 payload[0].next_hole = 0;
1002 payload[0].prev_hole = 0;
1004 /* any IP header will work, copy the first we received */
1005 memcpy(localip, ip, IP_HDR_SIZE);
1009 * What follows is the reassembly algorithm. We use the payload
1010 * array as a linked list of hole descriptors, as each hole starts
1011 * at a multiple of 8 bytes. However, last byte can be whatever value,
1012 * so it is represented as byte count, not as 8-byte blocks.
1015 h = payload + first_hole;
1016 while (h->last_byte < start) {
1017 if (!h->next_hole) {
1018 /* no hole that far away */
1021 h = payload + h->next_hole;
1024 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1025 if (offset8 + ((len + 7) / 8) <= h - payload) {
1026 /* no overlap with holes (dup fragment?) */
1030 if (!(ip_off & IP_FLAGS_MFRAG)) {
1031 /* no more fragmentss: truncate this (last) hole */
1032 total_len = start + len;
1033 h->last_byte = start + len;
1037 * There is some overlap: fix the hole list. This code deals
1038 * with a fragment that overlaps with two different holes
1039 * (thus being a superset of a previously-received fragment)
1040 * by only using the part of the fragment that fits in the
1043 if (h->last_byte < start + len)
1044 len = h->last_byte - start;
1046 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
1047 /* complete overlap with hole: remove hole */
1048 if (!h->prev_hole && !h->next_hole) {
1049 /* last remaining hole */
1051 } else if (!h->prev_hole) {
1053 first_hole = h->next_hole;
1054 payload[h->next_hole].prev_hole = 0;
1055 } else if (!h->next_hole) {
1057 payload[h->prev_hole].next_hole = 0;
1059 /* in the middle of the list */
1060 payload[h->next_hole].prev_hole = h->prev_hole;
1061 payload[h->prev_hole].next_hole = h->next_hole;
1064 } else if (h->last_byte <= start + len) {
1065 /* overlaps with final part of the hole: shorten this hole */
1066 h->last_byte = start;
1068 } else if (h >= thisfrag) {
1069 /* overlaps with initial part of the hole: move this hole */
1070 newh = thisfrag + (len / 8);
1074 payload[h->next_hole].prev_hole = (h - payload);
1076 payload[h->prev_hole].next_hole = (h - payload);
1078 first_hole = (h - payload);
1081 /* fragment sits in the middle: split the hole */
1082 newh = thisfrag + (len / 8);
1084 h->last_byte = start;
1085 h->next_hole = (newh - payload);
1086 newh->prev_hole = (h - payload);
1087 if (newh->next_hole)
1088 payload[newh->next_hole].prev_hole = (newh - payload);
1091 /* finally copy this fragment and possibly return whole packet */
1092 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
1096 *lenp = total_len + IP_HDR_SIZE;
1097 localip->ip_len = htons(*lenp);
1101 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1104 u16 ip_off = ntohs(ip->ip_off);
1105 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1106 return ip; /* not a fragment */
1107 return __net_defragment(ip, lenp);
1110 #else /* !CONFIG_IP_DEFRAG */
1112 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1115 u16 ip_off = ntohs(ip->ip_off);
1116 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1117 return ip; /* not a fragment */
1123 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1126 * @parma ip IP packet containing the ICMP
1128 static void receive_icmp(struct ip_udp_hdr *ip, int len,
1129 struct in_addr src_ip, struct ethernet_hdr *et)
1131 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
1133 switch (icmph->type) {
1135 if (icmph->code != ICMP_REDIR_HOST)
1137 printf(" ICMP Host Redirect to %pI4 ",
1138 &icmph->un.gateway);
1141 #if defined(CONFIG_CMD_PING)
1142 ping_receive(et, ip, len);
1144 #ifdef CONFIG_CMD_TFTPPUT
1145 if (packet_icmp_handler)
1146 packet_icmp_handler(icmph->type, icmph->code,
1147 ntohs(ip->udp_dst), src_ip,
1148 ntohs(ip->udp_src), icmph->un.data,
1149 ntohs(ip->udp_len));
1155 void net_process_received_packet(uchar *in_packet, int len)
1157 struct ethernet_hdr *et;
1158 struct ip_udp_hdr *ip;
1159 struct in_addr dst_ip;
1160 struct in_addr src_ip;
1162 #if defined(CONFIG_CMD_CDP)
1165 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1167 debug_cond(DEBUG_NET_PKT, "packet received\n");
1169 #if defined(CONFIG_CMD_PCAP)
1170 pcap_post(in_packet, len, false);
1172 net_rx_packet = in_packet;
1173 net_rx_packet_len = len;
1174 et = (struct ethernet_hdr *)in_packet;
1176 /* too small packet? */
1177 if (len < ETHER_HDR_SIZE)
1180 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
1182 (*push_packet)(in_packet, len);
1187 #if defined(CONFIG_CMD_CDP)
1188 /* keep track if packet is CDP */
1189 iscdp = is_cdp_packet(et->et_dest);
1192 myvlanid = ntohs(net_our_vlan);
1193 if (myvlanid == (ushort)-1)
1194 myvlanid = VLAN_NONE;
1195 mynvlanid = ntohs(net_native_vlan);
1196 if (mynvlanid == (ushort)-1)
1197 mynvlanid = VLAN_NONE;
1199 eth_proto = ntohs(et->et_protlen);
1201 if (eth_proto < 1514) {
1202 struct e802_hdr *et802 = (struct e802_hdr *)et;
1204 * Got a 802.2 packet. Check the other protocol field.
1205 * XXX VLAN over 802.2+SNAP not implemented!
1207 eth_proto = ntohs(et802->et_prot);
1209 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
1210 len -= E802_HDR_SIZE;
1212 } else if (eth_proto != PROT_VLAN) { /* normal packet */
1213 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
1214 len -= ETHER_HDR_SIZE;
1216 } else { /* VLAN packet */
1217 struct vlan_ethernet_hdr *vet =
1218 (struct vlan_ethernet_hdr *)et;
1220 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
1222 /* too small packet? */
1223 if (len < VLAN_ETHER_HDR_SIZE)
1226 /* if no VLAN active */
1227 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
1228 #if defined(CONFIG_CMD_CDP)
1234 cti = ntohs(vet->vet_tag);
1235 vlanid = cti & VLAN_IDMASK;
1236 eth_proto = ntohs(vet->vet_type);
1238 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
1239 len -= VLAN_ETHER_HDR_SIZE;
1242 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
1244 #if defined(CONFIG_CMD_CDP)
1246 cdp_receive((uchar *)ip, len);
1251 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1252 if (vlanid == VLAN_NONE)
1253 vlanid = (mynvlanid & VLAN_IDMASK);
1255 if (vlanid != (myvlanid & VLAN_IDMASK))
1259 switch (eth_proto) {
1261 arp_receive(et, ip, len);
1264 #ifdef CONFIG_CMD_RARP
1266 rarp_receive(ip, len);
1269 #if IS_ENABLED(CONFIG_IPV6)
1271 net_ip6_handler(et, (struct ip6_hdr *)ip, len);
1275 debug_cond(DEBUG_NET_PKT, "Got IP\n");
1276 /* Before we start poking the header, make sure it is there */
1277 if (len < IP_HDR_SIZE) {
1278 debug("len bad %d < %lu\n", len,
1279 (ulong)IP_HDR_SIZE);
1282 /* Check the packet length */
1283 if (len < ntohs(ip->ip_len)) {
1284 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
1287 len = ntohs(ip->ip_len);
1288 if (len < IP_HDR_SIZE) {
1289 debug("bad ip->ip_len %d < %d\n", len, (int)IP_HDR_SIZE);
1292 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1293 len, ip->ip_hl_v & 0xff);
1295 /* Can't deal with anything except IPv4 */
1296 if ((ip->ip_hl_v & 0xf0) != 0x40)
1298 /* Can't deal with IP options (headers != 20 bytes) */
1299 if ((ip->ip_hl_v & 0x0f) != 0x05)
1301 /* Check the Checksum of the header */
1302 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
1303 debug("checksum bad\n");
1306 /* If it is not for us, ignore it */
1307 dst_ip = net_read_ip(&ip->ip_dst);
1308 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1309 dst_ip.s_addr != 0xFFFFFFFF) {
1312 /* Read source IP address for later use */
1313 src_ip = net_read_ip(&ip->ip_src);
1315 * The function returns the unchanged packet if it's not
1316 * a fragment, and either the complete packet or NULL if
1317 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1319 ip = net_defragment(ip, &len);
1323 * watch for ICMP host redirects
1325 * There is no real handler code (yet). We just watch
1326 * for ICMP host redirect messages. In case anybody
1327 * sees these messages: please contact me
1329 * necessary fixes :-)
1331 * Note: in all cases where I have seen this so far
1332 * it was a problem with the router configuration,
1333 * for instance when a router was configured in the
1334 * BOOTP reply, but the TFTP server was on the same
1335 * subnet. So this is probably a warning that your
1336 * configuration might be wrong. But I'm not really
1337 * sure if there aren't any other situations.
1340 * we send a tftp packet to a dead connection, or when
1341 * there is no server at the other end.
1343 if (ip->ip_p == IPPROTO_ICMP) {
1344 receive_icmp(ip, len, src_ip, et);
1346 #if defined(CONFIG_PROT_TCP)
1347 } else if (ip->ip_p == IPPROTO_TCP) {
1348 debug_cond(DEBUG_DEV_PKT,
1349 "TCP PH (to=%pI4, from=%pI4, len=%d)\n",
1350 &dst_ip, &src_ip, len);
1352 rxhand_tcp_f((union tcp_build_pkt *)ip, len);
1355 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1359 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > len - IP_HDR_SIZE)
1362 debug_cond(DEBUG_DEV_PKT,
1363 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1364 &dst_ip, &src_ip, len);
1366 if (IS_ENABLED(CONFIG_UDP_CHECKSUM) && ip->udp_xsum != 0) {
1372 xsum += (ntohs(ip->udp_len));
1373 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1374 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1375 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1376 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
1378 sumlen = ntohs(ip->udp_len);
1379 sumptr = (u8 *)&ip->udp_src;
1381 while (sumlen > 1) {
1382 /* inlined ntohs() to avoid alignment errors */
1383 xsum += (sumptr[0] << 8) + sumptr[1];
1388 xsum += (sumptr[0] << 8) + sumptr[0];
1389 while ((xsum >> 16) != 0) {
1390 xsum = (xsum & 0x0000ffff) +
1391 ((xsum >> 16) & 0x0000ffff);
1393 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1394 printf(" UDP wrong checksum %08lx %08x\n",
1395 xsum, ntohs(ip->udp_xsum));
1400 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
1401 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1405 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1408 * IP header OK. Pass the packet to the current handler.
1410 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1414 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1416 #ifdef CONFIG_CMD_WOL
1418 wol_receive(ip, len);
1421 #ifdef CONFIG_PHY_NCSI
1423 ncsi_receive(et, ip, len);
1429 /**********************************************************************/
1431 static int net_check_prereq(enum proto_t protocol)
1435 #if defined(CONFIG_CMD_PING)
1437 if (net_ping_ip.s_addr == 0) {
1438 puts("*** ERROR: ping address not given\n");
1443 #if defined(CONFIG_CMD_PING6)
1445 if (ip6_is_unspecified_addr(&net_ping_ip6)) {
1446 puts("*** ERROR: ping address not given\n");
1451 #if defined(CONFIG_CMD_DNS)
1453 if (net_dns_server.s_addr == 0) {
1454 puts("*** ERROR: DNS server address not given\n");
1459 #if defined(CONFIG_PROT_UDP)
1466 #if defined(CONFIG_CMD_NFS)
1472 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1473 if (!memcmp(&net_server_ip6, &net_null_addr_ip6,
1474 sizeof(struct in6_addr)) &&
1475 !strchr(net_boot_file_name, '[')) {
1476 puts("*** ERROR: `serverip6' not set\n");
1479 } else if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
1480 puts("*** ERROR: `serverip' not set\n");
1483 #if defined(CONFIG_CMD_PING) || \
1484 defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
1492 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1493 if (!memcmp(&net_link_local_ip6, &net_null_addr_ip6,
1494 sizeof(struct in6_addr))) {
1495 puts("*** ERROR: `ip6addr` not set\n");
1498 } else if (net_ip.s_addr == 0) {
1499 puts("*** ERROR: `ipaddr' not set\n");
1504 #ifdef CONFIG_CMD_RARP
1507 #ifdef CONFIG_PHY_NCSI
1514 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
1515 int num = eth_get_dev_index();
1519 puts("*** ERROR: No ethernet found.\n");
1522 puts("*** ERROR: `ethaddr' not set\n");
1525 printf("*** ERROR: `eth%daddr' not set\n",
1539 /**********************************************************************/
1542 net_eth_hdr_size(void)
1546 myvlanid = ntohs(net_our_vlan);
1547 if (myvlanid == (ushort)-1)
1548 myvlanid = VLAN_NONE;
1550 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1551 VLAN_ETHER_HDR_SIZE;
1554 int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
1556 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1559 myvlanid = ntohs(net_our_vlan);
1560 if (myvlanid == (ushort)-1)
1561 myvlanid = VLAN_NONE;
1563 memcpy(et->et_dest, dest_ethaddr, 6);
1564 memcpy(et->et_src, net_ethaddr, 6);
1565 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1566 et->et_protlen = htons(prot);
1567 return ETHER_HDR_SIZE;
1569 struct vlan_ethernet_hdr *vet =
1570 (struct vlan_ethernet_hdr *)xet;
1572 vet->vet_vlan_type = htons(PROT_VLAN);
1573 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1574 vet->vet_type = htons(prot);
1575 return VLAN_ETHER_HDR_SIZE;
1579 int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1583 memcpy(et->et_dest, addr, 6);
1584 memcpy(et->et_src, net_ethaddr, 6);
1585 protlen = ntohs(et->et_protlen);
1586 if (protlen == PROT_VLAN) {
1587 struct vlan_ethernet_hdr *vet =
1588 (struct vlan_ethernet_hdr *)et;
1589 vet->vet_type = htons(prot);
1590 return VLAN_ETHER_HDR_SIZE;
1591 } else if (protlen > 1514) {
1592 et->et_protlen = htons(prot);
1593 return ETHER_HDR_SIZE;
1596 struct e802_hdr *et802 = (struct e802_hdr *)et;
1597 et802->et_prot = htons(prot);
1598 return E802_HDR_SIZE;
1602 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1603 u16 pkt_len, u8 proto)
1605 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1608 * Construct an IP header.
1610 /* IP_HDR_SIZE / 4 (not including UDP) */
1613 ip->ip_len = htons(pkt_len);
1615 ip->ip_id = htons(net_ip_id++);
1616 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1619 /* already in network byte order */
1620 net_copy_ip((void *)&ip->ip_src, &source);
1621 /* already in network byte order */
1622 net_copy_ip((void *)&ip->ip_dst, &dest);
1624 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
1627 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
1630 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1633 * If the data is an odd number of bytes, zero the
1634 * byte after the last byte so that the checksum
1638 pkt[IP_UDP_HDR_SIZE + len] = 0;
1640 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1643 ip->udp_src = htons(sport);
1644 ip->udp_dst = htons(dport);
1645 ip->udp_len = htons(UDP_HDR_SIZE + len);
1649 void copy_filename(char *dst, const char *src, int size)
1651 if (src && *src && (*src == '"')) {
1656 while ((--size > 0) && src && *src && (*src != '"'))
1661 int is_serverip_in_cmd(void)
1663 return !!strchr(net_boot_file_name, ':');
1666 int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1672 if (net_boot_file_name[0] == '\0')
1675 colon = strchr(net_boot_file_name, ':');
1677 ip = string_to_ip(net_boot_file_name);
1678 if (ipaddr && ip.s_addr)
1682 strncpy(filename, colon + 1, max_len);
1684 strncpy(filename, net_boot_file_name, max_len);
1686 filename[max_len - 1] = '\0';
1691 void ip_to_string(struct in_addr x, char *s)
1693 x.s_addr = ntohl(x.s_addr);
1694 sprintf(s, "%d.%d.%d.%d",
1695 (int) ((x.s_addr >> 24) & 0xff),
1696 (int) ((x.s_addr >> 16) & 0xff),
1697 (int) ((x.s_addr >> 8) & 0xff),
1698 (int) ((x.s_addr >> 0) & 0xff)
1702 void vlan_to_string(ushort x, char *s)
1706 if (x == (ushort)-1)
1712 sprintf(s, "%d", x & VLAN_IDMASK);
1715 ushort string_to_vlan(const char *s)
1720 return htons(VLAN_NONE);
1722 if (*s < '0' || *s > '9')
1725 id = (ushort)dectoul(s, NULL);
1730 ushort env_get_vlan(char *var)
1732 return string_to_vlan(env_get(var));