Contiki 2.5
uip_arp.c
Go to the documentation of this file.
1 /**
2  * \addtogroup uip
3  * @{
4  */
5 
6 /**
7  * \defgroup uiparp uIP Address Resolution Protocol
8  * @{
9  *
10  * The Address Resolution Protocol ARP is used for mapping between IP
11  * addresses and link level addresses such as the Ethernet MAC
12  * addresses. ARP uses broadcast queries to ask for the link level
13  * address of a known IP address and the host which is configured with
14  * the IP address for which the query was meant, will respond with its
15  * link level address.
16  *
17  * \note This ARP implementation only supports Ethernet.
18  */
19 
20 /**
21  * \file
22  * Implementation of the ARP Address Resolution Protocol.
23  * \author Adam Dunkels <adam@dunkels.com>
24  *
25  */
26 
27 /*
28  * Copyright (c) 2001-2003, Adam Dunkels.
29  * All rights reserved.
30  *
31  * Redistribution and use in source and binary forms, with or without
32  * modification, are permitted provided that the following conditions
33  * are met:
34  * 1. Redistributions of source code must retain the above copyright
35  * notice, this list of conditions and the following disclaimer.
36  * 2. Redistributions in binary form must reproduce the above copyright
37  * notice, this list of conditions and the following disclaimer in the
38  * documentation and/or other materials provided with the distribution.
39  * 3. The name of the author may not be used to endorse or promote
40  * products derived from this software without specific prior
41  * written permission.
42  *
43  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
44  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
45  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
47  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
49  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
50  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
51  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
52  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
53  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54  *
55  * This file is part of the uIP TCP/IP stack.
56  *
57  * $Id: uip_arp.c,v 1.8 2010/12/14 22:45:22 dak664 Exp $
58  *
59  */
60 
61 
62 #include "net/uip_arp.h"
63 
64 #include <string.h>
65 
66 struct arp_hdr {
67  struct uip_eth_hdr ethhdr;
68  u16_t hwtype;
69  u16_t protocol;
70  u8_t hwlen;
71  u8_t protolen;
72  u16_t opcode;
73  struct uip_eth_addr shwaddr;
74  uip_ipaddr_t sipaddr;
75  struct uip_eth_addr dhwaddr;
76  uip_ipaddr_t dipaddr;
77 };
78 
79 struct ethip_hdr {
80  struct uip_eth_hdr ethhdr;
81  /* IP header. */
82  u8_t vhl,
83  tos,
84  len[2],
85  ipid[2],
86  ipoffset[2],
87  ttl,
88  proto;
89  u16_t ipchksum;
90  uip_ipaddr_t srcipaddr, destipaddr;
91 };
92 
93 #define ARP_REQUEST 1
94 #define ARP_REPLY 2
95 
96 #define ARP_HWTYPE_ETH 1
97 
98 struct arp_entry {
99  uip_ipaddr_t ipaddr;
100  struct uip_eth_addr ethaddr;
101  u8_t time;
102 };
103 
104 static const struct uip_eth_addr broadcast_ethaddr =
105  {{0xff,0xff,0xff,0xff,0xff,0xff}};
106 static const u16_t broadcast_ipaddr[2] = {0xffff,0xffff};
107 
108 static struct arp_entry arp_table[UIP_ARPTAB_SIZE];
109 static uip_ipaddr_t ipaddr;
110 static u8_t i, c;
111 
112 static u8_t arptime;
113 static u8_t tmpage;
114 
115 #define BUF ((struct arp_hdr *)&uip_buf[0])
116 #define IPBUF ((struct ethip_hdr *)&uip_buf[0])
117 
118 #define DEBUG 0
119 #if DEBUG
120 #include <stdio.h>
121 #define PRINTF(...) printf(__VA_ARGS__)
122 #else
123 #define PRINTF(...)
124 #endif
125 
126 /*-----------------------------------------------------------------------------------*/
127 /**
128  * Initialize the ARP module.
129  *
130  */
131 /*-----------------------------------------------------------------------------------*/
132 void
134 {
135  for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
136  memset(&arp_table[i].ipaddr, 0, 4);
137  }
138 }
139 /*-----------------------------------------------------------------------------------*/
140 /**
141  * Periodic ARP processing function.
142  *
143  * This function performs periodic timer processing in the ARP module
144  * and should be called at regular intervals. The recommended interval
145  * is 10 seconds between the calls.
146  *
147  */
148 /*-----------------------------------------------------------------------------------*/
149 void
151 {
152  struct arp_entry *tabptr;
153 
154  ++arptime;
155  for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
156  tabptr = &arp_table[i];
157  if(uip_ipaddr_cmp(&tabptr->ipaddr, &uip_all_zeroes_addr) &&
158  arptime - tabptr->time >= UIP_ARP_MAXAGE) {
159  memset(&tabptr->ipaddr, 0, 4);
160  }
161  }
162 
163 }
164 
165 /*-----------------------------------------------------------------------------------*/
166 static void
167 uip_arp_update(uip_ipaddr_t *ipaddr, struct uip_eth_addr *ethaddr)
168 {
169  register struct arp_entry *tabptr = arp_table;
170 
171  /* Walk through the ARP mapping table and try to find an entry to
172  update. If none is found, the IP -> MAC address mapping is
173  inserted in the ARP table. */
174  for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
175  tabptr = &arp_table[i];
176 
177  /* Only check those entries that are actually in use. */
178  if(!uip_ipaddr_cmp(&tabptr->ipaddr, &uip_all_zeroes_addr)) {
179 
180  /* Check if the source IP address of the incoming packet matches
181  the IP address in this ARP table entry. */
182  if(uip_ipaddr_cmp(ipaddr, &tabptr->ipaddr)) {
183 
184  /* An old entry found, update this and return. */
185  memcpy(tabptr->ethaddr.addr, ethaddr->addr, 6);
186  tabptr->time = arptime;
187 
188  return;
189  }
190  }
191  tabptr++;
192  }
193 
194  /* If we get here, no existing ARP table entry was found, so we
195  create one. */
196 
197  /* First, we try to find an unused entry in the ARP table. */
198  for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
199  tabptr = &arp_table[i];
200  if(uip_ipaddr_cmp(&tabptr->ipaddr, &uip_all_zeroes_addr)) {
201  break;
202  }
203  }
204 
205  /* If no unused entry is found, we try to find the oldest entry and
206  throw it away. */
207  if(i == UIP_ARPTAB_SIZE) {
208  tmpage = 0;
209  c = 0;
210  for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
211  tabptr = &arp_table[i];
212  if(arptime - tabptr->time > tmpage) {
213  tmpage = arptime - tabptr->time;
214  c = i;
215  }
216  }
217  i = c;
218  tabptr = &arp_table[i];
219  }
220 
221  /* Now, i is the ARP table entry which we will fill with the new
222  information. */
223  uip_ipaddr_copy(&tabptr->ipaddr, ipaddr);
224  memcpy(tabptr->ethaddr.addr, ethaddr->addr, 6);
225  tabptr->time = arptime;
226 }
227 /*-----------------------------------------------------------------------------------*/
228 /**
229  * ARP processing for incoming IP packets
230  *
231  * This function should be called by the device driver when an IP
232  * packet has been received. The function will check if the address is
233  * in the ARP cache, and if so the ARP cache entry will be
234  * refreshed. If no ARP cache entry was found, a new one is created.
235  *
236  * This function expects an IP packet with a prepended Ethernet header
237  * in the uip_buf[] buffer, and the length of the packet in the global
238  * variable uip_len.
239  */
240 /*-----------------------------------------------------------------------------------*/
241 #if 0
242 void
243 uip_arp_ipin(void)
244 {
245  uip_len -= sizeof(struct uip_eth_hdr);
246 
247  /* Only insert/update an entry if the source IP address of the
248  incoming IP packet comes from a host on the local network. */
249  if((IPBUF->srcipaddr[0] & uip_netmask[0]) !=
250  (uip_hostaddr[0] & uip_netmask[0])) {
251  return;
252  }
253  if((IPBUF->srcipaddr[1] & uip_netmask[1]) !=
254  (uip_hostaddr[1] & uip_netmask[1])) {
255  return;
256  }
257  uip_arp_update(IPBUF->srcipaddr, &(IPBUF->ethhdr.src));
258 
259  return;
260 }
261 #endif /* 0 */
262 /*-----------------------------------------------------------------------------------*/
263 /**
264  * ARP processing for incoming ARP packets.
265  *
266  * This function should be called by the device driver when an ARP
267  * packet has been received. The function will act differently
268  * depending on the ARP packet type: if it is a reply for a request
269  * that we previously sent out, the ARP cache will be filled in with
270  * the values from the ARP reply. If the incoming ARP packet is an ARP
271  * request for our IP address, an ARP reply packet is created and put
272  * into the uip_buf[] buffer.
273  *
274  * When the function returns, the value of the global variable uip_len
275  * indicates whether the device driver should send out a packet or
276  * not. If uip_len is zero, no packet should be sent. If uip_len is
277  * non-zero, it contains the length of the outbound packet that is
278  * present in the uip_buf[] buffer.
279  *
280  * This function expects an ARP packet with a prepended Ethernet
281  * header in the uip_buf[] buffer, and the length of the packet in the
282  * global variable uip_len.
283  */
284 /*-----------------------------------------------------------------------------------*/
285 void
287 {
288 
289  if(uip_len < sizeof(struct arp_hdr)) {
290  uip_len = 0;
291  return;
292  }
293  uip_len = 0;
294 
295  switch(BUF->opcode) {
296  case UIP_HTONS(ARP_REQUEST):
297  /* ARP request. If it asked for our address, we send out a
298  reply. */
299  /* if(BUF->dipaddr[0] == uip_hostaddr[0] &&
300  BUF->dipaddr[1] == uip_hostaddr[1]) {*/
301  PRINTF("uip_arp_arpin: request for %d.%d.%d.%d (we are %d.%d.%d.%d)\n",
302  BUF->dipaddr.u8[0], BUF->dipaddr.u8[1],
303  BUF->dipaddr.u8[2], BUF->dipaddr.u8[3],
304  uip_hostaddr.u8[0], uip_hostaddr.u8[1],
305  uip_hostaddr.u8[2], uip_hostaddr.u8[3]);
306  if(uip_ipaddr_cmp(&BUF->dipaddr, &uip_hostaddr)) {
307  /* First, we register the one who made the request in our ARP
308  table, since it is likely that we will do more communication
309  with this host in the future. */
310  uip_arp_update(&BUF->sipaddr, &BUF->shwaddr);
311 
312  BUF->opcode = UIP_HTONS(ARP_REPLY);
313 
314  memcpy(BUF->dhwaddr.addr, BUF->shwaddr.addr, 6);
315  memcpy(BUF->shwaddr.addr, uip_ethaddr.addr, 6);
316  memcpy(BUF->ethhdr.src.addr, uip_ethaddr.addr, 6);
317  memcpy(BUF->ethhdr.dest.addr, BUF->dhwaddr.addr, 6);
318 
319  uip_ipaddr_copy(&BUF->dipaddr, &BUF->sipaddr);
320  uip_ipaddr_copy(&BUF->sipaddr, &uip_hostaddr);
321 
322  BUF->ethhdr.type = UIP_HTONS(UIP_ETHTYPE_ARP);
323  uip_len = sizeof(struct arp_hdr);
324  }
325  break;
326  case UIP_HTONS(ARP_REPLY):
327  /* ARP reply. We insert or update the ARP table if it was meant
328  for us. */
329  if(uip_ipaddr_cmp(&BUF->dipaddr, &uip_hostaddr)) {
330  uip_arp_update(&BUF->sipaddr, &BUF->shwaddr);
331  }
332  break;
333  }
334 
335  return;
336 }
337 /*-----------------------------------------------------------------------------------*/
338 /**
339  * Prepend Ethernet header to an outbound IP packet and see if we need
340  * to send out an ARP request.
341  *
342  * This function should be called before sending out an IP packet. The
343  * function checks the destination IP address of the IP packet to see
344  * what Ethernet MAC address that should be used as a destination MAC
345  * address on the Ethernet.
346  *
347  * If the destination IP address is in the local network (determined
348  * by logical ANDing of netmask and our IP address), the function
349  * checks the ARP cache to see if an entry for the destination IP
350  * address is found. If so, an Ethernet header is prepended and the
351  * function returns. If no ARP cache entry is found for the
352  * destination IP address, the packet in the uip_buf[] is replaced by
353  * an ARP request packet for the IP address. The IP packet is dropped
354  * and it is assumed that they higher level protocols (e.g., TCP)
355  * eventually will retransmit the dropped packet.
356  *
357  * If the destination IP address is not on the local network, the IP
358  * address of the default router is used instead.
359  *
360  * When the function returns, a packet is present in the uip_buf[]
361  * buffer, and the length of the packet is in the global variable
362  * uip_len.
363  */
364 /*-----------------------------------------------------------------------------------*/
365 void
367 {
368  struct arp_entry *tabptr = arp_table;
369 
370  /* Find the destination IP address in the ARP table and construct
371  the Ethernet header. If the destination IP addres isn't on the
372  local network, we use the default router's IP address instead.
373 
374  If not ARP table entry is found, we overwrite the original IP
375  packet with an ARP request for the IP address. */
376 
377  /* First check if destination is a local broadcast. */
378  if(uip_ipaddr_cmp(&IPBUF->destipaddr, &uip_broadcast_addr)) {
379  memcpy(IPBUF->ethhdr.dest.addr, broadcast_ethaddr.addr, 6);
380  } else if(IPBUF->destipaddr.u8[0] == 224) {
381  /* Multicast. */
382  IPBUF->ethhdr.dest.addr[0] = 0x01;
383  IPBUF->ethhdr.dest.addr[1] = 0x00;
384  IPBUF->ethhdr.dest.addr[2] = 0x5e;
385  IPBUF->ethhdr.dest.addr[3] = IPBUF->destipaddr.u8[1];
386  IPBUF->ethhdr.dest.addr[4] = IPBUF->destipaddr.u8[2];
387  IPBUF->ethhdr.dest.addr[5] = IPBUF->destipaddr.u8[3];
388  } else {
389  /* Check if the destination address is on the local network. */
390  if(!uip_ipaddr_maskcmp(&IPBUF->destipaddr, &uip_hostaddr, &uip_netmask)) {
391  /* Destination address was not on the local network, so we need to
392  use the default router's IP address instead of the destination
393  address when determining the MAC address. */
394  uip_ipaddr_copy(&ipaddr, &uip_draddr);
395  } else {
396  /* Else, we use the destination IP address. */
397  uip_ipaddr_copy(&ipaddr, &IPBUF->destipaddr);
398  }
399  for(i = 0; i < UIP_ARPTAB_SIZE; ++i) {
400  if(uip_ipaddr_cmp(&ipaddr, &tabptr->ipaddr)) {
401  break;
402  }
403  tabptr++;
404  }
405 
406  if(i == UIP_ARPTAB_SIZE) {
407  /* The destination address was not in our ARP table, so we
408  overwrite the IP packet with an ARP request. */
409 
410  memset(BUF->ethhdr.dest.addr, 0xff, 6);
411  memset(BUF->dhwaddr.addr, 0x00, 6);
412  memcpy(BUF->ethhdr.src.addr, uip_ethaddr.addr, 6);
413  memcpy(BUF->shwaddr.addr, uip_ethaddr.addr, 6);
414 
415  uip_ipaddr_copy(&BUF->dipaddr, &ipaddr);
416  uip_ipaddr_copy(&BUF->sipaddr, &uip_hostaddr);
417  BUF->opcode = UIP_HTONS(ARP_REQUEST); /* ARP request. */
418  BUF->hwtype = UIP_HTONS(ARP_HWTYPE_ETH);
419  BUF->protocol = UIP_HTONS(UIP_ETHTYPE_IP);
420  BUF->hwlen = 6;
421  BUF->protolen = 4;
422  BUF->ethhdr.type = UIP_HTONS(UIP_ETHTYPE_ARP);
423 
424  uip_appdata = &uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN];
425 
426  uip_len = sizeof(struct arp_hdr);
427  return;
428  }
429 
430  /* Build an ethernet header. */
431  memcpy(IPBUF->ethhdr.dest.addr, tabptr->ethaddr.addr, 6);
432  }
433  memcpy(IPBUF->ethhdr.src.addr, uip_ethaddr.addr, 6);
434 
435  IPBUF->ethhdr.type = UIP_HTONS(UIP_ETHTYPE_IP);
436 
437  uip_len += sizeof(struct uip_eth_hdr);
438 }
439 /*-----------------------------------------------------------------------------------*/
440 
441 /** @} */
442 /** @} */
443