blob: 957706c15e2cf6e642da813b7286507b9622b142 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ethernet/arp.c: IP v4 ARP node
3 *
4 * Copyright (c) 2010 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/ip/ip.h>
John Lo1edfba92016-08-27 01:11:57 -040019#include <vnet/ip/ip6.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vnet/ethernet/ethernet.h>
21#include <vnet/ethernet/arp_packet.h>
22#include <vnet/l2/l2_input.h>
23#include <vppinfra/mhash.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/fib/ip4_fib.h>
Neale Rannsca193612017-06-14 06:50:08 -070025#include <vnet/fib/fib_entry_src.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010026#include <vnet/adj/adj_nbr.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000027#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010028#include <vnet/mpls/mpls.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070029
Billy McFall2d085d92016-09-13 21:47:55 -040030/**
31 * @file
32 * @brief IPv4 ARP.
33 *
34 * This file contains code to manage the IPv4 ARP tables (IP Address
35 * to MAC Address lookup).
36 */
37
38
Dave Barachf9bd6202015-12-14 13:22:11 -050039void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
40
Neale Ranns0bfe5d82016-08-25 15:29:12 +010041/**
42 * @brief Per-interface ARP configuration and state
43 */
44typedef struct ethernet_arp_interface_t_
45{
Neale Rannsb80c5362016-10-08 13:03:40 +010046 /**
47 * Hash table of ARP entries.
48 * Since this hash table is per-interface, the key is only the IPv4 address.
49 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050 uword *arp_entries;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051} ethernet_arp_interface_t;
52
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070053typedef struct
54{
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 u32 lo_addr;
56 u32 hi_addr;
57 u32 fib_index;
58} ethernet_proxy_arp_t;
59
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070060typedef struct
61{
Ed Warnickecb9cada2015-12-08 15:45:58 -070062 u32 next_index;
63 uword node_index;
64 uword type_opaque;
65 uword data;
66 /* Used for arp event notification only */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070067 void *data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 u32 pid;
69} pending_resolution_t;
70
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070071typedef struct
72{
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 /* Hash tables mapping name to opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070074 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070075
76 /* lite beer "glean" adjacency handling */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070077 uword *pending_resolutions_by_address;
78 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
80 /* Mac address change notification */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070081 uword *mac_changes_by_address;
82 pending_resolution_t *mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070084 ethernet_arp_ip4_entry_t *ip4_entry_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 /* ARP attack mitigation */
87 u32 arp_delete_rotor;
88 u32 limit_arp_cache_size;
89
Neale Ranns0bfe5d82016-08-25 15:29:12 +010090 /** Per interface state */
91 ethernet_arp_interface_t *ethernet_arp_by_sw_if_index;
92
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 /* Proxy arp vector */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070094 ethernet_proxy_arp_t *proxy_arps;
Ed Warnickecb9cada2015-12-08 15:45:58 -070095} ethernet_arp_main_t;
96
97static ethernet_arp_main_t ethernet_arp_main;
98
Neale Ranns0bfe5d82016-08-25 15:29:12 +010099typedef struct
100{
101 u32 sw_if_index;
102 ethernet_arp_ip4_over_ethernet_address_t a;
103 int is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800104 int is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100105 int flags;
106#define ETHERNET_ARP_ARGS_REMOVE (1<<0)
107#define ETHERNET_ARP_ARGS_FLUSH (1<<1)
108#define ETHERNET_ARP_ARGS_POPULATE (1<<2)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100109} vnet_arp_set_ip4_over_ethernet_rpc_args_t;
110
Matthew Smithcb9ab472017-05-16 21:35:56 -0500111static const u8 vrrp_prefix[] = { 0x00, 0x00, 0x5E, 0x00, 0x01 };
112
John Lo8b81cb42017-06-26 01:40:20 -0400113/* Node index for send_garp_na_process */
114u32 send_garp_na_process_node_index;
115
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100116static void
117set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
118 * a);
119
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700120static u8 *
121format_ethernet_arp_hardware_type (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122{
123 ethernet_arp_hardware_type_t h = va_arg (*va, ethernet_arp_hardware_type_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700124 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 switch (h)
126 {
127#define _(n,f) case n: t = #f; break;
128 foreach_ethernet_arp_hardware_type;
129#undef _
130
131 default:
132 return format (s, "unknown 0x%x", h);
133 }
134
135 return format (s, "%s", t);
136}
137
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700138static u8 *
139format_ethernet_arp_opcode (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140{
141 ethernet_arp_opcode_t o = va_arg (*va, ethernet_arp_opcode_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700142 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 switch (o)
144 {
145#define _(f) case ETHERNET_ARP_OPCODE_##f: t = #f; break;
146 foreach_ethernet_arp_opcode;
147#undef _
148
149 default:
150 return format (s, "unknown 0x%x", o);
151 }
152
153 return format (s, "%s", t);
154}
155
156static uword
157unformat_ethernet_arp_opcode_host_byte_order (unformat_input_t * input,
158 va_list * args)
159{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700160 int *result = va_arg (*args, int *);
161 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 int x, i;
163
164 /* Numeric opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700165 if (unformat (input, "0x%x", &x) || unformat (input, "%d", &x))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 {
167 if (x >= (1 << 16))
168 return 0;
169 *result = x;
170 return 1;
171 }
172
173 /* Named type. */
174 if (unformat_user (input, unformat_vlib_number_by_name,
175 am->opcode_by_name, &i))
176 {
177 *result = i;
178 return 1;
179 }
180
181 return 0;
182}
183
184static uword
185unformat_ethernet_arp_opcode_net_byte_order (unformat_input_t * input,
186 va_list * args)
187{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700188 int *result = va_arg (*args, int *);
189 if (!unformat_user
190 (input, unformat_ethernet_arp_opcode_host_byte_order, result))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 return 0;
192
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700193 *result = clib_host_to_net_u16 ((u16) * result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 return 1;
195}
196
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700197static u8 *
198format_ethernet_arp_header (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700200 ethernet_arp_header_t *a = va_arg (*va, ethernet_arp_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 u32 max_header_bytes = va_arg (*va, u32);
202 uword indent;
203 u16 l2_type, l3_type;
204
205 if (max_header_bytes != 0 && sizeof (a[0]) > max_header_bytes)
206 return format (s, "ARP header truncated");
207
208 l2_type = clib_net_to_host_u16 (a->l2_type);
209 l3_type = clib_net_to_host_u16 (a->l3_type);
210
211 indent = format_get_indent (s);
212
213 s = format (s, "%U, type %U/%U, address size %d/%d",
214 format_ethernet_arp_opcode, clib_net_to_host_u16 (a->opcode),
215 format_ethernet_arp_hardware_type, l2_type,
216 format_ethernet_type, l3_type,
217 a->n_l2_address_bytes, a->n_l3_address_bytes);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700218
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 if (l2_type == ETHERNET_ARP_HARDWARE_TYPE_ethernet
220 && l3_type == ETHERNET_TYPE_IP4)
221 {
222 s = format (s, "\n%U%U/%U -> %U/%U",
223 format_white_space, indent,
224 format_ethernet_address, a->ip4_over_ethernet[0].ethernet,
225 format_ip4_address, &a->ip4_over_ethernet[0].ip4,
226 format_ethernet_address, a->ip4_over_ethernet[1].ethernet,
227 format_ip4_address, &a->ip4_over_ethernet[1].ip4);
228 }
229 else
230 {
231 uword n2 = a->n_l2_address_bytes;
232 uword n3 = a->n_l3_address_bytes;
233 s = format (s, "\n%U%U/%U -> %U/%U",
234 format_white_space, indent,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700235 format_hex_bytes, a->data + 0 * n2 + 0 * n3, n2,
236 format_hex_bytes, a->data + 1 * n2 + 0 * n3, n3,
237 format_hex_bytes, a->data + 1 * n2 + 1 * n3, n2,
238 format_hex_bytes, a->data + 2 * n2 + 1 * n3, n3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 }
240
241 return s;
242}
243
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100244u8 *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700245format_ethernet_arp_ip4_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700247 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
248 ethernet_arp_ip4_entry_t *e = va_arg (*va, ethernet_arp_ip4_entry_t *);
249 vnet_sw_interface_t *si;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700250 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700252 if (!e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100253 return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700254 "Flags", "Ethernet", "Interface");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100256 si = vnet_get_sw_interface (vnm, e->sw_if_index);
Damjan Marion102ec522016-03-29 13:18:17 +0200257
258 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700259 flags = format (flags, "S");
Damjan Marion102ec522016-03-29 13:18:17 +0200260
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100261 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
262 flags = format (flags, "D");
263
Neale Rannsb3b2de72017-03-08 05:17:22 -0800264 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY)
265 flags = format (flags, "N");
266
Neale Ranns5c994c12017-08-04 06:22:23 -0700267 s = format (s, "%=12U%=16U%=6s%=20U%U",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 format_vlib_cpu_time, vnm->vlib_main, e->cpu_time_last_updated,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100269 format_ip4_address, &e->ip4_address,
Damjan Marion102ec522016-03-29 13:18:17 +0200270 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 format_ethernet_address, e->ethernet_address,
272 format_vnet_sw_interface_name, vnm, si);
273
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700274 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 return s;
276}
277
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700278typedef struct
279{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 u8 packet_data[64];
281} ethernet_arp_input_trace_t;
282
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700283static u8 *
284format_ethernet_arp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285{
286 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
287 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700288 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
290 s = format (s, "%U",
291 format_ethernet_arp_header,
292 t->packet_data, sizeof (t->packet_data));
293
294 return s;
295}
296
John Lo1edfba92016-08-27 01:11:57 -0400297static u8 *
298format_arp_term_input_trace (u8 * s, va_list * va)
299{
300 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
301 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
302 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
303
304 /* arp-term trace data saved is either arp or ip6/icmp6 packet:
305 - for arp, the 1st 16-bit field is hw type of value of 0x0001.
306 - for ip6, the first nibble has value of 6. */
307 s = format (s, "%U", t->packet_data[0] == 0 ?
308 format_ethernet_arp_header : format_ip6_header,
309 t->packet_data, sizeof (t->packet_data));
310
311 return s;
312}
313
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100314static void
Neale Rannsb80c5362016-10-08 13:03:40 +0100315arp_nbr_probe (ip_adjacency_t * adj)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316{
Neale Rannsb80c5362016-10-08 13:03:40 +0100317 vnet_main_t *vnm = vnet_get_main ();
318 ip4_main_t *im = &ip4_main;
319 ip_interface_address_t *ia;
320 ethernet_arp_header_t *h;
321 vnet_hw_interface_t *hi;
322 vnet_sw_interface_t *si;
323 ip4_address_t *src;
324 vlib_buffer_t *b;
325 vlib_main_t *vm;
326 u32 bi = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
Neale Rannsb80c5362016-10-08 13:03:40 +0100328 vm = vlib_get_main ();
John Locbec1a12016-07-05 18:34:40 -0400329
Neale Rannsb80c5362016-10-08 13:03:40 +0100330 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
331
332 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100334 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100336
337 src =
338 ip4_interface_address_matching_destination (im,
339 &adj->sub_type.nbr.next_hop.
340 ip4,
341 adj->rewrite_header.
342 sw_if_index, &ia);
343 if (!src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100345 return;
346 }
347
348 h =
349 vlib_packet_template_get_packet (vm, &im->ip4_arp_request_packet_template,
350 &bi);
351
352 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
353
354 clib_memcpy (h->ip4_over_ethernet[0].ethernet,
355 hi->hw_address, sizeof (h->ip4_over_ethernet[0].ethernet));
356
357 h->ip4_over_ethernet[0].ip4 = src[0];
358 h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
359
360 b = vlib_get_buffer (vm, bi);
361 vnet_buffer (b)->sw_if_index[VLIB_RX] =
362 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
363
364 /* Add encapsulation string for software interface (e.g. ethernet header). */
365 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
366 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
367
368 {
369 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
370 u32 *to_next = vlib_frame_vector_args (f);
371 to_next[0] = bi;
372 f->n_vectors = 1;
373 vlib_put_frame_to_node (vm, hi->output_node_index, f);
374 }
375}
376
377static void
378arp_mk_complete (adj_index_t ai, ethernet_arp_ip4_entry_t * e)
379{
380 adj_nbr_update_rewrite
381 (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
382 ethernet_build_rewrite (vnet_get_main (),
383 e->sw_if_index,
384 adj_get_link_type (ai), e->ethernet_address));
385}
386
387static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000388arp_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100389{
Neale Ranns19c68d22016-12-07 15:38:14 +0000390 ip_adjacency_t *adj = adj_get (ai);
391
Neale Rannsb80c5362016-10-08 13:03:40 +0100392 adj_nbr_update_rewrite
393 (ai,
394 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
395 ethernet_build_rewrite (vnet_get_main (),
Neale Ranns19c68d22016-12-07 15:38:14 +0000396 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100397 VNET_LINK_ARP,
398 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
399}
400
401static ethernet_arp_ip4_entry_t *
402arp_entry_find (ethernet_arp_interface_t * eai, const ip4_address_t * addr)
403{
404 ethernet_arp_main_t *am = &ethernet_arp_main;
405 ethernet_arp_ip4_entry_t *e = NULL;
406 uword *p;
407
408 if (NULL != eai->arp_entries)
409 {
410 p = hash_get (eai->arp_entries, addr->as_u32);
411 if (!p)
412 return (NULL);
413
414 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
415 }
416
417 return (e);
418}
419
420static adj_walk_rc_t
421arp_mk_complete_walk (adj_index_t ai, void *ctx)
422{
423 ethernet_arp_ip4_entry_t *e = ctx;
424
425 arp_mk_complete (ai, e);
426
427 return (ADJ_WALK_RC_CONTINUE);
428}
429
430static adj_walk_rc_t
431arp_mk_incomplete_walk (adj_index_t ai, void *ctx)
432{
Neale Ranns19c68d22016-12-07 15:38:14 +0000433 arp_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100434
435 return (ADJ_WALK_RC_CONTINUE);
436}
437
438void
439arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
440{
441 ethernet_arp_main_t *am = &ethernet_arp_main;
442 ethernet_arp_interface_t *arp_int;
443 ethernet_arp_ip4_entry_t *e;
444 ip_adjacency_t *adj;
445
446 adj = adj_get (ai);
447
448 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
449 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
450 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
451
Neale Ranns32e1c012016-11-22 17:07:28 +0000452 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100453 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000454 case IP_LOOKUP_NEXT_ARP:
455 case IP_LOOKUP_NEXT_GLEAN:
456 if (NULL != e)
457 {
458 adj_nbr_walk_nh4 (sw_if_index,
459 &e->ip4_address, arp_mk_complete_walk, e);
460 }
461 else
462 {
463 /*
464 * no matching ARP entry.
465 * construct the rewrite required to for an ARP packet, and stick
466 * that in the adj's pipe to smoke.
467 */
468 adj_nbr_update_rewrite
469 (ai,
470 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
471 ethernet_build_rewrite
472 (vnm,
473 sw_if_index,
474 VNET_LINK_ARP,
475 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
476
477 /*
478 * since the FIB has added this adj for a route, it makes sense it
479 * may want to forward traffic sometime soon. Let's send a
480 * speculative ARP. just one. If we were to do periodically that
481 * wouldn't be bad either, but that's more code than i'm prepared to
482 * write at this time for relatively little reward.
483 */
484 arp_nbr_probe (adj);
485 }
486 break;
487 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700488 {
489 /*
490 * Construct a partial rewrite from the known ethernet mcast dest MAC
491 */
492 u8 *rewrite;
493 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100494
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700495 rewrite = ethernet_build_rewrite (vnm,
496 sw_if_index,
497 adj->ia_link,
498 ethernet_ip4_mcast_dst_addr ());
499 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000500
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700501 /*
502 * Complete the remaining fields of the adj's rewrite to direct the
503 * complete of the rewrite at switch time by copying in the IP
504 * dst address's bytes.
505 * Ofset is 2 bytes into the MAC desintation address. And we copy 23 bits
506 * from the address.
507 */
508 adj_mcast_update_rewrite (ai, rewrite, offset, 0x007fffff);
Neale Ranns32e1c012016-11-22 17:07:28 +0000509
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700510 break;
511 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000512 case IP_LOOKUP_NEXT_DROP:
513 case IP_LOOKUP_NEXT_PUNT:
514 case IP_LOOKUP_NEXT_LOCAL:
515 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800516 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000517 case IP_LOOKUP_NEXT_MIDCHAIN:
518 case IP_LOOKUP_NEXT_ICMP_ERROR:
519 case IP_LOOKUP_N_NEXT:
520 ASSERT (0);
521 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100522 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523}
524
Neale Ranns15002542017-09-10 04:39:11 -0700525static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700526arp_adj_fib_add (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700527{
528 fib_prefix_t pfx = {
529 .fp_len = 32,
530 .fp_proto = FIB_PROTOCOL_IP4,
531 .fp_addr.ip4 = e->ip4_address,
532 };
533
534 e->fib_entry_index =
535 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
536 FIB_ENTRY_FLAG_ATTACHED,
537 DPO_PROTO_IP4, &pfx.fp_addr,
538 e->sw_if_index, ~0, 1, NULL,
539 FIB_ROUTE_PATH_FLAG_NONE);
540 fib_table_lock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
541}
542
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543int
544vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 vnet_arp_set_ip4_over_ethernet_rpc_args_t
546 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700548 ethernet_arp_ip4_entry_t *e = 0;
549 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100550 ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700551 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700552 int make_new_arp_cache_entry = 1;
553 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700554 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100555 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100556 int is_static = args->is_static;
557 u32 sw_if_index = args->sw_if_index;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800558 int is_no_fib_entry = args->is_no_fib_entry;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700559
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100560 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100562 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100564 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100566 p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
567 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700568 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100569 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
570
571 /* Refuse to over-write static arp. */
572 if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
573 return -2;
574 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700575 }
Damjan Marion102ec522016-03-29 13:18:17 +0200576 }
577
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578 if (make_new_arp_cache_entry)
579 {
580 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100581
582 if (NULL == arp_int->arp_entries)
583 {
584 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100585 }
586
587 hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
588
589 e->sw_if_index = sw_if_index;
590 e->ip4_address = a->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700591 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100592 clib_memcpy (e->ethernet_address,
593 a->ethernet, sizeof (e->ethernet_address));
594
Neale Rannsb3b2de72017-03-08 05:17:22 -0800595 if (!is_no_fib_entry)
596 {
Neale Ranns15002542017-09-10 04:39:11 -0700597 arp_adj_fib_add (e,
598 ip4_fib_table_get_index_for_sw_if_index
599 (e->sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700600 }
601 else
602 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800603 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY;
604 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100606 else
607 {
608 /*
609 * prevent a DoS attack from the data-plane that
610 * spams us with no-op updates to the MAC address
611 */
612 if (0 == memcmp (e->ethernet_address,
613 a->ethernet, sizeof (e->ethernet_address)))
614 return -1;
Neale Rannsb80c5362016-10-08 13:03:40 +0100615
616 /* Update time stamp and ethernet address. */
617 clib_memcpy (e->ethernet_address, a->ethernet,
618 sizeof (e->ethernet_address));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100619 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 e->cpu_time_last_updated = clib_cpu_time_now ();
622 if (is_static)
623 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624 else
625 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
626
Neale Rannsb80c5362016-10-08 13:03:40 +0100627 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628
629 /* Customer(s) waiting for this address to be resolved? */
630 p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
631 if (p)
632 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100633 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 next_index = p[0];
635
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700636 while (next_index != (u32) ~ 0)
637 {
638 pr = pool_elt_at_index (am->pending_resolutions, next_index);
639 vlib_process_signal_event (vm, pr->node_index,
640 pr->type_opaque, pr->data);
641 next_index = pr->next_index;
642 pool_put (am->pending_resolutions, pr);
643 }
644
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645 hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
646 }
647
648 /* Customer(s) requesting ARP event for this address? */
649 p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
650 if (p)
651 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100652 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 next_index = p[0];
654
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700655 while (next_index != (u32) ~ 0)
656 {
657 int (*fp) (u32, u8 *, u32, u32);
658 int rv = 1;
659 mc = pool_elt_at_index (am->mac_changes, next_index);
660 fp = mc->data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700662 /* Call the user's data callback, return 1 to suppress dup events */
663 if (fp)
664 rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
665
Damjan Marion607de1a2016-08-16 22:53:54 +0200666 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700667 * Signal the resolver process, as long as the user
668 * says they want to be notified
669 */
670 if (rv == 0)
671 vlib_process_signal_event (vm, mc->node_index,
672 mc->type_opaque, mc->data);
673 next_index = mc->next_index;
674 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 }
676
677 return 0;
678}
679
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700680void
681vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
682 void *address_arg,
683 uword node_index,
684 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700686 ethernet_arp_main_t *am = &ethernet_arp_main;
687 ip4_address_t *address = address_arg;
688 uword *p;
689 pending_resolution_t *pr;
690
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 pool_get (am->pending_resolutions, pr);
692
693 pr->next_index = ~0;
694 pr->node_index = node_index;
695 pr->type_opaque = type_opaque;
696 pr->data = data;
697 pr->data_callback = 0;
698
699 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
700 if (p)
701 {
702 /* Insert new resolution at the head of the list */
703 pr->next_index = p[0];
704 hash_unset (am->pending_resolutions_by_address, address->as_u32);
705 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700706
707 hash_set (am->pending_resolutions_by_address, address->as_u32,
708 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709}
710
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700711int
712vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
713 void *data_callback,
714 u32 pid,
715 void *address_arg,
716 uword node_index,
717 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700719 ethernet_arp_main_t *am = &ethernet_arp_main;
720 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700721
Eyal Bari8db1de82017-03-31 02:15:17 +0300722 /* Try to find an existing entry */
723 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
724 u32 *p = first;
725 pending_resolution_t *mc;
726 while (p && *p != ~0)
727 {
728 mc = pool_elt_at_index (am->mac_changes, *p);
729 if (mc->node_index == node_index && mc->type_opaque == type_opaque
730 && mc->pid == pid)
731 break;
732 p = &mc->next_index;
733 }
734
735 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736 if (is_add)
737 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300738 if (found)
739 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
740
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741 pool_get (am->mac_changes, mc);
Eyal Bari8db1de82017-03-31 02:15:17 +0300742 *mc = (pending_resolution_t)
743 {
744 .next_index = ~0,.node_index = node_index,.type_opaque =
745 type_opaque,.data = data,.data_callback = data_callback,.pid =
746 pid,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747
Eyal Bari8db1de82017-03-31 02:15:17 +0300748 /* Insert new resolution at the end of the list */
749 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300751 p[0] = new_idx;
752 else
753 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 }
755 else
756 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300757 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700758 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
Eyal Bari8db1de82017-03-31 02:15:17 +0300760 /* Clients may need to clean up pool entries, too */
761 void (*fp) (u32, u8 *) = data_callback;
762 if (fp)
763 (*fp) (mc->data, 0 /* no new mac addrs */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764
Eyal Bari8db1de82017-03-31 02:15:17 +0300765 /* Remove the entry from the list and delete the entry */
766 *p = mc->next_index;
767 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700768
Eyal Bari8db1de82017-03-31 02:15:17 +0300769 /* Remove from hash if we deleted the last entry */
770 if (*p == ~0 && p == first)
771 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300773 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774}
775
776/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700777typedef enum
778{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779 ARP_INPUT_NEXT_DROP,
John Lod1f5d042016-04-12 18:20:39 -0400780 ARP_INPUT_NEXT_REPLY_TX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 ARP_INPUT_N_NEXT,
782} arp_input_next_t;
783
784#define foreach_ethernet_arp_error \
785 _ (replies_sent, "ARP replies sent") \
786 _ (l2_type_not_ethernet, "L2 type not ethernet") \
787 _ (l3_type_not_ip4, "L3 type not IP4") \
788 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
789 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
790 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
791 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
792 _ (replies_received, "ARP replies received") \
793 _ (opcode_not_request, "ARP opcode not request") \
794 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
795 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100797 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800798 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700800typedef enum
801{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
803 foreach_ethernet_arp_error
804#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700805 ETHERNET_ARP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806} ethernet_arp_input_error_t;
807
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700809static void
810unset_random_arp_entry (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700812 ethernet_arp_main_t *am = &ethernet_arp_main;
813 ethernet_arp_ip4_entry_t *e;
814 vnet_main_t *vnm = vnet_get_main ();
815 ethernet_arp_ip4_over_ethernet_address_t delme;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816 u32 index;
817
818 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
819 am->arp_delete_rotor = index;
820
821 /* Try again from elt 0, could happen if an intfc goes down */
822 if (index == ~0)
823 {
824 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
825 am->arp_delete_rotor = index;
826 }
827
828 /* Nothing left in the pool */
829 if (index == ~0)
830 return;
831
832 e = pool_elt_at_index (am->ip4_entry_pool, index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700833
Damjan Marionf1213b82016-03-13 02:22:06 +0100834 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100835 delme.ip4.as_u32 = e->ip4_address.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700836
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100837 vnet_arp_unset_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700839
Neale Ranns436d06b2016-11-30 07:41:53 -0800840static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700841arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700842 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700844 vnet_main_t *vnm = vnet_get_main ();
845 vnet_interface_main_t *vim = &vnm->interface_main;
846 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700848 /* verify that the input interface is unnumbered to the connected.
849 * the connected interface is the interface on which the subnet is
850 * configured */
851 si = &vim->sw_interfaces[input_sw_if_index];
852
853 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
854 (si->unnumbered_sw_if_index == conn_sw_if_index)))
855 {
856 /* the input interface is not unnumbered to the interface on which
857 * the sub-net is configured that covers the ARP request.
858 * So this is not the case for unnumbered.. */
859 return 0;
860 }
861
Neale Ranns436d06b2016-11-30 07:41:53 -0800862 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863}
864
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700865static u32
866arp_learn (vnet_main_t * vnm,
867 ethernet_arp_main_t * am, u32 sw_if_index, void *addr)
868{
869 if (am->limit_arp_cache_size &&
870 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
871 unset_random_arp_entry ();
872
873 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0, 0);
874 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
875}
876
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700878arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700880 ethernet_arp_main_t *am = &ethernet_arp_main;
881 vnet_main_t *vnm = vnet_get_main ();
882 ip4_main_t *im4 = &ip4_main;
883 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884 u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
885
886 from = vlib_frame_vector_args (frame);
887 n_left_from = frame->n_vectors;
888 next_index = node->cached_next_index;
889
890 if (node->flags & VLIB_NODE_FLAG_TRACE)
891 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
892 /* stride */ 1,
893 sizeof (ethernet_arp_input_trace_t));
894
895 while (n_left_from > 0)
896 {
897 u32 n_left_to_next;
898
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700899 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900
901 while (n_left_from > 0 && n_left_to_next > 0)
902 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700903 vlib_buffer_t *p0;
904 vnet_hw_interface_t *hw_if0;
905 ethernet_arp_header_t *arp0;
Neale Ranns30d0fd42017-05-30 07:30:04 -0700906 ethernet_header_t *eth_rx, *eth_tx;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100907 ip4_address_t *if_addr0, proxy_src;
908 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Matthew Smithcb9ab472017-05-16 21:35:56 -0500909 u8 is_request0, dst_is_local0, is_unnum0, is_vrrp_reply0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700910 ethernet_proxy_arp_t *pa;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100911 fib_node_index_t dst_fei, src_fei;
912 fib_prefix_t pfx0;
913 fib_entry_flag_t src_flags, dst_flags;
Neale Rannsa3a3a9d2017-08-08 12:35:11 -0700914 u8 *rewrite0, rewrite0_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915
916 pi0 = from[0];
917 to_next[0] = pi0;
918 from += 1;
919 to_next += 1;
920 n_left_from -= 1;
921 n_left_to_next -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100922 pa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923
924 p0 = vlib_get_buffer (vm, pi0);
925 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -0700926 /* Fill in ethernet header. */
927 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700929 is_request0 = arp0->opcode
930 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931
932 error0 = ETHERNET_ARP_ERROR_replies_sent;
933
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700934 error0 =
935 (arp0->l2_type !=
936 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
937 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
938 error0 =
939 (arp0->l3_type !=
940 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
941 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942
943 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
944
Neale Rannsd96bad82017-03-08 01:12:54 -0800945 /* not playing the ARP game if the interface is not IPv4 enabled */
946 error0 =
947 (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
948 ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
949
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950 if (error0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100951 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952
953 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100954 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
955 if (~0 == fib_index0)
956 {
957 error0 = ETHERNET_ARP_ERROR_interface_no_table;
958 goto drop2;
959
960 }
961 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
962 &arp0->ip4_over_ethernet[1].ip4,
963 32);
Matus Fabiandccbee32017-01-31 22:20:30 -0800964 dst_flags = fib_entry_get_flags (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100965
Matus Fabiandccbee32017-01-31 22:20:30 -0800966 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100967
Neale Rannsca193612017-06-14 06:50:08 -0700968 /* Honor unnumbered interface, if any */
969 is_unnum0 = sw_if_index0 != conn_sw_if_index0;
970
971 {
972 /*
973 * we're looking for FIB entries that indicate the source
974 * is attached. There may be more specific non-attached
975 * routes tht match the source, but these do not influence
976 * whether we respond to an ARP request, i.e. they do not
977 * influence whether we are the correct way for the sender
978 * to reach us, they only affect how we reach the sender.
979 */
980 fib_entry_t *src_fib_entry;
981 fib_entry_src_t *src;
982 fib_source_t source;
983 fib_prefix_t pfx;
984 int attached;
985 int mask;
986
987 mask = 32;
988 attached = 0;
989
990 do
991 {
992 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
993 &arp0->
994 ip4_over_ethernet[0].ip4,
995 mask);
996 src_fib_entry = fib_entry_get (src_fei);
997
998 /*
999 * It's possible that the source that provides the
1000 * flags we need, or the flags we must not have,
1001 * is not the best source, so check then all.
1002 */
1003 /* *INDENT-OFF* */
1004 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1005 ({
1006 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1007
1008 /* Reject requests/replies with our local interface
1009 address. */
1010 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1011 {
1012 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns24b170a2017-08-15 05:33:11 -07001013 /*
1014 * When VPP has an interface whose address is also
1015 * applied to a TAP interface on the host, then VPP's
1016 * TAP interface will be unnumbered to the 'real'
1017 * interface and do proxy ARP from the host.
1018 * The curious aspect of this setup is that ARP requests
1019 * from the host will come from the VPP's own address.
1020 * So don't drop immediately here, instead go see if this
1021 * is a proxy ARP case.
1022 */
1023 goto drop1;
Neale Rannsca193612017-06-14 06:50:08 -07001024 }
1025 /* A Source must also be local to subnet of matching
1026 * interface address. */
1027 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1028 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1029 {
1030 attached = 1;
1031 break;
1032 }
1033 /*
1034 * else
1035 * The packet was sent from an address that is not
1036 * connected nor attached i.e. it is not from an
1037 * address that is covered by a link's sub-net,
1038 * nor is it a already learned host resp.
1039 */
1040 }));
1041 /* *INDENT-ON* */
1042
1043 /*
1044 * shorter mask lookup for the next iteration.
1045 */
1046 fib_entry_get_prefix (src_fei, &pfx);
1047 mask = pfx.fp_len - 1;
1048
1049 /*
1050 * continue until we hit the default route or we find
1051 * the attached we are looking for. The most likely
1052 * outcome is we find the attached with the first source
1053 * on the first lookup.
1054 */
1055 }
1056 while (!attached &&
1057 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1058
1059 if (!attached)
1060 {
1061 /*
1062 * the matching route is a not attached, i.e. it was
1063 * added as a result of routing, rather than interface/ARP
1064 * configuration. If the matching route is not a host route
1065 * (i.e. a /32)
1066 */
1067 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
1068 goto drop2;
1069 }
1070 }
1071
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001072 if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073 {
1074 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1075 goto drop1;
1076 }
1077
Neale Ranns797235a2017-01-09 14:33:38 +01001078 if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1079 {
1080 /*
1081 * The interface the ARP was received on is not the interface
Neale Rannsca193612017-06-14 06:50:08 -07001082 * on which the covering prefix is configured. Maybe this is a
1083 * case for unnumbered.
Neale Ranns797235a2017-01-09 14:33:38 +01001084 */
1085 is_unnum0 = 1;
1086 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001088 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
1089 fib_entry_get_prefix (dst_fei, &pfx0);
1090 if_addr0 = &pfx0.fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091
Matthew Smithcb9ab472017-05-16 21:35:56 -05001092 is_vrrp_reply0 =
1093 ((arp0->opcode ==
1094 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1095 &&
1096 (!memcmp
1097 (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
1098 sizeof (vrrp_prefix))));
1099
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001100 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001101 match their L2-frame-level source addresses, unless it's
1102 a reply from a VRRP virtual router */
Neale Ranns30d0fd42017-05-30 07:30:04 -07001103 if (memcmp
1104 (eth_rx->src_address, arp0->ip4_over_ethernet[0].ethernet,
1105 sizeof (eth_rx->src_address)) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001106 {
1107 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1108 goto drop2;
1109 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001111 /* Learn or update sender's mapping only for replies to addresses
1112 * that are local to the subnet */
1113 if (arp0->opcode ==
1114 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply) &&
1115 dst_is_local0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001116 {
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001117 error0 = arp_learn (vnm, am, sw_if_index0,
1118 &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119 goto drop1;
1120 }
1121
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001122 send_reply:
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001123 /* Send a reply.
1124 An adjacency to the sender is not always present,
1125 so we use the interface to build us a rewrite string
1126 which will contain all the necessary tags. */
1127 rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1128 VNET_LINK_ARP,
1129 eth_rx->src_address);
1130 rewrite0_len = vec_len (rewrite0);
1131
Neale Ranns30d0fd42017-05-30 07:30:04 -07001132 /* Figure out how much to rewind current data from adjacency. */
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001133 vlib_buffer_advance (p0, -rewrite0_len);
Neale Ranns30d0fd42017-05-30 07:30:04 -07001134 eth_tx = vlib_buffer_get_current (p0);
1135
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1137 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1138
John Lod1f5d042016-04-12 18:20:39 -04001139 /* Send reply back through input interface */
1140 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1141 next0 = ARP_INPUT_NEXT_REPLY_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142
1143 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1144
1145 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1146
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001147 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1148 hw_if0->hw_address, 6);
1149 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1150 if_addr0->data_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151
1152 /* Hardware must be ethernet-like. */
1153 ASSERT (vec_len (hw_if0->hw_address) == 6);
1154
Neale Ranns30d0fd42017-05-30 07:30:04 -07001155 /* the rx nd tx ethernet headers wil overlap in the case
1156 * when we received a tagged VLAN=0 packet, but we are sending
1157 * back untagged */
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001158 clib_memcpy (eth_tx, rewrite0, vec_len (rewrite0));
1159 vec_free (rewrite0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001161 if (NULL == pa)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001162 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001163 if (is_unnum0)
Neale Ranns436d06b2016-11-30 07:41:53 -08001164 {
Neale Ranns30d0fd42017-05-30 07:30:04 -07001165 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001166 goto drop2;
1167 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001168 }
Neale Ranns4b919a52017-03-11 05:55:21 -08001169
Neale Ranns24b170a2017-08-15 05:33:11 -07001170 /* We are going to reply to this request, so, in the absence of
1171 errors, learn the sender */
1172 if (!error0)
1173 error0 = arp_learn (vnm, am, sw_if_index0,
1174 &arp0->ip4_over_ethernet[1]);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001175
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001176 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1177 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178
1179 n_replies_sent += 1;
1180 continue;
1181
1182 drop1:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001183 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
1184 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1185 arp0->ip4_over_ethernet[1].ip4.as_u32))
1186 {
1187 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1188 goto drop2;
1189 }
1190 /* See if proxy arp is configured for the address */
1191 if (is_request0)
1192 {
1193 vnet_sw_interface_t *si;
1194 u32 this_addr = clib_net_to_host_u32
1195 (arp0->ip4_over_ethernet[1].ip4.as_u32);
1196 u32 fib_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001198 si = vnet_get_sw_interface (vnm, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001200 if (!(si->flags & VNET_SW_INTERFACE_FLAG_PROXY_ARP))
1201 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001203 fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1204 sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001206 vec_foreach (pa, am->proxy_arps)
1207 {
1208 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr);
1209 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001211 /* an ARP request hit in the proxy-arp table? */
1212 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1213 (fib_index0 == pa->fib_index))
1214 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001215 proxy_src.as_u32 =
1216 arp0->ip4_over_ethernet[1].ip4.data_u32;
1217
Damjan Marion607de1a2016-08-16 22:53:54 +02001218 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001219 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001220 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001221 if_addr0 = &proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001222 is_unnum0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001223 n_proxy_arp_replies_sent++;
1224 goto send_reply;
1225 }
1226 }
1227 }
1228
1229 drop2:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230
1231 next0 = ARP_INPUT_NEXT_DROP;
1232 p0->error = node->errors[error0];
1233
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001234 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1235 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236 }
1237
1238 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1239 }
1240
1241 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001242 ETHERNET_ARP_ERROR_replies_sent,
1243 n_replies_sent - n_proxy_arp_replies_sent);
1244
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001246 ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1247 n_proxy_arp_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248 return frame->n_vectors;
1249}
1250
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001251static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252#define _(sym,string) string,
1253 foreach_ethernet_arp_error
1254#undef _
1255};
1256
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001257/* *INDENT-OFF* */
1258VLIB_REGISTER_NODE (arp_input_node, static) =
1259{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260 .function = arp_input,
1261 .name = "arp-input",
1262 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001263 .n_errors = ETHERNET_ARP_N_ERROR,
1264 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265 .n_next_nodes = ARP_INPUT_N_NEXT,
1266 .next_nodes = {
1267 [ARP_INPUT_NEXT_DROP] = "error-drop",
John Lod1f5d042016-04-12 18:20:39 -04001268 [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270 .format_buffer = format_ethernet_arp_header,
1271 .format_trace = format_ethernet_arp_input_trace,
1272};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001273/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275static int
1276ip4_arp_entry_sort (void *a1, void *a2)
1277{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001278 ethernet_arp_ip4_entry_t *e1 = a1;
1279 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001280
1281 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001282 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001283
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001284 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001285 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001286 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287 return cmp;
1288}
1289
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001290ethernet_arp_ip4_entry_t *
1291ip4_neighbor_entries (u32 sw_if_index)
1292{
1293 ethernet_arp_main_t *am = &ethernet_arp_main;
1294 ethernet_arp_ip4_entry_t *n, *ns = 0;
1295
1296 /* *INDENT-OFF* */
1297 pool_foreach (n, am->ip4_entry_pool, ({
1298 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1299 continue;
1300 vec_add1 (ns, n[0]);
1301 }));
1302 /* *INDENT-ON* */
1303
1304 if (ns)
1305 vec_sort_with_function (ns, ip4_arp_entry_sort);
1306 return ns;
1307}
1308
Ed Warnickecb9cada2015-12-08 15:45:58 -07001309static clib_error_t *
1310show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001311 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001313 vnet_main_t *vnm = vnet_get_main ();
1314 ethernet_arp_main_t *am = &ethernet_arp_main;
1315 ethernet_arp_ip4_entry_t *e, *es;
1316 ethernet_proxy_arp_t *pa;
1317 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001318 u32 sw_if_index;
1319
1320 /* Filter entries by interface if given. */
1321 sw_if_index = ~0;
1322 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1323
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001324 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001325 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001326 {
Keith Wilescb466842016-02-11 19:21:10 -06001327 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001328 vec_foreach (e, es)
1329 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001330 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001331 }
1332 vec_free (es);
1333 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334
1335 if (vec_len (am->proxy_arps))
1336 {
1337 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001338 vec_foreach (pa, am->proxy_arps)
1339 {
1340 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1341 pa->fib_index,
1342 format_ip4_address, &pa->lo_addr,
1343 format_ip4_address, &pa->hi_addr);
1344 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001346
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347 return error;
1348}
1349
Billy McFall2d085d92016-09-13 21:47:55 -04001350/*?
1351 * Display all the IPv4 ARP entries.
1352 *
1353 * @cliexpar
1354 * Example of how to display the IPv4 ARP table:
1355 * @cliexstart{show ip arp}
1356 * Time FIB IP4 Flags Ethernet Interface
1357 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1358 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1359 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1360 * Proxy arps enabled for:
1361 * Fib_index 0 6.0.0.1 - 6.0.0.11
1362 * @cliexend
1363 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001364/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001365VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1366 .path = "show ip arp",
1367 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001368 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001370/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001371
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001372typedef struct
1373{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374 pg_edit_t l2_type, l3_type;
1375 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1376 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001377 struct
1378 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001379 pg_edit_t ethernet;
1380 pg_edit_t ip4;
1381 } ip4_over_ethernet[2];
1382} pg_ethernet_arp_header_t;
1383
1384static inline void
1385pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1386{
1387 /* Initialize fields that are not bit fields in the IP header. */
1388#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001389 _(l2_type);
1390 _(l3_type);
1391 _(n_l2_address_bytes);
1392 _(n_l3_address_bytes);
1393 _(opcode);
1394 _(ip4_over_ethernet[0].ethernet);
1395 _(ip4_over_ethernet[0].ip4);
1396 _(ip4_over_ethernet[1].ethernet);
1397 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001398#undef _
1399}
1400
1401uword
1402unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1403{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001404 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1405 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001406 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001407
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1409 &group_index);
1410 pg_ethernet_arp_header_init (p);
1411
1412 /* Defaults. */
1413 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1414 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1415 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1416 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1417
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001418 if (!unformat (input, "%U: %U/%U -> %U/%U",
1419 unformat_pg_edit,
1420 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1421 unformat_pg_edit,
1422 unformat_ethernet_address, &p->ip4_over_ethernet[0].ethernet,
1423 unformat_pg_edit,
1424 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1425 unformat_pg_edit,
1426 unformat_ethernet_address, &p->ip4_over_ethernet[1].ethernet,
1427 unformat_pg_edit,
1428 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001429 {
1430 /* Free up any edits we may have added. */
1431 pg_free_edit_group (s);
1432 return 0;
1433 }
1434 return 1;
1435}
1436
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001437clib_error_t *
1438ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001440 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001441
1442 am->limit_arp_cache_size = arp_limit;
1443 return 0;
1444}
1445
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001446/**
1447 * @brief Control Plane hook to remove an ARP entry
1448 */
1449int
1450vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
1451 u32 sw_if_index, void *a_arg)
Damjan Marion102ec522016-03-29 13:18:17 +02001452{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001453 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1454 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
Damjan Marion102ec522016-03-29 13:18:17 +02001455
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001456 args.sw_if_index = sw_if_index;
1457 args.flags = ETHERNET_ARP_ARGS_REMOVE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001458 clib_memcpy (&args.a, a, sizeof (*a));
1459
1460 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1461 (u8 *) & args, sizeof (args));
1462 return 0;
1463}
1464
1465/**
1466 * @brief Internally generated event to flush the ARP cache on an
1467 * interface state change event.
1468 * A flush will remove dynamic ARP entries, and for statics remove the MAC
1469 * address from the corresponding adjacencies.
1470 */
1471static int
1472vnet_arp_flush_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001473 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001474{
1475 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1476 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1477
1478 args.sw_if_index = sw_if_index;
1479 args.flags = ETHERNET_ARP_ARGS_FLUSH;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001480 clib_memcpy (&args.a, a, sizeof (*a));
1481
1482 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1483 (u8 *) & args, sizeof (args));
1484 return 0;
1485}
1486
1487/**
1488 * @brief Internally generated event to populate the ARP cache on an
1489 * interface state change event.
1490 * For static entries this will re-source the adjacencies.
1491 *
1492 * @param sw_if_index The interface on which the ARP entires are acted
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001493 */
1494static int
1495vnet_arp_populate_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001496 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001497{
1498 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1499 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1500
1501 args.sw_if_index = sw_if_index;
1502 args.flags = ETHERNET_ARP_ARGS_POPULATE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001503 clib_memcpy (&args.a, a, sizeof (*a));
1504
1505 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1506 (u8 *) & args, sizeof (args));
1507 return 0;
1508}
1509
1510/*
1511 * arp_add_del_interface_address
1512 *
1513 * callback when an interface address is added or deleted
1514 */
1515static void
1516arp_add_del_interface_address (ip4_main_t * im,
1517 uword opaque,
1518 u32 sw_if_index,
1519 ip4_address_t * address,
1520 u32 address_length,
1521 u32 if_address_index, u32 is_del)
1522{
1523 /*
1524 * Flush the ARP cache of all entries covered by the address
1525 * that is being removed.
1526 */
1527 ethernet_arp_main_t *am = &ethernet_arp_main;
1528 ethernet_arp_ip4_entry_t *e;
1529
Neale Ranns177bbdc2016-11-15 09:46:51 +00001530 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001531 return;
1532
1533 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02001534 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001535 ethernet_arp_interface_t *eai;
1536 u32 i, *to_delete = 0;
1537 hash_pair_t *pair;
1538
1539 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1540
Neale Rannsb80c5362016-10-08 13:03:40 +01001541 /* *INDENT-OFF* */
1542 hash_foreach_pair (pair, eai->arp_entries,
1543 ({
1544 e = pool_elt_at_index(am->ip4_entry_pool,
1545 pair->value[0]);
1546 if (ip4_destination_matches_route (im, &e->ip4_address,
1547 address, address_length))
1548 {
1549 vec_add1 (to_delete, e - am->ip4_entry_pool);
1550 }
1551 }));
1552 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001553
1554 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001555 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001556 ethernet_arp_ip4_over_ethernet_address_t delme;
1557 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1558
1559 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1560 delme.ip4.as_u32 = e->ip4_address.as_u32;
1561
1562 vnet_arp_flush_ip4_over_ethernet (vnet_get_main (),
Neale Rannsb80c5362016-10-08 13:03:40 +01001563 e->sw_if_index, &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001564 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001565
1566 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02001567 }
1568}
1569
Neale Ranns15002542017-09-10 04:39:11 -07001570void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -07001571arp_adj_fib_remove (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -07001572{
1573 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
1574 {
1575 fib_prefix_t pfx = {
1576 .fp_len = 32,
1577 .fp_proto = FIB_PROTOCOL_IP4,
1578 .fp_addr.ip4 = e->ip4_address,
1579 };
1580 u32 fib_index;
1581
1582 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
1583
1584 fib_table_entry_path_remove (fib_index, &pfx,
1585 FIB_SOURCE_ADJ,
1586 DPO_PROTO_IP4,
1587 &pfx.fp_addr,
1588 e->sw_if_index, ~0, 1,
1589 FIB_ROUTE_PATH_FLAG_NONE);
1590 fib_table_unlock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
1591 }
1592}
1593
1594static void
1595arp_table_bind (ip4_main_t * im,
1596 uword opaque,
1597 u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
1598{
1599 ethernet_arp_main_t *am = &ethernet_arp_main;
1600 ethernet_arp_interface_t *eai;
1601 ethernet_arp_ip4_entry_t *e;
1602 hash_pair_t *pair;
1603
1604 /*
1605 * the IP table that the interface is bound to has changed.
1606 * reinstall all the adj fibs.
1607 */
1608
1609 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
1610 return;
1611
1612 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1613
1614 /* *INDENT-OFF* */
1615 hash_foreach_pair (pair, eai->arp_entries,
1616 ({
1617 e = pool_elt_at_index(am->ip4_entry_pool,
1618 pair->value[0]);
1619 /*
1620 * remove the adj-fib from the old table and add to the new
1621 */
1622 arp_adj_fib_remove(e, old_fib_index);
1623 arp_adj_fib_add(e, new_fib_index);
1624 }));
1625 /* *INDENT-ON* */
1626
1627}
1628
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001629static clib_error_t *
1630ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001632 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001633 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001634 clib_error_t *error;
1635 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05001636
1637 if ((error = vlib_call_init_function (vm, ethernet_init)))
1638 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001639
1640 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1641
1642 pn = pg_get_node (arp_input_node.index);
1643 pn->unformat_edit = unformat_pg_arp_header;
1644
1645 am->opcode_by_name = hash_create_string (0, sizeof (uword));
1646#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1647 foreach_ethernet_arp_opcode;
1648#undef _
1649
Ed Warnickecb9cada2015-12-08 15:45:58 -07001650 /* $$$ configurable */
1651 am->limit_arp_cache_size = 50000;
1652
1653 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1654 am->mac_changes_by_address = hash_create (0, sizeof (uword));
1655
1656 /* don't trace ARP error packets */
1657 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001658 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001659 vlib_node_get_runtime (vm, arp_input_node.index);
1660
1661#define _(a,b) \
1662 vnet_pcap_drop_trace_filter_add_del \
1663 (rt->errors[ETHERNET_ARP_ERROR_##a], \
1664 1 /* is_add */);
1665 foreach_ethernet_arp_error
1666#undef _
1667 }
Damjan Marion102ec522016-03-29 13:18:17 +02001668
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001669 ip4_add_del_interface_address_callback_t cb;
1670 cb.function = arp_add_del_interface_address;
1671 cb.function_opaque = 0;
1672 vec_add1 (im->add_del_interface_address_callbacks, cb);
1673
Neale Ranns15002542017-09-10 04:39:11 -07001674 ip4_table_bind_callback_t cbt;
1675 cbt.function = arp_table_bind;
1676 cbt.function_opaque = 0;
1677 vec_add1 (im->table_bind_callbacks, cbt);
1678
Ed Warnickecb9cada2015-12-08 15:45:58 -07001679 return 0;
1680}
1681
1682VLIB_INIT_FUNCTION (ethernet_arp_init);
1683
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001684static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001685arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
1686{
1687 ethernet_arp_main_t *am = &ethernet_arp_main;
1688
Neale Ranns15002542017-09-10 04:39:11 -07001689 arp_adj_fib_remove (e,
1690 ip4_fib_table_get_index_for_sw_if_index
1691 (e->sw_if_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001692 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
1693 pool_put (am->ip4_entry_pool, e);
1694}
1695
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001696static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07001697vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001698 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1699 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001700{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001701 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001702 ethernet_arp_ip4_entry_t *e;
1703 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001704
Matthew Smith66c0adf2017-08-09 16:30:43 -05001705 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1706 return 0;
1707
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001708 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001709
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001710 e = arp_entry_find (eai, &args->a.ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001711
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001712 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001713 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001714 arp_entry_free (eai, e);
Neale Ranns19c68d22016-12-07 15:38:14 +00001715
1716 adj_nbr_walk_nh4 (e->sw_if_index,
1717 &e->ip4_address, arp_mk_incomplete_walk, NULL);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001718 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001719
Ed Warnickecb9cada2015-12-08 15:45:58 -07001720 return 0;
1721}
1722
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001723static int
1724vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1725 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1726 * args)
1727{
1728 ethernet_arp_main_t *am = &ethernet_arp_main;
1729 ethernet_arp_ip4_entry_t *e;
1730 ethernet_arp_interface_t *eai;
1731
Matthew Smith66c0adf2017-08-09 16:30:43 -05001732 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1733 return 0;
1734
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001735 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1736
1737 e = arp_entry_find (eai, &args->a.ip4);
1738
1739 if (NULL != e)
1740 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001741 adj_nbr_walk_nh4 (e->sw_if_index,
1742 &e->ip4_address, arp_mk_incomplete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001743
1744 /*
1745 * The difference between flush and unset, is that an unset
1746 * means delete for static and dynamic entries. A flush
1747 * means delete only for dynamic. Flushing is what the DP
1748 * does in response to interface events. unset is only done
1749 * by the control plane.
1750 */
Neale Ranns15002542017-09-10 04:39:11 -07001751 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
1752 {
1753 e->flags &= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
1754 }
1755 else if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001756 {
1757 arp_entry_free (eai, e);
1758 }
1759 }
1760 return (0);
1761}
1762
1763static int
1764vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
1765 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1766 * args)
1767{
1768 ethernet_arp_main_t *am = &ethernet_arp_main;
1769 ethernet_arp_ip4_entry_t *e;
1770 ethernet_arp_interface_t *eai;
1771
Matthew Smith66c0adf2017-08-09 16:30:43 -05001772 vec_validate (am->ethernet_arp_by_sw_if_index, args->sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001773 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1774
1775 e = arp_entry_find (eai, &args->a.ip4);
1776
1777 if (NULL != e)
1778 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001779 adj_nbr_walk_nh4 (e->sw_if_index,
1780 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001781 }
1782 return (0);
1783}
1784
1785static void
1786set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
1787 * a)
1788{
1789 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001790 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001791
1792 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
1793 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
1794 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1795 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
1796 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1797 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
1798 else
1799 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
1800}
1801
1802/**
1803 * @brief Invoked when the interface's admin state changes
1804 */
1805static clib_error_t *
1806ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
1807 u32 sw_if_index, u32 flags)
1808{
1809 ethernet_arp_main_t *am = &ethernet_arp_main;
1810 ethernet_arp_ip4_entry_t *e;
1811 u32 i, *to_delete = 0;
1812
1813 /* *INDENT-OFF* */
1814 pool_foreach (e, am->ip4_entry_pool,
1815 ({
1816 if (e->sw_if_index == sw_if_index)
Neale Rannsb80c5362016-10-08 13:03:40 +01001817 vec_add1 (to_delete,
1818 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001819 }));
1820 /* *INDENT-ON* */
1821
1822 for (i = 0; i < vec_len (to_delete); i++)
1823 {
1824 ethernet_arp_ip4_over_ethernet_address_t delme;
1825 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1826
1827 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1828 delme.ip4.as_u32 = e->ip4_address.as_u32;
1829
1830 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1831 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001832 vnet_arp_populate_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001833 }
1834 else
1835 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001836 vnet_arp_flush_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001837 }
1838
1839 }
1840 vec_free (to_delete);
1841
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001842 return 0;
1843}
1844
1845VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
1846
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001847static void
1848increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001849{
1850 u8 old;
1851 int i;
1852
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001853 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854 {
1855 old = a->ip4.as_u8[i];
1856 a->ip4.as_u8[i] += 1;
1857 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001858 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001859 }
1860
1861 for (i = 5; i >= 0; i--)
1862 {
1863 old = a->ethernet[i];
1864 a->ethernet[i] += 1;
1865 if (old < a->ethernet[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001866 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001867 }
1868}
1869
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001870int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001871vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb3b2de72017-03-08 05:17:22 -08001872 u32 sw_if_index, void *a_arg,
1873 int is_static, int is_no_fib_entry)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001874{
1875 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1876 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1877
1878 args.sw_if_index = sw_if_index;
1879 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001880 args.is_no_fib_entry = is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001881 args.flags = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001882 clib_memcpy (&args.a, a, sizeof (*a));
1883
1884 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1885 (u8 *) & args, sizeof (args));
1886 return 0;
1887}
1888
1889int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001890vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
1891 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001892{
1893 ethernet_arp_main_t *am = &ethernet_arp_main;
1894 ethernet_proxy_arp_t *pa;
1895 u32 found_at_index = ~0;
1896
1897 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001898 {
1899 if (pa->lo_addr == lo_addr->as_u32
1900 && pa->hi_addr == hi_addr->as_u32 && pa->fib_index == fib_index)
1901 {
1902 found_at_index = pa - am->proxy_arps;
1903 break;
1904 }
1905 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001906
1907 if (found_at_index != ~0)
1908 {
1909 /* Delete, otherwise it's already in the table */
1910 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001911 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001912 return 0;
1913 }
1914 /* delete, no such entry */
1915 if (is_del)
1916 return VNET_API_ERROR_NO_SUCH_ENTRY;
1917
1918 /* add, not in table */
1919 vec_add2 (am->proxy_arps, pa, 1);
1920 pa->lo_addr = lo_addr->as_u32;
1921 pa->hi_addr = hi_addr->as_u32;
1922 pa->fib_index = fib_index;
1923 return 0;
1924}
1925
1926/*
Damjan Marion607de1a2016-08-16 22:53:54 +02001927 * Remove any proxy arp entries asdociated with the
Ed Warnickecb9cada2015-12-08 15:45:58 -07001928 * specificed fib.
1929 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001930int
1931vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001932{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001933 ethernet_arp_main_t *am = &ethernet_arp_main;
1934 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001935 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001936 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001937 int i;
1938
Neale Ranns107e7d42017-04-11 09:55:19 -07001939 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
1940 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001941 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001942
1943 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001944 {
1945 if (pa->fib_index == fib_index)
1946 {
1947 vec_add1 (entries_to_delete, pa - am->proxy_arps);
1948 }
1949 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001950
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001951 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001953 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
1954 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001955
1956 vec_free (entries_to_delete);
1957
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001958 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001959}
1960
1961static clib_error_t *
1962ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001963 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001964{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001965 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001966 u32 sw_if_index;
1967 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
1968 int addr_valid = 0;
1969 int is_del = 0;
1970 int count = 1;
1971 u32 fib_index = 0;
1972 u32 fib_id;
1973 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001974 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001975 int is_proxy = 0;
1976
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001977 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001978 {
1979 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
1980 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001981 unformat_vnet_sw_interface, vnm, &sw_if_index,
1982 unformat_ip4_address, &addr.ip4,
1983 unformat_ethernet_address, &addr.ethernet))
1984 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001985
1986 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001987 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001988
1989 else if (unformat (input, "static"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001990 is_static = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001991
Neale Rannsb3b2de72017-03-08 05:17:22 -08001992 else if (unformat (input, "no-fib-entry"))
1993 is_no_fib_entry = 1;
1994
Ed Warnickecb9cada2015-12-08 15:45:58 -07001995 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001996 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001997
1998 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001999 {
Neale Ranns107e7d42017-04-11 09:55:19 -07002000 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2001
2002 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002003 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002004 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002005
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002006 else if (unformat (input, "proxy %U - %U",
2007 unformat_ip4_address, &lo_addr.ip4,
2008 unformat_ip4_address, &hi_addr.ip4))
2009 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002010 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002011 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002012 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002013
Ed Warnickecb9cada2015-12-08 15:45:58 -07002014 if (is_proxy)
2015 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002016 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2017 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002018 return 0;
2019 }
2020
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002021 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002022 {
2023 int i;
2024
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002025 for (i = 0; i < count; i++)
2026 {
2027 if (is_del == 0)
2028 {
2029 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002030
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002031 /* Park the debug CLI until the arp entry is installed */
2032 vnet_register_ip4_arp_resolution_event
2033 (vnm, &addr.ip4, vlib_current_process (vm),
2034 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002035
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002036 vnet_arp_set_ip4_over_ethernet
Neale Rannsb3b2de72017-03-08 05:17:22 -08002037 (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002038
2039 vlib_process_wait_for_event (vm);
2040 event_type = vlib_process_get_events (vm, &event_data);
2041 vec_reset_length (event_data);
2042 if (event_type != 1)
2043 clib_warning ("event type %d unexpected", event_type);
2044 }
2045 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002046 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002047
2048 increment_ip4_and_mac_address (&addr);
2049 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002050 }
2051 else
2052 {
2053 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002054 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002055 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002056
Ed Warnickecb9cada2015-12-08 15:45:58 -07002057 return 0;
2058}
2059
Neale Rannsb80c5362016-10-08 13:03:40 +01002060/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002061/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002062 * Add or delete IPv4 ARP cache entries.
2063 *
2064 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2065 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2066 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002067 *
2068 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002069 * @parblock
2070 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2071 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2072 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2073 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2074 *
2075 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2076 * table:
2077 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2078 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2079 *
2080 * Add or delete IPv4 static ARP cache entries as follows:
2081 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2082 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2083 *
2084 * For testing / debugging purposes, the 'set ip arp' command can add or
2085 * delete multiple entries. Supply the 'count N' parameter:
2086 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2087 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002088 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002090 .path = "set ip arp",
2091 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002092 "set ip arp [del] <intfc> <ip-address> <mac-address> [static] [no-fib-entry] [count <count>] [fib-id <fib-id>] [proxy <lo-addr> - <hi-addr>]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002093 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002094};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002095/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002096
2097static clib_error_t *
2098set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002099 unformat_input_t *
2100 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002101{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002102 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002103 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002104 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002105 int enable = 0;
2106 int intfc_set = 0;
2107
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002108 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002110 if (unformat (input, "%U", unformat_vnet_sw_interface,
2111 vnm, &sw_if_index))
2112 intfc_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002113 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002114 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002115 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002116 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002117 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002118 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002119 }
2120
2121 if (intfc_set == 0)
2122 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002123 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002124
2125 si = vnet_get_sw_interface (vnm, sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002126 ASSERT (si);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002127 if (enable)
2128 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002129 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07002130 si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002131
Ed Warnickecb9cada2015-12-08 15:45:58 -07002132 return 0;
2133}
2134
Neale Rannsb80c5362016-10-08 13:03:40 +01002135/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002136/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002137 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2138 * requests for the indicated address range. Multiple proxy-arp
2139 * ranges may be provisioned.
2140 *
2141 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2142 * Also, the underlying implementation has not been performance-tuned.
2143 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002144 *
2145 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002146 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002147 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2148 * Append 'del' to delete a range of proxy ARP addresses:
2149 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2150 * You must then specifically enable proxy arp on individual interfaces:
2151 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2152 * To disable proxy arp on an individual interface:
2153 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002154 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002155VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002156 .path = "set interface proxy-arp",
2157 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002158 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002159 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002160};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002161/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002162
2163
2164/*
John Lo1edfba92016-08-27 01:11:57 -04002165 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2166 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002167 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002168typedef enum
2169{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002170 ARP_TERM_NEXT_L2_OUTPUT,
2171 ARP_TERM_NEXT_DROP,
2172 ARP_TERM_N_NEXT,
2173} arp_term_next_t;
2174
2175u32 arp_term_next_node_index[32];
2176
2177static uword
2178arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002179 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002180{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002181 l2input_main_t *l2im = &l2input_main;
2182 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002183 u32 n_replies_sent = 0;
2184 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002185 l2_bridge_domain_t *last_bd_config = 0;
2186 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002187
2188 from = vlib_frame_vector_args (frame);
2189 n_left_from = frame->n_vectors;
2190 next_index = node->cached_next_index;
2191
2192 while (n_left_from > 0)
2193 {
2194 u32 n_left_to_next;
2195
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002196 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002197
2198 while (n_left_from > 0 && n_left_to_next > 0)
2199 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002200 vlib_buffer_t *p0;
2201 ethernet_header_t *eth0;
2202 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002203 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002204 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002205 u32 pi0, error0, next0, sw_if_index0;
2206 u16 ethertype0;
2207 u16 bd_index0;
2208 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002209 u8 *macp0;
Matthew Smithcb9ab472017-05-16 21:35:56 -05002210 u8 is_vrrp_reply0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002211
2212 pi0 = from[0];
2213 to_next[0] = pi0;
2214 from += 1;
2215 to_next += 1;
2216 n_left_from -= 1;
2217 n_left_to_next -= 1;
2218
2219 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002220 // Terminate only local (SHG == 0) ARP
2221 if (vnet_buffer (p0)->l2.shg != 0)
2222 goto next_l2_feature;
2223
Ed Warnickecb9cada2015-12-08 15:45:58 -07002224 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002225 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2226 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002227 arp0 = (ethernet_arp_header_t *) l3h0;
2228
John Lo1edfba92016-08-27 01:11:57 -04002229 if (PREDICT_FALSE ((ethertype0 != ETHERNET_TYPE_ARP) ||
2230 (arp0->opcode !=
2231 clib_host_to_net_u16
2232 (ETHERNET_ARP_OPCODE_request))))
2233 goto check_ip6_nd;
2234
2235 /* Must be ARP request packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002236 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2237 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2238 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002239 u8 *t0 = vlib_add_trace (vm, node, p0,
2240 sizeof (ethernet_arp_input_trace_t));
2241 clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002242 }
2243
Ed Warnickecb9cada2015-12-08 15:45:58 -07002244 error0 = ETHERNET_ARP_ERROR_replies_sent;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002245 error0 =
2246 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002247 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2248 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002249 error0 =
2250 (arp0->l3_type !=
2251 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2252 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002253
2254 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2255
2256 if (error0)
2257 goto drop;
2258
Matthew Smithcb9ab472017-05-16 21:35:56 -05002259 is_vrrp_reply0 =
2260 ((arp0->opcode ==
2261 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
2262 &&
2263 (!memcmp
2264 (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
2265 sizeof (vrrp_prefix))));
2266
John Lo1edfba92016-08-27 01:11:57 -04002267 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05002268 match their L2-frame-level source addresses, unless it's
2269 a reply from a VRRP virtual router */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002270 if (PREDICT_FALSE
Matthew Smithcb9ab472017-05-16 21:35:56 -05002271 (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
2272 sizeof (eth0->src_address)) && !is_vrrp_reply0))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002273 {
2274 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2275 goto drop;
2276 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002277
John Lo1edfba92016-08-27 01:11:57 -04002278 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002279 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002280 pending_resolution_t *mc;
2281 ethernet_arp_main_t *am = &ethernet_arp_main;
2282 uword *p = hash_get (am->mac_changes_by_address, 0);
Eyal Baria0623f82017-03-30 03:05:06 +03002283 if (p)
2284 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002285 u32 next_index = p[0];
2286 while (next_index != (u32) ~ 0)
2287 {
2288 int (*fp) (u32, u8 *, u32, u32);
2289 int rv = 1;
2290 mc = pool_elt_at_index (am->mac_changes, next_index);
2291 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -04002292 /* Call the callback, return 1 to suppress dup events */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002293 if (fp)
2294 rv = (*fp) (mc->data,
2295 arp0->ip4_over_ethernet[0].ethernet,
2296 sw_if_index0,
2297 arp0->ip4_over_ethernet[0].ip4.as_u32);
John Lo1edfba92016-08-27 01:11:57 -04002298 /* Signal the resolver process */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002299 if (rv == 0)
2300 vlib_process_signal_event (vm, mc->node_index,
2301 mc->type_opaque, mc->data);
2302 next_index = mc->next_index;
2303 }
2304 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002305 }
2306
John Lo1edfba92016-08-27 01:11:57 -04002307 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002308 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002309 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2310 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2311 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002312 {
2313 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002314 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002315 }
2316 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2317
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002318 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002319 goto next_l2_feature; /* MAC not found */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002320
John Lo1edfba92016-08-27 01:11:57 -04002321 /* MAC found, send ARP reply -
2322 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002323 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2324 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2325 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Damjan Marionf1213b82016-03-13 02:22:06 +01002326 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2327 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2328 clib_memcpy (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002329 n_replies_sent += 1;
2330
John Lo1edfba92016-08-27 01:11:57 -04002331 output_response:
2332 /* For BVI, need to use l2-fwd node to send ARP reply as
2333 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002334 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002335 if (PREDICT_FALSE (cfg0->bvi))
2336 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002337 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002338 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2339 goto next_l2_feature;
2340 }
2341
John Lo1edfba92016-08-27 01:11:57 -04002342 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002343 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2344 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002345 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2346 to_next, n_left_to_next, pi0,
2347 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002348 continue;
2349
John Lo1edfba92016-08-27 01:11:57 -04002350 check_ip6_nd:
2351 /* IP6 ND event notification or solicitation handling to generate
2352 local response instead of flooding */
2353 iph0 = (ip6_header_t *) l3h0;
2354 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2355 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002356 !ip6_address_is_unspecified
2357 (&iph0->src_address)))
2358 {
2359 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002360 if (vnet_ip6_nd_term
2361 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002362 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002363 goto output_response;
2364 }
2365
Ed Warnickecb9cada2015-12-08 15:45:58 -07002366 next_l2_feature:
2367 {
John Lobeb0b2e2017-07-22 00:21:36 -04002368 next0 = vnet_l2_feature_next (p0, arp_term_next_node_index,
2369 L2INPUT_FEAT_ARP_TERM);
Neale Rannsb80c5362016-10-08 13:03:40 +01002370 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2371 to_next, n_left_to_next,
2372 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002373 continue;
2374 }
2375
2376 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002377 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2378 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2379 arp0->ip4_over_ethernet[1].ip4.as_u32))
2380 {
2381 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2382 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002383 next0 = ARP_TERM_NEXT_DROP;
2384 p0->error = node->errors[error0];
2385
Neale Rannsb80c5362016-10-08 13:03:40 +01002386 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2387 to_next, n_left_to_next, pi0,
2388 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002389 }
2390
2391 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2392 }
2393
2394 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002395 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002396 return frame->n_vectors;
2397}
2398
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002399/* *INDENT-OFF* */
2400VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002401 .function = arp_term_l2bd,
2402 .name = "arp-term-l2bd",
2403 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002404 .n_errors = ETHERNET_ARP_N_ERROR,
2405 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002406 .n_next_nodes = ARP_TERM_N_NEXT,
2407 .next_nodes = {
2408 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2409 [ARP_TERM_NEXT_DROP] = "error-drop",
2410 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002411 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002412 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002413};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002414/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002415
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002416clib_error_t *
2417arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002418{
2419 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002420 feat_bitmap_init_next_nodes (vm,
2421 arp_term_l2bd_node.index,
2422 L2INPUT_N_FEAT,
2423 l2input_get_feat_names (),
2424 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002425 return 0;
2426}
2427
2428VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002429
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002430void
2431change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2432{
2433 if (e->sw_if_index == sw_if_index)
2434 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002435 adj_nbr_walk_nh4 (e->sw_if_index,
2436 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002437 }
2438}
2439
2440void
Neale Ranns3be6b282016-12-20 14:24:01 +00002441ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002442{
2443 ethernet_arp_main_t *am = &ethernet_arp_main;
2444 ethernet_arp_ip4_entry_t *e;
2445
2446 /* *INDENT-OFF* */
2447 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002448 ({
2449 change_arp_mac (sw_if_index, e);
2450 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002451 /* *INDENT-ON* */
2452}
2453
John Lo8b81cb42017-06-26 01:40:20 -04002454void static
2455send_ip4_garp (vlib_main_t * vm, vnet_hw_interface_t * hi)
2456{
2457 ip4_main_t *i4m = &ip4_main;
2458 u32 sw_if_index = hi->sw_if_index;
2459 ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
2460
2461 if (ip4_addr)
2462 {
2463 clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
2464 format_ip4_address, ip4_addr, sw_if_index);
2465
2466 /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
2467 where the interface IP/MAC pair is used for both source and request
2468 MAC/IP pairs in the request */
2469 u32 bi = 0;
2470 ethernet_arp_header_t *h = vlib_packet_template_get_packet
2471 (vm, &i4m->ip4_arp_request_packet_template, &bi);
2472 clib_memcpy (h->ip4_over_ethernet[0].ethernet, hi->hw_address,
2473 sizeof (h->ip4_over_ethernet[0].ethernet));
2474 clib_memcpy (h->ip4_over_ethernet[1].ethernet, hi->hw_address,
2475 sizeof (h->ip4_over_ethernet[1].ethernet));
2476 h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
2477 h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
2478
2479 /* Setup MAC header with ARP Etype and broadcast DMAC */
2480 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
2481 vlib_buffer_advance (b, -sizeof (ethernet_header_t));
2482 ethernet_header_t *e = vlib_buffer_get_current (b);
2483 e->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
2484 clib_memcpy (e->src_address, hi->hw_address, sizeof (e->src_address));
2485 memset (e->dst_address, 0xff, sizeof (e->dst_address));
2486
2487 /* Send GARP packet out the specified interface */
2488 vnet_buffer (b)->sw_if_index[VLIB_RX] =
2489 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
2490 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
2491 u32 *to_next = vlib_frame_vector_args (f);
2492 to_next[0] = bi;
2493 f->n_vectors = 1;
2494 vlib_put_frame_to_node (vm, hi->output_node_index, f);
2495 }
2496}
2497
2498static vlib_node_registration_t send_garp_na_proc_node;
2499
2500static uword
2501send_garp_na_process (vlib_main_t * vm,
2502 vlib_node_runtime_t * rt, vlib_frame_t * f)
2503{
2504 vnet_main_t *vnm = vnet_get_main ();
2505 uword event_type, *event_data = 0;
2506
2507 send_garp_na_process_node_index = send_garp_na_proc_node.index;
2508
2509 while (1)
2510 {
2511 vlib_process_wait_for_event (vm);
2512 event_type = vlib_process_get_events (vm, &event_data);
2513 if ((event_type == SEND_GARP_NA) && (vec_len (event_data) >= 1))
2514 {
2515 u32 hw_if_index = event_data[0];
2516 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
2517 send_ip4_garp (vm, hi);
2518 send_ip6_na (vm, hi);
2519 }
2520 vec_reset_length (event_data);
2521 }
2522 return 0;
2523}
2524
2525
2526/* *INDENT-OFF* */
2527VLIB_REGISTER_NODE (send_garp_na_proc_node, static) = {
2528 .function = send_garp_na_process,
2529 .type = VLIB_NODE_TYPE_PROCESS,
2530 .name = "send-garp-na-process",
2531};
2532/* *INDENT-ON* */
2533
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002534/*
2535 * fd.io coding-style-patch-verification: ON
2536 *
2537 * Local Variables:
2538 * eval: (c-set-style "gnu")
2539 * End:
2540 */