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
18 #ifndef CONFIG_ARP_TIMEOUT
19 /* Milliseconds before trying ARP again */
20 # define ARP_TIMEOUT 5000UL
22 # define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
26 #ifndef CONFIG_NET_RETRY_COUNT
27 # define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
29 # define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
32 struct in_addr net_arp_wait_packet_ip;
33 static struct in_addr net_arp_wait_reply_ip;
34 /* MAC address of waiting packet's destination */
35 uchar *arp_wait_packet_ethaddr;
36 int arp_wait_tx_packet_size;
37 ulong arp_wait_timer_start;
39 uchar *arp_tx_packet; /* THE ARP transmit packet */
40 static uchar arp_tx_packet_buf[PKTSIZE_ALIGN + PKTALIGN];
44 /* XXX problem with bss workaround */
45 arp_wait_packet_ethaddr = NULL;
46 net_arp_wait_packet_ip.s_addr = 0;
47 net_arp_wait_reply_ip.s_addr = 0;
48 arp_wait_tx_packet_size = 0;
49 arp_tx_packet = &arp_tx_packet_buf[0] + (PKTALIGN - 1);
50 arp_tx_packet -= (ulong)arp_tx_packet % PKTALIGN;
53 void arp_raw_request(struct in_addr source_ip, const uchar *target_ethaddr,
54 struct in_addr target_ip)
60 debug_cond(DEBUG_DEV_PKT, "ARP broadcast %d\n", arp_wait_try);
64 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_ARP);
67 arp = (struct arp_hdr *)pkt;
69 arp->ar_hrd = htons(ARP_ETHER);
70 arp->ar_pro = htons(PROT_IP);
71 arp->ar_hln = ARP_HLEN;
72 arp->ar_pln = ARP_PLEN;
73 arp->ar_op = htons(ARPOP_REQUEST);
75 memcpy(&arp->ar_sha, net_ethaddr, ARP_HLEN); /* source ET addr */
76 net_write_ip(&arp->ar_spa, source_ip); /* source IP addr */
77 memcpy(&arp->ar_tha, target_ethaddr, ARP_HLEN); /* target ET addr */
78 net_write_ip(&arp->ar_tpa, target_ip); /* target IP addr */
80 net_send_packet(arp_tx_packet, eth_hdr_size + ARP_HDR_SIZE);
83 void arp_request(void)
85 if ((net_arp_wait_packet_ip.s_addr & net_netmask.s_addr) !=
86 (net_ip.s_addr & net_netmask.s_addr)) {
87 if (net_gateway.s_addr == 0) {
88 puts("## Warning: gatewayip needed but not set\n");
89 net_arp_wait_reply_ip = net_arp_wait_packet_ip;
91 net_arp_wait_reply_ip = net_gateway;
94 net_arp_wait_reply_ip = net_arp_wait_packet_ip;
97 arp_raw_request(net_ip, net_null_ethaddr, net_arp_wait_reply_ip);
100 int arp_timeout_check(void)
104 if (!arp_is_waiting())
109 /* check for arp timeout */
110 if ((t - arp_wait_timer_start) > ARP_TIMEOUT) {
113 if (arp_wait_try >= ARP_TIMEOUT_COUNT) {
114 puts("\nARP Retry count exceeded; starting again\n");
116 net_set_state(NETLOOP_FAIL);
118 arp_wait_timer_start = t;
125 void arp_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
128 struct in_addr reply_ip_addr;
133 * We have to deal with two types of ARP packets:
134 * - REQUEST packets will be answered by sending our
135 * IP address - if we know it.
136 * - REPLY packates are expected only after we asked
137 * for the TFTP server's or the gateway's ethernet
138 * address; so if we receive such a packet, we set
139 * the server ethernet address
141 debug_cond(DEBUG_NET_PKT, "Got ARP\n");
143 arp = (struct arp_hdr *)ip;
144 if (len < ARP_HDR_SIZE) {
145 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
148 if (ntohs(arp->ar_hrd) != ARP_ETHER)
150 if (ntohs(arp->ar_pro) != PROT_IP)
152 if (arp->ar_hln != ARP_HLEN)
154 if (arp->ar_pln != ARP_PLEN)
157 if (net_ip.s_addr == 0)
160 if (net_read_ip(&arp->ar_tpa).s_addr != net_ip.s_addr)
163 switch (ntohs(arp->ar_op)) {
165 /* reply with our IP address */
166 debug_cond(DEBUG_DEV_PKT, "Got ARP REQUEST, return our IP\n");
167 eth_hdr_size = net_update_ether(et, et->et_src, PROT_ARP);
168 arp->ar_op = htons(ARPOP_REPLY);
169 memcpy(&arp->ar_tha, &arp->ar_sha, ARP_HLEN);
170 net_copy_ip(&arp->ar_tpa, &arp->ar_spa);
171 memcpy(&arp->ar_sha, net_ethaddr, ARP_HLEN);
172 net_copy_ip(&arp->ar_spa, &net_ip);
174 #ifdef CONFIG_CMD_LINK_LOCAL
176 * Work-around for brain-damaged Cisco equipment with
179 * If the requesting IP is not on our subnet, wait 5ms to
180 * reply to ARP request so that our reply will overwrite
181 * the arp-proxy's instead of the other way around.
183 if ((net_read_ip(&arp->ar_tpa).s_addr & net_netmask.s_addr) !=
184 (net_read_ip(&arp->ar_spa).s_addr & net_netmask.s_addr))
187 tx_packet = net_get_async_tx_pkt_buf();
188 memcpy(tx_packet, et, eth_hdr_size + ARP_HDR_SIZE);
189 net_send_packet(tx_packet, eth_hdr_size + ARP_HDR_SIZE);
192 case ARPOP_REPLY: /* arp reply */
193 /* are we waiting for a reply? */
194 if (!arp_is_waiting())
197 #ifdef CONFIG_KEEP_SERVERADDR
198 if (net_server_ip.s_addr == net_arp_wait_packet_ip.s_addr) {
200 sprintf(buf, "%pM", &arp->ar_sha);
201 env_set("serveraddr", buf);
205 reply_ip_addr = net_read_ip(&arp->ar_spa);
207 /* matched waiting packet's address */
208 if (reply_ip_addr.s_addr == net_arp_wait_reply_ip.s_addr) {
209 debug_cond(DEBUG_DEV_PKT,
210 "Got ARP REPLY, set eth addr (%pM)\n",
213 /* save address for later use */
214 if (arp_wait_packet_ethaddr != NULL)
215 memcpy(arp_wait_packet_ethaddr,
216 &arp->ar_sha, ARP_HLEN);
218 net_get_arp_handler()((uchar *)arp, 0, reply_ip_addr,
221 /* set the mac address in the waiting packet's header
223 memcpy(((struct ethernet_hdr *)net_tx_packet)->et_dest,
224 &arp->ar_sha, ARP_HLEN);
225 net_send_packet(net_tx_packet, arp_wait_tx_packet_size);
227 /* no arp request pending now */
228 net_arp_wait_packet_ip.s_addr = 0;
229 arp_wait_tx_packet_size = 0;
230 arp_wait_packet_ethaddr = NULL;
234 debug("Unexpected ARP opcode 0x%x\n",
240 bool arp_is_waiting(void)
242 return !!net_arp_wait_packet_ip.s_addr;