]>
Commit | Line | Data |
---|---|---|
d280d3f4 JH |
1 | /* |
2 | * Copied from Linux Monitor (LiMon) - Networking. | |
3 | * | |
4 | * Copyright 1994 - 2000 Neil Russell. | |
5 | * (See License) | |
6 | * Copyright 2000 Roland Borde | |
7 | * Copyright 2000 Paolo Scaffardi | |
8 | * Copyright 2000-2002 Wolfgang Denk, [email protected] | |
9 | */ | |
10 | ||
11 | #include <common.h> | |
12 | ||
13 | #include "arp.h" | |
14 | ||
15 | #ifndef CONFIG_ARP_TIMEOUT | |
16 | /* Milliseconds before trying ARP again */ | |
17 | # define ARP_TIMEOUT 5000UL | |
18 | #else | |
19 | # define ARP_TIMEOUT CONFIG_ARP_TIMEOUT | |
20 | #endif | |
21 | ||
22 | ||
23 | #ifndef CONFIG_NET_RETRY_COUNT | |
24 | # define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */ | |
25 | #else | |
26 | # define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT | |
27 | #endif | |
28 | ||
29 | IPaddr_t NetArpWaitPacketIP; | |
06370590 | 30 | static IPaddr_t NetArpWaitReplyIP; |
d280d3f4 JH |
31 | /* MAC address of waiting packet's destination */ |
32 | uchar *NetArpWaitPacketMAC; | |
d280d3f4 | 33 | int NetArpWaitTxPacketSize; |
d280d3f4 JH |
34 | ulong NetArpWaitTimerStart; |
35 | int NetArpWaitTry; | |
36 | ||
06370590 KP |
37 | static uchar *NetArpTxPacket; /* THE ARP transmit packet */ |
38 | static uchar NetArpPacketBuf[PKTSIZE_ALIGN + PKTALIGN]; | |
e94070c4 | 39 | |
d280d3f4 JH |
40 | void ArpInit(void) |
41 | { | |
42 | /* XXX problem with bss workaround */ | |
43 | NetArpWaitPacketMAC = NULL; | |
44 | NetArpWaitPacketIP = 0; | |
45 | NetArpWaitReplyIP = 0; | |
d280d3f4 | 46 | NetArpWaitTxPacketSize = 0; |
e94070c4 JH |
47 | NetArpTxPacket = &NetArpPacketBuf[0] + (PKTALIGN - 1); |
48 | NetArpTxPacket -= (ulong)NetArpTxPacket % PKTALIGN; | |
d280d3f4 JH |
49 | } |
50 | ||
22804189 JH |
51 | void arp_raw_request(IPaddr_t sourceIP, const uchar *targetEther, |
52 | IPaddr_t targetIP) | |
d280d3f4 JH |
53 | { |
54 | uchar *pkt; | |
738853bb | 55 | struct arp_hdr *arp; |
00f33268 | 56 | int eth_hdr_size; |
d280d3f4 | 57 | |
4ef8d53c | 58 | debug_cond(DEBUG_DEV_PKT, "ARP broadcast %d\n", NetArpWaitTry); |
d280d3f4 | 59 | |
e94070c4 | 60 | pkt = NetArpTxPacket; |
d280d3f4 | 61 | |
00f33268 JH |
62 | eth_hdr_size = NetSetEther(pkt, NetBcastAddr, PROT_ARP); |
63 | pkt += eth_hdr_size; | |
d280d3f4 | 64 | |
738853bb | 65 | arp = (struct arp_hdr *) pkt; |
d280d3f4 JH |
66 | |
67 | arp->ar_hrd = htons(ARP_ETHER); | |
68 | arp->ar_pro = htons(PROT_IP); | |
674bb249 JH |
69 | arp->ar_hln = ARP_HLEN; |
70 | arp->ar_pln = ARP_PLEN; | |
d280d3f4 JH |
71 | arp->ar_op = htons(ARPOP_REQUEST); |
72 | ||
22804189 JH |
73 | memcpy(&arp->ar_sha, NetOurEther, ARP_HLEN); /* source ET addr */ |
74 | NetWriteIP(&arp->ar_spa, sourceIP); /* source IP addr */ | |
75 | memcpy(&arp->ar_tha, targetEther, ARP_HLEN); /* target ET addr */ | |
76 | NetWriteIP(&arp->ar_tpa, targetIP); /* target IP addr */ | |
77 | ||
78 | NetSendPacket(NetArpTxPacket, eth_hdr_size + ARP_HDR_SIZE); | |
79 | } | |
80 | ||
81 | void ArpRequest(void) | |
82 | { | |
d280d3f4 JH |
83 | if ((NetArpWaitPacketIP & NetOurSubnetMask) != |
84 | (NetOurIP & NetOurSubnetMask)) { | |
85 | if (NetOurGatewayIP == 0) { | |
86 | puts("## Warning: gatewayip needed but not set\n"); | |
87 | NetArpWaitReplyIP = NetArpWaitPacketIP; | |
88 | } else { | |
89 | NetArpWaitReplyIP = NetOurGatewayIP; | |
90 | } | |
91 | } else { | |
92 | NetArpWaitReplyIP = NetArpWaitPacketIP; | |
93 | } | |
94 | ||
22804189 | 95 | arp_raw_request(NetOurIP, NetEtherNullAddr, NetArpWaitReplyIP); |
d280d3f4 JH |
96 | } |
97 | ||
98 | void ArpTimeoutCheck(void) | |
99 | { | |
100 | ulong t; | |
101 | ||
102 | if (!NetArpWaitPacketIP) | |
103 | return; | |
104 | ||
105 | t = get_timer(0); | |
106 | ||
107 | /* check for arp timeout */ | |
108 | if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) { | |
109 | NetArpWaitTry++; | |
110 | ||
111 | if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) { | |
112 | puts("\nARP Retry count exceeded; starting again\n"); | |
113 | NetArpWaitTry = 0; | |
114 | NetStartAgain(); | |
115 | } else { | |
116 | NetArpWaitTimerStart = t; | |
117 | ArpRequest(); | |
118 | } | |
119 | } | |
120 | } | |
121 | ||
cb487f56 | 122 | void ArpReceive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len) |
d280d3f4 | 123 | { |
738853bb | 124 | struct arp_hdr *arp; |
1256793b | 125 | IPaddr_t reply_ip_addr; |
d280d3f4 | 126 | uchar *pkt; |
00f33268 | 127 | int eth_hdr_size; |
d280d3f4 JH |
128 | |
129 | /* | |
130 | * We have to deal with two types of ARP packets: | |
131 | * - REQUEST packets will be answered by sending our | |
132 | * IP address - if we know it. | |
133 | * - REPLY packates are expected only after we asked | |
134 | * for the TFTP server's or the gateway's ethernet | |
135 | * address; so if we receive such a packet, we set | |
136 | * the server ethernet address | |
137 | */ | |
4ef8d53c | 138 | debug_cond(DEBUG_NET_PKT, "Got ARP\n"); |
d280d3f4 | 139 | |
738853bb | 140 | arp = (struct arp_hdr *)ip; |
d280d3f4 JH |
141 | if (len < ARP_HDR_SIZE) { |
142 | printf("bad length %d < %d\n", len, ARP_HDR_SIZE); | |
143 | return; | |
144 | } | |
145 | if (ntohs(arp->ar_hrd) != ARP_ETHER) | |
146 | return; | |
147 | if (ntohs(arp->ar_pro) != PROT_IP) | |
148 | return; | |
674bb249 | 149 | if (arp->ar_hln != ARP_HLEN) |
d280d3f4 | 150 | return; |
674bb249 | 151 | if (arp->ar_pln != ARP_PLEN) |
d280d3f4 JH |
152 | return; |
153 | ||
154 | if (NetOurIP == 0) | |
155 | return; | |
156 | ||
674bb249 | 157 | if (NetReadIP(&arp->ar_tpa) != NetOurIP) |
d280d3f4 JH |
158 | return; |
159 | ||
160 | switch (ntohs(arp->ar_op)) { | |
161 | case ARPOP_REQUEST: | |
162 | /* reply with our IP address */ | |
4ef8d53c | 163 | debug_cond(DEBUG_DEV_PKT, "Got ARP REQUEST, return our IP\n"); |
d280d3f4 | 164 | pkt = (uchar *)et; |
e7111015 | 165 | eth_hdr_size = net_update_ether(et, et->et_src, PROT_ARP); |
00f33268 | 166 | pkt += eth_hdr_size; |
d280d3f4 | 167 | arp->ar_op = htons(ARPOP_REPLY); |
674bb249 JH |
168 | memcpy(&arp->ar_tha, &arp->ar_sha, ARP_HLEN); |
169 | NetCopyIP(&arp->ar_tpa, &arp->ar_spa); | |
170 | memcpy(&arp->ar_sha, NetOurEther, ARP_HLEN); | |
171 | NetCopyIP(&arp->ar_spa, &NetOurIP); | |
c6975762 JH |
172 | |
173 | #ifdef CONFIG_CMD_LINK_LOCAL | |
174 | /* | |
175 | * Work-around for brain-damaged Cisco equipment with | |
176 | * arp-proxy enabled. | |
177 | * | |
178 | * If the requesting IP is not on our subnet, wait 5ms to | |
179 | * reply to ARP request so that our reply will overwrite | |
180 | * the arp-proxy's instead of the other way around. | |
181 | */ | |
182 | if ((NetReadIP(&arp->ar_tpa) & NetOurSubnetMask) != | |
183 | (NetReadIP(&arp->ar_spa) & NetOurSubnetMask)) | |
184 | udelay(5000); | |
185 | #endif | |
adf5d93e | 186 | NetSendPacket((uchar *)et, eth_hdr_size + ARP_HDR_SIZE); |
d280d3f4 JH |
187 | return; |
188 | ||
189 | case ARPOP_REPLY: /* arp reply */ | |
190 | /* are we waiting for a reply */ | |
f1d2d284 | 191 | if (!NetArpWaitPacketIP) |
d280d3f4 JH |
192 | break; |
193 | ||
194 | #ifdef CONFIG_KEEP_SERVERADDR | |
195 | if (NetServerIP == NetArpWaitPacketIP) { | |
196 | char buf[20]; | |
a0bc44e6 | 197 | sprintf(buf, "%pM", &arp->ar_sha); |
d280d3f4 JH |
198 | setenv("serveraddr", buf); |
199 | } | |
200 | #endif | |
201 | ||
674bb249 | 202 | reply_ip_addr = NetReadIP(&arp->ar_spa); |
d280d3f4 JH |
203 | |
204 | /* matched waiting packet's address */ | |
1256793b | 205 | if (reply_ip_addr == NetArpWaitReplyIP) { |
4ef8d53c JH |
206 | debug_cond(DEBUG_DEV_PKT, |
207 | "Got ARP REPLY, set eth addr (%pM)\n", | |
d280d3f4 JH |
208 | arp->ar_data); |
209 | ||
210 | /* save address for later use */ | |
f1d2d284 JH |
211 | if (NetArpWaitPacketMAC != NULL) |
212 | memcpy(NetArpWaitPacketMAC, | |
213 | &arp->ar_sha, ARP_HLEN); | |
d280d3f4 | 214 | |
ece223b5 JH |
215 | net_get_arp_handler()((uchar *)arp, 0, reply_ip_addr, |
216 | 0, len); | |
217 | ||
e94070c4 JH |
218 | /* set the mac address in the waiting packet's header |
219 | and transmit it */ | |
220 | memcpy(((struct ethernet_hdr *)NetTxPacket)->et_dest, | |
221 | &arp->ar_sha, ARP_HLEN); | |
222 | NetSendPacket(NetTxPacket, NetArpWaitTxPacketSize); | |
d280d3f4 JH |
223 | |
224 | /* no arp request pending now */ | |
225 | NetArpWaitPacketIP = 0; | |
226 | NetArpWaitTxPacketSize = 0; | |
227 | NetArpWaitPacketMAC = NULL; | |
228 | ||
229 | } | |
230 | return; | |
231 | default: | |
232 | debug("Unexpected ARP opcode 0x%x\n", | |
233 | ntohs(arp->ar_op)); | |
234 | return; | |
235 | } | |
236 | } |