Mark Pizzolato | e4cf98c | 2015-10-15 12:29:41 -0700 | [diff] [blame] | 1 | /*
|
| 2 | * ARP table
|
| 3 | *
|
| 4 | * Copyright (c) 2011 AdaCore
|
| 5 | *
|
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 7 | * of this software and associated documentation files (the "Software"), to deal
|
| 8 | * in the Software without restriction, including without limitation the rights
|
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 10 | * copies of the Software, and to permit persons to whom the Software is
|
| 11 | * furnished to do so, subject to the following conditions:
|
| 12 | *
|
| 13 | * The above copyright notice and this permission notice shall be included in
|
| 14 | * all copies or substantial portions of the Software.
|
| 15 | *
|
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 22 | * THE SOFTWARE.
|
| 23 | */
|
| 24 |
|
| 25 | #include "slirp.h"
|
| 26 |
|
Mark Pizzolato | 5531ccb | 2016-05-15 15:25:33 -0700 | [diff] [blame] | 27 | void arp_table_add(Slirp *slirp, uint32_t ip_addr, const uint8_t ethaddr[ETH_ALEN])
|
Mark Pizzolato | e4cf98c | 2015-10-15 12:29:41 -0700 | [diff] [blame] | 28 | {
|
| 29 | const uint32_t broadcast_addr =
|
| 30 | ~slirp->vnetwork_mask.s_addr | slirp->vnetwork_addr.s_addr;
|
| 31 | ArpTable *arptbl = &slirp->arp_table;
|
| 32 | int i;
|
| 33 |
|
| 34 | DEBUG_CALL("arp_table_add");
|
| 35 | DEBUG_ARG("ip = 0x%x", ip_addr);
|
Mark Pizzolato | 79f50fa | 2015-10-16 03:43:27 -0700 | [diff] [blame] | 36 | DEBUG_ARGS(" hw addr = %02x:%02x:%02x:%02x:%02x:%02x\n",
|
Mark Pizzolato | e4cf98c | 2015-10-15 12:29:41 -0700 | [diff] [blame] | 37 | ethaddr[0], ethaddr[1], ethaddr[2],
|
Mark Pizzolato | 79f50fa | 2015-10-16 03:43:27 -0700 | [diff] [blame] | 38 | ethaddr[3], ethaddr[4], ethaddr[5]);
|
Mark Pizzolato | e4cf98c | 2015-10-15 12:29:41 -0700 | [diff] [blame] | 39 |
|
| 40 | if (ip_addr == 0 || ip_addr == 0xffffffff || ip_addr == broadcast_addr) {
|
| 41 | /* Do not register broadcast addresses */
|
| 42 | return;
|
| 43 | }
|
| 44 |
|
| 45 | /* Search for an entry */
|
| 46 | for (i = 0; i < ARP_TABLE_SIZE; i++) {
|
| 47 | if (arptbl->table[i].ar_sip == ip_addr) {
|
| 48 | /* Update the entry */
|
| 49 | memcpy(arptbl->table[i].ar_sha, ethaddr, ETH_ALEN);
|
| 50 | return;
|
| 51 | }
|
| 52 | }
|
| 53 |
|
| 54 | /* No entry found, create a new one */
|
| 55 | arptbl->table[arptbl->next_victim].ar_sip = ip_addr;
|
| 56 | memcpy(arptbl->table[arptbl->next_victim].ar_sha, ethaddr, ETH_ALEN);
|
| 57 | arptbl->next_victim = (arptbl->next_victim + 1) % ARP_TABLE_SIZE;
|
| 58 | }
|
| 59 |
|
| 60 | bool arp_table_search(Slirp *slirp, uint32_t ip_addr,
|
| 61 | uint8_t out_ethaddr[ETH_ALEN])
|
| 62 | {
|
| 63 | const uint32_t broadcast_addr =
|
| 64 | ~slirp->vnetwork_mask.s_addr | slirp->vnetwork_addr.s_addr;
|
| 65 | ArpTable *arptbl = &slirp->arp_table;
|
| 66 | int i;
|
| 67 |
|
| 68 | DEBUG_CALL("arp_table_search");
|
| 69 | DEBUG_ARG("ip = 0x%x", ip_addr);
|
| 70 |
|
| 71 | /* If broadcast address */
|
| 72 | if (ip_addr == 0xffffffff || ip_addr == broadcast_addr) {
|
| 73 | /* return Ethernet broadcast address */
|
| 74 | memset(out_ethaddr, 0xff, ETH_ALEN);
|
| 75 | return 1;
|
| 76 | }
|
| 77 |
|
| 78 | for (i = 0; i < ARP_TABLE_SIZE; i++) {
|
| 79 | if (arptbl->table[i].ar_sip == ip_addr) {
|
| 80 | memcpy(out_ethaddr, arptbl->table[i].ar_sha, ETH_ALEN);
|
Mark Pizzolato | 79f50fa | 2015-10-16 03:43:27 -0700 | [diff] [blame] | 81 | DEBUG_ARGS(" found hw addr = %02x:%02x:%02x:%02x:%02x:%02x\n",
|
Mark Pizzolato | e4cf98c | 2015-10-15 12:29:41 -0700 | [diff] [blame] | 82 | out_ethaddr[0], out_ethaddr[1], out_ethaddr[2],
|
Mark Pizzolato | 79f50fa | 2015-10-16 03:43:27 -0700 | [diff] [blame] | 83 | out_ethaddr[3], out_ethaddr[4], out_ethaddr[5]);
|
Mark Pizzolato | e4cf98c | 2015-10-15 12:29:41 -0700 | [diff] [blame] | 84 | return 1;
|
| 85 | }
|
| 86 | }
|
| 87 |
|
| 88 | return 0;
|
| 89 | }
|