Misc changes
[tpg/acess2.git] / Modules / IPStack / arp.c
1 /*
2  * Acess2 IP Stack
3  * - Address Resolution Protocol
4  * - Part of the IPv4 protocol
5  */
6 #define DEBUG   0
7 #include "ipstack.h"
8 #include "arp.h"
9 #include "link.h"
10
11 #define ARPv6   0
12 #define ARP_CACHE_SIZE  64
13 #define ARP_MAX_AGE             (60*60*1000)    // 1Hr
14
15 // === IMPORTS ===
16 extern tInterface       *IPv4_GetInterface(tAdapter *Adapter, tIPv4 Address, int Broadcast);
17 #if ARPv6
18 extern tInterface       *IPv6_GetInterface(tAdapter *Adapter, tIPv6 Address, int Broadcast);
19 #endif
20
21 // === PROTOTYPES ===
22  int    ARP_Initialise();
23 tMacAddr        ARP_Resolve4(tInterface *Interface, tIPv4 Address);
24 void    ARP_int_GetPacket(tAdapter *Adapter, tMacAddr From, int Length, void *Buffer);
25
26 // === GLOBALS ===
27 struct sARP_Cache4 {
28         tIPv4   IP;
29         tMacAddr        MAC;
30         Sint64  LastUpdate;
31         Sint64  LastUsed;
32 }       *gaARP_Cache4;
33  int    giARP_Cache4Space;
34 tMutex  glARP_Cache4;
35 #if ARPv6
36 struct sARP_Cache6 {
37         tIPv6   IP;
38         tMacAddr        MAC;
39         Sint64  LastUpdate;
40         Sint64  LastUsed;
41 }       *gaARP_Cache6;
42  int    giARP_Cache6Space;
43 tMutex  glARP_Cache6;
44 #endif
45  int    giARP_LastUpdateID = 0;
46
47 // === CODE ===
48 /**
49  * \fn int ARP_Initialise()
50  * \brief Initalise the ARP section
51  */
52 int ARP_Initialise()
53 {
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;
57         
58         #if ARPv6
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;
62         #endif
63         
64         Link_RegisterType(0x0806, ARP_int_GetPacket);
65         return 1;
66 }
67
68 /**
69  * \brief Resolves a MAC address from an IPv4 address
70  */
71 tMacAddr ARP_Resolve4(tInterface *Interface, tIPv4 Address)
72 {
73          int    lastID;
74          int    i;
75         struct sArpRequest4     req;
76         Sint64  timeout;
77         
78         ENTER("pInterface xAddress", Interface, Address);
79         
80         // Check routing tables if not on this subnet
81         if( IPStack_CompareAddress(4, &Address, Interface->Address, Interface->SubnetBits) == 0 )
82         {
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 )
87                 {
88                         // Recursion: see /Recursion/
89                         return ARP_Resolve4(Interface, *(tIPv4*)route->NextHop);
90                 }
91         }
92         
93         // Check ARP Cache
94         Mutex_Acquire( &glARP_Cache4 );
95         for( i = 0; i < giARP_Cache4Space; i++ )
96         {
97                 if(gaARP_Cache4[i].IP.L != Address.L)   continue;
98                 
99                 // Check if the entry needs to be refreshed
100                 if( now() - gaARP_Cache4[i].LastUpdate > ARP_MAX_AGE )  break;
101                 
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]
107                         );
108                 LEAVE('-');
109                 return gaARP_Cache4[i].MAC;
110         }
111         Mutex_Release( &glARP_Cache4 );
112         
113         lastID = giARP_LastUpdateID;
114         
115         // Create request
116         Log_Log("ARP4", "Asking for address %i.%i.%i.%i",
117                 Address.B[0], Address.B[1], Address.B[2], Address.B[3]
118                 );
119         req.HWType = htons(0x0001);     // Ethernet
120         req.Type   = htons(0x0800);
121         req.HWSize = 6;
122         req.SWSize = 4;
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;
128         
129         // Send Request
130         Link_SendPacket(Interface->Adapter, 0x0806, req.DestMac, sizeof(struct sArpRequest4), &req);
131         
132         timeout = now() + Interface->TimeoutDelay;
133         
134         // Wait for a reply
135         for(;;)
136         {
137                 while(lastID == giARP_LastUpdateID && now() < timeout) {
138 //                      Log_Debug("ARP", "timeout = %lli", timeout);
139                         Threads_Yield();
140                 }
141                 
142                 if( now() >= timeout )  break;  // Timeout
143                 
144                 lastID = giARP_LastUpdateID;
145                 
146                 Mutex_Acquire( &glARP_Cache4 );
147                 for( i = 0; i < giARP_Cache4Space; i++ )
148                 {
149                         if(gaARP_Cache4[i].IP.L != Address.L)   continue;
150                         
151                         Mutex_Release( &glARP_Cache4 );
152                         return gaARP_Cache4[i].MAC;
153                 }
154                 Mutex_Release( &glARP_Cache4 );
155         }
156         {
157                 tMacAddr        ret = {{0,0,0,0,0,0}};
158                 return ret;
159         }
160 }
161
162 /**
163  * \brief Updates the ARP Cache entry for an IPv4 Address
164  */
165 void ARP_UpdateCache4(tIPv4 SWAddr, tMacAddr HWAddr)
166 {
167          int    i;
168          int    free = -1;
169          int    oldest = 0;
170         
171         // Find an entry for the IP address in the cache
172         Mutex_Acquire(&glARP_Cache4);
173         for( i = giARP_Cache4Space; i--; )
174         {
175                 if(gaARP_Cache4[oldest].LastUpdate > gaARP_Cache4[i].LastUpdate) {
176                         oldest = i;
177                 }
178                 if( gaARP_Cache4[i].IP.L == SWAddr.L )  break;
179                 if( gaARP_Cache4[i].LastUpdate == 0 && free == -1 )     free = i;
180         }
181         // If there was no match, we need to make one
182         if(i == -1) {
183                 if(free != -1)
184                         i = free;
185                 else
186                         i = oldest;
187                 gaARP_Cache4[i].IP = SWAddr;
188         }
189         
190         Log_Log("ARP4", "Caching %i.%i.%i.%i (%02x:%02x:%02x:%02x:%02x:%02x) in %i",
191                 SWAddr.B[0], SWAddr.B[1], SWAddr.B[2], SWAddr.B[3],
192                 HWAddr.B[0], HWAddr.B[1], HWAddr.B[2], HWAddr.B[3], HWAddr.B[4], HWAddr.B[5],
193                 i
194                 );
195                 
196         gaARP_Cache4[i].MAC = HWAddr;
197         gaARP_Cache4[i].LastUpdate = now();
198         giARP_LastUpdateID ++;
199         Mutex_Release(&glARP_Cache4);
200 }
201
202 #if ARPv6
203 /**
204  * \brief Updates the ARP Cache entry for an IPv6 Address
205  */
206 void ARP_UpdateCache6(tIPv6 SWAddr, tMacAddr HWAddr)
207 {
208          int    i;
209          int    free = -1;
210          int    oldest = 0;
211         
212         // Find an entry for the MAC address in the cache
213         Mutex_Acquire(&glARP_Cache6);
214         for( i = giARP_Cache6Space; i--; )
215         {
216                 if(gaARP_Cache6[oldest].LastUpdate > gaARP_Cache6[i].LastUpdate) {
217                         oldest = i;
218                 }
219                 if( MAC_EQU(gaARP_Cache6[i].MAC, HWAddr) )      break;
220                 if( gaARP_Cache6[i].LastUpdate == 0 && free == -1 )     free = i;
221         }
222         // If there was no match, we need to make one
223         if(i == -1) {
224                 if(free != -1)
225                         i = free;
226                 else
227                         i = oldest;
228                 gaARP_Cache6[i].MAC = HWAddr;
229         }
230         
231         gaARP_Cache6[i].IP = SWAddr;
232         gaARP_Cache6[i].LastUpdate = now();
233         giARP_LastUpdateID ++;
234         Mutex_Release(&glARP_Cache6);
235 }
236 #endif
237
238 /**
239  * \fn void ARP_int_GetPacket(tAdapter *Adapter, tMacAddr From, int Length, void *Buffer)
240  * \brief Called when an ARP packet is recieved
241  */
242 void ARP_int_GetPacket(tAdapter *Adapter, tMacAddr From, int Length, void *Buffer)
243 {
244         tArpRequest4    *req4 = Buffer;
245         #if ARPv6
246         tArpRequest6    *req6 = Buffer;
247         #endif
248         tInterface      *iface;
249         
250         // Sanity Check Packet
251         if( Length < (int)sizeof(tArpRequest4) ) {
252                 Log_Log("ARP", "Recieved undersized packet");
253                 return ;
254         }
255         if( ntohs(req4->Type) != 0x0800 ) {
256                 Log_Log("ARP", "Recieved a packet with a bad type (0x%x)", ntohs(req4->Type));
257                 return ;
258         }
259         if( req4->HWSize != 6 ) {
260                 Log_Log("ARP", "Recieved a packet with HWSize != 6 (%i)", req4->HWSize);
261                 return;
262         }
263         #if ARP_DETECT_SPOOFS
264         if( !MAC_EQU(req4->SourceMac, From) ) {
265                 Log_Log("ARP", "ARP spoofing detected "
266                         "(%02x%02x:%02x%02x:%02x%02x != %02x%02x:%02x%02x:%02x%02x)",
267                         req4->SourceMac.B[0], req4->SourceMac.B[1], req4->SourceMac.B[2],
268                         req4->SourceMac.B[3], req4->SourceMac.B[4], req4->SourceMac.B[5],
269                         From.B[0], From.B[1], From.B[2],
270                         From.B[3], From.B[4], From.B[5]
271                         );
272                 return;
273         }
274         #endif
275         
276         switch( ntohs(req4->Request) )
277         {
278         case 1: // You want my IP?
279                 // Check what type of IP it is
280                 switch( req4->SWSize )
281                 {
282                 case 4:
283                         Log_Debug("ARP", "ARP Request IPv4 Address %i.%i.%i.%i from %i.%i.%i.%i",
284                                 req4->DestIP.B[0], req4->DestIP.B[1], req4->DestIP.B[2],
285                                 req4->DestIP.B[3],
286                                 req4->SourceIP.B[0], req4->SourceIP.B[1],
287                                 req4->SourceIP.B[2], req4->SourceIP.B[3]);
288                         Log_Debug("ARP", " from MAC %02x:%02x:%02x:%02x:%02x:%02x",
289                                 req4->SourceMac.B[0], req4->SourceMac.B[1],
290                                 req4->SourceMac.B[2], req4->SourceMac.B[3],
291                                 req4->SourceMac.B[4], req4->SourceMac.B[5]);
292                         iface = IPv4_GetInterface(Adapter, req4->DestIP, 0);
293                         if( iface )
294                         {
295                                 ARP_UpdateCache4(req4->SourceIP, req4->SourceMac);
296                                 
297                                 req4->DestIP = req4->SourceIP;
298                                 req4->DestMac = req4->SourceMac;
299                                 req4->SourceIP = *(tIPv4*)iface->Address;;
300                                 req4->SourceMac = Adapter->MacAddr;
301                                 req4->Request = htons(2);
302                                 Log_Debug("ARP", "Sending back us (%02x:%02x:%02x:%02x:%02x:%02x)",
303                                         req4->SourceMac.B[0], req4->SourceMac.B[1],
304                                         req4->SourceMac.B[2], req4->SourceMac.B[3],
305                                         req4->SourceMac.B[4], req4->SourceMac.B[5]);
306                                 Link_SendPacket(Adapter, 0x0806, req4->DestMac, sizeof(tArpRequest4), req4);
307                         }
308                         break;
309                 #if ARPv6
310                 case 6:
311                         if( Length < (int)sizeof(tArpRequest6) ) {
312                                 Log_Log("ARP", "Recieved undersized packet (IPv6)");
313                                 return ;
314                         }
315                         Log_Debug("ARP", "ARP Request IPv6 Address %08x:%08x:%08x:%08x",
316                                 ntohl(req6->DestIP.L[0]), ntohl(req6->DestIP.L[1]),
317                                 ntohl(req6->DestIP.L[2]), ntohl(req6->DestIP.L[3])
318                                 );
319                         iface = IPv6_GetInterface(Adapter, req6->DestIP, 0);
320                         if( iface )
321                         {
322                                 req6->DestIP = req6->SourceIP;
323                                 req6->DestMac = req6->SourceMac;
324                                 req6->SourceIP = *(tIPv6*)iface->Address;
325                                 req6->SourceMac = Adapter->MacAddr;
326                                 req6->Request = htons(2);
327                                 Log_Debug("ARP", "Sending back us (%02x:%02x:%02x:%02x:%02x:%02x)",
328                                         req4->SourceMac.B[0], req4->SourceMac.B[1],
329                                         req4->SourceMac.B[2], req4->SourceMac.B[3],
330                                         req4->SourceMac.B[4], req4->SourceMac.B[5]);
331                                 Link_SendPacket(Adapter, 0x0806, req6->DestMac, sizeof(tArpRequest6), req6);
332                         }
333                         break;
334                 #endif
335                 default:
336                         Log_Debug("ARP", "Unknown Protocol Address size (%i)", req4->SWSize);
337                         return ;
338                 }
339                 
340                 break;
341         
342         case 2: // Ooh! A response!             
343                 // Check what type of IP it is
344                 switch( req4->SWSize )
345                 {
346                 case 4:
347                         ARP_UpdateCache4( req4->SourceIP, From );
348                         break;
349                 #if ARPv6
350                 case 6:
351                         if( Length < (int)sizeof(tArpRequest6) ) {
352                                 Log_Debug("ARP", "Recieved undersized packet (IPv6)");
353                                 return ;
354                         }
355                         ARP_UpdateCache6( req6->SourceIP, From );
356                         break;
357                 #endif
358                 default:
359                         Log_Debug("ARP", "Unknown Protocol Address size (%i)", req4->SWSize);
360                         return ;
361                 }
362                 
363                 break;
364         
365         default:
366                 Log_Warning("ARP", "Unknown Request ID %i", ntohs(req4->Request));
367                 break;
368         }
369 }

UCC git Repository :: git.ucc.asn.au