3 * - Address Resolution Protocol
4 * - Part of the IPv4 protocol
12 #define ARP_CACHE_SIZE 64
13 #define ARP_MAX_AGE (60*60*1000) // 1Hr
16 extern tInterface *IPv4_GetInterface(tAdapter *Adapter, tIPv4 Address, int Broadcast);
18 extern tInterface *IPv6_GetInterface(tAdapter *Adapter, tIPv6 Address, int Broadcast);
23 tMacAddr ARP_Resolve4(tInterface *Interface, tIPv4 Address);
24 void ARP_int_GetPacket(tAdapter *Adapter, tMacAddr From, int Length, void *Buffer);
33 int giARP_Cache4Space;
42 int giARP_Cache6Space;
45 volatile int giARP_LastUpdateID = 0;
49 * \fn int ARP_Initialise()
50 * \brief Initalise the ARP section
54 gaARP_Cache4 = malloc( ARP_CACHE_SIZE * sizeof(struct sARP_Cache4) );
55 memset( gaARP_Cache4, 0, ARP_CACHE_SIZE * sizeof(struct sARP_Cache4) );
56 giARP_Cache4Space = ARP_CACHE_SIZE;
59 gaARP_Cache6 = malloc( ARP_CACHE_SIZE * sizeof(struct sARP_Cache6) );
60 memset( gaARP_Cache6, 0, ARP_CACHE_SIZE * sizeof(struct sARP_Cache6) );
61 giARP_Cache6Space = ARP_CACHE_SIZE;
64 Link_RegisterType(0x0806, ARP_int_GetPacket);
69 * \brief Resolves a MAC address from an IPv4 address
71 tMacAddr ARP_Resolve4(tInterface *Interface, tIPv4 Address)
75 struct sArpRequest4 req;
78 ENTER("pInterface xAddress", Interface, Address);
80 // Check routing tables if not on this subnet
81 if( IPStack_CompareAddress(4, &Address, Interface->Address, Interface->SubnetBits) == 0 )
83 tRoute *route = IPStack_FindRoute(4, Interface, &Address);
84 // If the next hop is defined, use it
85 // - 0.0.0.0 as the next hop means "no next hop / direct"
86 if( route && ((tIPv4*)route->NextHop)->L != 0 )
88 // Recursion: see /Recursion/
89 return ARP_Resolve4(Interface, *(tIPv4*)route->NextHop);
94 Mutex_Acquire( &glARP_Cache4 );
95 for( i = 0; i < giARP_Cache4Space; i++ )
97 if(gaARP_Cache4[i].IP.L != Address.L) continue;
99 // Check if the entry needs to be refreshed
100 if( now() - gaARP_Cache4[i].LastUpdate > ARP_MAX_AGE ) break;
102 Mutex_Release( &glARP_Cache4 );
103 LOG("Return %x:%x:%x:%x:%x:%x",
104 gaARP_Cache4[i].MAC.B[0], gaARP_Cache4[i].MAC.B[1],
105 gaARP_Cache4[i].MAC.B[2], gaARP_Cache4[i].MAC.B[3],
106 gaARP_Cache4[i].MAC.B[4], gaARP_Cache4[i].MAC.B[5]
109 return gaARP_Cache4[i].MAC;
111 Mutex_Release( &glARP_Cache4 );
113 lastID = giARP_LastUpdateID;
116 Log_Log("ARP4", "Asking for address %i.%i.%i.%i",
117 Address.B[0], Address.B[1], Address.B[2], Address.B[3]
119 req.HWType = htons(0x0001); // Ethernet
120 req.Type = htons(0x0800);
123 req.Request = htons(1);
124 req.SourceMac = Interface->Adapter->MacAddr;
125 req.SourceIP = *(tIPv4*)Interface->Address;
126 req.DestMac = cMAC_BROADCAST;
127 req.DestIP = Address;
130 Link_SendPacket(Interface->Adapter, 0x0806, req.DestMac, sizeof(struct sArpRequest4), &req);
132 timeout = now() + Interface->TimeoutDelay;
137 while(lastID == giARP_LastUpdateID && now() < timeout) {
141 if( now() >= timeout ) {
142 Log_Log("ARP4", "Timeout");
146 lastID = giARP_LastUpdateID;
148 Mutex_Acquire( &glARP_Cache4 );
149 for( i = 0; i < giARP_Cache4Space; i++ )
151 if(gaARP_Cache4[i].IP.L != Address.L) continue;
153 Mutex_Release( &glARP_Cache4 );
154 Log_Debug("ARP4", "Return %02x:%02x:%02x:%02x:%02x:%02x",
155 gaARP_Cache4[i].MAC.B[0], gaARP_Cache4[i].MAC.B[1],
156 gaARP_Cache4[i].MAC.B[2], gaARP_Cache4[i].MAC.B[3],
157 gaARP_Cache4[i].MAC.B[4], gaARP_Cache4[i].MAC.B[5]);
158 return gaARP_Cache4[i].MAC;
160 Mutex_Release( &glARP_Cache4 );
163 tMacAddr ret = {{0,0,0,0,0,0}};
169 * \brief Updates the ARP Cache entry for an IPv4 Address
171 void ARP_UpdateCache4(tIPv4 SWAddr, tMacAddr HWAddr)
177 // Find an entry for the IP address in the cache
178 Mutex_Acquire(&glARP_Cache4);
179 for( i = giARP_Cache4Space; i--; )
181 if(gaARP_Cache4[oldest].LastUpdate > gaARP_Cache4[i].LastUpdate) {
184 if( gaARP_Cache4[i].IP.L == SWAddr.L ) break;
185 if( gaARP_Cache4[i].LastUpdate == 0 && free == -1 ) free = i;
187 // If there was no match, we need to make one
195 Log_Log("ARP4", "Caching %i.%i.%i.%i (%02x:%02x:%02x:%02x:%02x:%02x) in %i",
196 SWAddr.B[0], SWAddr.B[1], SWAddr.B[2], SWAddr.B[3],
197 HWAddr.B[0], HWAddr.B[1], HWAddr.B[2], HWAddr.B[3], HWAddr.B[4], HWAddr.B[5],
201 gaARP_Cache4[i].IP = SWAddr;
202 gaARP_Cache4[i].MAC = HWAddr;
203 gaARP_Cache4[i].LastUpdate = now();
204 giARP_LastUpdateID ++;
205 Mutex_Release(&glARP_Cache4);
210 * \brief Updates the ARP Cache entry for an IPv6 Address
212 void ARP_UpdateCache6(tIPv6 SWAddr, tMacAddr HWAddr)
218 // Find an entry for the MAC address in the cache
219 Mutex_Acquire(&glARP_Cache6);
220 for( i = giARP_Cache6Space; i--; )
222 if(gaARP_Cache6[oldest].LastUpdate > gaARP_Cache6[i].LastUpdate) {
225 if( MAC_EQU(gaARP_Cache6[i].MAC, HWAddr) ) break;
226 if( gaARP_Cache6[i].LastUpdate == 0 && free == -1 ) free = i;
228 // If there was no match, we need to make one
234 gaARP_Cache6[i].MAC = HWAddr;
237 gaARP_Cache6[i].IP = SWAddr;
238 gaARP_Cache6[i].LastUpdate = now();
239 giARP_LastUpdateID ++;
240 Mutex_Release(&glARP_Cache6);
245 * \fn void ARP_int_GetPacket(tAdapter *Adapter, tMacAddr From, int Length, void *Buffer)
246 * \brief Called when an ARP packet is recieved
248 void ARP_int_GetPacket(tAdapter *Adapter, tMacAddr From, int Length, void *Buffer)
250 tArpRequest4 *req4 = Buffer;
252 tArpRequest6 *req6 = Buffer;
256 // Sanity Check Packet
257 if( Length < (int)sizeof(tArpRequest4) ) {
258 Log_Log("ARP", "Recieved undersized packet");
261 if( ntohs(req4->Type) != 0x0800 ) {
262 Log_Log("ARP", "Recieved a packet with a bad type (0x%x)", ntohs(req4->Type));
265 if( req4->HWSize != 6 ) {
266 Log_Log("ARP", "Recieved a packet with HWSize != 6 (%i)", req4->HWSize);
269 #if ARP_DETECT_SPOOFS
270 if( !MAC_EQU(req4->SourceMac, From) ) {
271 Log_Log("ARP", "ARP spoofing detected "
272 "(%02x%02x:%02x%02x:%02x%02x != %02x%02x:%02x%02x:%02x%02x)",
273 req4->SourceMac.B[0], req4->SourceMac.B[1], req4->SourceMac.B[2],
274 req4->SourceMac.B[3], req4->SourceMac.B[4], req4->SourceMac.B[5],
275 From.B[0], From.B[1], From.B[2],
276 From.B[3], From.B[4], From.B[5]
282 switch( ntohs(req4->Request) )
284 case 1: // You want my IP?
285 // Check what type of IP it is
286 switch( req4->SWSize )
289 Log_Debug("ARP", "ARP Request IPv4 Address %i.%i.%i.%i from %i.%i.%i.%i",
290 req4->DestIP.B[0], req4->DestIP.B[1], req4->DestIP.B[2],
292 req4->SourceIP.B[0], req4->SourceIP.B[1],
293 req4->SourceIP.B[2], req4->SourceIP.B[3]);
294 Log_Debug("ARP", " from MAC %02x:%02x:%02x:%02x:%02x:%02x",
295 req4->SourceMac.B[0], req4->SourceMac.B[1],
296 req4->SourceMac.B[2], req4->SourceMac.B[3],
297 req4->SourceMac.B[4], req4->SourceMac.B[5]);
298 iface = IPv4_GetInterface(Adapter, req4->DestIP, 0);
301 ARP_UpdateCache4(req4->SourceIP, req4->SourceMac);
303 req4->DestIP = req4->SourceIP;
304 req4->DestMac = req4->SourceMac;
305 req4->SourceIP = *(tIPv4*)iface->Address;;
306 req4->SourceMac = Adapter->MacAddr;
307 req4->Request = htons(2);
308 Log_Debug("ARP", "Sending back us (%02x:%02x:%02x:%02x:%02x:%02x)",
309 req4->SourceMac.B[0], req4->SourceMac.B[1],
310 req4->SourceMac.B[2], req4->SourceMac.B[3],
311 req4->SourceMac.B[4], req4->SourceMac.B[5]);
312 Link_SendPacket(Adapter, 0x0806, req4->DestMac, sizeof(tArpRequest4), req4);
317 if( Length < (int)sizeof(tArpRequest6) ) {
318 Log_Log("ARP", "Recieved undersized packet (IPv6)");
321 Log_Debug("ARP", "ARP Request IPv6 Address %08x:%08x:%08x:%08x",
322 ntohl(req6->DestIP.L[0]), ntohl(req6->DestIP.L[1]),
323 ntohl(req6->DestIP.L[2]), ntohl(req6->DestIP.L[3])
325 iface = IPv6_GetInterface(Adapter, req6->DestIP, 0);
328 req6->DestIP = req6->SourceIP;
329 req6->DestMac = req6->SourceMac;
330 req6->SourceIP = *(tIPv6*)iface->Address;
331 req6->SourceMac = Adapter->MacAddr;
332 req6->Request = htons(2);
333 Log_Debug("ARP", "Sending back us (%02x:%02x:%02x:%02x:%02x:%02x)",
334 req4->SourceMac.B[0], req4->SourceMac.B[1],
335 req4->SourceMac.B[2], req4->SourceMac.B[3],
336 req4->SourceMac.B[4], req4->SourceMac.B[5]);
337 Link_SendPacket(Adapter, 0x0806, req6->DestMac, sizeof(tArpRequest6), req6);
342 Log_Debug("ARP", "Unknown Protocol Address size (%i)", req4->SWSize);
348 case 2: // Ooh! A response!
349 // Check what type of IP it is
350 switch( req4->SWSize )
353 ARP_UpdateCache4( req4->SourceIP, From );
357 if( Length < (int)sizeof(tArpRequest6) ) {
358 Log_Debug("ARP", "Recieved undersized packet (IPv6)");
361 ARP_UpdateCache6( req6->SourceIP, From );
365 Log_Debug("ARP", "Unknown Protocol Address size (%i)", req4->SWSize);
372 Log_Warning("ARP", "Unknown Request ID %i", ntohs(req4->Request));