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
83 #include <bootstage.h>
87 #include <env_internal.h>
94 #include <net/fastboot_udp.h>
95 #include <net/fastboot_tcp.h>
98 #if defined(CONFIG_CMD_PCAP)
102 #if defined(CONFIG_LED_STATUS)
104 #include <status_led.h>
106 #include <watchdog.h>
107 #include <linux/compiler.h>
108 #include <test/test.h>
110 #include <net/wget.h>
114 #if defined(CONFIG_CMD_DNS)
117 #include "link_local.h"
121 #if defined(CONFIG_CMD_WOL)
125 #include "net_rand.h"
127 /** BOOTP EXTENTIONS **/
129 /* Our subnet mask (0=unknown) */
130 struct in_addr net_netmask;
131 /* Our gateways IP address */
132 struct in_addr net_gateway;
133 /* Our DNS IP address */
134 struct in_addr net_dns_server;
135 #if defined(CONFIG_BOOTP_DNS2)
136 /* Our 2nd DNS IP address */
137 struct in_addr net_dns_server2;
139 /* Indicates whether the pxe path prefix / config file was specified in dhcp option */
140 char *pxelinux_configfile;
142 /** END OF BOOTP EXTENTIONS **/
144 /* Our ethernet address */
146 /* Boot server enet address */
147 u8 net_server_ethaddr[6];
148 /* Our IP addr (0 = unknown) */
149 struct in_addr net_ip;
150 /* Server IP addr (0 = unknown) */
151 struct in_addr net_server_ip;
152 /* Current receive packet */
153 uchar *net_rx_packet;
154 /* Current rx packet length */
155 int net_rx_packet_len;
157 static unsigned net_ip_id;
158 /* Ethernet bcast address */
159 const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
160 const u8 net_null_ethaddr[6];
161 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
162 void (*push_packet)(void *, int len) = 0;
164 /* Network loop state */
165 enum net_loop_state net_state;
166 /* Tried all network devices */
167 int net_restart_wrap;
168 /* Network loop restarted */
169 static int net_restarted;
170 /* At least one device configured */
171 static int net_dev_exists;
173 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
174 /* default is without VLAN */
175 ushort net_our_vlan = 0xFFFF;
177 ushort net_native_vlan = 0xFFFF;
180 char net_boot_file_name[1024];
181 /* Indicates whether the file name was specified on the command line */
182 bool net_boot_file_name_explicit;
183 /* The actual transferred size of the bootfile (in bytes) */
184 u32 net_boot_file_size;
185 /* Boot file size in blocks as reported by the DHCP server */
186 u32 net_boot_file_expected_size_in_blocks;
188 static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
189 /* Receive packets */
190 uchar *net_rx_packets[PKTBUFSRX];
191 /* Current UDP RX packet handler */
192 static rxhand_f *udp_packet_handler;
193 /* Current ARP RX packet handler */
194 static rxhand_f *arp_packet_handler;
195 #ifdef CONFIG_CMD_TFTPPUT
196 /* Current ICMP rx handler */
197 static rxhand_icmp_f *packet_icmp_handler;
199 /* Current timeout handler */
200 static thand_f *time_handler;
201 /* Time base value */
202 static ulong time_start;
203 /* Current timeout value */
204 static ulong time_delta;
205 /* THE transmit packet */
206 uchar *net_tx_packet;
208 static int net_check_prereq(enum proto_t protocol);
210 static int net_try_count;
212 int __maybe_unused net_busy_flag;
214 /**********************************************************************/
216 static int on_ipaddr(const char *name, const char *value, enum env_op op,
219 if (flags & H_PROGRAMMATIC)
222 net_ip = string_to_ip(value);
226 U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
228 static int on_gatewayip(const char *name, const char *value, enum env_op op,
231 if (flags & H_PROGRAMMATIC)
234 net_gateway = string_to_ip(value);
238 U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
240 static int on_netmask(const char *name, const char *value, enum env_op op,
243 if (flags & H_PROGRAMMATIC)
246 net_netmask = string_to_ip(value);
250 U_BOOT_ENV_CALLBACK(netmask, on_netmask);
252 static int on_serverip(const char *name, const char *value, enum env_op op,
255 if (flags & H_PROGRAMMATIC)
258 net_server_ip = string_to_ip(value);
262 U_BOOT_ENV_CALLBACK(serverip, on_serverip);
264 static int on_nvlan(const char *name, const char *value, enum env_op op,
267 if (flags & H_PROGRAMMATIC)
270 net_native_vlan = string_to_vlan(value);
274 U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
276 static int on_vlan(const char *name, const char *value, enum env_op op,
279 if (flags & H_PROGRAMMATIC)
282 net_our_vlan = string_to_vlan(value);
286 U_BOOT_ENV_CALLBACK(vlan, on_vlan);
288 #if defined(CONFIG_CMD_DNS)
289 static int on_dnsip(const char *name, const char *value, enum env_op op,
292 if (flags & H_PROGRAMMATIC)
295 net_dns_server = string_to_ip(value);
299 U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
303 * Check if autoload is enabled. If so, use either NFS or TFTP to download
306 void net_auto_load(void)
308 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
309 const char *s = env_get("autoload");
311 if (s != NULL && strcmp(s, "NFS") == 0) {
312 if (net_check_prereq(NFS)) {
313 /* We aren't expecting to get a serverip, so just accept the assigned IP */
314 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
315 net_set_state(NETLOOP_SUCCESS);
317 printf("Cannot autoload with NFS\n");
318 net_set_state(NETLOOP_FAIL);
323 * Use NFS to load the bootfile.
329 if (env_get_yesno("autoload") == 0) {
331 * Just use BOOTP/RARP to configure system;
332 * Do not use TFTP to load the bootfile.
334 net_set_state(NETLOOP_SUCCESS);
337 if (net_check_prereq(TFTPGET)) {
338 /* We aren't expecting to get a serverip, so just accept the assigned IP */
339 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
340 net_set_state(NETLOOP_SUCCESS);
342 printf("Cannot autoload with TFTPGET\n");
343 net_set_state(NETLOOP_FAIL);
350 static int net_init_loop(void)
352 static bool first_call = true;
355 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
357 if (IS_ENABLED(CONFIG_IPV6)) {
358 ip6_make_lladdr(&net_link_local_ip6, net_ethaddr);
359 if (!memcmp(&net_ip6, &net_null_addr_ip6,
360 sizeof(struct in6_addr)))
361 memcpy(&net_ip6, &net_link_local_ip6,
362 sizeof(struct in6_addr));
367 * Not ideal, but there's no way to get the actual error, and I
368 * don't feel like fixing all the users of eth_get_dev to deal
373 if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
374 if (first_call && use_ip6) {
376 srand_mac(); /* This is for rand used in ip6_send_rs. */
382 static void net_clear_handlers(void)
384 net_set_udp_handler(NULL);
385 net_set_arp_handler(NULL);
386 net_set_timeout_handler(0, NULL);
389 static void net_cleanup_loop(void)
391 net_clear_handlers();
396 static int first_call = 1;
400 * Setup packet buffers, aligned correctly.
404 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
405 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
406 for (i = 0; i < PKTBUFSRX; i++) {
407 net_rx_packets[i] = net_tx_packet +
408 (i + 1) * PKTSIZE_ALIGN;
412 net_clear_handlers();
414 /* Only need to setup buffer pointers once. */
416 if (IS_ENABLED(CONFIG_PROT_TCP))
417 tcp_set_tcp_state(TCP_CLOSED);
420 return net_init_loop();
423 /**********************************************************************/
425 * Main network processing loop.
428 int net_loop(enum proto_t protocol)
431 enum net_loop_state prev_net_state = net_state;
433 #if defined(CONFIG_CMD_PING)
434 if (protocol != PING)
435 net_ping_ip.s_addr = 0;
440 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
442 #ifdef CONFIG_PHY_NCSI
443 if (phy_interface_is_ncsi() && protocol != NCSI && !ncsi_active()) {
444 printf("%s: configuring NCSI first\n", __func__);
445 if (net_loop(NCSI) < 0)
447 eth_init_state_only();
452 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
454 if (eth_is_on_demand_init()) {
463 eth_init_state_only();
467 #ifdef CONFIG_USB_KEYBOARD
470 net_set_state(NETLOOP_CONTINUE);
473 * Start the ball rolling with the given start function. From
474 * here on, this code is a state machine driven by received
475 * packets and timer events.
477 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
480 if (!test_eth_enabled())
483 switch (net_check_prereq(protocol)) {
485 /* network not configured */
487 net_set_state(prev_net_state);
491 /* network device not configured */
496 net_boot_file_size = 0;
498 #ifdef CONFIG_CMD_TFTPBOOT
500 #ifdef CONFIG_CMD_TFTPPUT
503 /* always use ARP to get server ethernet address */
504 tftp_start(protocol);
507 #ifdef CONFIG_CMD_TFTPSRV
512 #if CONFIG_IS_ENABLED(UDP_FUNCTION_FASTBOOT)
514 fastboot_udp_start_server();
517 #if CONFIG_IS_ENABLED(TCP_FUNCTION_FASTBOOT)
519 fastboot_tcp_start_server();
522 #if defined(CONFIG_CMD_DHCP)
526 dhcp_request(); /* Basically same as BOOTP */
530 if (IS_ENABLED(CONFIG_CMD_DHCP6))
533 #if defined(CONFIG_CMD_BOOTP)
540 #if defined(CONFIG_CMD_RARP)
547 #if defined(CONFIG_CMD_PING)
552 #if defined(CONFIG_CMD_PING6)
557 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
562 #if defined(CONFIG_CMD_WGET)
567 #if defined(CONFIG_CMD_CDP)
572 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
577 #if defined(CONFIG_CMD_DNS)
582 #if defined(CONFIG_CMD_LINK_LOCAL)
587 #if defined(CONFIG_CMD_WOL)
592 #if defined(CONFIG_PHY_NCSI)
594 ncsi_probe_packages();
598 if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
605 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
611 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
612 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
613 defined(CONFIG_LED_STATUS) && \
614 defined(CONFIG_LED_STATUS_RED)
616 * Echo the inverted link state to the fault LED.
618 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
619 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
621 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
622 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
623 #endif /* CONFIG_MII, ... */
624 #ifdef CONFIG_USB_KEYBOARD
629 * Main packet reception loop. Loop receiving packets until
630 * someone sets `net_state' to a state that terminates.
634 if (arp_timeout_check() > 0)
635 time_start = get_timer(0);
637 if (IS_ENABLED(CONFIG_IPV6)) {
638 if (use_ip6 && (ndisc_timeout_check() > 0))
639 time_start = get_timer(0);
643 * Check the ethernet for a new packet. The ethernet
644 * receive routine will process it.
645 * Most drivers return the most recent packet size, but not
646 * errors that may have happened.
651 * Abort if ctrl-c was pressed.
654 /* cancel any ARP that may not have completed */
655 net_arp_wait_packet_ip.s_addr = 0;
659 /* Invalidate the last protocol */
660 eth_set_last_protocol(BOOTP);
663 /* include a debug print as well incase the debug
664 messages are directed to stderr */
665 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
671 * Check for a timeout, and run the timeout handler
675 ((get_timer(0) - time_start) > time_delta)) {
678 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
679 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
680 defined(CONFIG_LED_STATUS) && \
681 defined(CONFIG_LED_STATUS_RED)
683 * Echo the inverted link state to the fault LED.
685 if (miiphy_link(eth_get_dev()->name,
686 CONFIG_SYS_FAULT_MII_ADDR))
687 status_led_set(CONFIG_LED_STATUS_RED,
688 CONFIG_LED_STATUS_OFF);
690 status_led_set(CONFIG_LED_STATUS_RED,
691 CONFIG_LED_STATUS_ON);
692 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
693 #endif /* CONFIG_MII, ... */
694 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
696 time_handler = (thand_f *)0;
698 } else if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
699 if (time_handler && protocol == RS)
700 if (!ip6_is_unspecified_addr(&net_gateway6) &&
701 net_prefix_length != 0) {
702 net_set_state(NETLOOP_SUCCESS);
703 net_set_timeout_handler(0, NULL);
706 if (net_state == NETLOOP_FAIL)
707 ret = net_start_again();
710 case NETLOOP_RESTART:
714 case NETLOOP_SUCCESS:
716 if (net_boot_file_size > 0) {
717 printf("Bytes transferred = %u (%x hex)\n",
718 net_boot_file_size, net_boot_file_size);
719 env_set_hex("filesize", net_boot_file_size);
720 env_set_hex("fileaddr", image_load_addr);
722 if (protocol != NETCONS && protocol != NCSI)
725 eth_halt_state_only();
727 eth_set_last_protocol(protocol);
729 ret = net_boot_file_size;
730 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
735 /* Invalidate the last protocol */
736 eth_set_last_protocol(BOOTP);
737 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
741 case NETLOOP_CONTINUE:
747 #ifdef CONFIG_USB_KEYBOARD
750 #ifdef CONFIG_CMD_TFTPPUT
751 /* Clear out the handlers */
752 net_set_udp_handler(NULL);
753 net_set_icmp_handler(NULL);
755 net_set_state(prev_net_state);
757 #if defined(CONFIG_CMD_PCAP)
764 /**********************************************************************/
766 static void start_again_timeout_handler(void)
768 net_set_state(NETLOOP_RESTART);
771 int net_start_again(void)
774 int retry_forever = 0;
775 unsigned long retrycnt = 0;
778 nretry = env_get("netretry");
780 if (!strcmp(nretry, "yes"))
782 else if (!strcmp(nretry, "no"))
784 else if (!strcmp(nretry, "once"))
787 retrycnt = simple_strtoul(nretry, NULL, 0);
793 if ((!retry_forever) && (net_try_count > retrycnt)) {
795 net_set_state(NETLOOP_FAIL);
797 * We don't provide a way for the protocol to return an error,
798 * but this is almost always the reason.
806 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
807 eth_try_another(!net_restarted);
810 if (net_restart_wrap) {
811 net_restart_wrap = 0;
812 if (net_dev_exists) {
813 net_set_timeout_handler(10000UL,
814 start_again_timeout_handler);
815 net_set_udp_handler(NULL);
817 net_set_state(NETLOOP_FAIL);
820 net_set_state(NETLOOP_RESTART);
825 /**********************************************************************/
830 static void dummy_handler(uchar *pkt, unsigned dport,
831 struct in_addr sip, unsigned sport,
836 rxhand_f *net_get_udp_handler(void)
838 return udp_packet_handler;
841 void net_set_udp_handler(rxhand_f *f)
843 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
845 udp_packet_handler = dummy_handler;
847 udp_packet_handler = f;
850 rxhand_f *net_get_arp_handler(void)
852 return arp_packet_handler;
855 void net_set_arp_handler(rxhand_f *f)
857 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
859 arp_packet_handler = dummy_handler;
861 arp_packet_handler = f;
864 #ifdef CONFIG_CMD_TFTPPUT
865 void net_set_icmp_handler(rxhand_icmp_f *f)
867 packet_icmp_handler = f;
871 void net_set_timeout_handler(ulong iv, thand_f *f)
874 debug_cond(DEBUG_INT_STATE,
875 "--- net_loop timeout handler cancelled\n");
876 time_handler = (thand_f *)0;
878 debug_cond(DEBUG_INT_STATE,
879 "--- net_loop timeout handler set (%p)\n", f);
881 time_start = get_timer(0);
882 time_delta = iv * CONFIG_SYS_HZ / 1000;
886 uchar *net_get_async_tx_pkt_buf(void)
888 if (arp_is_waiting())
889 return arp_tx_packet; /* If we are waiting, we already sent */
891 return net_tx_packet;
894 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
897 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
898 IPPROTO_UDP, 0, 0, 0);
901 #if defined(CONFIG_PROT_TCP)
902 int net_send_tcp_packet(int payload_len, int dport, int sport, u8 action,
903 u32 tcp_seq_num, u32 tcp_ack_num)
905 return net_send_ip_packet(net_server_ethaddr, net_server_ip, dport,
906 sport, payload_len, IPPROTO_TCP, action,
907 tcp_seq_num, tcp_ack_num);
911 int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
912 int payload_len, int proto, u8 action, u32 tcp_seq_num,
919 /* make sure the net_tx_packet is initialized (net_init() was called) */
920 assert(net_tx_packet != NULL);
921 if (net_tx_packet == NULL)
924 /* convert to new style broadcast */
925 if (dest.s_addr == 0)
926 dest.s_addr = 0xFFFFFFFF;
928 /* if broadcast, make the ether address a broadcast and don't do ARP */
929 if (dest.s_addr == 0xFFFFFFFF)
930 ether = (uchar *)net_bcast_ethaddr;
932 pkt = (uchar *)net_tx_packet;
934 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
938 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
940 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
942 #if defined(CONFIG_PROT_TCP)
944 pkt_hdr_size = eth_hdr_size
945 + tcp_set_tcp_header(pkt + eth_hdr_size, dport, sport,
946 payload_len, action, tcp_seq_num,
954 /* if MAC address was not discovered yet, do an ARP request */
955 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
956 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
958 /* save the ip and eth addr for the packet to send after arp */
959 net_arp_wait_packet_ip = dest;
960 arp_wait_packet_ethaddr = ether;
962 /* size of the waiting packet */
963 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
965 /* and do the ARP request */
967 arp_wait_timer_start = get_timer(0);
969 return 1; /* waiting */
971 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
973 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
974 return 0; /* transmitted */
978 #ifdef CONFIG_IP_DEFRAG
980 * This function collects fragments in a single packet, according
981 * to the algorithm in RFC815. It returns NULL or the pointer to
982 * a complete packet, in static storage
984 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
986 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
989 * this is the packet being assembled, either data or frag control.
990 * Fragments go by 8 bytes, so this union must be 8 bytes long
993 /* first_byte is address of this structure */
994 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
995 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
996 u16 prev_hole; /* index of prev, 0 == none */
1000 static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
1002 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
1003 static u16 first_hole, total_len;
1004 struct hole *payload, *thisfrag, *h, *newh;
1005 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
1006 uchar *indata = (uchar *)ip;
1007 int offset8, start, len, done = 0;
1008 u16 ip_off = ntohs(ip->ip_off);
1011 * Calling code already rejected <, but we don't have to deal
1012 * with an IP fragment with no payload.
1014 if (ntohs(ip->ip_len) <= IP_HDR_SIZE)
1017 /* payload starts after IP header, this fragment is in there */
1018 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
1019 offset8 = (ip_off & IP_OFFS);
1020 thisfrag = payload + offset8;
1021 start = offset8 * 8;
1022 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
1024 /* All but last fragment must have a multiple-of-8 payload. */
1025 if ((len & 7) && (ip_off & IP_FLAGS_MFRAG))
1028 if (start + len > IP_MAXUDP) /* fragment extends too far */
1031 if (!total_len || localip->ip_id != ip->ip_id) {
1032 /* new (or different) packet, reset structs */
1034 payload[0].last_byte = ~0;
1035 payload[0].next_hole = 0;
1036 payload[0].prev_hole = 0;
1038 /* any IP header will work, copy the first we received */
1039 memcpy(localip, ip, IP_HDR_SIZE);
1043 * What follows is the reassembly algorithm. We use the payload
1044 * array as a linked list of hole descriptors, as each hole starts
1045 * at a multiple of 8 bytes. However, last byte can be whatever value,
1046 * so it is represented as byte count, not as 8-byte blocks.
1049 h = payload + first_hole;
1050 while (h->last_byte < start) {
1051 if (!h->next_hole) {
1052 /* no hole that far away */
1055 h = payload + h->next_hole;
1058 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1059 if (offset8 + ((len + 7) / 8) <= h - payload) {
1060 /* no overlap with holes (dup fragment?) */
1064 if (!(ip_off & IP_FLAGS_MFRAG)) {
1065 /* no more fragmentss: truncate this (last) hole */
1066 total_len = start + len;
1067 h->last_byte = start + len;
1071 * There is some overlap: fix the hole list. This code deals
1072 * with a fragment that overlaps with two different holes
1073 * (thus being a superset of a previously-received fragment)
1074 * by only using the part of the fragment that fits in the
1077 if (h->last_byte < start + len)
1078 len = h->last_byte - start;
1080 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
1081 /* complete overlap with hole: remove hole */
1082 if (!h->prev_hole && !h->next_hole) {
1083 /* last remaining hole */
1085 } else if (!h->prev_hole) {
1087 first_hole = h->next_hole;
1088 payload[h->next_hole].prev_hole = 0;
1089 } else if (!h->next_hole) {
1091 payload[h->prev_hole].next_hole = 0;
1093 /* in the middle of the list */
1094 payload[h->next_hole].prev_hole = h->prev_hole;
1095 payload[h->prev_hole].next_hole = h->next_hole;
1098 } else if (h->last_byte <= start + len) {
1099 /* overlaps with final part of the hole: shorten this hole */
1100 h->last_byte = start;
1102 } else if (h >= thisfrag) {
1103 /* overlaps with initial part of the hole: move this hole */
1104 newh = thisfrag + (len / 8);
1108 payload[h->next_hole].prev_hole = (h - payload);
1110 payload[h->prev_hole].next_hole = (h - payload);
1112 first_hole = (h - payload);
1115 /* fragment sits in the middle: split the hole */
1116 newh = thisfrag + (len / 8);
1118 h->last_byte = start;
1119 h->next_hole = (newh - payload);
1120 newh->prev_hole = (h - payload);
1121 if (newh->next_hole)
1122 payload[newh->next_hole].prev_hole = (newh - payload);
1125 /* finally copy this fragment and possibly return whole packet */
1126 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
1130 *lenp = total_len + IP_HDR_SIZE;
1131 localip->ip_len = htons(*lenp);
1135 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1138 u16 ip_off = ntohs(ip->ip_off);
1139 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1140 return ip; /* not a fragment */
1141 return __net_defragment(ip, lenp);
1144 #else /* !CONFIG_IP_DEFRAG */
1146 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1149 u16 ip_off = ntohs(ip->ip_off);
1150 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1151 return ip; /* not a fragment */
1157 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1160 * @parma ip IP packet containing the ICMP
1162 static void receive_icmp(struct ip_udp_hdr *ip, int len,
1163 struct in_addr src_ip, struct ethernet_hdr *et)
1165 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
1167 switch (icmph->type) {
1169 if (icmph->code != ICMP_REDIR_HOST)
1171 printf(" ICMP Host Redirect to %pI4 ",
1172 &icmph->un.gateway);
1175 #if defined(CONFIG_CMD_PING)
1176 ping_receive(et, ip, len);
1178 #ifdef CONFIG_CMD_TFTPPUT
1179 if (packet_icmp_handler)
1180 packet_icmp_handler(icmph->type, icmph->code,
1181 ntohs(ip->udp_dst), src_ip,
1182 ntohs(ip->udp_src), icmph->un.data,
1183 ntohs(ip->udp_len));
1189 void net_process_received_packet(uchar *in_packet, int len)
1191 struct ethernet_hdr *et;
1192 struct ip_udp_hdr *ip;
1193 struct in_addr dst_ip;
1194 struct in_addr src_ip;
1196 #if defined(CONFIG_CMD_CDP)
1199 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1201 debug_cond(DEBUG_NET_PKT, "packet received\n");
1202 if (DEBUG_NET_PKT_TRACE)
1203 print_hex_dump_bytes("rx: ", DUMP_PREFIX_OFFSET, in_packet,
1206 #if defined(CONFIG_CMD_PCAP)
1207 pcap_post(in_packet, len, false);
1209 net_rx_packet = in_packet;
1210 net_rx_packet_len = len;
1211 et = (struct ethernet_hdr *)in_packet;
1213 /* too small packet? */
1214 if (len < ETHER_HDR_SIZE)
1217 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
1219 (*push_packet)(in_packet, len);
1224 #if defined(CONFIG_CMD_CDP)
1225 /* keep track if packet is CDP */
1226 iscdp = is_cdp_packet(et->et_dest);
1229 myvlanid = ntohs(net_our_vlan);
1230 if (myvlanid == (ushort)-1)
1231 myvlanid = VLAN_NONE;
1232 mynvlanid = ntohs(net_native_vlan);
1233 if (mynvlanid == (ushort)-1)
1234 mynvlanid = VLAN_NONE;
1236 eth_proto = ntohs(et->et_protlen);
1238 if (eth_proto < 1514) {
1239 struct e802_hdr *et802 = (struct e802_hdr *)et;
1241 * Got a 802.2 packet. Check the other protocol field.
1242 * XXX VLAN over 802.2+SNAP not implemented!
1244 eth_proto = ntohs(et802->et_prot);
1246 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
1247 len -= E802_HDR_SIZE;
1249 } else if (eth_proto != PROT_VLAN) { /* normal packet */
1250 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
1251 len -= ETHER_HDR_SIZE;
1253 } else { /* VLAN packet */
1254 struct vlan_ethernet_hdr *vet =
1255 (struct vlan_ethernet_hdr *)et;
1257 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
1259 /* too small packet? */
1260 if (len < VLAN_ETHER_HDR_SIZE)
1263 /* if no VLAN active */
1264 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
1265 #if defined(CONFIG_CMD_CDP)
1271 cti = ntohs(vet->vet_tag);
1272 vlanid = cti & VLAN_IDMASK;
1273 eth_proto = ntohs(vet->vet_type);
1275 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
1276 len -= VLAN_ETHER_HDR_SIZE;
1279 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
1281 #if defined(CONFIG_CMD_CDP)
1283 cdp_receive((uchar *)ip, len);
1288 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1289 if (vlanid == VLAN_NONE)
1290 vlanid = (mynvlanid & VLAN_IDMASK);
1292 if (vlanid != (myvlanid & VLAN_IDMASK))
1296 switch (eth_proto) {
1298 arp_receive(et, ip, len);
1301 #ifdef CONFIG_CMD_RARP
1303 rarp_receive(ip, len);
1306 #if IS_ENABLED(CONFIG_IPV6)
1308 net_ip6_handler(et, (struct ip6_hdr *)ip, len);
1312 debug_cond(DEBUG_NET_PKT, "Got IP\n");
1313 /* Before we start poking the header, make sure it is there */
1314 if (len < IP_HDR_SIZE) {
1315 debug("len bad %d < %lu\n", len,
1316 (ulong)IP_HDR_SIZE);
1319 /* Check the packet length */
1320 if (len < ntohs(ip->ip_len)) {
1321 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
1324 len = ntohs(ip->ip_len);
1325 if (len < IP_HDR_SIZE) {
1326 debug("bad ip->ip_len %d < %d\n", len, (int)IP_HDR_SIZE);
1329 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1330 len, ip->ip_hl_v & 0xff);
1332 /* Can't deal with anything except IPv4 */
1333 if ((ip->ip_hl_v & 0xf0) != 0x40)
1335 /* Can't deal with IP options (headers != 20 bytes) */
1336 if ((ip->ip_hl_v & 0x0f) != 0x05)
1338 /* Check the Checksum of the header */
1339 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
1340 debug("checksum bad\n");
1343 /* If it is not for us, ignore it */
1344 dst_ip = net_read_ip(&ip->ip_dst);
1345 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1346 dst_ip.s_addr != 0xFFFFFFFF) {
1349 /* Read source IP address for later use */
1350 src_ip = net_read_ip(&ip->ip_src);
1352 * The function returns the unchanged packet if it's not
1353 * a fragment, and either the complete packet or NULL if
1354 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1356 ip = net_defragment(ip, &len);
1360 * watch for ICMP host redirects
1362 * There is no real handler code (yet). We just watch
1363 * for ICMP host redirect messages. In case anybody
1364 * sees these messages: please contact me
1366 * necessary fixes :-)
1368 * Note: in all cases where I have seen this so far
1369 * it was a problem with the router configuration,
1370 * for instance when a router was configured in the
1371 * BOOTP reply, but the TFTP server was on the same
1372 * subnet. So this is probably a warning that your
1373 * configuration might be wrong. But I'm not really
1374 * sure if there aren't any other situations.
1377 * we send a tftp packet to a dead connection, or when
1378 * there is no server at the other end.
1380 if (ip->ip_p == IPPROTO_ICMP) {
1381 receive_icmp(ip, len, src_ip, et);
1383 #if defined(CONFIG_PROT_TCP)
1384 } else if (ip->ip_p == IPPROTO_TCP) {
1385 debug_cond(DEBUG_DEV_PKT,
1386 "TCP PH (to=%pI4, from=%pI4, len=%d)\n",
1387 &dst_ip, &src_ip, len);
1389 rxhand_tcp_f((union tcp_build_pkt *)ip, len);
1392 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1396 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > len - IP_HDR_SIZE)
1399 debug_cond(DEBUG_DEV_PKT,
1400 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1401 &dst_ip, &src_ip, len);
1403 if (IS_ENABLED(CONFIG_UDP_CHECKSUM) && ip->udp_xsum != 0) {
1409 xsum += (ntohs(ip->udp_len));
1410 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1411 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1412 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1413 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
1415 sumlen = ntohs(ip->udp_len);
1416 sumptr = (u8 *)&ip->udp_src;
1418 while (sumlen > 1) {
1419 /* inlined ntohs() to avoid alignment errors */
1420 xsum += (sumptr[0] << 8) + sumptr[1];
1425 xsum += (sumptr[0] << 8) + sumptr[0];
1426 while ((xsum >> 16) != 0) {
1427 xsum = (xsum & 0x0000ffff) +
1428 ((xsum >> 16) & 0x0000ffff);
1430 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1431 printf(" UDP wrong checksum %08lx %08x\n",
1432 xsum, ntohs(ip->udp_xsum));
1437 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
1438 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1442 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1445 * IP header OK. Pass the packet to the current handler.
1447 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1451 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1453 #ifdef CONFIG_CMD_WOL
1455 wol_receive(ip, len);
1458 #ifdef CONFIG_PHY_NCSI
1460 ncsi_receive(et, ip, len);
1466 /**********************************************************************/
1468 static int net_check_prereq(enum proto_t protocol)
1472 #if defined(CONFIG_CMD_PING)
1474 if (net_ping_ip.s_addr == 0) {
1475 puts("*** ERROR: ping address not given\n");
1480 #if defined(CONFIG_CMD_PING6)
1482 if (ip6_is_unspecified_addr(&net_ping_ip6)) {
1483 puts("*** ERROR: ping address not given\n");
1488 #if defined(CONFIG_CMD_DNS)
1490 if (net_dns_server.s_addr == 0) {
1491 puts("*** ERROR: DNS server address not given\n");
1496 #if defined(CONFIG_PROT_UDP)
1503 #if defined(CONFIG_CMD_NFS)
1509 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1510 if (!memcmp(&net_server_ip6, &net_null_addr_ip6,
1511 sizeof(struct in6_addr)) &&
1512 !strchr(net_boot_file_name, '[')) {
1513 puts("*** ERROR: `serverip6' not set\n");
1516 } else if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
1517 puts("*** ERROR: `serverip' not set\n");
1520 #if defined(CONFIG_CMD_PING) || \
1521 defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
1530 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1531 if (!memcmp(&net_link_local_ip6, &net_null_addr_ip6,
1532 sizeof(struct in6_addr))) {
1533 puts("*** ERROR: `ip6addr` not set\n");
1536 } else if (net_ip.s_addr == 0) {
1537 puts("*** ERROR: `ipaddr' not set\n");
1542 #ifdef CONFIG_CMD_RARP
1545 #ifdef CONFIG_PHY_NCSI
1552 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
1553 int num = eth_get_dev_index();
1557 puts("*** ERROR: No ethernet found.\n");
1560 puts("*** ERROR: `ethaddr' not set\n");
1563 printf("*** ERROR: `eth%daddr' not set\n",
1577 /**********************************************************************/
1580 net_eth_hdr_size(void)
1584 myvlanid = ntohs(net_our_vlan);
1585 if (myvlanid == (ushort)-1)
1586 myvlanid = VLAN_NONE;
1588 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1589 VLAN_ETHER_HDR_SIZE;
1592 int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
1594 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1597 myvlanid = ntohs(net_our_vlan);
1598 if (myvlanid == (ushort)-1)
1599 myvlanid = VLAN_NONE;
1601 memcpy(et->et_dest, dest_ethaddr, 6);
1602 memcpy(et->et_src, net_ethaddr, 6);
1603 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1604 et->et_protlen = htons(prot);
1605 return ETHER_HDR_SIZE;
1607 struct vlan_ethernet_hdr *vet =
1608 (struct vlan_ethernet_hdr *)xet;
1610 vet->vet_vlan_type = htons(PROT_VLAN);
1611 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1612 vet->vet_type = htons(prot);
1613 return VLAN_ETHER_HDR_SIZE;
1617 int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1621 memcpy(et->et_dest, addr, 6);
1622 memcpy(et->et_src, net_ethaddr, 6);
1623 protlen = ntohs(et->et_protlen);
1624 if (protlen == PROT_VLAN) {
1625 struct vlan_ethernet_hdr *vet =
1626 (struct vlan_ethernet_hdr *)et;
1627 vet->vet_type = htons(prot);
1628 return VLAN_ETHER_HDR_SIZE;
1629 } else if (protlen > 1514) {
1630 et->et_protlen = htons(prot);
1631 return ETHER_HDR_SIZE;
1634 struct e802_hdr *et802 = (struct e802_hdr *)et;
1635 et802->et_prot = htons(prot);
1636 return E802_HDR_SIZE;
1640 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1641 u16 pkt_len, u8 proto)
1643 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1646 * Construct an IP header.
1648 /* IP_HDR_SIZE / 4 (not including UDP) */
1651 ip->ip_len = htons(pkt_len);
1653 ip->ip_id = htons(net_ip_id++);
1654 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1657 /* already in network byte order */
1658 net_copy_ip((void *)&ip->ip_src, &source);
1659 /* already in network byte order */
1660 net_copy_ip((void *)&ip->ip_dst, &dest);
1662 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
1665 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
1668 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1671 * If the data is an odd number of bytes, zero the
1672 * byte after the last byte so that the checksum
1676 pkt[IP_UDP_HDR_SIZE + len] = 0;
1678 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1681 ip->udp_src = htons(sport);
1682 ip->udp_dst = htons(dport);
1683 ip->udp_len = htons(UDP_HDR_SIZE + len);
1687 void copy_filename(char *dst, const char *src, int size)
1689 if (src && *src && (*src == '"')) {
1694 while ((--size > 0) && src && *src && (*src != '"'))
1699 int is_serverip_in_cmd(void)
1701 return !!strchr(net_boot_file_name, ':');
1704 int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1710 if (net_boot_file_name[0] == '\0')
1713 colon = strchr(net_boot_file_name, ':');
1715 ip = string_to_ip(net_boot_file_name);
1716 if (ipaddr && ip.s_addr)
1720 strncpy(filename, colon + 1, max_len);
1722 strncpy(filename, net_boot_file_name, max_len);
1724 filename[max_len - 1] = '\0';
1729 void ip_to_string(struct in_addr x, char *s)
1731 x.s_addr = ntohl(x.s_addr);
1732 sprintf(s, "%d.%d.%d.%d",
1733 (int) ((x.s_addr >> 24) & 0xff),
1734 (int) ((x.s_addr >> 16) & 0xff),
1735 (int) ((x.s_addr >> 8) & 0xff),
1736 (int) ((x.s_addr >> 0) & 0xff)
1740 void vlan_to_string(ushort x, char *s)
1744 if (x == (ushort)-1)
1750 sprintf(s, "%d", x & VLAN_IDMASK);
1753 ushort string_to_vlan(const char *s)
1758 return htons(VLAN_NONE);
1760 if (*s < '0' || *s > '9')
1763 id = (ushort)dectoul(s, NULL);
1768 ushort env_get_vlan(char *var)
1770 return string_to_vlan(env_get(var));