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
84 * Prerequisites: - own ethernet address
85 * We want: - magic packet or timeout
91 #include <bootstage.h>
95 #include <env_internal.h>
100 #include <net/fastboot.h>
101 #include <net/tftp.h>
102 #if defined(CONFIG_CMD_PCAP)
103 #include <net/pcap.h>
105 #if defined(CONFIG_LED_STATUS)
107 #include <status_led.h>
109 #include <watchdog.h>
110 #include <linux/compiler.h>
114 #if defined(CONFIG_CMD_DNS)
117 #include "link_local.h"
121 #if defined(CONFIG_CMD_SNTP)
124 #if defined(CONFIG_CMD_WOL)
128 /** BOOTP EXTENTIONS **/
130 /* Our subnet mask (0=unknown) */
131 struct in_addr net_netmask;
132 /* Our gateways IP address */
133 struct in_addr net_gateway;
134 /* Our DNS IP address */
135 struct in_addr net_dns_server;
136 #if defined(CONFIG_BOOTP_DNS2)
137 /* Our 2nd DNS IP address */
138 struct in_addr net_dns_server2;
141 /** END OF BOOTP EXTENTIONS **/
143 /* Our ethernet address */
145 /* Boot server enet address */
146 u8 net_server_ethaddr[6];
147 /* Our IP addr (0 = unknown) */
148 struct in_addr net_ip;
149 /* Server IP addr (0 = unknown) */
150 struct in_addr net_server_ip;
151 /* Current receive packet */
152 uchar *net_rx_packet;
153 /* Current rx packet length */
154 int net_rx_packet_len;
156 static unsigned net_ip_id;
157 /* Ethernet bcast address */
158 const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
159 const u8 net_null_ethaddr[6];
160 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
161 void (*push_packet)(void *, int len) = 0;
163 /* Network loop state */
164 enum net_loop_state net_state;
165 /* Tried all network devices */
166 int net_restart_wrap;
167 /* Network loop restarted */
168 static int net_restarted;
169 /* At least one device configured */
170 static int net_dev_exists;
172 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
173 /* default is without VLAN */
174 ushort net_our_vlan = 0xFFFF;
176 ushort net_native_vlan = 0xFFFF;
179 char net_boot_file_name[1024];
180 /* Indicates whether the file name was specified on the command line */
181 bool net_boot_file_name_explicit;
182 /* The actual transferred size of the bootfile (in bytes) */
183 u32 net_boot_file_size;
184 /* Boot file size in blocks as reported by the DHCP server */
185 u32 net_boot_file_expected_size_in_blocks;
187 #if defined(CONFIG_CMD_SNTP)
188 /* NTP server IP address */
189 struct in_addr net_ntp_server;
190 /* offset time from UTC */
191 int net_ntp_time_offset;
194 static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
195 /* Receive packets */
196 uchar *net_rx_packets[PKTBUFSRX];
197 /* Current UDP RX packet handler */
198 static rxhand_f *udp_packet_handler;
199 /* Current ARP RX packet handler */
200 static rxhand_f *arp_packet_handler;
201 #ifdef CONFIG_CMD_TFTPPUT
202 /* Current ICMP rx handler */
203 static rxhand_icmp_f *packet_icmp_handler;
205 /* Current timeout handler */
206 static thand_f *time_handler;
207 /* Time base value */
208 static ulong time_start;
209 /* Current timeout value */
210 static ulong time_delta;
211 /* THE transmit packet */
212 uchar *net_tx_packet;
214 static int net_check_prereq(enum proto_t protocol);
216 static int net_try_count;
218 int __maybe_unused net_busy_flag;
220 /**********************************************************************/
222 static int on_ipaddr(const char *name, const char *value, enum env_op op,
225 if (flags & H_PROGRAMMATIC)
228 net_ip = string_to_ip(value);
232 U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
234 static int on_gatewayip(const char *name, const char *value, enum env_op op,
237 if (flags & H_PROGRAMMATIC)
240 net_gateway = string_to_ip(value);
244 U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
246 static int on_netmask(const char *name, const char *value, enum env_op op,
249 if (flags & H_PROGRAMMATIC)
252 net_netmask = string_to_ip(value);
256 U_BOOT_ENV_CALLBACK(netmask, on_netmask);
258 static int on_serverip(const char *name, const char *value, enum env_op op,
261 if (flags & H_PROGRAMMATIC)
264 net_server_ip = string_to_ip(value);
268 U_BOOT_ENV_CALLBACK(serverip, on_serverip);
270 static int on_nvlan(const char *name, const char *value, enum env_op op,
273 if (flags & H_PROGRAMMATIC)
276 net_native_vlan = string_to_vlan(value);
280 U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
282 static int on_vlan(const char *name, const char *value, enum env_op op,
285 if (flags & H_PROGRAMMATIC)
288 net_our_vlan = string_to_vlan(value);
292 U_BOOT_ENV_CALLBACK(vlan, on_vlan);
294 #if defined(CONFIG_CMD_DNS)
295 static int on_dnsip(const char *name, const char *value, enum env_op op,
298 if (flags & H_PROGRAMMATIC)
301 net_dns_server = string_to_ip(value);
305 U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
309 * Check if autoload is enabled. If so, use either NFS or TFTP to download
312 void net_auto_load(void)
314 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
315 const char *s = env_get("autoload");
317 if (s != NULL && strcmp(s, "NFS") == 0) {
318 if (net_check_prereq(NFS)) {
319 /* We aren't expecting to get a serverip, so just accept the assigned IP */
320 #ifdef CONFIG_BOOTP_SERVERIP
321 net_set_state(NETLOOP_SUCCESS);
323 printf("Cannot autoload with NFS\n");
324 net_set_state(NETLOOP_FAIL);
329 * Use NFS to load the bootfile.
335 if (env_get_yesno("autoload") == 0) {
337 * Just use BOOTP/RARP to configure system;
338 * Do not use TFTP to load the bootfile.
340 net_set_state(NETLOOP_SUCCESS);
343 if (net_check_prereq(TFTPGET)) {
344 /* We aren't expecting to get a serverip, so just accept the assigned IP */
345 #ifdef CONFIG_BOOTP_SERVERIP
346 net_set_state(NETLOOP_SUCCESS);
348 printf("Cannot autoload with TFTPGET\n");
349 net_set_state(NETLOOP_FAIL);
356 static void net_init_loop(void)
359 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
364 static void net_clear_handlers(void)
366 net_set_udp_handler(NULL);
367 net_set_arp_handler(NULL);
368 net_set_timeout_handler(0, NULL);
371 static void net_cleanup_loop(void)
373 net_clear_handlers();
378 static int first_call = 1;
382 * Setup packet buffers, aligned correctly.
386 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
387 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
388 for (i = 0; i < PKTBUFSRX; i++) {
389 net_rx_packets[i] = net_tx_packet +
390 (i + 1) * PKTSIZE_ALIGN;
393 net_clear_handlers();
395 /* Only need to setup buffer pointers once. */
402 /**********************************************************************/
404 * Main network processing loop.
407 int net_loop(enum proto_t protocol)
410 enum net_loop_state prev_net_state = net_state;
415 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
417 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
419 if (eth_is_on_demand_init() || protocol != NETCONS) {
428 eth_init_state_only();
431 #ifdef CONFIG_USB_KEYBOARD
434 net_set_state(NETLOOP_CONTINUE);
437 * Start the ball rolling with the given start function. From
438 * here on, this code is a state machine driven by received
439 * packets and timer events.
441 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
444 switch (net_check_prereq(protocol)) {
446 /* network not configured */
448 net_set_state(prev_net_state);
452 /* network device not configured */
457 net_boot_file_size = 0;
459 #ifdef CONFIG_CMD_TFTPBOOT
461 #ifdef CONFIG_CMD_TFTPPUT
464 /* always use ARP to get server ethernet address */
465 tftp_start(protocol);
468 #ifdef CONFIG_CMD_TFTPSRV
473 #ifdef CONFIG_UDP_FUNCTION_FASTBOOT
475 fastboot_start_server();
478 #if defined(CONFIG_CMD_DHCP)
482 dhcp_request(); /* Basically same as BOOTP */
485 #if defined(CONFIG_CMD_BOOTP)
492 #if defined(CONFIG_CMD_RARP)
499 #if defined(CONFIG_CMD_PING)
504 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
509 #if defined(CONFIG_CMD_CDP)
514 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
519 #if defined(CONFIG_CMD_SNTP)
524 #if defined(CONFIG_CMD_DNS)
529 #if defined(CONFIG_CMD_LINK_LOCAL)
534 #if defined(CONFIG_CMD_WOL)
546 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
547 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
548 defined(CONFIG_LED_STATUS) && \
549 defined(CONFIG_LED_STATUS_RED)
551 * Echo the inverted link state to the fault LED.
553 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
554 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
556 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
557 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
558 #endif /* CONFIG_MII, ... */
559 #ifdef CONFIG_USB_KEYBOARD
564 * Main packet reception loop. Loop receiving packets until
565 * someone sets `net_state' to a state that terminates.
569 if (arp_timeout_check() > 0)
570 time_start = get_timer(0);
573 * Check the ethernet for a new packet. The ethernet
574 * receive routine will process it.
575 * Most drivers return the most recent packet size, but not
576 * errors that may have happened.
581 * Abort if ctrl-c was pressed.
584 /* cancel any ARP that may not have completed */
585 net_arp_wait_packet_ip.s_addr = 0;
589 /* Invalidate the last protocol */
590 eth_set_last_protocol(BOOTP);
593 /* include a debug print as well incase the debug
594 messages are directed to stderr */
595 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
601 * Check for a timeout, and run the timeout handler
605 ((get_timer(0) - time_start) > time_delta)) {
608 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
609 #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
610 defined(CONFIG_LED_STATUS) && \
611 defined(CONFIG_LED_STATUS_RED)
613 * Echo the inverted link state to the fault LED.
615 if (miiphy_link(eth_get_dev()->name,
616 CONFIG_SYS_FAULT_MII_ADDR))
617 status_led_set(CONFIG_LED_STATUS_RED,
618 CONFIG_LED_STATUS_OFF);
620 status_led_set(CONFIG_LED_STATUS_RED,
621 CONFIG_LED_STATUS_ON);
622 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
623 #endif /* CONFIG_MII, ... */
624 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
626 time_handler = (thand_f *)0;
630 if (net_state == NETLOOP_FAIL)
631 ret = net_start_again();
634 case NETLOOP_RESTART:
638 case NETLOOP_SUCCESS:
640 if (net_boot_file_size > 0) {
641 printf("Bytes transferred = %d (%x hex)\n",
642 net_boot_file_size, net_boot_file_size);
643 env_set_hex("filesize", net_boot_file_size);
644 env_set_hex("fileaddr", image_load_addr);
646 if (protocol != NETCONS)
649 eth_halt_state_only();
651 eth_set_last_protocol(protocol);
653 ret = net_boot_file_size;
654 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
659 /* Invalidate the last protocol */
660 eth_set_last_protocol(BOOTP);
661 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
665 case NETLOOP_CONTINUE:
671 #ifdef CONFIG_USB_KEYBOARD
674 #ifdef CONFIG_CMD_TFTPPUT
675 /* Clear out the handlers */
676 net_set_udp_handler(NULL);
677 net_set_icmp_handler(NULL);
679 net_set_state(prev_net_state);
681 #if defined(CONFIG_CMD_PCAP)
688 /**********************************************************************/
690 static void start_again_timeout_handler(void)
692 net_set_state(NETLOOP_RESTART);
695 int net_start_again(void)
698 int retry_forever = 0;
699 unsigned long retrycnt = 0;
702 nretry = env_get("netretry");
704 if (!strcmp(nretry, "yes"))
706 else if (!strcmp(nretry, "no"))
708 else if (!strcmp(nretry, "once"))
711 retrycnt = simple_strtoul(nretry, NULL, 0);
717 if ((!retry_forever) && (net_try_count > retrycnt)) {
719 net_set_state(NETLOOP_FAIL);
721 * We don't provide a way for the protocol to return an error,
722 * but this is almost always the reason.
730 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
731 eth_try_another(!net_restarted);
734 if (net_restart_wrap) {
735 net_restart_wrap = 0;
736 if (net_dev_exists) {
737 net_set_timeout_handler(10000UL,
738 start_again_timeout_handler);
739 net_set_udp_handler(NULL);
741 net_set_state(NETLOOP_FAIL);
744 net_set_state(NETLOOP_RESTART);
749 /**********************************************************************/
754 static void dummy_handler(uchar *pkt, unsigned dport,
755 struct in_addr sip, unsigned sport,
760 rxhand_f *net_get_udp_handler(void)
762 return udp_packet_handler;
765 void net_set_udp_handler(rxhand_f *f)
767 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
769 udp_packet_handler = dummy_handler;
771 udp_packet_handler = f;
774 rxhand_f *net_get_arp_handler(void)
776 return arp_packet_handler;
779 void net_set_arp_handler(rxhand_f *f)
781 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
783 arp_packet_handler = dummy_handler;
785 arp_packet_handler = f;
788 #ifdef CONFIG_CMD_TFTPPUT
789 void net_set_icmp_handler(rxhand_icmp_f *f)
791 packet_icmp_handler = f;
795 void net_set_timeout_handler(ulong iv, thand_f *f)
798 debug_cond(DEBUG_INT_STATE,
799 "--- net_loop timeout handler cancelled\n");
800 time_handler = (thand_f *)0;
802 debug_cond(DEBUG_INT_STATE,
803 "--- net_loop timeout handler set (%p)\n", f);
805 time_start = get_timer(0);
806 time_delta = iv * CONFIG_SYS_HZ / 1000;
810 uchar *net_get_async_tx_pkt_buf(void)
812 if (arp_is_waiting())
813 return arp_tx_packet; /* If we are waiting, we already sent */
815 return net_tx_packet;
818 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
821 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
822 IPPROTO_UDP, 0, 0, 0);
825 int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
826 int payload_len, int proto, u8 action, u32 tcp_seq_num,
833 /* make sure the net_tx_packet is initialized (net_init() was called) */
834 assert(net_tx_packet != NULL);
835 if (net_tx_packet == NULL)
838 /* convert to new style broadcast */
839 if (dest.s_addr == 0)
840 dest.s_addr = 0xFFFFFFFF;
842 /* if broadcast, make the ether address a broadcast and don't do ARP */
843 if (dest.s_addr == 0xFFFFFFFF)
844 ether = (uchar *)net_bcast_ethaddr;
846 pkt = (uchar *)net_tx_packet;
848 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
852 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
854 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
860 /* if MAC address was not discovered yet, do an ARP request */
861 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
862 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
864 /* save the ip and eth addr for the packet to send after arp */
865 net_arp_wait_packet_ip = dest;
866 arp_wait_packet_ethaddr = ether;
868 /* size of the waiting packet */
869 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
871 /* and do the ARP request */
873 arp_wait_timer_start = get_timer(0);
875 return 1; /* waiting */
877 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
879 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
880 return 0; /* transmitted */
884 #ifdef CONFIG_IP_DEFRAG
886 * This function collects fragments in a single packet, according
887 * to the algorithm in RFC815. It returns NULL or the pointer to
888 * a complete packet, in static storage
890 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
892 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
895 * this is the packet being assembled, either data or frag control.
896 * Fragments go by 8 bytes, so this union must be 8 bytes long
899 /* first_byte is address of this structure */
900 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
901 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
902 u16 prev_hole; /* index of prev, 0 == none */
906 static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
908 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
909 static u16 first_hole, total_len;
910 struct hole *payload, *thisfrag, *h, *newh;
911 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
912 uchar *indata = (uchar *)ip;
913 int offset8, start, len, done = 0;
914 u16 ip_off = ntohs(ip->ip_off);
916 /* payload starts after IP header, this fragment is in there */
917 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
918 offset8 = (ip_off & IP_OFFS);
919 thisfrag = payload + offset8;
921 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
923 if (start + len > IP_MAXUDP) /* fragment extends too far */
926 if (!total_len || localip->ip_id != ip->ip_id) {
927 /* new (or different) packet, reset structs */
929 payload[0].last_byte = ~0;
930 payload[0].next_hole = 0;
931 payload[0].prev_hole = 0;
933 /* any IP header will work, copy the first we received */
934 memcpy(localip, ip, IP_HDR_SIZE);
938 * What follows is the reassembly algorithm. We use the payload
939 * array as a linked list of hole descriptors, as each hole starts
940 * at a multiple of 8 bytes. However, last byte can be whatever value,
941 * so it is represented as byte count, not as 8-byte blocks.
944 h = payload + first_hole;
945 while (h->last_byte < start) {
947 /* no hole that far away */
950 h = payload + h->next_hole;
953 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
954 if (offset8 + ((len + 7) / 8) <= h - payload) {
955 /* no overlap with holes (dup fragment?) */
959 if (!(ip_off & IP_FLAGS_MFRAG)) {
960 /* no more fragmentss: truncate this (last) hole */
961 total_len = start + len;
962 h->last_byte = start + len;
966 * There is some overlap: fix the hole list. This code doesn't
967 * deal with a fragment that overlaps with two different holes
968 * (thus being a superset of a previously-received fragment).
971 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
972 /* complete overlap with hole: remove hole */
973 if (!h->prev_hole && !h->next_hole) {
974 /* last remaining hole */
976 } else if (!h->prev_hole) {
978 first_hole = h->next_hole;
979 payload[h->next_hole].prev_hole = 0;
980 } else if (!h->next_hole) {
982 payload[h->prev_hole].next_hole = 0;
984 /* in the middle of the list */
985 payload[h->next_hole].prev_hole = h->prev_hole;
986 payload[h->prev_hole].next_hole = h->next_hole;
989 } else if (h->last_byte <= start + len) {
990 /* overlaps with final part of the hole: shorten this hole */
991 h->last_byte = start;
993 } else if (h >= thisfrag) {
994 /* overlaps with initial part of the hole: move this hole */
995 newh = thisfrag + (len / 8);
999 payload[h->next_hole].prev_hole = (h - payload);
1001 payload[h->prev_hole].next_hole = (h - payload);
1003 first_hole = (h - payload);
1006 /* fragment sits in the middle: split the hole */
1007 newh = thisfrag + (len / 8);
1009 h->last_byte = start;
1010 h->next_hole = (newh - payload);
1011 newh->prev_hole = (h - payload);
1012 if (newh->next_hole)
1013 payload[newh->next_hole].prev_hole = (newh - payload);
1016 /* finally copy this fragment and possibly return whole packet */
1017 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
1021 localip->ip_len = htons(total_len);
1022 *lenp = total_len + IP_HDR_SIZE;
1026 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1029 u16 ip_off = ntohs(ip->ip_off);
1030 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1031 return ip; /* not a fragment */
1032 return __net_defragment(ip, lenp);
1035 #else /* !CONFIG_IP_DEFRAG */
1037 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1040 u16 ip_off = ntohs(ip->ip_off);
1041 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1042 return ip; /* not a fragment */
1048 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1051 * @parma ip IP packet containing the ICMP
1053 static void receive_icmp(struct ip_udp_hdr *ip, int len,
1054 struct in_addr src_ip, struct ethernet_hdr *et)
1056 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
1058 switch (icmph->type) {
1060 if (icmph->code != ICMP_REDIR_HOST)
1062 printf(" ICMP Host Redirect to %pI4 ",
1063 &icmph->un.gateway);
1066 #if defined(CONFIG_CMD_PING)
1067 ping_receive(et, ip, len);
1069 #ifdef CONFIG_CMD_TFTPPUT
1070 if (packet_icmp_handler)
1071 packet_icmp_handler(icmph->type, icmph->code,
1072 ntohs(ip->udp_dst), src_ip,
1073 ntohs(ip->udp_src), icmph->un.data,
1074 ntohs(ip->udp_len));
1080 void net_process_received_packet(uchar *in_packet, int len)
1082 struct ethernet_hdr *et;
1083 struct ip_udp_hdr *ip;
1084 struct in_addr dst_ip;
1085 struct in_addr src_ip;
1087 #if defined(CONFIG_CMD_CDP)
1090 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1092 debug_cond(DEBUG_NET_PKT, "packet received\n");
1094 #if defined(CONFIG_CMD_PCAP)
1095 pcap_post(in_packet, len, false);
1097 net_rx_packet = in_packet;
1098 net_rx_packet_len = len;
1099 et = (struct ethernet_hdr *)in_packet;
1101 /* too small packet? */
1102 if (len < ETHER_HDR_SIZE)
1105 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
1107 (*push_packet)(in_packet, len);
1112 #if defined(CONFIG_CMD_CDP)
1113 /* keep track if packet is CDP */
1114 iscdp = is_cdp_packet(et->et_dest);
1117 myvlanid = ntohs(net_our_vlan);
1118 if (myvlanid == (ushort)-1)
1119 myvlanid = VLAN_NONE;
1120 mynvlanid = ntohs(net_native_vlan);
1121 if (mynvlanid == (ushort)-1)
1122 mynvlanid = VLAN_NONE;
1124 eth_proto = ntohs(et->et_protlen);
1126 if (eth_proto < 1514) {
1127 struct e802_hdr *et802 = (struct e802_hdr *)et;
1129 * Got a 802.2 packet. Check the other protocol field.
1130 * XXX VLAN over 802.2+SNAP not implemented!
1132 eth_proto = ntohs(et802->et_prot);
1134 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
1135 len -= E802_HDR_SIZE;
1137 } else if (eth_proto != PROT_VLAN) { /* normal packet */
1138 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
1139 len -= ETHER_HDR_SIZE;
1141 } else { /* VLAN packet */
1142 struct vlan_ethernet_hdr *vet =
1143 (struct vlan_ethernet_hdr *)et;
1145 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
1147 /* too small packet? */
1148 if (len < VLAN_ETHER_HDR_SIZE)
1151 /* if no VLAN active */
1152 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
1153 #if defined(CONFIG_CMD_CDP)
1159 cti = ntohs(vet->vet_tag);
1160 vlanid = cti & VLAN_IDMASK;
1161 eth_proto = ntohs(vet->vet_type);
1163 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
1164 len -= VLAN_ETHER_HDR_SIZE;
1167 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
1169 #if defined(CONFIG_CMD_CDP)
1171 cdp_receive((uchar *)ip, len);
1176 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1177 if (vlanid == VLAN_NONE)
1178 vlanid = (mynvlanid & VLAN_IDMASK);
1180 if (vlanid != (myvlanid & VLAN_IDMASK))
1184 switch (eth_proto) {
1186 arp_receive(et, ip, len);
1189 #ifdef CONFIG_CMD_RARP
1191 rarp_receive(ip, len);
1195 debug_cond(DEBUG_NET_PKT, "Got IP\n");
1196 /* Before we start poking the header, make sure it is there */
1197 if (len < IP_UDP_HDR_SIZE) {
1198 debug("len bad %d < %lu\n", len,
1199 (ulong)IP_UDP_HDR_SIZE);
1202 /* Check the packet length */
1203 if (len < ntohs(ip->ip_len)) {
1204 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
1207 len = ntohs(ip->ip_len);
1208 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1209 len, ip->ip_hl_v & 0xff);
1211 /* Can't deal with anything except IPv4 */
1212 if ((ip->ip_hl_v & 0xf0) != 0x40)
1214 /* Can't deal with IP options (headers != 20 bytes) */
1215 if ((ip->ip_hl_v & 0x0f) > 0x05)
1217 /* Check the Checksum of the header */
1218 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
1219 debug("checksum bad\n");
1222 /* If it is not for us, ignore it */
1223 dst_ip = net_read_ip(&ip->ip_dst);
1224 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1225 dst_ip.s_addr != 0xFFFFFFFF) {
1228 /* Read source IP address for later use */
1229 src_ip = net_read_ip(&ip->ip_src);
1231 * The function returns the unchanged packet if it's not
1232 * a fragment, and either the complete packet or NULL if
1233 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1235 ip = net_defragment(ip, &len);
1239 * watch for ICMP host redirects
1241 * There is no real handler code (yet). We just watch
1242 * for ICMP host redirect messages. In case anybody
1243 * sees these messages: please contact me
1244 * (wd@denx.de), or - even better - send me the
1245 * necessary fixes :-)
1247 * Note: in all cases where I have seen this so far
1248 * it was a problem with the router configuration,
1249 * for instance when a router was configured in the
1250 * BOOTP reply, but the TFTP server was on the same
1251 * subnet. So this is probably a warning that your
1252 * configuration might be wrong. But I'm not really
1253 * sure if there aren't any other situations.
1255 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1256 * we send a tftp packet to a dead connection, or when
1257 * there is no server at the other end.
1259 if (ip->ip_p == IPPROTO_ICMP) {
1260 receive_icmp(ip, len, src_ip, et);
1262 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1266 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > ntohs(ip->ip_len))
1269 debug_cond(DEBUG_DEV_PKT,
1270 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1271 &dst_ip, &src_ip, len);
1273 #ifdef CONFIG_UDP_CHECKSUM
1274 if (ip->udp_xsum != 0) {
1280 xsum += (ntohs(ip->udp_len));
1281 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1282 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1283 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1284 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
1286 sumlen = ntohs(ip->udp_len);
1287 sumptr = (u8 *)&ip->udp_src;
1289 while (sumlen > 1) {
1290 /* inlined ntohs() to avoid alignment errors */
1291 xsum += (sumptr[0] << 8) + sumptr[1];
1296 xsum += (sumptr[0] << 8) + sumptr[0];
1297 while ((xsum >> 16) != 0) {
1298 xsum = (xsum & 0x0000ffff) +
1299 ((xsum >> 16) & 0x0000ffff);
1301 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1302 printf(" UDP wrong checksum %08lx %08x\n",
1303 xsum, ntohs(ip->udp_xsum));
1309 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
1310 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1314 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1317 * IP header OK. Pass the packet to the current handler.
1319 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1323 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1325 #ifdef CONFIG_CMD_WOL
1327 wol_receive(ip, len);
1333 /**********************************************************************/
1335 static int net_check_prereq(enum proto_t protocol)
1339 #if defined(CONFIG_CMD_PING)
1341 if (net_ping_ip.s_addr == 0) {
1342 puts("*** ERROR: ping address not given\n");
1347 #if defined(CONFIG_CMD_SNTP)
1349 if (net_ntp_server.s_addr == 0) {
1350 puts("*** ERROR: NTP server address not given\n");
1355 #if defined(CONFIG_CMD_DNS)
1357 if (net_dns_server.s_addr == 0) {
1358 puts("*** ERROR: DNS server address not given\n");
1363 #if defined(CONFIG_CMD_NFS)
1369 if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
1370 puts("*** ERROR: `serverip' not set\n");
1373 #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1374 defined(CONFIG_CMD_DNS)
1382 if (net_ip.s_addr == 0) {
1383 puts("*** ERROR: `ipaddr' not set\n");
1388 #ifdef CONFIG_CMD_RARP
1395 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
1396 int num = eth_get_dev_index();
1400 puts("*** ERROR: No ethernet found.\n");
1403 puts("*** ERROR: `ethaddr' not set\n");
1406 printf("*** ERROR: `eth%daddr' not set\n",
1420 /**********************************************************************/
1423 net_eth_hdr_size(void)
1427 myvlanid = ntohs(net_our_vlan);
1428 if (myvlanid == (ushort)-1)
1429 myvlanid = VLAN_NONE;
1431 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1432 VLAN_ETHER_HDR_SIZE;
1435 int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
1437 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1440 myvlanid = ntohs(net_our_vlan);
1441 if (myvlanid == (ushort)-1)
1442 myvlanid = VLAN_NONE;
1444 memcpy(et->et_dest, dest_ethaddr, 6);
1445 memcpy(et->et_src, net_ethaddr, 6);
1446 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1447 et->et_protlen = htons(prot);
1448 return ETHER_HDR_SIZE;
1450 struct vlan_ethernet_hdr *vet =
1451 (struct vlan_ethernet_hdr *)xet;
1453 vet->vet_vlan_type = htons(PROT_VLAN);
1454 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1455 vet->vet_type = htons(prot);
1456 return VLAN_ETHER_HDR_SIZE;
1460 int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1464 memcpy(et->et_dest, addr, 6);
1465 memcpy(et->et_src, net_ethaddr, 6);
1466 protlen = ntohs(et->et_protlen);
1467 if (protlen == PROT_VLAN) {
1468 struct vlan_ethernet_hdr *vet =
1469 (struct vlan_ethernet_hdr *)et;
1470 vet->vet_type = htons(prot);
1471 return VLAN_ETHER_HDR_SIZE;
1472 } else if (protlen > 1514) {
1473 et->et_protlen = htons(prot);
1474 return ETHER_HDR_SIZE;
1477 struct e802_hdr *et802 = (struct e802_hdr *)et;
1478 et802->et_prot = htons(prot);
1479 return E802_HDR_SIZE;
1483 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1484 u16 pkt_len, u8 proto)
1486 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1489 * Construct an IP header.
1491 /* IP_HDR_SIZE / 4 (not including UDP) */
1494 ip->ip_len = htons(pkt_len);
1496 ip->ip_id = htons(net_ip_id++);
1497 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1500 /* already in network byte order */
1501 net_copy_ip((void *)&ip->ip_src, &source);
1502 /* already in network byte order */
1503 net_copy_ip((void *)&ip->ip_dst, &dest);
1505 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
1508 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
1511 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1514 * If the data is an odd number of bytes, zero the
1515 * byte after the last byte so that the checksum
1519 pkt[IP_UDP_HDR_SIZE + len] = 0;
1521 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1524 ip->udp_src = htons(sport);
1525 ip->udp_dst = htons(dport);
1526 ip->udp_len = htons(UDP_HDR_SIZE + len);
1530 void copy_filename(char *dst, const char *src, int size)
1532 if (src && *src && (*src == '"')) {
1537 while ((--size > 0) && src && *src && (*src != '"'))
1542 int is_serverip_in_cmd(void)
1544 return !!strchr(net_boot_file_name, ':');
1547 int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1551 if (net_boot_file_name[0] == '\0')
1554 colon = strchr(net_boot_file_name, ':');
1557 *ipaddr = string_to_ip(net_boot_file_name);
1558 strncpy(filename, colon + 1, max_len);
1560 strncpy(filename, net_boot_file_name, max_len);
1562 filename[max_len - 1] = '\0';
1567 void ip_to_string(struct in_addr x, char *s)
1569 x.s_addr = ntohl(x.s_addr);
1570 sprintf(s, "%d.%d.%d.%d",
1571 (int) ((x.s_addr >> 24) & 0xff),
1572 (int) ((x.s_addr >> 16) & 0xff),
1573 (int) ((x.s_addr >> 8) & 0xff),
1574 (int) ((x.s_addr >> 0) & 0xff)
1578 void vlan_to_string(ushort x, char *s)
1582 if (x == (ushort)-1)
1588 sprintf(s, "%d", x & VLAN_IDMASK);
1591 ushort string_to_vlan(const char *s)
1596 return htons(VLAN_NONE);
1598 if (*s < '0' || *s > '9')
1601 id = (ushort)simple_strtoul(s, NULL, 10);
1606 ushort env_get_vlan(char *var)
1608 return string_to_vlan(env_get(var));