forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtnl-arp-cache.c
241 lines (203 loc) · 6.09 KB
/
tnl-arp-cache.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*
* Copyright (c) 2014, 2015 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include <inttypes.h>
#include <stdlib.h>
#include "bitmap.h"
#include "cmap.h"
#include "coverage.h"
#include "dpif-netdev.h"
#include "dynamic-string.h"
#include "errno.h"
#include "flow.h"
#include "netdev.h"
#include "ovs-thread.h"
#include "packets.h"
#include "poll-loop.h"
#include "seq.h"
#include "socket-util.h"
#include "timeval.h"
#include "tnl-arp-cache.h"
#include "unaligned.h"
#include "unixctl.h"
#include "util.h"
#include "openvswitch/vlog.h"
/* In seconds */
#define ARP_ENTRY_DEFAULT_IDLE_TIME (15 * 60)
struct tnl_arp_entry {
struct cmap_node cmap_node;
ovs_be32 ip;
struct eth_addr mac;
time_t expires; /* Expiration time. */
char br_name[IFNAMSIZ];
};
static struct cmap table;
static struct ovs_mutex mutex = OVS_MUTEX_INITIALIZER;
static struct tnl_arp_entry *
tnl_arp_lookup__(const char br_name[IFNAMSIZ], ovs_be32 dst)
{
struct tnl_arp_entry *arp;
CMAP_FOR_EACH_WITH_HASH (arp, cmap_node, (OVS_FORCE uint32_t) dst, &table) {
if (arp->ip == dst && !strcmp(arp->br_name, br_name)) {
arp->expires = time_now() + ARP_ENTRY_DEFAULT_IDLE_TIME;
return arp;
}
}
return NULL;
}
int
tnl_arp_lookup(const char br_name[IFNAMSIZ], ovs_be32 dst,
struct eth_addr *mac)
{
struct tnl_arp_entry *arp;
int res = ENOENT;
arp = tnl_arp_lookup__(br_name, dst);
if (arp) {
*mac = arp->mac;
res = 0;
}
return res;
}
static void
arp_entry_free(struct tnl_arp_entry *arp)
{
free(arp);
}
static void
tnl_arp_delete(struct tnl_arp_entry *arp)
{
cmap_remove(&table, &arp->cmap_node, (OVS_FORCE uint32_t) arp->ip);
ovsrcu_postpone(arp_entry_free, arp);
}
static void
tnl_arp_set(const char name[IFNAMSIZ], ovs_be32 dst, const struct eth_addr mac)
{
ovs_mutex_lock(&mutex);
struct tnl_arp_entry *arp = tnl_arp_lookup__(name, dst);
if (arp) {
if (eth_addr_equals(arp->mac, mac)) {
arp->expires = time_now() + ARP_ENTRY_DEFAULT_IDLE_TIME;
ovs_mutex_unlock(&mutex);
return;
}
tnl_arp_delete(arp);
seq_change(tnl_conf_seq);
}
arp = xmalloc(sizeof *arp);
arp->ip = dst;
arp->mac = mac;
arp->expires = time_now() + ARP_ENTRY_DEFAULT_IDLE_TIME;
ovs_strlcpy(arp->br_name, name, sizeof arp->br_name);
cmap_insert(&table, &arp->cmap_node, (OVS_FORCE uint32_t) arp->ip);
ovs_mutex_unlock(&mutex);
}
int
tnl_arp_snoop(const struct flow *flow, struct flow_wildcards *wc,
const char name[IFNAMSIZ])
{
if (flow->dl_type != htons(ETH_TYPE_ARP)) {
return EINVAL;
}
/* Exact Match on all ARP flows. */
memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
memset(&wc->masks.arp_sha, 0xff, sizeof wc->masks.arp_sha);
tnl_arp_set(name, flow->nw_src, flow->arp_sha);
return 0;
}
void
tnl_arp_cache_run(void)
{
struct tnl_arp_entry *arp;
bool changed = false;
ovs_mutex_lock(&mutex);
CMAP_FOR_EACH(arp, cmap_node, &table) {
if (arp->expires <= time_now()) {
tnl_arp_delete(arp);
changed = true;
}
}
ovs_mutex_unlock(&mutex);
if (changed) {
seq_change(tnl_conf_seq);
}
}
static void
tnl_arp_cache_flush(struct unixctl_conn *conn, int argc OVS_UNUSED,
const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
{
struct tnl_arp_entry *arp;
bool changed = false;
ovs_mutex_lock(&mutex);
CMAP_FOR_EACH(arp, cmap_node, &table) {
tnl_arp_delete(arp);
changed = true;
}
ovs_mutex_unlock(&mutex);
if (changed) {
seq_change(tnl_conf_seq);
}
unixctl_command_reply(conn, "OK");
}
static void
tnl_arp_cache_add(struct unixctl_conn *conn, int argc OVS_UNUSED,
const char *argv[], void *aux OVS_UNUSED)
{
const char *br_name = argv[1];
struct eth_addr mac;
struct in_addr ip;
if (lookup_ip(argv[2], &ip)) {
unixctl_command_reply_error(conn, "bad IP address");
return;
}
if (!eth_addr_from_string(argv[3], &mac)) {
unixctl_command_reply_error(conn, "bad MAC address");
return;
}
tnl_arp_set(br_name, ip.s_addr, mac);
unixctl_command_reply(conn, "OK");
}
#define MAX_IP_ADDR_LEN 17
static void
tnl_arp_cache_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
{
struct ds ds = DS_EMPTY_INITIALIZER;
struct tnl_arp_entry *arp;
ds_put_cstr(&ds, "IP MAC Bridge\n");
ds_put_cstr(&ds, "=============================================\n");
ovs_mutex_lock(&mutex);
CMAP_FOR_EACH(arp, cmap_node, &table) {
int start_len, need_ws;
start_len = ds.length;
ds_put_format(&ds, IP_FMT, IP_ARGS(arp->ip));
need_ws = MAX_IP_ADDR_LEN - (ds.length - start_len);
ds_put_char_multiple(&ds, ' ', need_ws);
ds_put_format(&ds, ETH_ADDR_FMT" %s\n",
ETH_ADDR_ARGS(arp->mac), arp->br_name);
}
ovs_mutex_unlock(&mutex);
unixctl_command_reply(conn, ds_cstr(&ds));
ds_destroy(&ds);
}
void
tnl_arp_cache_init(void)
{
cmap_init(&table);
unixctl_command_register("tnl/arp/show", "", 0, 0, tnl_arp_cache_show, NULL);
unixctl_command_register("tnl/arp/set", "BRIDGE IP MAC", 3, 3, tnl_arp_cache_add, NULL);
unixctl_command_register("tnl/arp/flush", "", 0, 0, tnl_arp_cache_flush, NULL);
}