blob: d5dc9cceb39581197c5f8d08ef14f10178fbc15a [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
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100113static void
114set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
115 * a);
116
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700117static u8 *
118format_ethernet_arp_hardware_type (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119{
120 ethernet_arp_hardware_type_t h = va_arg (*va, ethernet_arp_hardware_type_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700121 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 switch (h)
123 {
124#define _(n,f) case n: t = #f; break;
125 foreach_ethernet_arp_hardware_type;
126#undef _
127
128 default:
129 return format (s, "unknown 0x%x", h);
130 }
131
132 return format (s, "%s", t);
133}
134
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700135static u8 *
136format_ethernet_arp_opcode (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137{
138 ethernet_arp_opcode_t o = va_arg (*va, ethernet_arp_opcode_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700139 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 switch (o)
141 {
142#define _(f) case ETHERNET_ARP_OPCODE_##f: t = #f; break;
143 foreach_ethernet_arp_opcode;
144#undef _
145
146 default:
147 return format (s, "unknown 0x%x", o);
148 }
149
150 return format (s, "%s", t);
151}
152
153static uword
154unformat_ethernet_arp_opcode_host_byte_order (unformat_input_t * input,
155 va_list * args)
156{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700157 int *result = va_arg (*args, int *);
158 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 int x, i;
160
161 /* Numeric opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700162 if (unformat (input, "0x%x", &x) || unformat (input, "%d", &x))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 {
164 if (x >= (1 << 16))
165 return 0;
166 *result = x;
167 return 1;
168 }
169
170 /* Named type. */
171 if (unformat_user (input, unformat_vlib_number_by_name,
172 am->opcode_by_name, &i))
173 {
174 *result = i;
175 return 1;
176 }
177
178 return 0;
179}
180
181static uword
182unformat_ethernet_arp_opcode_net_byte_order (unformat_input_t * input,
183 va_list * args)
184{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700185 int *result = va_arg (*args, int *);
186 if (!unformat_user
187 (input, unformat_ethernet_arp_opcode_host_byte_order, result))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 return 0;
189
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700190 *result = clib_host_to_net_u16 ((u16) * result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 return 1;
192}
193
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700194static u8 *
195format_ethernet_arp_header (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700197 ethernet_arp_header_t *a = va_arg (*va, ethernet_arp_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198 u32 max_header_bytes = va_arg (*va, u32);
199 uword indent;
200 u16 l2_type, l3_type;
201
202 if (max_header_bytes != 0 && sizeof (a[0]) > max_header_bytes)
203 return format (s, "ARP header truncated");
204
205 l2_type = clib_net_to_host_u16 (a->l2_type);
206 l3_type = clib_net_to_host_u16 (a->l3_type);
207
208 indent = format_get_indent (s);
209
210 s = format (s, "%U, type %U/%U, address size %d/%d",
211 format_ethernet_arp_opcode, clib_net_to_host_u16 (a->opcode),
212 format_ethernet_arp_hardware_type, l2_type,
213 format_ethernet_type, l3_type,
214 a->n_l2_address_bytes, a->n_l3_address_bytes);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700215
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 if (l2_type == ETHERNET_ARP_HARDWARE_TYPE_ethernet
217 && l3_type == ETHERNET_TYPE_IP4)
218 {
219 s = format (s, "\n%U%U/%U -> %U/%U",
220 format_white_space, indent,
221 format_ethernet_address, a->ip4_over_ethernet[0].ethernet,
222 format_ip4_address, &a->ip4_over_ethernet[0].ip4,
223 format_ethernet_address, a->ip4_over_ethernet[1].ethernet,
224 format_ip4_address, &a->ip4_over_ethernet[1].ip4);
225 }
226 else
227 {
228 uword n2 = a->n_l2_address_bytes;
229 uword n3 = a->n_l3_address_bytes;
230 s = format (s, "\n%U%U/%U -> %U/%U",
231 format_white_space, indent,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700232 format_hex_bytes, a->data + 0 * n2 + 0 * n3, n2,
233 format_hex_bytes, a->data + 1 * n2 + 0 * n3, n3,
234 format_hex_bytes, a->data + 1 * n2 + 1 * n3, n2,
235 format_hex_bytes, a->data + 2 * n2 + 1 * n3, n3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 }
237
238 return s;
239}
240
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100241u8 *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700242format_ethernet_arp_ip4_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700244 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
245 ethernet_arp_ip4_entry_t *e = va_arg (*va, ethernet_arp_ip4_entry_t *);
246 vnet_sw_interface_t *si;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700247 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700249 if (!e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100250 return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700251 "Flags", "Ethernet", "Interface");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100253 si = vnet_get_sw_interface (vnm, e->sw_if_index);
Damjan Marion102ec522016-03-29 13:18:17 +0200254
255 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700256 flags = format (flags, "S");
Damjan Marion102ec522016-03-29 13:18:17 +0200257
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100258 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
259 flags = format (flags, "D");
260
Neale Rannsb3b2de72017-03-08 05:17:22 -0800261 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY)
262 flags = format (flags, "N");
263
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100264 s = format (s, "%=12U%=16U%=6s%=20U%=24U",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265 format_vlib_cpu_time, vnm->vlib_main, e->cpu_time_last_updated,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100266 format_ip4_address, &e->ip4_address,
Damjan Marion102ec522016-03-29 13:18:17 +0200267 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 format_ethernet_address, e->ethernet_address,
269 format_vnet_sw_interface_name, vnm, si);
270
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700271 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 return s;
273}
274
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700275typedef struct
276{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 u8 packet_data[64];
278} ethernet_arp_input_trace_t;
279
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700280static u8 *
281format_ethernet_arp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282{
283 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
284 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700285 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
287 s = format (s, "%U",
288 format_ethernet_arp_header,
289 t->packet_data, sizeof (t->packet_data));
290
291 return s;
292}
293
John Lo1edfba92016-08-27 01:11:57 -0400294static u8 *
295format_arp_term_input_trace (u8 * s, va_list * va)
296{
297 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
298 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
299 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
300
301 /* arp-term trace data saved is either arp or ip6/icmp6 packet:
302 - for arp, the 1st 16-bit field is hw type of value of 0x0001.
303 - for ip6, the first nibble has value of 6. */
304 s = format (s, "%U", t->packet_data[0] == 0 ?
305 format_ethernet_arp_header : format_ip6_header,
306 t->packet_data, sizeof (t->packet_data));
307
308 return s;
309}
310
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100311static void
Neale Rannsb80c5362016-10-08 13:03:40 +0100312arp_nbr_probe (ip_adjacency_t * adj)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313{
Neale Rannsb80c5362016-10-08 13:03:40 +0100314 vnet_main_t *vnm = vnet_get_main ();
315 ip4_main_t *im = &ip4_main;
316 ip_interface_address_t *ia;
317 ethernet_arp_header_t *h;
318 vnet_hw_interface_t *hi;
319 vnet_sw_interface_t *si;
320 ip4_address_t *src;
321 vlib_buffer_t *b;
322 vlib_main_t *vm;
323 u32 bi = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
Neale Rannsb80c5362016-10-08 13:03:40 +0100325 vm = vlib_get_main ();
John Locbec1a12016-07-05 18:34:40 -0400326
Neale Rannsb80c5362016-10-08 13:03:40 +0100327 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
328
329 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100331 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100333
334 src =
335 ip4_interface_address_matching_destination (im,
336 &adj->sub_type.nbr.next_hop.
337 ip4,
338 adj->rewrite_header.
339 sw_if_index, &ia);
340 if (!src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100342 return;
343 }
344
345 h =
346 vlib_packet_template_get_packet (vm, &im->ip4_arp_request_packet_template,
347 &bi);
348
349 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
350
351 clib_memcpy (h->ip4_over_ethernet[0].ethernet,
352 hi->hw_address, sizeof (h->ip4_over_ethernet[0].ethernet));
353
354 h->ip4_over_ethernet[0].ip4 = src[0];
355 h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
356
357 b = vlib_get_buffer (vm, bi);
358 vnet_buffer (b)->sw_if_index[VLIB_RX] =
359 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
360
361 /* Add encapsulation string for software interface (e.g. ethernet header). */
362 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
363 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
364
365 {
366 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
367 u32 *to_next = vlib_frame_vector_args (f);
368 to_next[0] = bi;
369 f->n_vectors = 1;
370 vlib_put_frame_to_node (vm, hi->output_node_index, f);
371 }
372}
373
374static void
375arp_mk_complete (adj_index_t ai, ethernet_arp_ip4_entry_t * e)
376{
377 adj_nbr_update_rewrite
378 (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
379 ethernet_build_rewrite (vnet_get_main (),
380 e->sw_if_index,
381 adj_get_link_type (ai), e->ethernet_address));
382}
383
384static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000385arp_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100386{
Neale Ranns19c68d22016-12-07 15:38:14 +0000387 ip_adjacency_t *adj = adj_get (ai);
388
Neale Rannsb80c5362016-10-08 13:03:40 +0100389 adj_nbr_update_rewrite
390 (ai,
391 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
392 ethernet_build_rewrite (vnet_get_main (),
Neale Ranns19c68d22016-12-07 15:38:14 +0000393 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100394 VNET_LINK_ARP,
395 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
396}
397
398static ethernet_arp_ip4_entry_t *
399arp_entry_find (ethernet_arp_interface_t * eai, const ip4_address_t * addr)
400{
401 ethernet_arp_main_t *am = &ethernet_arp_main;
402 ethernet_arp_ip4_entry_t *e = NULL;
403 uword *p;
404
405 if (NULL != eai->arp_entries)
406 {
407 p = hash_get (eai->arp_entries, addr->as_u32);
408 if (!p)
409 return (NULL);
410
411 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
412 }
413
414 return (e);
415}
416
417static adj_walk_rc_t
418arp_mk_complete_walk (adj_index_t ai, void *ctx)
419{
420 ethernet_arp_ip4_entry_t *e = ctx;
421
422 arp_mk_complete (ai, e);
423
424 return (ADJ_WALK_RC_CONTINUE);
425}
426
427static adj_walk_rc_t
428arp_mk_incomplete_walk (adj_index_t ai, void *ctx)
429{
Neale Ranns19c68d22016-12-07 15:38:14 +0000430 arp_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100431
432 return (ADJ_WALK_RC_CONTINUE);
433}
434
435void
436arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
437{
438 ethernet_arp_main_t *am = &ethernet_arp_main;
439 ethernet_arp_interface_t *arp_int;
440 ethernet_arp_ip4_entry_t *e;
441 ip_adjacency_t *adj;
442
443 adj = adj_get (ai);
444
445 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
446 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
447 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
448
Neale Ranns32e1c012016-11-22 17:07:28 +0000449 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100450 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000451 case IP_LOOKUP_NEXT_ARP:
452 case IP_LOOKUP_NEXT_GLEAN:
453 if (NULL != e)
454 {
455 adj_nbr_walk_nh4 (sw_if_index,
456 &e->ip4_address, arp_mk_complete_walk, e);
457 }
458 else
459 {
460 /*
461 * no matching ARP entry.
462 * construct the rewrite required to for an ARP packet, and stick
463 * that in the adj's pipe to smoke.
464 */
465 adj_nbr_update_rewrite
466 (ai,
467 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
468 ethernet_build_rewrite
469 (vnm,
470 sw_if_index,
471 VNET_LINK_ARP,
472 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
473
474 /*
475 * since the FIB has added this adj for a route, it makes sense it
476 * may want to forward traffic sometime soon. Let's send a
477 * speculative ARP. just one. If we were to do periodically that
478 * wouldn't be bad either, but that's more code than i'm prepared to
479 * write at this time for relatively little reward.
480 */
481 arp_nbr_probe (adj);
482 }
483 break;
484 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700485 {
486 /*
487 * Construct a partial rewrite from the known ethernet mcast dest MAC
488 */
489 u8 *rewrite;
490 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100491
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700492 rewrite = ethernet_build_rewrite (vnm,
493 sw_if_index,
494 adj->ia_link,
495 ethernet_ip4_mcast_dst_addr ());
496 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000497
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700498 /*
499 * Complete the remaining fields of the adj's rewrite to direct the
500 * complete of the rewrite at switch time by copying in the IP
501 * dst address's bytes.
502 * Ofset is 2 bytes into the MAC desintation address. And we copy 23 bits
503 * from the address.
504 */
505 adj_mcast_update_rewrite (ai, rewrite, offset, 0x007fffff);
Neale Ranns32e1c012016-11-22 17:07:28 +0000506
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700507 break;
508 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000509 case IP_LOOKUP_NEXT_DROP:
510 case IP_LOOKUP_NEXT_PUNT:
511 case IP_LOOKUP_NEXT_LOCAL:
512 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800513 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000514 case IP_LOOKUP_NEXT_MIDCHAIN:
515 case IP_LOOKUP_NEXT_ICMP_ERROR:
516 case IP_LOOKUP_N_NEXT:
517 ASSERT (0);
518 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520}
521
522int
523vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100524 vnet_arp_set_ip4_over_ethernet_rpc_args_t
525 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700527 ethernet_arp_ip4_entry_t *e = 0;
528 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100529 ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700530 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700531 int make_new_arp_cache_entry = 1;
532 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700533 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100534 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100535 int is_static = args->is_static;
536 u32 sw_if_index = args->sw_if_index;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800537 int is_no_fib_entry = args->is_no_fib_entry;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700538
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100539 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100541 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100543 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
546 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700547 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100548 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
549
550 /* Refuse to over-write static arp. */
551 if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
552 return -2;
553 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700554 }
Damjan Marion102ec522016-03-29 13:18:17 +0200555 }
556
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557 if (make_new_arp_cache_entry)
558 {
559 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100560
561 if (NULL == arp_int->arp_entries)
562 {
563 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100564 }
565
566 hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
567
568 e->sw_if_index = sw_if_index;
569 e->ip4_address = a->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700570 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100571 clib_memcpy (e->ethernet_address,
572 a->ethernet, sizeof (e->ethernet_address));
573
Neale Rannsb3b2de72017-03-08 05:17:22 -0800574 if (!is_no_fib_entry)
575 {
576 fib_prefix_t pfx = {
577 .fp_len = 32,
578 .fp_proto = FIB_PROTOCOL_IP4,
579 .fp_addr.ip4 = a->ip4,
580 };
581 u32 fib_index;
582
583 fib_index =
584 ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
585 e->fib_entry_index =
Neale Ranns81424992017-05-18 03:03:22 -0700586 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
587 FIB_ENTRY_FLAG_ATTACHED,
588 FIB_PROTOCOL_IP4, &pfx.fp_addr,
589 e->sw_if_index, ~0, 1, NULL,
590 FIB_ROUTE_PATH_FLAG_NONE);
Neale Ranns2a3ea492017-04-19 05:24:40 -0700591 }
592 else
593 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800594 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY;
595 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100597 else
598 {
599 /*
600 * prevent a DoS attack from the data-plane that
601 * spams us with no-op updates to the MAC address
602 */
603 if (0 == memcmp (e->ethernet_address,
604 a->ethernet, sizeof (e->ethernet_address)))
605 return -1;
Neale Rannsb80c5362016-10-08 13:03:40 +0100606
607 /* Update time stamp and ethernet address. */
608 clib_memcpy (e->ethernet_address, a->ethernet,
609 sizeof (e->ethernet_address));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100610 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612 e->cpu_time_last_updated = clib_cpu_time_now ();
613 if (is_static)
614 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100615 else
616 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
617
Neale Rannsb80c5362016-10-08 13:03:40 +0100618 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619
620 /* Customer(s) waiting for this address to be resolved? */
621 p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
622 if (p)
623 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 next_index = p[0];
626
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700627 while (next_index != (u32) ~ 0)
628 {
629 pr = pool_elt_at_index (am->pending_resolutions, next_index);
630 vlib_process_signal_event (vm, pr->node_index,
631 pr->type_opaque, pr->data);
632 next_index = pr->next_index;
633 pool_put (am->pending_resolutions, pr);
634 }
635
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
637 }
638
639 /* Customer(s) requesting ARP event for this address? */
640 p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
641 if (p)
642 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100643 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 next_index = p[0];
645
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700646 while (next_index != (u32) ~ 0)
647 {
648 int (*fp) (u32, u8 *, u32, u32);
649 int rv = 1;
650 mc = pool_elt_at_index (am->mac_changes, next_index);
651 fp = mc->data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700653 /* Call the user's data callback, return 1 to suppress dup events */
654 if (fp)
655 rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
656
Damjan Marion607de1a2016-08-16 22:53:54 +0200657 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700658 * Signal the resolver process, as long as the user
659 * says they want to be notified
660 */
661 if (rv == 0)
662 vlib_process_signal_event (vm, mc->node_index,
663 mc->type_opaque, mc->data);
664 next_index = mc->next_index;
665 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666 }
667
668 return 0;
669}
670
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700671void
672vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
673 void *address_arg,
674 uword node_index,
675 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700677 ethernet_arp_main_t *am = &ethernet_arp_main;
678 ip4_address_t *address = address_arg;
679 uword *p;
680 pending_resolution_t *pr;
681
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682 pool_get (am->pending_resolutions, pr);
683
684 pr->next_index = ~0;
685 pr->node_index = node_index;
686 pr->type_opaque = type_opaque;
687 pr->data = data;
688 pr->data_callback = 0;
689
690 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
691 if (p)
692 {
693 /* Insert new resolution at the head of the list */
694 pr->next_index = p[0];
695 hash_unset (am->pending_resolutions_by_address, address->as_u32);
696 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700697
698 hash_set (am->pending_resolutions_by_address, address->as_u32,
699 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700}
701
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700702int
703vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
704 void *data_callback,
705 u32 pid,
706 void *address_arg,
707 uword node_index,
708 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700710 ethernet_arp_main_t *am = &ethernet_arp_main;
711 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700712
Eyal Bari8db1de82017-03-31 02:15:17 +0300713 /* Try to find an existing entry */
714 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
715 u32 *p = first;
716 pending_resolution_t *mc;
717 while (p && *p != ~0)
718 {
719 mc = pool_elt_at_index (am->mac_changes, *p);
720 if (mc->node_index == node_index && mc->type_opaque == type_opaque
721 && mc->pid == pid)
722 break;
723 p = &mc->next_index;
724 }
725
726 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727 if (is_add)
728 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300729 if (found)
730 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
731
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 pool_get (am->mac_changes, mc);
Eyal Bari8db1de82017-03-31 02:15:17 +0300733 *mc = (pending_resolution_t)
734 {
735 .next_index = ~0,.node_index = node_index,.type_opaque =
736 type_opaque,.data = data,.data_callback = data_callback,.pid =
737 pid,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738
Eyal Bari8db1de82017-03-31 02:15:17 +0300739 /* Insert new resolution at the end of the list */
740 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300742 p[0] = new_idx;
743 else
744 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745 }
746 else
747 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300748 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700749 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
Eyal Bari8db1de82017-03-31 02:15:17 +0300751 /* Clients may need to clean up pool entries, too */
752 void (*fp) (u32, u8 *) = data_callback;
753 if (fp)
754 (*fp) (mc->data, 0 /* no new mac addrs */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
Eyal Bari8db1de82017-03-31 02:15:17 +0300756 /* Remove the entry from the list and delete the entry */
757 *p = mc->next_index;
758 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700759
Eyal Bari8db1de82017-03-31 02:15:17 +0300760 /* Remove from hash if we deleted the last entry */
761 if (*p == ~0 && p == first)
762 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300764 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765}
766
767/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700768typedef enum
769{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 ARP_INPUT_NEXT_DROP,
John Lod1f5d042016-04-12 18:20:39 -0400771 ARP_INPUT_NEXT_REPLY_TX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772 ARP_INPUT_N_NEXT,
773} arp_input_next_t;
774
775#define foreach_ethernet_arp_error \
776 _ (replies_sent, "ARP replies sent") \
777 _ (l2_type_not_ethernet, "L2 type not ethernet") \
778 _ (l3_type_not_ip4, "L3 type not IP4") \
779 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
780 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
781 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
782 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
783 _ (replies_received, "ARP replies received") \
784 _ (opcode_not_request, "ARP opcode not request") \
785 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
786 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
787 _ (missing_interface_address, "ARP missing interface address") \
788 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100789 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800790 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700792typedef enum
793{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
795 foreach_ethernet_arp_error
796#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700797 ETHERNET_ARP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798} ethernet_arp_input_error_t;
799
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700801static void
802unset_random_arp_entry (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700804 ethernet_arp_main_t *am = &ethernet_arp_main;
805 ethernet_arp_ip4_entry_t *e;
806 vnet_main_t *vnm = vnet_get_main ();
807 ethernet_arp_ip4_over_ethernet_address_t delme;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808 u32 index;
809
810 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
811 am->arp_delete_rotor = index;
812
813 /* Try again from elt 0, could happen if an intfc goes down */
814 if (index == ~0)
815 {
816 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
817 am->arp_delete_rotor = index;
818 }
819
820 /* Nothing left in the pool */
821 if (index == ~0)
822 return;
823
824 e = pool_elt_at_index (am->ip4_entry_pool, index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700825
Damjan Marionf1213b82016-03-13 02:22:06 +0100826 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100827 delme.ip4.as_u32 = e->ip4_address.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700828
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100829 vnet_arp_unset_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700831
Neale Ranns436d06b2016-11-30 07:41:53 -0800832static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700833arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700834 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700836 vnet_main_t *vnm = vnet_get_main ();
837 vnet_interface_main_t *vim = &vnm->interface_main;
838 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700840 /* verify that the input interface is unnumbered to the connected.
841 * the connected interface is the interface on which the subnet is
842 * configured */
843 si = &vim->sw_interfaces[input_sw_if_index];
844
845 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
846 (si->unnumbered_sw_if_index == conn_sw_if_index)))
847 {
848 /* the input interface is not unnumbered to the interface on which
849 * the sub-net is configured that covers the ARP request.
850 * So this is not the case for unnumbered.. */
851 return 0;
852 }
853
Neale Ranns436d06b2016-11-30 07:41:53 -0800854 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700855}
856
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700857static u32
858arp_learn (vnet_main_t * vnm,
859 ethernet_arp_main_t * am, u32 sw_if_index, void *addr)
860{
861 if (am->limit_arp_cache_size &&
862 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
863 unset_random_arp_entry ();
864
865 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0, 0);
866 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
867}
868
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700870arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700872 ethernet_arp_main_t *am = &ethernet_arp_main;
873 vnet_main_t *vnm = vnet_get_main ();
874 ip4_main_t *im4 = &ip4_main;
875 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
877
878 from = vlib_frame_vector_args (frame);
879 n_left_from = frame->n_vectors;
880 next_index = node->cached_next_index;
881
882 if (node->flags & VLIB_NODE_FLAG_TRACE)
883 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
884 /* stride */ 1,
885 sizeof (ethernet_arp_input_trace_t));
886
887 while (n_left_from > 0)
888 {
889 u32 n_left_to_next;
890
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700891 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892
893 while (n_left_from > 0 && n_left_to_next > 0)
894 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700895 vlib_buffer_t *p0;
896 vnet_hw_interface_t *hw_if0;
897 ethernet_arp_header_t *arp0;
Neale Ranns30d0fd42017-05-30 07:30:04 -0700898 ethernet_header_t *eth_rx, *eth_tx;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100899 ip4_address_t *if_addr0, proxy_src;
900 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Matthew Smithcb9ab472017-05-16 21:35:56 -0500901 u8 is_request0, dst_is_local0, is_unnum0, is_vrrp_reply0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700902 ethernet_proxy_arp_t *pa;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100903 fib_node_index_t dst_fei, src_fei;
904 fib_prefix_t pfx0;
905 fib_entry_flag_t src_flags, dst_flags;
Neale Ranns30d0fd42017-05-30 07:30:04 -0700906 ip_adjacency_t *adj0 = NULL;
907 adj_index_t ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908
909 pi0 = from[0];
910 to_next[0] = pi0;
911 from += 1;
912 to_next += 1;
913 n_left_from -= 1;
914 n_left_to_next -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100915 pa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916
917 p0 = vlib_get_buffer (vm, pi0);
918 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -0700919 /* Fill in ethernet header. */
920 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700922 is_request0 = arp0->opcode
923 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924
925 error0 = ETHERNET_ARP_ERROR_replies_sent;
926
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700927 error0 =
928 (arp0->l2_type !=
929 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
930 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
931 error0 =
932 (arp0->l3_type !=
933 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
934 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935
936 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
937
Neale Rannsd96bad82017-03-08 01:12:54 -0800938 /* not playing the ARP game if the interface is not IPv4 enabled */
939 error0 =
940 (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
941 ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
942
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943 if (error0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100944 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945
946 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100947 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
948 if (~0 == fib_index0)
949 {
950 error0 = ETHERNET_ARP_ERROR_interface_no_table;
951 goto drop2;
952
953 }
954 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
955 &arp0->ip4_over_ethernet[1].ip4,
956 32);
Matus Fabiandccbee32017-01-31 22:20:30 -0800957 dst_flags = fib_entry_get_flags (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100958
Matus Fabiandccbee32017-01-31 22:20:30 -0800959 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100960
Neale Rannsca193612017-06-14 06:50:08 -0700961 /* Honor unnumbered interface, if any */
962 is_unnum0 = sw_if_index0 != conn_sw_if_index0;
963
964 {
965 /*
966 * we're looking for FIB entries that indicate the source
967 * is attached. There may be more specific non-attached
968 * routes tht match the source, but these do not influence
969 * whether we respond to an ARP request, i.e. they do not
970 * influence whether we are the correct way for the sender
971 * to reach us, they only affect how we reach the sender.
972 */
973 fib_entry_t *src_fib_entry;
974 fib_entry_src_t *src;
975 fib_source_t source;
976 fib_prefix_t pfx;
977 int attached;
978 int mask;
979
980 mask = 32;
981 attached = 0;
982
983 do
984 {
985 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
986 &arp0->
987 ip4_over_ethernet[0].ip4,
988 mask);
989 src_fib_entry = fib_entry_get (src_fei);
990
991 /*
992 * It's possible that the source that provides the
993 * flags we need, or the flags we must not have,
994 * is not the best source, so check then all.
995 */
996 /* *INDENT-OFF* */
997 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
998 ({
999 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1000
1001 /* Reject requests/replies with our local interface
1002 address. */
1003 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1004 {
1005 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
1006 goto drop2;
1007 }
1008 /* A Source must also be local to subnet of matching
1009 * interface address. */
1010 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1011 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1012 {
1013 attached = 1;
1014 break;
1015 }
1016 /*
1017 * else
1018 * The packet was sent from an address that is not
1019 * connected nor attached i.e. it is not from an
1020 * address that is covered by a link's sub-net,
1021 * nor is it a already learned host resp.
1022 */
1023 }));
1024 /* *INDENT-ON* */
1025
1026 /*
1027 * shorter mask lookup for the next iteration.
1028 */
1029 fib_entry_get_prefix (src_fei, &pfx);
1030 mask = pfx.fp_len - 1;
1031
1032 /*
1033 * continue until we hit the default route or we find
1034 * the attached we are looking for. The most likely
1035 * outcome is we find the attached with the first source
1036 * on the first lookup.
1037 */
1038 }
1039 while (!attached &&
1040 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1041
1042 if (!attached)
1043 {
1044 /*
1045 * the matching route is a not attached, i.e. it was
1046 * added as a result of routing, rather than interface/ARP
1047 * configuration. If the matching route is not a host route
1048 * (i.e. a /32)
1049 */
1050 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
1051 goto drop2;
1052 }
1053 }
1054
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001055 if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056 {
1057 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1058 goto drop1;
1059 }
1060
Neale Ranns797235a2017-01-09 14:33:38 +01001061 if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1062 {
1063 /*
1064 * The interface the ARP was received on is not the interface
Neale Rannsca193612017-06-14 06:50:08 -07001065 * on which the covering prefix is configured. Maybe this is a
1066 * case for unnumbered.
Neale Ranns797235a2017-01-09 14:33:38 +01001067 */
1068 is_unnum0 = 1;
1069 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001071 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
1072 fib_entry_get_prefix (dst_fei, &pfx0);
1073 if_addr0 = &pfx0.fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074
Matthew Smithcb9ab472017-05-16 21:35:56 -05001075 is_vrrp_reply0 =
1076 ((arp0->opcode ==
1077 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1078 &&
1079 (!memcmp
1080 (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
1081 sizeof (vrrp_prefix))));
1082
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001083 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001084 match their L2-frame-level source addresses, unless it's
1085 a reply from a VRRP virtual router */
Neale Ranns30d0fd42017-05-30 07:30:04 -07001086 if (memcmp
1087 (eth_rx->src_address, arp0->ip4_over_ethernet[0].ethernet,
1088 sizeof (eth_rx->src_address)) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001089 {
1090 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1091 goto drop2;
1092 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001093
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001094 /* Learn or update sender's mapping only for replies to addresses
1095 * that are local to the subnet */
1096 if (arp0->opcode ==
1097 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply) &&
1098 dst_is_local0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001099 {
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001100 error0 = arp_learn (vnm, am, sw_if_index0,
1101 &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102 goto drop1;
1103 }
1104
1105 /* Send a reply. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001106 send_reply:
Neale Ranns30d0fd42017-05-30 07:30:04 -07001107 ai = fib_entry_get_adj (src_fei);
1108 if (ADJ_INDEX_INVALID != ai)
1109 {
1110 adj0 = adj_get (ai);
1111 }
1112 else
1113 {
1114 error0 = ETHERNET_ARP_ERROR_missing_interface_address;
1115 goto drop2;
1116 }
1117 /* Figure out how much to rewind current data from adjacency. */
1118 vlib_buffer_advance (p0, -adj0->rewrite_header.data_bytes);
1119 eth_tx = vlib_buffer_get_current (p0);
1120
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1122 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1123
John Lod1f5d042016-04-12 18:20:39 -04001124 /* Send reply back through input interface */
1125 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1126 next0 = ARP_INPUT_NEXT_REPLY_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127
1128 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1129
1130 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1131
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001132 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1133 hw_if0->hw_address, 6);
1134 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1135 if_addr0->data_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136
1137 /* Hardware must be ethernet-like. */
1138 ASSERT (vec_len (hw_if0->hw_address) == 6);
1139
Neale Ranns30d0fd42017-05-30 07:30:04 -07001140 /* the rx nd tx ethernet headers wil overlap in the case
1141 * when we received a tagged VLAN=0 packet, but we are sending
1142 * back untagged */
1143 memmove (eth_tx->dst_address, eth_rx->src_address, 6);
1144 clib_memcpy (eth_tx->src_address, hw_if0->hw_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001146 if (NULL == pa)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001147 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001148 if (is_unnum0)
Neale Ranns436d06b2016-11-30 07:41:53 -08001149 {
Neale Ranns30d0fd42017-05-30 07:30:04 -07001150 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001151 goto drop2;
1152 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001153 }
Neale Ranns4b919a52017-03-11 05:55:21 -08001154
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001155 /* We are going to reply to this request, so learn the sender */
1156 error0 = arp_learn (vnm, am, sw_if_index0,
1157 &arp0->ip4_over_ethernet[1]);
1158
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001159 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1160 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001161
1162 n_replies_sent += 1;
1163 continue;
1164
1165 drop1:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001166 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
1167 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1168 arp0->ip4_over_ethernet[1].ip4.as_u32))
1169 {
1170 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1171 goto drop2;
1172 }
1173 /* See if proxy arp is configured for the address */
1174 if (is_request0)
1175 {
1176 vnet_sw_interface_t *si;
1177 u32 this_addr = clib_net_to_host_u32
1178 (arp0->ip4_over_ethernet[1].ip4.as_u32);
1179 u32 fib_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001181 si = vnet_get_sw_interface (vnm, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001183 if (!(si->flags & VNET_SW_INTERFACE_FLAG_PROXY_ARP))
1184 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001185
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001186 fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1187 sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001189 vec_foreach (pa, am->proxy_arps)
1190 {
1191 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr);
1192 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001194 /* an ARP request hit in the proxy-arp table? */
1195 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1196 (fib_index0 == pa->fib_index))
1197 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001198 proxy_src.as_u32 =
1199 arp0->ip4_over_ethernet[1].ip4.data_u32;
1200
Damjan Marion607de1a2016-08-16 22:53:54 +02001201 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001202 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001203 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001204 if_addr0 = &proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001205 is_unnum0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001206 n_proxy_arp_replies_sent++;
1207 goto send_reply;
1208 }
1209 }
1210 }
1211
1212 drop2:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213
1214 next0 = ARP_INPUT_NEXT_DROP;
1215 p0->error = node->errors[error0];
1216
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001217 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1218 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219 }
1220
1221 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1222 }
1223
1224 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001225 ETHERNET_ARP_ERROR_replies_sent,
1226 n_replies_sent - n_proxy_arp_replies_sent);
1227
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001229 ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1230 n_proxy_arp_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001231 return frame->n_vectors;
1232}
1233
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001234static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235#define _(sym,string) string,
1236 foreach_ethernet_arp_error
1237#undef _
1238};
1239
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001240/* *INDENT-OFF* */
1241VLIB_REGISTER_NODE (arp_input_node, static) =
1242{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243 .function = arp_input,
1244 .name = "arp-input",
1245 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 .n_errors = ETHERNET_ARP_N_ERROR,
1247 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248 .n_next_nodes = ARP_INPUT_N_NEXT,
1249 .next_nodes = {
1250 [ARP_INPUT_NEXT_DROP] = "error-drop",
John Lod1f5d042016-04-12 18:20:39 -04001251 [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 .format_buffer = format_ethernet_arp_header,
1254 .format_trace = format_ethernet_arp_input_trace,
1255};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001256/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257
Ed Warnickecb9cada2015-12-08 15:45:58 -07001258static int
1259ip4_arp_entry_sort (void *a1, void *a2)
1260{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001261 ethernet_arp_ip4_entry_t *e1 = a1;
1262 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001263
1264 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001265 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001267 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001268 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001269 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270 return cmp;
1271}
1272
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001273ethernet_arp_ip4_entry_t *
1274ip4_neighbor_entries (u32 sw_if_index)
1275{
1276 ethernet_arp_main_t *am = &ethernet_arp_main;
1277 ethernet_arp_ip4_entry_t *n, *ns = 0;
1278
1279 /* *INDENT-OFF* */
1280 pool_foreach (n, am->ip4_entry_pool, ({
1281 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1282 continue;
1283 vec_add1 (ns, n[0]);
1284 }));
1285 /* *INDENT-ON* */
1286
1287 if (ns)
1288 vec_sort_with_function (ns, ip4_arp_entry_sort);
1289 return ns;
1290}
1291
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292static clib_error_t *
1293show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001294 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001296 vnet_main_t *vnm = vnet_get_main ();
1297 ethernet_arp_main_t *am = &ethernet_arp_main;
1298 ethernet_arp_ip4_entry_t *e, *es;
1299 ethernet_proxy_arp_t *pa;
1300 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001301 u32 sw_if_index;
1302
1303 /* Filter entries by interface if given. */
1304 sw_if_index = ~0;
1305 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1306
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001307 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001308 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001309 {
Keith Wilescb466842016-02-11 19:21:10 -06001310 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001311 vec_foreach (e, es)
1312 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001313 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001314 }
1315 vec_free (es);
1316 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001317
1318 if (vec_len (am->proxy_arps))
1319 {
1320 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001321 vec_foreach (pa, am->proxy_arps)
1322 {
1323 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1324 pa->fib_index,
1325 format_ip4_address, &pa->lo_addr,
1326 format_ip4_address, &pa->hi_addr);
1327 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001329
Ed Warnickecb9cada2015-12-08 15:45:58 -07001330 return error;
1331}
1332
Billy McFall2d085d92016-09-13 21:47:55 -04001333/*?
1334 * Display all the IPv4 ARP entries.
1335 *
1336 * @cliexpar
1337 * Example of how to display the IPv4 ARP table:
1338 * @cliexstart{show ip arp}
1339 * Time FIB IP4 Flags Ethernet Interface
1340 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1341 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1342 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1343 * Proxy arps enabled for:
1344 * Fib_index 0 6.0.0.1 - 6.0.0.11
1345 * @cliexend
1346 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001347/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1349 .path = "show ip arp",
1350 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001351 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001353/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001355typedef struct
1356{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357 pg_edit_t l2_type, l3_type;
1358 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1359 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001360 struct
1361 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001362 pg_edit_t ethernet;
1363 pg_edit_t ip4;
1364 } ip4_over_ethernet[2];
1365} pg_ethernet_arp_header_t;
1366
1367static inline void
1368pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1369{
1370 /* Initialize fields that are not bit fields in the IP header. */
1371#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001372 _(l2_type);
1373 _(l3_type);
1374 _(n_l2_address_bytes);
1375 _(n_l3_address_bytes);
1376 _(opcode);
1377 _(ip4_over_ethernet[0].ethernet);
1378 _(ip4_over_ethernet[0].ip4);
1379 _(ip4_over_ethernet[1].ethernet);
1380 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001381#undef _
1382}
1383
1384uword
1385unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1386{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001387 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1388 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001389 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001390
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1392 &group_index);
1393 pg_ethernet_arp_header_init (p);
1394
1395 /* Defaults. */
1396 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1397 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1398 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1399 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1400
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001401 if (!unformat (input, "%U: %U/%U -> %U/%U",
1402 unformat_pg_edit,
1403 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1404 unformat_pg_edit,
1405 unformat_ethernet_address, &p->ip4_over_ethernet[0].ethernet,
1406 unformat_pg_edit,
1407 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1408 unformat_pg_edit,
1409 unformat_ethernet_address, &p->ip4_over_ethernet[1].ethernet,
1410 unformat_pg_edit,
1411 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412 {
1413 /* Free up any edits we may have added. */
1414 pg_free_edit_group (s);
1415 return 0;
1416 }
1417 return 1;
1418}
1419
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001420clib_error_t *
1421ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001423 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424
1425 am->limit_arp_cache_size = arp_limit;
1426 return 0;
1427}
1428
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001429/**
1430 * @brief Control Plane hook to remove an ARP entry
1431 */
1432int
1433vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
1434 u32 sw_if_index, void *a_arg)
Damjan Marion102ec522016-03-29 13:18:17 +02001435{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001436 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1437 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
Damjan Marion102ec522016-03-29 13:18:17 +02001438
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001439 args.sw_if_index = sw_if_index;
1440 args.flags = ETHERNET_ARP_ARGS_REMOVE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001441 clib_memcpy (&args.a, a, sizeof (*a));
1442
1443 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1444 (u8 *) & args, sizeof (args));
1445 return 0;
1446}
1447
1448/**
1449 * @brief Internally generated event to flush the ARP cache on an
1450 * interface state change event.
1451 * A flush will remove dynamic ARP entries, and for statics remove the MAC
1452 * address from the corresponding adjacencies.
1453 */
1454static int
1455vnet_arp_flush_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001456 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001457{
1458 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1459 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1460
1461 args.sw_if_index = sw_if_index;
1462 args.flags = ETHERNET_ARP_ARGS_FLUSH;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001463 clib_memcpy (&args.a, a, sizeof (*a));
1464
1465 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1466 (u8 *) & args, sizeof (args));
1467 return 0;
1468}
1469
1470/**
1471 * @brief Internally generated event to populate the ARP cache on an
1472 * interface state change event.
1473 * For static entries this will re-source the adjacencies.
1474 *
1475 * @param sw_if_index The interface on which the ARP entires are acted
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001476 */
1477static int
1478vnet_arp_populate_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001479 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001480{
1481 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1482 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1483
1484 args.sw_if_index = sw_if_index;
1485 args.flags = ETHERNET_ARP_ARGS_POPULATE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001486 clib_memcpy (&args.a, a, sizeof (*a));
1487
1488 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1489 (u8 *) & args, sizeof (args));
1490 return 0;
1491}
1492
1493/*
1494 * arp_add_del_interface_address
1495 *
1496 * callback when an interface address is added or deleted
1497 */
1498static void
1499arp_add_del_interface_address (ip4_main_t * im,
1500 uword opaque,
1501 u32 sw_if_index,
1502 ip4_address_t * address,
1503 u32 address_length,
1504 u32 if_address_index, u32 is_del)
1505{
1506 /*
1507 * Flush the ARP cache of all entries covered by the address
1508 * that is being removed.
1509 */
1510 ethernet_arp_main_t *am = &ethernet_arp_main;
1511 ethernet_arp_ip4_entry_t *e;
1512
Neale Ranns177bbdc2016-11-15 09:46:51 +00001513 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001514 return;
1515
1516 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02001517 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001518 ethernet_arp_interface_t *eai;
1519 u32 i, *to_delete = 0;
1520 hash_pair_t *pair;
1521
1522 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1523
Neale Rannsb80c5362016-10-08 13:03:40 +01001524 /* *INDENT-OFF* */
1525 hash_foreach_pair (pair, eai->arp_entries,
1526 ({
1527 e = pool_elt_at_index(am->ip4_entry_pool,
1528 pair->value[0]);
1529 if (ip4_destination_matches_route (im, &e->ip4_address,
1530 address, address_length))
1531 {
1532 vec_add1 (to_delete, e - am->ip4_entry_pool);
1533 }
1534 }));
1535 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001536
1537 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001538 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001539 ethernet_arp_ip4_over_ethernet_address_t delme;
1540 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1541
1542 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1543 delme.ip4.as_u32 = e->ip4_address.as_u32;
1544
1545 vnet_arp_flush_ip4_over_ethernet (vnet_get_main (),
Neale Rannsb80c5362016-10-08 13:03:40 +01001546 e->sw_if_index, &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001547 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001548
1549 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02001550 }
1551}
1552
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001553static clib_error_t *
1554ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001555{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001556 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001557 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001558 clib_error_t *error;
1559 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05001560
1561 if ((error = vlib_call_init_function (vm, ethernet_init)))
1562 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001563
1564 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1565
1566 pn = pg_get_node (arp_input_node.index);
1567 pn->unformat_edit = unformat_pg_arp_header;
1568
1569 am->opcode_by_name = hash_create_string (0, sizeof (uword));
1570#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1571 foreach_ethernet_arp_opcode;
1572#undef _
1573
Ed Warnickecb9cada2015-12-08 15:45:58 -07001574 /* $$$ configurable */
1575 am->limit_arp_cache_size = 50000;
1576
1577 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1578 am->mac_changes_by_address = hash_create (0, sizeof (uword));
1579
1580 /* don't trace ARP error packets */
1581 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001582 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001583 vlib_node_get_runtime (vm, arp_input_node.index);
1584
1585#define _(a,b) \
1586 vnet_pcap_drop_trace_filter_add_del \
1587 (rt->errors[ETHERNET_ARP_ERROR_##a], \
1588 1 /* is_add */);
1589 foreach_ethernet_arp_error
1590#undef _
1591 }
Damjan Marion102ec522016-03-29 13:18:17 +02001592
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001593 ip4_add_del_interface_address_callback_t cb;
1594 cb.function = arp_add_del_interface_address;
1595 cb.function_opaque = 0;
1596 vec_add1 (im->add_del_interface_address_callbacks, cb);
1597
Ed Warnickecb9cada2015-12-08 15:45:58 -07001598 return 0;
1599}
1600
1601VLIB_INIT_FUNCTION (ethernet_arp_init);
1602
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001603static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001604arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
1605{
1606 ethernet_arp_main_t *am = &ethernet_arp_main;
1607
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001608 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
Neale Rannsdcd6d622017-05-26 02:59:16 -07001609 {
1610 fib_prefix_t pfx = {
1611 .fp_len = 32,
1612 .fp_proto = FIB_PROTOCOL_IP4,
1613 .fp_addr.ip4 = e->ip4_address,
1614 };
1615 u32 fib_index;
1616
1617 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
1618
1619 fib_table_entry_path_remove (fib_index, &pfx,
1620 FIB_SOURCE_ADJ,
1621 FIB_PROTOCOL_IP4,
1622 &pfx.fp_addr,
1623 e->sw_if_index, ~0, 1,
1624 FIB_ROUTE_PATH_FLAG_NONE);
1625 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001626 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
1627 pool_put (am->ip4_entry_pool, e);
1628}
1629
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001630static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001632 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1633 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001634{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001635 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001636 ethernet_arp_ip4_entry_t *e;
1637 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001638
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001639 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001640
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001641 e = arp_entry_find (eai, &args->a.ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001642
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001643 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001644 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001645 arp_entry_free (eai, e);
Neale Ranns19c68d22016-12-07 15:38:14 +00001646
1647 adj_nbr_walk_nh4 (e->sw_if_index,
1648 &e->ip4_address, arp_mk_incomplete_walk, NULL);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001649 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001650
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651 return 0;
1652}
1653
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001654static int
1655vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1656 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1657 * args)
1658{
1659 ethernet_arp_main_t *am = &ethernet_arp_main;
1660 ethernet_arp_ip4_entry_t *e;
1661 ethernet_arp_interface_t *eai;
1662
1663 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1664
1665 e = arp_entry_find (eai, &args->a.ip4);
1666
1667 if (NULL != e)
1668 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001669 adj_nbr_walk_nh4 (e->sw_if_index,
1670 &e->ip4_address, arp_mk_incomplete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001671
1672 /*
1673 * The difference between flush and unset, is that an unset
1674 * means delete for static and dynamic entries. A flush
1675 * means delete only for dynamic. Flushing is what the DP
1676 * does in response to interface events. unset is only done
1677 * by the control plane.
1678 */
Neale Rannsb80c5362016-10-08 13:03:40 +01001679 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001680 {
1681 arp_entry_free (eai, e);
1682 }
1683 }
1684 return (0);
1685}
1686
1687static int
1688vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
1689 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1690 * args)
1691{
1692 ethernet_arp_main_t *am = &ethernet_arp_main;
1693 ethernet_arp_ip4_entry_t *e;
1694 ethernet_arp_interface_t *eai;
1695
1696 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1697
1698 e = arp_entry_find (eai, &args->a.ip4);
1699
1700 if (NULL != e)
1701 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001702 adj_nbr_walk_nh4 (e->sw_if_index,
1703 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001704 }
1705 return (0);
1706}
1707
1708static void
1709set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
1710 * a)
1711{
1712 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001713 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001714
1715 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
1716 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
1717 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1718 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
1719 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1720 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
1721 else
1722 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
1723}
1724
1725/**
1726 * @brief Invoked when the interface's admin state changes
1727 */
1728static clib_error_t *
1729ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
1730 u32 sw_if_index, u32 flags)
1731{
1732 ethernet_arp_main_t *am = &ethernet_arp_main;
1733 ethernet_arp_ip4_entry_t *e;
1734 u32 i, *to_delete = 0;
1735
1736 /* *INDENT-OFF* */
1737 pool_foreach (e, am->ip4_entry_pool,
1738 ({
1739 if (e->sw_if_index == sw_if_index)
Neale Rannsb80c5362016-10-08 13:03:40 +01001740 vec_add1 (to_delete,
1741 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001742 }));
1743 /* *INDENT-ON* */
1744
1745 for (i = 0; i < vec_len (to_delete); i++)
1746 {
1747 ethernet_arp_ip4_over_ethernet_address_t delme;
1748 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1749
1750 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1751 delme.ip4.as_u32 = e->ip4_address.as_u32;
1752
1753 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1754 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001755 vnet_arp_populate_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001756 }
1757 else
1758 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001759 vnet_arp_flush_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001760 }
1761
1762 }
1763 vec_free (to_delete);
1764
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001765 return 0;
1766}
1767
1768VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
1769
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001770static void
1771increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001772{
1773 u8 old;
1774 int i;
1775
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001776 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001777 {
1778 old = a->ip4.as_u8[i];
1779 a->ip4.as_u8[i] += 1;
1780 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001781 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001782 }
1783
1784 for (i = 5; i >= 0; i--)
1785 {
1786 old = a->ethernet[i];
1787 a->ethernet[i] += 1;
1788 if (old < a->ethernet[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001789 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001790 }
1791}
1792
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001793int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001794vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb3b2de72017-03-08 05:17:22 -08001795 u32 sw_if_index, void *a_arg,
1796 int is_static, int is_no_fib_entry)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001797{
1798 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1799 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1800
1801 args.sw_if_index = sw_if_index;
1802 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001803 args.is_no_fib_entry = is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001804 args.flags = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001805 clib_memcpy (&args.a, a, sizeof (*a));
1806
1807 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1808 (u8 *) & args, sizeof (args));
1809 return 0;
1810}
1811
1812int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001813vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
1814 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001815{
1816 ethernet_arp_main_t *am = &ethernet_arp_main;
1817 ethernet_proxy_arp_t *pa;
1818 u32 found_at_index = ~0;
1819
1820 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001821 {
1822 if (pa->lo_addr == lo_addr->as_u32
1823 && pa->hi_addr == hi_addr->as_u32 && pa->fib_index == fib_index)
1824 {
1825 found_at_index = pa - am->proxy_arps;
1826 break;
1827 }
1828 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001829
1830 if (found_at_index != ~0)
1831 {
1832 /* Delete, otherwise it's already in the table */
1833 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001834 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001835 return 0;
1836 }
1837 /* delete, no such entry */
1838 if (is_del)
1839 return VNET_API_ERROR_NO_SUCH_ENTRY;
1840
1841 /* add, not in table */
1842 vec_add2 (am->proxy_arps, pa, 1);
1843 pa->lo_addr = lo_addr->as_u32;
1844 pa->hi_addr = hi_addr->as_u32;
1845 pa->fib_index = fib_index;
1846 return 0;
1847}
1848
1849/*
Damjan Marion607de1a2016-08-16 22:53:54 +02001850 * Remove any proxy arp entries asdociated with the
Ed Warnickecb9cada2015-12-08 15:45:58 -07001851 * specificed fib.
1852 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001853int
1854vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001855{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001856 ethernet_arp_main_t *am = &ethernet_arp_main;
1857 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001858 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001859 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001860 int i;
1861
Neale Ranns107e7d42017-04-11 09:55:19 -07001862 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
1863 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001864 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001865
1866 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001867 {
1868 if (pa->fib_index == fib_index)
1869 {
1870 vec_add1 (entries_to_delete, pa - am->proxy_arps);
1871 }
1872 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001873
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001874 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001875 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001876 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
1877 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001878
1879 vec_free (entries_to_delete);
1880
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001881 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001882}
1883
1884static clib_error_t *
1885ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001886 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001887{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001888 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001889 u32 sw_if_index;
1890 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
1891 int addr_valid = 0;
1892 int is_del = 0;
1893 int count = 1;
1894 u32 fib_index = 0;
1895 u32 fib_id;
1896 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001897 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001898 int is_proxy = 0;
1899
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001900 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001901 {
1902 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
1903 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001904 unformat_vnet_sw_interface, vnm, &sw_if_index,
1905 unformat_ip4_address, &addr.ip4,
1906 unformat_ethernet_address, &addr.ethernet))
1907 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001908
1909 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001910 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001911
1912 else if (unformat (input, "static"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001913 is_static = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001914
Neale Rannsb3b2de72017-03-08 05:17:22 -08001915 else if (unformat (input, "no-fib-entry"))
1916 is_no_fib_entry = 1;
1917
Ed Warnickecb9cada2015-12-08 15:45:58 -07001918 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001919 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001920
1921 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001922 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001923 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
1924
1925 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001926 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001927 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001928
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001929 else if (unformat (input, "proxy %U - %U",
1930 unformat_ip4_address, &lo_addr.ip4,
1931 unformat_ip4_address, &hi_addr.ip4))
1932 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001933 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001934 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001935 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001936
Ed Warnickecb9cada2015-12-08 15:45:58 -07001937 if (is_proxy)
1938 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001939 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
1940 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001941 return 0;
1942 }
1943
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001944 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001945 {
1946 int i;
1947
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001948 for (i = 0; i < count; i++)
1949 {
1950 if (is_del == 0)
1951 {
1952 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001954 /* Park the debug CLI until the arp entry is installed */
1955 vnet_register_ip4_arp_resolution_event
1956 (vnm, &addr.ip4, vlib_current_process (vm),
1957 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001958
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001959 vnet_arp_set_ip4_over_ethernet
Neale Rannsb3b2de72017-03-08 05:17:22 -08001960 (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001961
1962 vlib_process_wait_for_event (vm);
1963 event_type = vlib_process_get_events (vm, &event_data);
1964 vec_reset_length (event_data);
1965 if (event_type != 1)
1966 clib_warning ("event type %d unexpected", event_type);
1967 }
1968 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001969 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001970
1971 increment_ip4_and_mac_address (&addr);
1972 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001973 }
1974 else
1975 {
1976 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001977 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001978 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001979
Ed Warnickecb9cada2015-12-08 15:45:58 -07001980 return 0;
1981}
1982
Neale Rannsb80c5362016-10-08 13:03:40 +01001983/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001984/*?
Billy McFall2d085d92016-09-13 21:47:55 -04001985 * Add or delete IPv4 ARP cache entries.
1986 *
1987 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
1988 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
1989 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001990 *
1991 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04001992 * @parblock
1993 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
1994 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
1995 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
1996 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
1997 *
1998 * To add or delete an IPv4 ARP cache entry to or from a specific fib
1999 * table:
2000 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2001 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2002 *
2003 * Add or delete IPv4 static ARP cache entries as follows:
2004 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2005 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2006 *
2007 * For testing / debugging purposes, the 'set ip arp' command can add or
2008 * delete multiple entries. Supply the 'count N' parameter:
2009 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2010 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002011 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002012VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002013 .path = "set ip arp",
2014 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002015 "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 -07002016 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002017};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002018/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002019
2020static clib_error_t *
2021set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002022 unformat_input_t *
2023 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002024{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002025 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002026 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002027 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002028 int enable = 0;
2029 int intfc_set = 0;
2030
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002031 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002032 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002033 if (unformat (input, "%U", unformat_vnet_sw_interface,
2034 vnm, &sw_if_index))
2035 intfc_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002036 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002037 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002038 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002039 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002040 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002041 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002042 }
2043
2044 if (intfc_set == 0)
2045 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002046 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002047
2048 si = vnet_get_sw_interface (vnm, sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002049 ASSERT (si);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002050 if (enable)
2051 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002052 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07002053 si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002054
Ed Warnickecb9cada2015-12-08 15:45:58 -07002055 return 0;
2056}
2057
Neale Rannsb80c5362016-10-08 13:03:40 +01002058/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002059/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002060 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2061 * requests for the indicated address range. Multiple proxy-arp
2062 * ranges may be provisioned.
2063 *
2064 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2065 * Also, the underlying implementation has not been performance-tuned.
2066 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002067 *
2068 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002069 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002070 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2071 * Append 'del' to delete a range of proxy ARP addresses:
2072 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2073 * You must then specifically enable proxy arp on individual interfaces:
2074 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2075 * To disable proxy arp on an individual interface:
2076 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002077 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002078VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002079 .path = "set interface proxy-arp",
2080 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002081 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002082 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002083};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002084/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002085
2086
2087/*
John Lo1edfba92016-08-27 01:11:57 -04002088 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2089 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002090 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002091typedef enum
2092{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002093 ARP_TERM_NEXT_L2_OUTPUT,
2094 ARP_TERM_NEXT_DROP,
2095 ARP_TERM_N_NEXT,
2096} arp_term_next_t;
2097
2098u32 arp_term_next_node_index[32];
2099
2100static uword
2101arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002102 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002103{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002104 l2input_main_t *l2im = &l2input_main;
2105 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002106 u32 n_replies_sent = 0;
2107 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002108 l2_bridge_domain_t *last_bd_config = 0;
2109 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002110
2111 from = vlib_frame_vector_args (frame);
2112 n_left_from = frame->n_vectors;
2113 next_index = node->cached_next_index;
2114
2115 while (n_left_from > 0)
2116 {
2117 u32 n_left_to_next;
2118
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002119 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002120
2121 while (n_left_from > 0 && n_left_to_next > 0)
2122 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002123 vlib_buffer_t *p0;
2124 ethernet_header_t *eth0;
2125 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002126 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002127 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002128 u32 pi0, error0, next0, sw_if_index0;
2129 u16 ethertype0;
2130 u16 bd_index0;
2131 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002132 u8 *macp0;
Matthew Smithcb9ab472017-05-16 21:35:56 -05002133 u8 is_vrrp_reply0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002134
2135 pi0 = from[0];
2136 to_next[0] = pi0;
2137 from += 1;
2138 to_next += 1;
2139 n_left_from -= 1;
2140 n_left_to_next -= 1;
2141
2142 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002143 // Terminate only local (SHG == 0) ARP
2144 if (vnet_buffer (p0)->l2.shg != 0)
2145 goto next_l2_feature;
2146
Ed Warnickecb9cada2015-12-08 15:45:58 -07002147 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002148 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2149 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002150 arp0 = (ethernet_arp_header_t *) l3h0;
2151
John Lo1edfba92016-08-27 01:11:57 -04002152 if (PREDICT_FALSE ((ethertype0 != ETHERNET_TYPE_ARP) ||
2153 (arp0->opcode !=
2154 clib_host_to_net_u16
2155 (ETHERNET_ARP_OPCODE_request))))
2156 goto check_ip6_nd;
2157
2158 /* Must be ARP request packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002159 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2160 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2161 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002162 u8 *t0 = vlib_add_trace (vm, node, p0,
2163 sizeof (ethernet_arp_input_trace_t));
2164 clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002165 }
2166
Ed Warnickecb9cada2015-12-08 15:45:58 -07002167 error0 = ETHERNET_ARP_ERROR_replies_sent;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002168 error0 =
2169 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002170 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2171 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002172 error0 =
2173 (arp0->l3_type !=
2174 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2175 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002176
2177 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2178
2179 if (error0)
2180 goto drop;
2181
Matthew Smithcb9ab472017-05-16 21:35:56 -05002182 is_vrrp_reply0 =
2183 ((arp0->opcode ==
2184 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
2185 &&
2186 (!memcmp
2187 (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
2188 sizeof (vrrp_prefix))));
2189
John Lo1edfba92016-08-27 01:11:57 -04002190 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05002191 match their L2-frame-level source addresses, unless it's
2192 a reply from a VRRP virtual router */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002193 if (PREDICT_FALSE
Matthew Smithcb9ab472017-05-16 21:35:56 -05002194 (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
2195 sizeof (eth0->src_address)) && !is_vrrp_reply0))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002196 {
2197 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2198 goto drop;
2199 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002200
John Lo1edfba92016-08-27 01:11:57 -04002201 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002202 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002203 pending_resolution_t *mc;
2204 ethernet_arp_main_t *am = &ethernet_arp_main;
2205 uword *p = hash_get (am->mac_changes_by_address, 0);
Eyal Baria0623f82017-03-30 03:05:06 +03002206 if (p)
2207 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002208 u32 next_index = p[0];
2209 while (next_index != (u32) ~ 0)
2210 {
2211 int (*fp) (u32, u8 *, u32, u32);
2212 int rv = 1;
2213 mc = pool_elt_at_index (am->mac_changes, next_index);
2214 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -04002215 /* Call the callback, return 1 to suppress dup events */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002216 if (fp)
2217 rv = (*fp) (mc->data,
2218 arp0->ip4_over_ethernet[0].ethernet,
2219 sw_if_index0,
2220 arp0->ip4_over_ethernet[0].ip4.as_u32);
John Lo1edfba92016-08-27 01:11:57 -04002221 /* Signal the resolver process */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002222 if (rv == 0)
2223 vlib_process_signal_event (vm, mc->node_index,
2224 mc->type_opaque, mc->data);
2225 next_index = mc->next_index;
2226 }
2227 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002228 }
2229
John Lo1edfba92016-08-27 01:11:57 -04002230 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002231 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002232 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2233 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2234 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002235 {
2236 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002237 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002238 }
2239 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2240
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002241 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002242 goto next_l2_feature; /* MAC not found */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002243
John Lo1edfba92016-08-27 01:11:57 -04002244 /* MAC found, send ARP reply -
2245 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002246 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2247 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2248 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Damjan Marionf1213b82016-03-13 02:22:06 +01002249 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2250 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2251 clib_memcpy (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002252 n_replies_sent += 1;
2253
John Lo1edfba92016-08-27 01:11:57 -04002254 output_response:
2255 /* For BVI, need to use l2-fwd node to send ARP reply as
2256 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002257 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002258 if (PREDICT_FALSE (cfg0->bvi))
2259 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002260 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002261 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2262 goto next_l2_feature;
2263 }
2264
John Lo1edfba92016-08-27 01:11:57 -04002265 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002266 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2267 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002268 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2269 to_next, n_left_to_next, pi0,
2270 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002271 continue;
2272
John Lo1edfba92016-08-27 01:11:57 -04002273 check_ip6_nd:
2274 /* IP6 ND event notification or solicitation handling to generate
2275 local response instead of flooding */
2276 iph0 = (ip6_header_t *) l3h0;
2277 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2278 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002279 !ip6_address_is_unspecified
2280 (&iph0->src_address)))
2281 {
2282 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002283 if (vnet_ip6_nd_term
2284 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002285 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002286 goto output_response;
2287 }
2288
Ed Warnickecb9cada2015-12-08 15:45:58 -07002289 next_l2_feature:
2290 {
2291 u32 feature_bitmap0 =
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002292 vnet_buffer (p0)->l2.feature_bitmap & ~L2INPUT_FEAT_ARP_TERM;
2293 vnet_buffer (p0)->l2.feature_bitmap = feature_bitmap0;
Neale Rannsb80c5362016-10-08 13:03:40 +01002294 next0 =
2295 feat_bitmap_get_next_node_index (arp_term_next_node_index,
2296 feature_bitmap0);
2297 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2298 to_next, n_left_to_next,
2299 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002300 continue;
2301 }
2302
2303 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002304 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2305 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2306 arp0->ip4_over_ethernet[1].ip4.as_u32))
2307 {
2308 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2309 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002310 next0 = ARP_TERM_NEXT_DROP;
2311 p0->error = node->errors[error0];
2312
Neale Rannsb80c5362016-10-08 13:03:40 +01002313 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2314 to_next, n_left_to_next, pi0,
2315 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002316 }
2317
2318 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2319 }
2320
2321 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002322 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002323 return frame->n_vectors;
2324}
2325
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002326/* *INDENT-OFF* */
2327VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002328 .function = arp_term_l2bd,
2329 .name = "arp-term-l2bd",
2330 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002331 .n_errors = ETHERNET_ARP_N_ERROR,
2332 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002333 .n_next_nodes = ARP_TERM_N_NEXT,
2334 .next_nodes = {
2335 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2336 [ARP_TERM_NEXT_DROP] = "error-drop",
2337 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002338 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002339 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002340};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002341/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002342
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002343clib_error_t *
2344arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002345{
2346 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002347 feat_bitmap_init_next_nodes (vm,
2348 arp_term_l2bd_node.index,
2349 L2INPUT_N_FEAT,
2350 l2input_get_feat_names (),
2351 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002352 return 0;
2353}
2354
2355VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002356
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002357void
2358change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2359{
2360 if (e->sw_if_index == sw_if_index)
2361 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002362 adj_nbr_walk_nh4 (e->sw_if_index,
2363 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002364 }
2365}
2366
2367void
Neale Ranns3be6b282016-12-20 14:24:01 +00002368ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002369{
2370 ethernet_arp_main_t *am = &ethernet_arp_main;
2371 ethernet_arp_ip4_entry_t *e;
2372
2373 /* *INDENT-OFF* */
2374 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002375 ({
2376 change_arp_mac (sw_if_index, e);
2377 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002378 /* *INDENT-ON* */
2379}
2380
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002381/*
2382 * fd.io coding-style-patch-verification: ON
2383 *
2384 * Local Variables:
2385 * eval: (c-set-style "gnu")
2386 * End:
2387 */