The Address Resolution Protocol ARP is used for mapping between IP addresses and link level addresses such as the Ethernet MAC addresses.
ARP uses broadcast queries to ask for the link level address of a known IP address and the host which is configured with the IP address for which the query was meant, will respond with its link level address.
Data Structures | |
struct | arp_entry |
struct | arp_hdr |
struct | ethip_hdr |
struct | uip_eth_hdr |
The Ethernet header. More... | |
Files | |
file | uip_arp.c |
Implementation of the ARP Address Resolution Protocol. | |
file | uip_arp.h |
Macros and definitions for the ARP module. | |
Macros | |
#define | _DEBUG_ 0 |
#define | ARP_HWTYPE_ETH 1 |
#define | ARP_REPLY 2 |
#define | ARP_REQUEST 1 |
#define | BUF ((struct arp_hdr *)&uip_buf[0]) |
#define | IPBUF ((struct ethip_hdr *)&uip_buf[0]) |
#define | PRINTF(...) |
#define | uip_arp_ipin() |
#define | UIP_ETHTYPE_ARP 0x0806 |
#define | UIP_ETHTYPE_IP 0x0800 |
#define | UIP_ETHTYPE_IPV6 0x86dd |
Functions | |
void | uip_arp_arpin (void) |
ARP processing for incoming IP packets. More... | |
void | uip_arp_init (void) |
Initialize the ARP module. More... | |
void | uip_arp_out (void) |
Prepend Ethernet header to an outbound IP packet and see if we need to send out an ARP request. More... | |
void | uip_arp_timer (void) |
Periodic ARP processing function. More... | |
static void | uip_arp_update (uip_ipaddr_t *ipaddr, struct uip_eth_addr *ethaddr) |
Variables | |
static struct arp_entry | arp_table [UIP_ARPTAB_SIZE] |
static uint8_t | arptime |
static struct uip_eth_addr | broadcast_ethaddr |
static uint8_t | c |
static uint8_t | i |
static uip_ipaddr_t | ipaddr |
static uint8_t | tmpage |
#define _DEBUG_ 0 |
#define ARP_HWTYPE_ETH 1 |
Referenced by uip_arp_out().
#define ARP_REPLY 2 |
Referenced by uip_arp_arpin().
#define ARP_REQUEST 1 |
Referenced by uip_arp_arpin(), and uip_arp_out().
Referenced by uip_arp_arpin(), and uip_arp_out().
Referenced by uip_arp_out().
#define PRINTF | ( | ... | ) |
Referenced by uip_arp_arpin().
#define uip_arp_ipin | ( | ) |
#define UIP_ETHTYPE_ARP 0x0806 |
Referenced by uip_arp_arpin(), and uip_arp_out().
#define UIP_ETHTYPE_IP 0x0800 |
Referenced by uip_arp_out().
#define UIP_ETHTYPE_IPV6 0x86dd |
void uip_arp_arpin | ( | void | ) |
ARP processing for incoming IP packets.
This function should be called by the device driver when an IP packet has been received. The function will check if the address is in the ARP cache, and if so the ARP cache entry will be refreshed. If no ARP cache entry was found, a new one is created.
This function expects an IP packet with a prepended Ethernet header in the uip_buf[] buffer, and the length of the packet in the global variable uip_len. ARP processing for incoming ARP packets.
This function should be called by the device driver when an ARP packet has been received. The function will act differently depending on the ARP packet type: if it is a reply for a request that we previously sent out, the ARP cache will be filled in with the values from the ARP reply. If the incoming ARP packet is an ARP request for our IP address, an ARP reply packet is created and put into the uip_buf[] buffer.
When the function returns, the value of the global variable uip_len indicates whether the device driver should send out a packet or not. If uip_len is zero, no packet should be sent. If uip_len is non-zero, it contains the length of the outbound packet that is present in the uip_buf[] buffer.
This function expects an ARP packet with a prepended Ethernet header in the uip_buf[] buffer, and the length of the packet in the global variable uip_len.
References uip_eth_addr::addr, ARP_REPLY, ARP_REQUEST, BUF, PRINTF, uip_ip6addr_t::u8, uip_arp_update(), UIP_ETHTYPE_ARP, uip_hostaddr, UIP_HTONS, uip_ipaddr_cmp, uip_ipaddr_copy, uip_len, and uip_lladdr.
void uip_arp_init | ( | void | ) |
Initialize the ARP module.
References arp_table, i, and UIP_ARPTAB_SIZE.
void uip_arp_out | ( | void | ) |
Prepend Ethernet header to an outbound IP packet and see if we need to send out an ARP request.
This function should be called before sending out an IP packet. The function checks the destination IP address of the IP packet to see what Ethernet MAC address that should be used as a destination MAC address on the Ethernet.
If the destination IP address is in the local network (determined by logical ANDing of netmask and our IP address), the function checks the ARP cache to see if an entry for the destination IP address is found. If so, an Ethernet header is prepended and the function returns. If no ARP cache entry is found for the destination IP address, the packet in the uip_buf[] is replaced by an ARP request packet for the IP address. The IP packet is dropped and it is assumed that they higher level protocols (e.g., TCP) eventually will retransmit the dropped packet.
If the destination IP address is not on the local network, the IP address of the default router is used instead.
When the function returns, a packet is present in the uip_buf[] buffer, and the length of the packet is in the global variable uip_len.
References uip_eth_addr::addr, ARP_HWTYPE_ETH, ARP_REQUEST, arp_table, BUF, arp_entry::ethaddr, i, arp_entry::ipaddr, IPBUF, uip_appdata, UIP_ARPTAB_SIZE, uip_broadcast_addr, uip_buf, uip_draddr, UIP_ETHTYPE_ARP, UIP_ETHTYPE_IP, uip_hostaddr, UIP_HTONS, uip_ipaddr_cmp, uip_ipaddr_copy, uip_ipaddr_maskcmp, uip_len, uip_lladdr, UIP_LLH_LEN, and UIP_TCPIP_HLEN.
void uip_arp_timer | ( | void | ) |
Periodic ARP processing function.
This function performs periodic timer processing in the ARP module and should be called at regular intervals. The recommended interval is 10 seconds between the calls.
References arp_table, arptime, i, arp_entry::ipaddr, arp_entry::time, uip_all_zeroes_addr, UIP_ARP_MAXAGE, UIP_ARPTAB_SIZE, and uip_ipaddr_cmp.
|
static |
References uip_eth_addr::addr, arp_table, arptime, c, arp_entry::ethaddr, i, arp_entry::ipaddr, arp_entry::time, uip_all_zeroes_addr, UIP_ARPTAB_SIZE, uip_ipaddr_cmp, and uip_ipaddr_copy.
Referenced by uip_arp_arpin().
|
static |
Referenced by uip_arp_init(), uip_arp_out(), uip_arp_timer(), and uip_arp_update().
|
static |
Referenced by uip_arp_timer(), and uip_arp_update().
|
static |
|
static |
Referenced by uip_arp_update().
|
static |
|
static |
|
static |