blob: c7e27ffbae75e36c2749c160c9145aac90c5b942 [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>
Neale Ranns37029302018-08-10 05:30:06 -070019#include <vnet/ip/ip_neighbor.h>
John Lo1edfba92016-08-27 01:11:57 -040020#include <vnet/ip/ip6.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021#include <vnet/ethernet/ethernet.h>
Neale Ranns0053de62018-05-22 08:40:52 -070022#include <vnet/ethernet/arp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023#include <vnet/l2/l2_input.h>
24#include <vppinfra/mhash.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010025#include <vnet/fib/ip4_fib.h>
Neale Rannsca193612017-06-14 06:50:08 -070026#include <vnet/fib/fib_entry_src.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010027#include <vnet/adj/adj_nbr.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000028#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010029#include <vnet/mpls/mpls.h>
Neale Ranns3b81a1e2018-09-06 09:50:26 -070030#include <vnet/l2/feat_bitmap.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Neale Ranns57e53bb2019-05-29 13:58:43 +000032#include <vlibmemory/api.h>
33
Billy McFall2d085d92016-09-13 21:47:55 -040034/**
35 * @file
36 * @brief IPv4 ARP.
37 *
38 * This file contains code to manage the IPv4 ARP tables (IP Address
39 * to MAC Address lookup).
40 */
41
42
Neale Ranns0bfe5d82016-08-25 15:29:12 +010043/**
44 * @brief Per-interface ARP configuration and state
45 */
46typedef struct ethernet_arp_interface_t_
47{
Neale Rannsb80c5362016-10-08 13:03:40 +010048 /**
49 * Hash table of ARP entries.
50 * Since this hash table is per-interface, the key is only the IPv4 address.
51 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010052 uword *arp_entries;
Neale Ranns57e53bb2019-05-29 13:58:43 +000053 /**
54 * Is ARP enabled on this interface
55 */
56 u32 enabled;
57 /**
58 * Is Proxy ARP enabled on this interface
59 */
60 u32 proxy_enabled;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010061} ethernet_arp_interface_t;
62
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070063typedef struct
64{
Neale Ranns0053de62018-05-22 08:40:52 -070065 ip4_address_t lo_addr;
66 ip4_address_t hi_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 u32 fib_index;
68} ethernet_proxy_arp_t;
69
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070070typedef struct
71{
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 u32 next_index;
73 uword node_index;
74 uword type_opaque;
75 uword data;
76 /* Used for arp event notification only */
Neale Ranns37029302018-08-10 05:30:06 -070077 arp_change_event_cb_t data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 u32 pid;
79} pending_resolution_t;
80
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070081typedef struct
82{
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 /* Hash tables mapping name to opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070084 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
86 /* lite beer "glean" adjacency handling */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070087 uword *pending_resolutions_by_address;
88 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -070089
90 /* Mac address change notification */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070091 uword *mac_changes_by_address;
92 pending_resolution_t *mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070094 ethernet_arp_ip4_entry_t *ip4_entry_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 /* ARP attack mitigation */
97 u32 arp_delete_rotor;
98 u32 limit_arp_cache_size;
99
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100100 /** Per interface state */
101 ethernet_arp_interface_t *ethernet_arp_by_sw_if_index;
102
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 /* Proxy arp vector */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700104 ethernet_proxy_arp_t *proxy_arps;
Eyal Bari20197482017-09-13 12:29:08 +0300105
106 uword wc_ip4_arp_publisher_node;
Eyal Baric125ecc2017-09-20 11:29:17 +0300107 uword wc_ip4_arp_publisher_et;
Neale Ranns57e53bb2019-05-29 13:58:43 +0000108
109 /* ARP feature arc index */
110 u8 feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111} ethernet_arp_main_t;
112
113static ethernet_arp_main_t ethernet_arp_main;
114
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100115typedef struct
116{
117 u32 sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -0700118 ip4_address_t ip4;
119 mac_address_t mac;
120 ip_neighbor_flags_t nbr_flags;
121 u32 flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100122#define ETHERNET_ARP_ARGS_REMOVE (1<<0)
123#define ETHERNET_ARP_ARGS_FLUSH (1<<1)
124#define ETHERNET_ARP_ARGS_POPULATE (1<<2)
Eyal Bari20197482017-09-13 12:29:08 +0300125#define ETHERNET_ARP_ARGS_WC_PUB (1<<3)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100126} vnet_arp_set_ip4_over_ethernet_rpc_args_t;
127
Matthew Smithcb9ab472017-05-16 21:35:56 -0500128static const u8 vrrp_prefix[] = { 0x00, 0x00, 0x5E, 0x00, 0x01 };
129
John Lo8b81cb42017-06-26 01:40:20 -0400130/* Node index for send_garp_na_process */
131u32 send_garp_na_process_node_index;
132
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100133static void
134set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
135 * a);
136
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700137static u8 *
138format_ethernet_arp_hardware_type (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139{
140 ethernet_arp_hardware_type_t h = va_arg (*va, ethernet_arp_hardware_type_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700141 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 switch (h)
143 {
144#define _(n,f) case n: t = #f; break;
145 foreach_ethernet_arp_hardware_type;
146#undef _
147
148 default:
149 return format (s, "unknown 0x%x", h);
150 }
151
152 return format (s, "%s", t);
153}
154
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700155static u8 *
156format_ethernet_arp_opcode (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157{
158 ethernet_arp_opcode_t o = va_arg (*va, ethernet_arp_opcode_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700159 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160 switch (o)
161 {
162#define _(f) case ETHERNET_ARP_OPCODE_##f: t = #f; break;
163 foreach_ethernet_arp_opcode;
164#undef _
165
166 default:
167 return format (s, "unknown 0x%x", o);
168 }
169
170 return format (s, "%s", t);
171}
172
173static uword
174unformat_ethernet_arp_opcode_host_byte_order (unformat_input_t * input,
175 va_list * args)
176{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700177 int *result = va_arg (*args, int *);
178 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 int x, i;
180
181 /* Numeric opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700182 if (unformat (input, "0x%x", &x) || unformat (input, "%d", &x))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 {
184 if (x >= (1 << 16))
185 return 0;
186 *result = x;
187 return 1;
188 }
189
190 /* Named type. */
191 if (unformat_user (input, unformat_vlib_number_by_name,
192 am->opcode_by_name, &i))
193 {
194 *result = i;
195 return 1;
196 }
197
198 return 0;
199}
200
201static uword
202unformat_ethernet_arp_opcode_net_byte_order (unformat_input_t * input,
203 va_list * args)
204{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700205 int *result = va_arg (*args, int *);
206 if (!unformat_user
207 (input, unformat_ethernet_arp_opcode_host_byte_order, result))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 return 0;
209
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700210 *result = clib_host_to_net_u16 ((u16) * result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 return 1;
212}
213
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700214static u8 *
215format_ethernet_arp_header (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700217 ethernet_arp_header_t *a = va_arg (*va, ethernet_arp_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218 u32 max_header_bytes = va_arg (*va, u32);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200219 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 u16 l2_type, l3_type;
221
222 if (max_header_bytes != 0 && sizeof (a[0]) > max_header_bytes)
223 return format (s, "ARP header truncated");
224
225 l2_type = clib_net_to_host_u16 (a->l2_type);
226 l3_type = clib_net_to_host_u16 (a->l3_type);
227
228 indent = format_get_indent (s);
229
230 s = format (s, "%U, type %U/%U, address size %d/%d",
231 format_ethernet_arp_opcode, clib_net_to_host_u16 (a->opcode),
232 format_ethernet_arp_hardware_type, l2_type,
233 format_ethernet_type, l3_type,
234 a->n_l2_address_bytes, a->n_l3_address_bytes);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700235
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 if (l2_type == ETHERNET_ARP_HARDWARE_TYPE_ethernet
237 && l3_type == ETHERNET_TYPE_IP4)
238 {
239 s = format (s, "\n%U%U/%U -> %U/%U",
240 format_white_space, indent,
Neale Ranns37029302018-08-10 05:30:06 -0700241 format_mac_address_t, &a->ip4_over_ethernet[0].mac,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 format_ip4_address, &a->ip4_over_ethernet[0].ip4,
Neale Ranns37029302018-08-10 05:30:06 -0700243 format_mac_address_t, &a->ip4_over_ethernet[1].mac,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 format_ip4_address, &a->ip4_over_ethernet[1].ip4);
245 }
246 else
247 {
248 uword n2 = a->n_l2_address_bytes;
249 uword n3 = a->n_l3_address_bytes;
250 s = format (s, "\n%U%U/%U -> %U/%U",
251 format_white_space, indent,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700252 format_hex_bytes, a->data + 0 * n2 + 0 * n3, n2,
253 format_hex_bytes, a->data + 1 * n2 + 0 * n3, n3,
254 format_hex_bytes, a->data + 1 * n2 + 1 * n3, n2,
255 format_hex_bytes, a->data + 2 * n2 + 1 * n3, n3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 }
257
258 return s;
259}
260
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100261u8 *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700262format_ethernet_arp_ip4_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700264 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
265 ethernet_arp_ip4_entry_t *e = va_arg (*va, ethernet_arp_ip4_entry_t *);
266 vnet_sw_interface_t *si;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700267 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700269 if (!e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100270 return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700271 "Flags", "Ethernet", "Interface");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100273 si = vnet_get_sw_interface (vnm, e->sw_if_index);
Damjan Marion102ec522016-03-29 13:18:17 +0200274
Neale Ranns37029302018-08-10 05:30:06 -0700275 if (e->flags & IP_NEIGHBOR_FLAG_STATIC)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700276 flags = format (flags, "S");
Damjan Marion102ec522016-03-29 13:18:17 +0200277
Neale Ranns37029302018-08-10 05:30:06 -0700278 if (e->flags & IP_NEIGHBOR_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100279 flags = format (flags, "D");
280
Neale Ranns37029302018-08-10 05:30:06 -0700281 if (e->flags & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY)
Neale Rannsb3b2de72017-03-08 05:17:22 -0800282 flags = format (flags, "N");
283
Neale Ranns5c994c12017-08-04 06:22:23 -0700284 s = format (s, "%=12U%=16U%=6s%=20U%U",
John Lo7f358b32018-04-28 01:19:24 -0400285 format_vlib_time, vnm->vlib_main, e->time_last_updated,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100286 format_ip4_address, &e->ip4_address,
Damjan Marion102ec522016-03-29 13:18:17 +0200287 flags ? (char *) flags : "",
Neale Ranns37029302018-08-10 05:30:06 -0700288 format_mac_address_t, &e->mac,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289 format_vnet_sw_interface_name, vnm, si);
290
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700291 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 return s;
293}
294
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700295typedef struct
296{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 u8 packet_data[64];
298} ethernet_arp_input_trace_t;
299
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700300static u8 *
301format_ethernet_arp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302{
303 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
304 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700305 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
307 s = format (s, "%U",
308 format_ethernet_arp_header,
309 t->packet_data, sizeof (t->packet_data));
310
311 return s;
312}
313
John Lo1edfba92016-08-27 01:11:57 -0400314static u8 *
315format_arp_term_input_trace (u8 * s, va_list * va)
316{
317 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
318 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
319 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
320
321 /* arp-term trace data saved is either arp or ip6/icmp6 packet:
322 - for arp, the 1st 16-bit field is hw type of value of 0x0001.
323 - for ip6, the first nibble has value of 6. */
324 s = format (s, "%U", t->packet_data[0] == 0 ?
325 format_ethernet_arp_header : format_ip6_header,
326 t->packet_data, sizeof (t->packet_data));
327
328 return s;
329}
330
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100331static void
Neale Rannsb80c5362016-10-08 13:03:40 +0100332arp_nbr_probe (ip_adjacency_t * adj)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333{
Neale Rannsb80c5362016-10-08 13:03:40 +0100334 vnet_main_t *vnm = vnet_get_main ();
335 ip4_main_t *im = &ip4_main;
336 ip_interface_address_t *ia;
337 ethernet_arp_header_t *h;
338 vnet_hw_interface_t *hi;
339 vnet_sw_interface_t *si;
340 ip4_address_t *src;
341 vlib_buffer_t *b;
342 vlib_main_t *vm;
343 u32 bi = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
Neale Rannsb80c5362016-10-08 13:03:40 +0100345 vm = vlib_get_main ();
John Locbec1a12016-07-05 18:34:40 -0400346
Neale Rannsb80c5362016-10-08 13:03:40 +0100347 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
348
349 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100351 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100353
354 src =
355 ip4_interface_address_matching_destination (im,
356 &adj->sub_type.nbr.next_hop.
357 ip4,
358 adj->rewrite_header.
359 sw_if_index, &ia);
360 if (!src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100361 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100362 return;
363 }
364
365 h =
366 vlib_packet_template_get_packet (vm, &im->ip4_arp_request_packet_template,
367 &bi);
John Lo084606b2018-06-19 15:27:48 -0400368 if (!h)
369 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100370
371 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
372
Neale Ranns37029302018-08-10 05:30:06 -0700373 mac_address_from_bytes (&h->ip4_over_ethernet[0].mac, hi->hw_address);
Neale Rannsb80c5362016-10-08 13:03:40 +0100374
375 h->ip4_over_ethernet[0].ip4 = src[0];
376 h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
377
378 b = vlib_get_buffer (vm, bi);
379 vnet_buffer (b)->sw_if_index[VLIB_RX] =
380 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
381
382 /* Add encapsulation string for software interface (e.g. ethernet header). */
383 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
384 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
385
386 {
387 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
388 u32 *to_next = vlib_frame_vector_args (f);
389 to_next[0] = bi;
390 f->n_vectors = 1;
391 vlib_put_frame_to_node (vm, hi->output_node_index, f);
392 }
393}
394
395static void
396arp_mk_complete (adj_index_t ai, ethernet_arp_ip4_entry_t * e)
397{
398 adj_nbr_update_rewrite
399 (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
400 ethernet_build_rewrite (vnet_get_main (),
401 e->sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700402 adj_get_link_type (ai), &e->mac));
Neale Rannsb80c5362016-10-08 13:03:40 +0100403}
404
405static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000406arp_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100407{
Neale Ranns19c68d22016-12-07 15:38:14 +0000408 ip_adjacency_t *adj = adj_get (ai);
409
Neale Rannsb80c5362016-10-08 13:03:40 +0100410 adj_nbr_update_rewrite
411 (ai,
412 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
413 ethernet_build_rewrite (vnet_get_main (),
Neale Ranns19c68d22016-12-07 15:38:14 +0000414 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100415 VNET_LINK_ARP,
416 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
417}
418
419static ethernet_arp_ip4_entry_t *
420arp_entry_find (ethernet_arp_interface_t * eai, const ip4_address_t * addr)
421{
422 ethernet_arp_main_t *am = &ethernet_arp_main;
423 ethernet_arp_ip4_entry_t *e = NULL;
424 uword *p;
425
426 if (NULL != eai->arp_entries)
427 {
428 p = hash_get (eai->arp_entries, addr->as_u32);
429 if (!p)
430 return (NULL);
431
432 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
433 }
434
435 return (e);
436}
437
438static adj_walk_rc_t
439arp_mk_complete_walk (adj_index_t ai, void *ctx)
440{
441 ethernet_arp_ip4_entry_t *e = ctx;
442
443 arp_mk_complete (ai, e);
444
445 return (ADJ_WALK_RC_CONTINUE);
446}
447
448static adj_walk_rc_t
449arp_mk_incomplete_walk (adj_index_t ai, void *ctx)
450{
Neale Ranns19c68d22016-12-07 15:38:14 +0000451 arp_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100452
453 return (ADJ_WALK_RC_CONTINUE);
454}
455
Neale Ranns57e53bb2019-05-29 13:58:43 +0000456static int
457arp_is_enabled (ethernet_arp_main_t * am, u32 sw_if_index)
458{
459 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
460 return 0;
461
462 return (am->ethernet_arp_by_sw_if_index[sw_if_index].enabled);
463}
464
465static void
466arp_enable (ethernet_arp_main_t * am, u32 sw_if_index)
467{
468 if (arp_is_enabled (am, sw_if_index))
469 return;
470
471 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
472
473 am->ethernet_arp_by_sw_if_index[sw_if_index].enabled = 1;
474
475 vnet_feature_enable_disable ("arp", "arp-reply", sw_if_index, 1, NULL, 0);
476}
477
478static int
479vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
480 vnet_arp_set_ip4_over_ethernet_rpc_args_t
481 * args);
482
483static void
484arp_disable (ethernet_arp_main_t * am, u32 sw_if_index)
485{
486 ethernet_arp_interface_t *eai;
487 ethernet_arp_ip4_entry_t *e;
488 u32 i, *to_delete = 0;
489 hash_pair_t *pair;
490
491 if (!arp_is_enabled (am, sw_if_index))
492 return;
493
494 vnet_feature_enable_disable ("arp", "arp-reply", sw_if_index, 0, NULL, 0);
495
496 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
497
498
499 /* *INDENT-OFF* */
500 hash_foreach_pair (pair, eai->arp_entries,
501 ({
502 e = pool_elt_at_index(am->ip4_entry_pool,
503 pair->value[0]);
504 vec_add1 (to_delete, e - am->ip4_entry_pool);
505 }));
506 /* *INDENT-ON* */
507
508 for (i = 0; i < vec_len (to_delete); i++)
509 {
510 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
511
512 vnet_arp_set_ip4_over_ethernet_rpc_args_t delme = {
513 .ip4.as_u32 = e->ip4_address.as_u32,
514 .sw_if_index = e->sw_if_index,
515 .flags = ETHERNET_ARP_ARGS_FLUSH,
516 };
517 mac_address_copy (&delme.mac, &e->mac);
518
519 vnet_arp_flush_ip4_over_ethernet_internal (vnet_get_main (), &delme);
520 }
521
522 vec_free (to_delete);
523
524 eai->enabled = 0;
525}
526
Neale Rannsb80c5362016-10-08 13:03:40 +0100527void
528arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
529{
530 ethernet_arp_main_t *am = &ethernet_arp_main;
531 ethernet_arp_interface_t *arp_int;
532 ethernet_arp_ip4_entry_t *e;
533 ip_adjacency_t *adj;
534
535 adj = adj_get (ai);
536
Neale Ranns57e53bb2019-05-29 13:58:43 +0000537 arp_enable (am, sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100538 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
539 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
540
Neale Ranns32e1c012016-11-22 17:07:28 +0000541 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100542 {
Ole Trøan438f6302018-02-15 21:56:06 +0000543 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800544 adj_glean_update_rewrite (ai);
545 break;
546 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000547 if (NULL != e)
548 {
549 adj_nbr_walk_nh4 (sw_if_index,
550 &e->ip4_address, arp_mk_complete_walk, e);
551 }
552 else
553 {
554 /*
555 * no matching ARP entry.
556 * construct the rewrite required to for an ARP packet, and stick
557 * that in the adj's pipe to smoke.
558 */
559 adj_nbr_update_rewrite
560 (ai,
561 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
562 ethernet_build_rewrite
563 (vnm,
564 sw_if_index,
565 VNET_LINK_ARP,
566 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
567
568 /*
569 * since the FIB has added this adj for a route, it makes sense it
570 * may want to forward traffic sometime soon. Let's send a
571 * speculative ARP. just one. If we were to do periodically that
572 * wouldn't be bad either, but that's more code than i'm prepared to
573 * write at this time for relatively little reward.
574 */
575 arp_nbr_probe (adj);
576 }
577 break;
Neale Ranns1855b8e2018-07-11 10:31:26 -0700578 case IP_LOOKUP_NEXT_BCAST:
579 adj_nbr_update_rewrite (ai,
580 ADJ_NBR_REWRITE_FLAG_COMPLETE,
581 ethernet_build_rewrite
582 (vnm,
583 sw_if_index,
584 VNET_LINK_IP4,
585 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
586 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000587 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700588 {
589 /*
590 * Construct a partial rewrite from the known ethernet mcast dest MAC
591 */
592 u8 *rewrite;
593 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100594
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700595 rewrite = ethernet_build_rewrite (vnm,
596 sw_if_index,
597 adj->ia_link,
598 ethernet_ip4_mcast_dst_addr ());
599 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000600
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700601 /*
602 * Complete the remaining fields of the adj's rewrite to direct the
603 * complete of the rewrite at switch time by copying in the IP
604 * dst address's bytes.
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700605 * Offset is 2 bytes into the MAC destination address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700606 */
Neale Ranns889fe942017-06-01 05:43:19 -0400607 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000608
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700609 break;
610 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000611 case IP_LOOKUP_NEXT_DROP:
612 case IP_LOOKUP_NEXT_PUNT:
613 case IP_LOOKUP_NEXT_LOCAL:
614 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800615 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000616 case IP_LOOKUP_NEXT_MIDCHAIN:
617 case IP_LOOKUP_NEXT_ICMP_ERROR:
618 case IP_LOOKUP_N_NEXT:
619 ASSERT (0);
620 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100621 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622}
623
Neale Ranns15002542017-09-10 04:39:11 -0700624static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700625arp_adj_fib_add (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700626{
627 fib_prefix_t pfx = {
628 .fp_len = 32,
629 .fp_proto = FIB_PROTOCOL_IP4,
630 .fp_addr.ip4 = e->ip4_address,
631 };
632
633 e->fib_entry_index =
634 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
635 FIB_ENTRY_FLAG_ATTACHED,
636 DPO_PROTO_IP4, &pfx.fp_addr,
637 e->sw_if_index, ~0, 1, NULL,
638 FIB_ROUTE_PATH_FLAG_NONE);
639 fib_table_lock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
640}
641
Neale Rannscf7efe02018-09-24 08:34:11 +0000642static void
John Lo4fed5b12018-05-22 03:35:06 -0400643arp_adj_fib_remove (ethernet_arp_ip4_entry_t * e, u32 fib_index)
644{
645 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
646 {
647 fib_prefix_t pfx = {
648 .fp_len = 32,
649 .fp_proto = FIB_PROTOCOL_IP4,
650 .fp_addr.ip4 = e->ip4_address,
651 };
652 u32 fib_index;
653
654 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
655
656 fib_table_entry_path_remove (fib_index, &pfx,
657 FIB_SOURCE_ADJ,
658 DPO_PROTO_IP4,
659 &pfx.fp_addr,
660 e->sw_if_index, ~0, 1,
661 FIB_ROUTE_PATH_FLAG_NONE);
662 fib_table_unlock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
663 }
664}
665
666static ethernet_arp_ip4_entry_t *
667force_reuse_arp_entry (void)
668{
669 ethernet_arp_ip4_entry_t *e;
670 ethernet_arp_main_t *am = &ethernet_arp_main;
671 u32 count = 0;
672 u32 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
673 if (index == ~0) /* Try again from elt 0 */
674 index = pool_next_index (am->ip4_entry_pool, index);
675
676 /* Find a non-static random entry to free up for reuse */
677 do
678 {
679 if ((count++ == 100) || (index == ~0))
680 return NULL; /* give up after 100 entries */
681 e = pool_elt_at_index (am->ip4_entry_pool, index);
682 am->arp_delete_rotor = index;
683 index = pool_next_index (am->ip4_entry_pool, index);
684 }
Neale Ranns37029302018-08-10 05:30:06 -0700685 while (e->flags & IP_NEIGHBOR_FLAG_STATIC);
John Lo4fed5b12018-05-22 03:35:06 -0400686
687 /* Remove ARP entry from its interface and update fib */
688 hash_unset
689 (am->ethernet_arp_by_sw_if_index[e->sw_if_index].arp_entries,
690 e->ip4_address.as_u32);
691 arp_adj_fib_remove
692 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
693 adj_nbr_walk_nh4 (e->sw_if_index,
Neale Rannscf7efe02018-09-24 08:34:11 +0000694 &e->ip4_address, arp_mk_incomplete_walk, e);
John Lo4fed5b12018-05-22 03:35:06 -0400695 return e;
696}
697
Eyal Bari20197482017-09-13 12:29:08 +0300698static int
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100700 vnet_arp_set_ip4_over_ethernet_rpc_args_t
701 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700703 ethernet_arp_ip4_entry_t *e = 0;
704 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700705 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700706 int make_new_arp_cache_entry = 1;
707 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700708 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100709 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100710 u32 sw_if_index = args->sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700711
Neale Ranns57e53bb2019-05-29 13:58:43 +0000712 arp_enable (am, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100714 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100716 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717 {
Neale Ranns37029302018-08-10 05:30:06 -0700718 p = hash_get (arp_int->arp_entries, args->ip4.as_u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100719 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700720 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100721 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
722
723 /* Refuse to over-write static arp. */
Neale Ranns37029302018-08-10 05:30:06 -0700724 if (!(args->nbr_flags & IP_NEIGHBOR_FLAG_STATIC) &&
725 (e->flags & IP_NEIGHBOR_FLAG_STATIC))
John Lo0e6f4d62018-07-13 17:29:58 -0400726 {
727 /* if MAC address match, still check to send event */
Neale Ranns37029302018-08-10 05:30:06 -0700728 if (mac_address_equal (&e->mac, &args->mac))
John Lo0e6f4d62018-07-13 17:29:58 -0400729 goto check_customers;
730 return -2;
731 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100732 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700733 }
Damjan Marion102ec522016-03-29 13:18:17 +0200734 }
735
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736 if (make_new_arp_cache_entry)
737 {
John Lo4fed5b12018-05-22 03:35:06 -0400738 if (am->limit_arp_cache_size &&
739 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
740 {
741 e = force_reuse_arp_entry ();
742 if (NULL == e)
743 return -2;
744 }
745 else
746 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100747
748 if (NULL == arp_int->arp_entries)
John Lo4fed5b12018-05-22 03:35:06 -0400749 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100750
Neale Ranns37029302018-08-10 05:30:06 -0700751 hash_set (arp_int->arp_entries, args->ip4.as_u32,
752 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100753
754 e->sw_if_index = sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -0700755 e->ip4_address = args->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700756 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Ranns37029302018-08-10 05:30:06 -0700757 mac_address_copy (&e->mac, &args->mac);
Neale Rannsb80c5362016-10-08 13:03:40 +0100758
Neale Ranns37029302018-08-10 05:30:06 -0700759 if (!(args->nbr_flags & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800760 {
Neale Ranns15002542017-09-10 04:39:11 -0700761 arp_adj_fib_add (e,
762 ip4_fib_table_get_index_for_sw_if_index
763 (e->sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700764 }
765 else
766 {
Neale Ranns37029302018-08-10 05:30:06 -0700767 e->flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800768 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100770 else
771 {
772 /*
773 * prevent a DoS attack from the data-plane that
774 * spams us with no-op updates to the MAC address
775 */
Neale Ranns37029302018-08-10 05:30:06 -0700776 if (mac_address_equal (&e->mac, &args->mac))
John Lo7f358b32018-04-28 01:19:24 -0400777 {
778 e->time_last_updated = vlib_time_now (vm);
779 goto check_customers;
780 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100781
John Lo0e6f4d62018-07-13 17:29:58 -0400782 /* Update ethernet address. */
Neale Ranns37029302018-08-10 05:30:06 -0700783 mac_address_copy (&e->mac, &args->mac);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100784 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785
John Lo0e6f4d62018-07-13 17:29:58 -0400786 /* Update time stamp and flags. */
John Lo7f358b32018-04-28 01:19:24 -0400787 e->time_last_updated = vlib_time_now (vm);
Neale Ranns37029302018-08-10 05:30:06 -0700788 if (args->nbr_flags & IP_NEIGHBOR_FLAG_STATIC)
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500789 {
Neale Ranns37029302018-08-10 05:30:06 -0700790 e->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
791 e->flags |= IP_NEIGHBOR_FLAG_STATIC;
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500792 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100793 else
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500794 {
Neale Ranns37029302018-08-10 05:30:06 -0700795 e->flags &= ~IP_NEIGHBOR_FLAG_STATIC;
796 e->flags |= IP_NEIGHBOR_FLAG_DYNAMIC;
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500797 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100798
Neale Rannsb80c5362016-10-08 13:03:40 +0100799 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800
Dave Barach59b25652017-09-10 15:04:27 -0400801check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802 /* Customer(s) waiting for this address to be resolved? */
Neale Ranns37029302018-08-10 05:30:06 -0700803 p = hash_get (am->pending_resolutions_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 if (p)
805 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100806 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807 next_index = p[0];
808
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700809 while (next_index != (u32) ~ 0)
810 {
811 pr = pool_elt_at_index (am->pending_resolutions, next_index);
812 vlib_process_signal_event (vm, pr->node_index,
813 pr->type_opaque, pr->data);
814 next_index = pr->next_index;
815 pool_put (am->pending_resolutions, pr);
816 }
817
Neale Ranns37029302018-08-10 05:30:06 -0700818 hash_unset (am->pending_resolutions_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819 }
820
821 /* Customer(s) requesting ARP event for this address? */
Neale Ranns37029302018-08-10 05:30:06 -0700822 p = hash_get (am->mac_changes_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823 if (p)
824 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100825 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826 next_index = p[0];
827
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700828 while (next_index != (u32) ~ 0)
829 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700830 int rv = 1;
831 mc = pool_elt_at_index (am->mac_changes, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700833 /* Call the user's data callback, return 1 to suppress dup events */
Neale Ranns37029302018-08-10 05:30:06 -0700834 if (mc->data_callback)
835 rv = (mc->data_callback) (mc->data, &args->mac, sw_if_index, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700836
Damjan Marion607de1a2016-08-16 22:53:54 +0200837 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700838 * Signal the resolver process, as long as the user
839 * says they want to be notified
840 */
841 if (rv == 0)
842 vlib_process_signal_event (vm, mc->node_index,
843 mc->type_opaque, mc->data);
844 next_index = mc->next_index;
845 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 }
847
848 return 0;
849}
850
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700851void
852vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
853 void *address_arg,
854 uword node_index,
855 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700857 ethernet_arp_main_t *am = &ethernet_arp_main;
858 ip4_address_t *address = address_arg;
859 uword *p;
860 pending_resolution_t *pr;
861
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862 pool_get (am->pending_resolutions, pr);
863
864 pr->next_index = ~0;
865 pr->node_index = node_index;
866 pr->type_opaque = type_opaque;
867 pr->data = data;
868 pr->data_callback = 0;
869
870 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
871 if (p)
872 {
873 /* Insert new resolution at the head of the list */
874 pr->next_index = p[0];
875 hash_unset (am->pending_resolutions_by_address, address->as_u32);
876 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700877
878 hash_set (am->pending_resolutions_by_address, address->as_u32,
879 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880}
881
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700882int
883vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
Neale Ranns37029302018-08-10 05:30:06 -0700884 arp_change_event_cb_t data_callback,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700885 u32 pid,
886 void *address_arg,
887 uword node_index,
888 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700890 ethernet_arp_main_t *am = &ethernet_arp_main;
891 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700892
Eyal Bari8db1de82017-03-31 02:15:17 +0300893 /* Try to find an existing entry */
894 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
895 u32 *p = first;
896 pending_resolution_t *mc;
897 while (p && *p != ~0)
898 {
899 mc = pool_elt_at_index (am->mac_changes, *p);
900 if (mc->node_index == node_index && mc->type_opaque == type_opaque
901 && mc->pid == pid)
902 break;
903 p = &mc->next_index;
904 }
905
906 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907 if (is_add)
908 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300909 if (found)
910 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
911
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912 pool_get (am->mac_changes, mc);
Neale Ranns37029302018-08-10 05:30:06 -0700913 /* *INDENT-OFF* */
Eyal Bari8db1de82017-03-31 02:15:17 +0300914 *mc = (pending_resolution_t)
915 {
Neale Ranns37029302018-08-10 05:30:06 -0700916 .next_index = ~0,
917 .node_index = node_index,
918 .type_opaque = type_opaque,
919 .data = data,
920 .data_callback = data_callback,
921 .pid = pid,
922 };
923 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924
Eyal Bari8db1de82017-03-31 02:15:17 +0300925 /* Insert new resolution at the end of the list */
926 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300928 p[0] = new_idx;
929 else
930 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 }
932 else
933 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300934 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700935 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936
Eyal Bari8db1de82017-03-31 02:15:17 +0300937 /* Clients may need to clean up pool entries, too */
Neale Ranns37029302018-08-10 05:30:06 -0700938 if (data_callback)
939 /* no new mac addrs */
940 (data_callback) (mc->data, NULL, ~0, NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941
Eyal Bari8db1de82017-03-31 02:15:17 +0300942 /* Remove the entry from the list and delete the entry */
943 *p = mc->next_index;
944 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700945
Eyal Bari8db1de82017-03-31 02:15:17 +0300946 /* Remove from hash if we deleted the last entry */
947 if (*p == ~0 && p == first)
948 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300950 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951}
952
953/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700954typedef enum
955{
Neale Ranns57e53bb2019-05-29 13:58:43 +0000956 ARP_REPLY_NEXT_DROP,
957 ARP_REPLY_NEXT_REPLY_TX,
958 ARP_REPLY_N_NEXT,
959} arp_reply_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960
961#define foreach_ethernet_arp_error \
962 _ (replies_sent, "ARP replies sent") \
963 _ (l2_type_not_ethernet, "L2 type not ethernet") \
964 _ (l3_type_not_ip4, "L3 type not IP4") \
965 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
966 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
Neale Ranns59ae61e2018-06-07 18:09:49 -0700967 _ (l3_dst_address_unset, "IP4 destination address is unset") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
969 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
970 _ (replies_received, "ARP replies received") \
971 _ (opcode_not_request, "ARP opcode not request") \
972 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
973 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100975 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800976 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Neale Ranns7425f922019-01-23 00:36:16 -0800977 _ (unnumbered_mismatch, "RX interface is unnumbered to different subnet") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700978
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700979typedef enum
980{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
982 foreach_ethernet_arp_error
983#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700984 ETHERNET_ARP_N_ERROR,
Neale Ranns57e53bb2019-05-29 13:58:43 +0000985} ethernet_arp_reply_error_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986
Neale Ranns436d06b2016-11-30 07:41:53 -0800987static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700988arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700989 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700991 vnet_main_t *vnm = vnet_get_main ();
992 vnet_interface_main_t *vim = &vnm->interface_main;
993 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700994
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700995 /* verify that the input interface is unnumbered to the connected.
996 * the connected interface is the interface on which the subnet is
997 * configured */
998 si = &vim->sw_interfaces[input_sw_if_index];
999
1000 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
1001 (si->unnumbered_sw_if_index == conn_sw_if_index)))
1002 {
1003 /* the input interface is not unnumbered to the interface on which
1004 * the sub-net is configured that covers the ARP request.
1005 * So this is not the case for unnumbered.. */
1006 return 0;
1007 }
1008
Neale Ranns436d06b2016-11-30 07:41:53 -08001009 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010}
1011
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001012static u32
1013arp_learn (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00001014 ethernet_arp_main_t * am, u32 sw_if_index,
1015 const ethernet_arp_ip4_over_ethernet_address_t * addr)
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001016{
Neale Ranns37029302018-08-10 05:30:06 -07001017 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001018 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
1019}
1020
Neale Ranns57e53bb2019-05-29 13:58:43 +00001021typedef enum arp_input_next_t_
1022{
1023 ARP_INPUT_NEXT_DROP,
Neale Rannsfe2fff32019-06-26 08:22:01 -07001024 ARP_INPUT_NEXT_DISABLED,
Neale Ranns57e53bb2019-05-29 13:58:43 +00001025 ARP_INPUT_N_NEXT,
1026} arp_input_next_t;
1027
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001029arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030{
Neale Ranns57e53bb2019-05-29 13:58:43 +00001031 u32 n_left_from, next_index, *from, *to_next, n_left_to_next;
1032 ethernet_arp_main_t *am = &ethernet_arp_main;
1033
1034 from = vlib_frame_vector_args (frame);
1035 n_left_from = frame->n_vectors;
1036 next_index = node->cached_next_index;
1037
1038 if (node->flags & VLIB_NODE_FLAG_TRACE)
1039 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1040 /* stride */ 1,
1041 sizeof (ethernet_arp_input_trace_t));
1042
1043 while (n_left_from > 0)
1044 {
1045 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1046
1047 while (n_left_from > 0 && n_left_to_next > 0)
1048 {
1049 const ethernet_arp_header_t *arp0;
1050 arp_input_next_t next0;
1051 vlib_buffer_t *p0;
1052 u32 pi0, error0;
1053
1054 pi0 = to_next[0] = from[0];
1055 from += 1;
1056 to_next += 1;
1057 n_left_from -= 1;
1058 n_left_to_next -= 1;
1059
1060 p0 = vlib_get_buffer (vm, pi0);
1061 arp0 = vlib_buffer_get_current (p0);
1062
1063 error0 = ETHERNET_ARP_ERROR_replies_sent;
1064 next0 = ARP_INPUT_NEXT_DROP;
1065
1066 error0 =
1067 (arp0->l2_type !=
1068 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
1069 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
1070 error0 =
1071 (arp0->l3_type !=
1072 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
1073 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
1074 error0 =
1075 (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ?
1076 ETHERNET_ARP_ERROR_l3_dst_address_unset : error0);
1077
1078 if (ETHERNET_ARP_ERROR_replies_sent == error0)
Neale Rannsfe2fff32019-06-26 08:22:01 -07001079 {
1080 next0 = ARP_INPUT_NEXT_DISABLED;
1081 vnet_feature_arc_start (am->feature_arc_index,
1082 vnet_buffer (p0)->sw_if_index[VLIB_RX],
1083 &next0, p0);
1084 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001085 else
1086 p0->error = node->errors[error0];
1087
1088 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1089 n_left_to_next, pi0, next0);
1090 }
1091
1092 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1093 }
1094
1095 return frame->n_vectors;
1096}
1097
Neale Rannsfe2fff32019-06-26 08:22:01 -07001098typedef enum arp_disabled_next_t_
1099{
1100 ARP_DISABLED_NEXT_DROP,
1101 ARP_DISABLED_N_NEXT,
1102} arp_disabled_next_t;
1103
1104#define foreach_arp_disabled_error \
1105 _ (DISABLED, "ARP Disabled on this interface") \
1106
1107typedef enum
1108{
1109#define _(sym,string) ARP_DISABLED_ERROR_##sym,
1110 foreach_arp_disabled_error
1111#undef _
1112 ARP_DISABLED_N_ERROR,
1113} arp_disabled_error_t;
1114
1115static char *arp_disabled_error_strings[] = {
1116#define _(sym,string) string,
1117 foreach_arp_disabled_error
1118#undef _
1119};
1120
1121static uword
1122arp_disabled (vlib_main_t * vm,
1123 vlib_node_runtime_t * node, vlib_frame_t * frame)
1124{
1125 u32 n_left_from, next_index, *from, *to_next, n_left_to_next;
1126
1127 from = vlib_frame_vector_args (frame);
1128 n_left_from = frame->n_vectors;
1129 next_index = node->cached_next_index;
1130
1131 if (node->flags & VLIB_NODE_FLAG_TRACE)
1132 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1133 /* stride */ 1,
1134 sizeof (ethernet_arp_input_trace_t));
1135
1136 while (n_left_from > 0)
1137 {
1138 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1139
1140 while (n_left_from > 0 && n_left_to_next > 0)
1141 {
1142 arp_disabled_next_t next0 = ARP_DISABLED_NEXT_DROP;
1143 vlib_buffer_t *p0;
1144 u32 pi0, error0;
1145
1146 next0 = ARP_DISABLED_NEXT_DROP;
1147 error0 = ARP_DISABLED_ERROR_DISABLED;
1148
1149 pi0 = to_next[0] = from[0];
1150 from += 1;
1151 to_next += 1;
1152 n_left_from -= 1;
1153 n_left_to_next -= 1;
1154
1155 p0 = vlib_get_buffer (vm, pi0);
1156 p0->error = node->errors[error0];
1157
1158 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1159 n_left_to_next, pi0, next0);
1160 }
1161
1162 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1163 }
1164
1165 return frame->n_vectors;
1166}
1167
Neale Ranns57e53bb2019-05-29 13:58:43 +00001168static_always_inline u32
1169arp_mk_reply (vnet_main_t * vnm,
1170 vlib_buffer_t * p0,
1171 u32 sw_if_index0,
1172 const ip4_address_t * if_addr0,
1173 ethernet_arp_header_t * arp0, ethernet_header_t * eth_rx)
1174{
1175 vnet_hw_interface_t *hw_if0;
1176 u8 *rewrite0, rewrite0_len;
1177 ethernet_header_t *eth_tx;
1178 u32 next0;
1179
1180 /* Send a reply.
1181 An adjacency to the sender is not always present,
1182 so we use the interface to build us a rewrite string
1183 which will contain all the necessary tags. */
1184 rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1185 VNET_LINK_ARP, eth_rx->src_address);
1186 rewrite0_len = vec_len (rewrite0);
1187
1188 /* Figure out how much to rewind current data from adjacency. */
1189 vlib_buffer_advance (p0, -rewrite0_len);
1190 eth_tx = vlib_buffer_get_current (p0);
1191
1192 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1193 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1194
1195 /* Send reply back through input interface */
1196 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1197 next0 = ARP_REPLY_NEXT_REPLY_TX;
1198
1199 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1200
1201 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1202
1203 mac_address_from_bytes (&arp0->ip4_over_ethernet[0].mac,
1204 hw_if0->hw_address);
1205 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1206 if_addr0->data_u32;
1207
1208 /* Hardware must be ethernet-like. */
1209 ASSERT (vec_len (hw_if0->hw_address) == 6);
1210
1211 /* the rx nd tx ethernet headers wil overlap in the case
1212 * when we received a tagged VLAN=0 packet, but we are sending
1213 * back untagged */
1214 clib_memcpy_fast (eth_tx, rewrite0, vec_len (rewrite0));
1215 vec_free (rewrite0);
1216
1217 return (next0);
1218}
1219
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001220enum arp_dst_fib_type
1221{
1222 ARP_DST_FIB_NONE,
1223 ARP_DST_FIB_ADJ,
1224 ARP_DST_FIB_CONN
1225};
1226
1227/*
1228 * we're looking for FIB sources that indicate the destination
1229 * is attached. There may be interposed DPO prior to the one
1230 * we are looking for
1231 */
1232static enum arp_dst_fib_type
1233arp_dst_fib_check (const fib_node_index_t fei, fib_entry_flag_t * flags)
1234{
1235 const fib_entry_t *entry = fib_entry_get (fei);
1236 const fib_entry_src_t *entry_src;
1237 fib_source_t src;
1238 /* *INDENT-OFF* */
1239 FOR_EACH_SRC_ADDED(entry, entry_src, src,
1240 ({
1241 *flags = fib_entry_get_flags_for_source (fei, src);
1242 if (fib_entry_is_sourced (fei, FIB_SOURCE_ADJ))
1243 return ARP_DST_FIB_ADJ;
1244 else if (FIB_ENTRY_FLAG_CONNECTED & *flags)
1245 return ARP_DST_FIB_CONN;
1246 }))
1247 /* *INDENT-ON* */
1248
1249 return ARP_DST_FIB_NONE;
1250}
1251
Neale Ranns57e53bb2019-05-29 13:58:43 +00001252static uword
1253arp_reply (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1254{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001255 ethernet_arp_main_t *am = &ethernet_arp_main;
1256 vnet_main_t *vnm = vnet_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001257 u32 n_left_from, next_index, *from, *to_next;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001258 u32 n_replies_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259
1260 from = vlib_frame_vector_args (frame);
1261 n_left_from = frame->n_vectors;
1262 next_index = node->cached_next_index;
1263
1264 if (node->flags & VLIB_NODE_FLAG_TRACE)
1265 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1266 /* stride */ 1,
1267 sizeof (ethernet_arp_input_trace_t));
1268
1269 while (n_left_from > 0)
1270 {
1271 u32 n_left_to_next;
1272
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001273 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274
1275 while (n_left_from > 0 && n_left_to_next > 0)
1276 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001277 vlib_buffer_t *p0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001278 ethernet_arp_header_t *arp0;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001279 ethernet_header_t *eth_rx;
Neale Rannsc5d43172018-07-30 08:04:40 -07001280 const ip4_address_t *if_addr0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001281 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001282 u8 dst_is_local0, is_vrrp_reply0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001283 fib_node_index_t dst_fei, src_fei;
Neale Rannsc5d43172018-07-30 08:04:40 -07001284 const fib_prefix_t *pfx0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001285 fib_entry_flag_t src_flags, dst_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286
1287 pi0 = from[0];
1288 to_next[0] = pi0;
1289 from += 1;
1290 to_next += 1;
1291 n_left_from -= 1;
1292 n_left_to_next -= 1;
1293
1294 p0 = vlib_get_buffer (vm, pi0);
1295 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -07001296 /* Fill in ethernet header. */
1297 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001298
Neale Ranns57e53bb2019-05-29 13:58:43 +00001299 next0 = ARP_REPLY_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300 error0 = ETHERNET_ARP_ERROR_replies_sent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001301 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1302
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001304 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1305 if (~0 == fib_index0)
1306 {
1307 error0 = ETHERNET_ARP_ERROR_interface_no_table;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001308 goto drop;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001309
1310 }
Neale Rannsca193612017-06-14 06:50:08 -07001311
1312 {
1313 /*
1314 * we're looking for FIB entries that indicate the source
1315 * is attached. There may be more specific non-attached
Neale Ranns2303cb12018-02-21 04:57:17 -08001316 * routes that match the source, but these do not influence
Neale Rannsca193612017-06-14 06:50:08 -07001317 * whether we respond to an ARP request, i.e. they do not
1318 * influence whether we are the correct way for the sender
1319 * to reach us, they only affect how we reach the sender.
1320 */
1321 fib_entry_t *src_fib_entry;
Neale Rannsc5d43172018-07-30 08:04:40 -07001322 const fib_prefix_t *pfx;
Neale Rannsca193612017-06-14 06:50:08 -07001323 fib_entry_src_t *src;
1324 fib_source_t source;
Neale Rannsca193612017-06-14 06:50:08 -07001325 int attached;
1326 int mask;
1327
1328 mask = 32;
1329 attached = 0;
1330
1331 do
1332 {
1333 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1334 &arp0->
1335 ip4_over_ethernet[0].ip4,
1336 mask);
1337 src_fib_entry = fib_entry_get (src_fei);
1338
1339 /*
1340 * It's possible that the source that provides the
1341 * flags we need, or the flags we must not have,
1342 * is not the best source, so check then all.
1343 */
1344 /* *INDENT-OFF* */
1345 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1346 ({
1347 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1348
1349 /* Reject requests/replies with our local interface
1350 address. */
1351 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1352 {
1353 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns24b170a2017-08-15 05:33:11 -07001354 /*
1355 * When VPP has an interface whose address is also
1356 * applied to a TAP interface on the host, then VPP's
1357 * TAP interface will be unnumbered to the 'real'
1358 * interface and do proxy ARP from the host.
1359 * The curious aspect of this setup is that ARP requests
1360 * from the host will come from the VPP's own address.
1361 * So don't drop immediately here, instead go see if this
1362 * is a proxy ARP case.
1363 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001364 goto next_feature;
Neale Rannsca193612017-06-14 06:50:08 -07001365 }
1366 /* A Source must also be local to subnet of matching
1367 * interface address. */
1368 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1369 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1370 {
1371 attached = 1;
1372 break;
1373 }
1374 /*
1375 * else
1376 * The packet was sent from an address that is not
1377 * connected nor attached i.e. it is not from an
1378 * address that is covered by a link's sub-net,
1379 * nor is it a already learned host resp.
1380 */
1381 }));
1382 /* *INDENT-ON* */
1383
1384 /*
1385 * shorter mask lookup for the next iteration.
1386 */
Neale Rannsc5d43172018-07-30 08:04:40 -07001387 pfx = fib_entry_get_prefix (src_fei);
1388 mask = pfx->fp_len - 1;
Neale Rannsca193612017-06-14 06:50:08 -07001389
1390 /*
1391 * continue until we hit the default route or we find
1392 * the attached we are looking for. The most likely
1393 * outcome is we find the attached with the first source
1394 * on the first lookup.
1395 */
1396 }
1397 while (!attached &&
1398 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1399
1400 if (!attached)
1401 {
1402 /*
1403 * the matching route is a not attached, i.e. it was
1404 * added as a result of routing, rather than interface/ARP
1405 * configuration. If the matching route is not a host route
1406 * (i.e. a /32)
1407 */
1408 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001409 goto drop;
Neale Rannsca193612017-06-14 06:50:08 -07001410 }
1411 }
1412
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001413 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1414 &arp0->ip4_over_ethernet[1].ip4,
1415 32);
1416 switch (arp_dst_fib_check (dst_fei, &dst_flags))
Neale Ranns59ae61e2018-06-07 18:09:49 -07001417 {
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001418 case ARP_DST_FIB_ADJ:
Neale Ranns59ae61e2018-06-07 18:09:49 -07001419 /*
1420 * We matched an adj-fib on ths source subnet (a /32 previously
1421 * added as a result of ARP). If this request is a gratuitous
1422 * ARP, then learn from it.
1423 * The check for matching an adj-fib, is to prevent hosts
1424 * from spamming us with gratuitous ARPS that might otherwise
1425 * blow our ARP cache
1426 */
1427 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1428 arp0->ip4_over_ethernet[1].ip4.as_u32)
1429 error0 = arp_learn (vnm, am, sw_if_index0,
1430 &arp0->ip4_over_ethernet[0]);
Neale Ranns57e53bb2019-05-29 13:58:43 +00001431 goto drop;
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001432 case ARP_DST_FIB_CONN:
1433 /* destination is connected, continue to process */
1434 break;
1435 case ARP_DST_FIB_NONE:
1436 /* destination is not connected, stop here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001438 goto next_feature;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439 }
1440
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001441 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
Neale Rannsc5d43172018-07-30 08:04:40 -07001442 pfx0 = fib_entry_get_prefix (dst_fei);
1443 if_addr0 = &pfx0->fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444
Matthew Smithcb9ab472017-05-16 21:35:56 -05001445 is_vrrp_reply0 =
1446 ((arp0->opcode ==
1447 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1448 &&
1449 (!memcmp
Neale Ranns37029302018-08-10 05:30:06 -07001450 (arp0->ip4_over_ethernet[0].mac.bytes, vrrp_prefix,
Matthew Smithcb9ab472017-05-16 21:35:56 -05001451 sizeof (vrrp_prefix))));
1452
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001453 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001454 match their L2-frame-level source addresses, unless it's
1455 a reply from a VRRP virtual router */
Neale Ranns37029302018-08-10 05:30:06 -07001456 if (!ethernet_mac_address_equal
1457 (eth_rx->src_address,
1458 arp0->ip4_over_ethernet[0].mac.bytes) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001459 {
1460 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001461 goto drop;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001462 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001463
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001464 /* Learn or update sender's mapping only for replies to addresses
1465 * that are local to the subnet */
1466 if (arp0->opcode ==
Neale Ranns59ae61e2018-06-07 18:09:49 -07001467 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001468 {
Neale Ranns59ae61e2018-06-07 18:09:49 -07001469 if (dst_is_local0)
1470 error0 = arp_learn (vnm, am, sw_if_index0,
1471 &arp0->ip4_over_ethernet[0]);
1472 else
1473 /* a reply for a non-local destination could be a GARP.
1474 * GARPs for hosts we know were handled above, so this one
1475 * we drop */
1476 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1477
Neale Ranns57e53bb2019-05-29 13:58:43 +00001478 goto next_feature;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001479 }
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001480 else if (arp0->opcode ==
1481 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request) &&
1482 (dst_is_local0 == 0))
1483 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001484 goto next_feature;
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001485 }
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001486
1487 /* Honor unnumbered interface, if any */
1488 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
1489 if (sw_if_index0 != conn_sw_if_index0 ||
1490 sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001491 {
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001492 /*
1493 * The interface the ARP is sent to or was received on is not the
1494 * interface on which the covering prefix is configured.
1495 * Maybe this is a case for unnumbered.
1496 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001497 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001498 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001499 error0 = ETHERNET_ARP_ERROR_unnumbered_mismatch;
1500 goto drop;
Neale Ranns436d06b2016-11-30 07:41:53 -08001501 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001502 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001503 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1504 arp0->ip4_over_ethernet[1].ip4.as_u32)
1505 {
1506 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1507 goto drop;
1508 }
1509
1510 next0 = arp_mk_reply (vnm, p0, sw_if_index0,
1511 if_addr0, arp0, eth_rx);
Neale Ranns4b919a52017-03-11 05:55:21 -08001512
Neale Ranns24b170a2017-08-15 05:33:11 -07001513 /* We are going to reply to this request, so, in the absence of
1514 errors, learn the sender */
1515 if (!error0)
1516 error0 = arp_learn (vnm, am, sw_if_index0,
1517 &arp0->ip4_over_ethernet[1]);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001518
Neale Ranns57e53bb2019-05-29 13:58:43 +00001519 n_replies_sent += 1;
1520 goto enqueue;
1521
1522 next_feature:
1523 vnet_feature_next (&next0, p0);
1524 goto enqueue;
1525
1526 drop:
1527 p0->error = node->errors[error0];
1528
1529 enqueue:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001530 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1531 n_left_to_next, pi0, next0);
Neale Ranns57e53bb2019-05-29 13:58:43 +00001532 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533
Neale Ranns57e53bb2019-05-29 13:58:43 +00001534 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1535 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001536
Neale Ranns57e53bb2019-05-29 13:58:43 +00001537 vlib_error_count (vm, node->node_index,
1538 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
1539
1540 return frame->n_vectors;
1541}
1542
1543static uword
1544arp_proxy (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1545{
1546 ethernet_arp_main_t *am = &ethernet_arp_main;
1547 vnet_main_t *vnm = vnet_get_main ();
1548 u32 n_left_from, next_index, *from, *to_next;
1549 u32 n_arp_replies_sent = 0;
1550
1551 from = vlib_frame_vector_args (frame);
1552 n_left_from = frame->n_vectors;
1553 next_index = node->cached_next_index;
1554
1555 if (node->flags & VLIB_NODE_FLAG_TRACE)
1556 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1557 /* stride */ 1,
1558 sizeof (ethernet_arp_input_trace_t));
1559
1560 while (n_left_from > 0)
1561 {
1562 u32 n_left_to_next;
1563
1564 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1565
1566 while (n_left_from > 0 && n_left_to_next > 0)
1567 {
1568 vlib_buffer_t *p0;
1569 ethernet_arp_header_t *arp0;
1570 ethernet_header_t *eth_rx;
1571 ip4_address_t proxy_src;
1572 u32 pi0, error0, next0, sw_if_index0, fib_index0;
1573 u8 is_request0;
1574 ethernet_proxy_arp_t *pa;
1575
1576 pi0 = from[0];
1577 to_next[0] = pi0;
1578 from += 1;
1579 to_next += 1;
1580 n_left_from -= 1;
1581 n_left_to_next -= 1;
1582
1583 p0 = vlib_get_buffer (vm, pi0);
1584 arp0 = vlib_buffer_get_current (p0);
1585 /* Fill in ethernet header. */
1586 eth_rx = ethernet_buffer_get_header (p0);
1587
1588 is_request0 = arp0->opcode
1589 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
1590
1591 error0 = ETHERNET_ARP_ERROR_replies_sent;
1592 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1593 next0 = ARP_REPLY_NEXT_DROP;
1594
1595 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1596 if (~0 == fib_index0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001597 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001598 error0 = ETHERNET_ARP_ERROR_interface_no_table;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001599 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001600
1601 if (0 == error0 && is_request0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001602 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001603 u32 this_addr = clib_net_to_host_u32
1604 (arp0->ip4_over_ethernet[1].ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001605
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001606 vec_foreach (pa, am->proxy_arps)
1607 {
Neale Ranns0053de62018-05-22 08:40:52 -07001608 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr.as_u32);
1609 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001611 /* an ARP request hit in the proxy-arp table? */
1612 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1613 (fib_index0 == pa->fib_index))
1614 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001615 proxy_src.as_u32 =
1616 arp0->ip4_over_ethernet[1].ip4.data_u32;
1617
Damjan Marion607de1a2016-08-16 22:53:54 +02001618 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001619 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001620 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001621 n_arp_replies_sent++;
1622
1623 next0 =
1624 arp_mk_reply (vnm, p0, sw_if_index0, &proxy_src, arp0,
1625 eth_rx);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001626 }
1627 }
1628 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001629 else
1630 {
1631 p0->error = node->errors[error0];
1632 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001633
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001634 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1635 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001636 }
1637
1638 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1639 }
1640
1641 vlib_error_count (vm, node->node_index,
Neale Ranns57e53bb2019-05-29 13:58:43 +00001642 ETHERNET_ARP_ERROR_replies_sent, n_arp_replies_sent);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001643
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644 return frame->n_vectors;
1645}
1646
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001647static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001648#define _(sym,string) string,
1649 foreach_ethernet_arp_error
1650#undef _
1651};
1652
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001653/* *INDENT-OFF* */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001654
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001655VLIB_REGISTER_NODE (arp_input_node, static) =
1656{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001657 .function = arp_input,
1658 .name = "arp-input",
1659 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001660 .n_errors = ETHERNET_ARP_N_ERROR,
1661 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001662 .n_next_nodes = ARP_INPUT_N_NEXT,
1663 .next_nodes = {
1664 [ARP_INPUT_NEXT_DROP] = "error-drop",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001665 [ARP_INPUT_NEXT_DISABLED] = "arp-disabled",
1666 },
1667 .format_buffer = format_ethernet_arp_header,
1668 .format_trace = format_ethernet_arp_input_trace,
1669};
1670
1671VLIB_REGISTER_NODE (arp_disabled_node, static) =
1672{
1673 .function = arp_disabled,
1674 .name = "arp-disabled",
1675 .vector_size = sizeof (u32),
1676 .n_errors = ARP_DISABLED_N_ERROR,
1677 .error_strings = arp_disabled_error_strings,
1678 .n_next_nodes = ARP_DISABLED_N_NEXT,
1679 .next_nodes = {
1680 [ARP_INPUT_NEXT_DROP] = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001681 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001682 .format_buffer = format_ethernet_arp_header,
1683 .format_trace = format_ethernet_arp_input_trace,
1684};
Neale Ranns57e53bb2019-05-29 13:58:43 +00001685
1686VLIB_REGISTER_NODE (arp_reply_node, static) =
1687{
1688 .function = arp_reply,
1689 .name = "arp-reply",
1690 .vector_size = sizeof (u32),
1691 .n_errors = ETHERNET_ARP_N_ERROR,
1692 .error_strings = ethernet_arp_error_strings,
1693 .n_next_nodes = ARP_REPLY_N_NEXT,
1694 .next_nodes = {
1695 [ARP_REPLY_NEXT_DROP] = "error-drop",
1696 [ARP_REPLY_NEXT_REPLY_TX] = "interface-output",
1697 },
1698 .format_buffer = format_ethernet_arp_header,
1699 .format_trace = format_ethernet_arp_input_trace,
1700};
1701
1702VLIB_REGISTER_NODE (arp_proxy_node, static) =
1703{
1704 .function = arp_proxy,
1705 .name = "arp-proxy",
1706 .vector_size = sizeof (u32),
1707 .n_errors = ETHERNET_ARP_N_ERROR,
1708 .error_strings = ethernet_arp_error_strings,
1709 .n_next_nodes = ARP_REPLY_N_NEXT,
1710 .next_nodes = {
1711 [ARP_REPLY_NEXT_DROP] = "error-drop",
1712 [ARP_REPLY_NEXT_REPLY_TX] = "interface-output",
1713 },
1714 .format_buffer = format_ethernet_arp_header,
1715 .format_trace = format_ethernet_arp_input_trace,
1716};
1717
Neale Rannsfe2fff32019-06-26 08:22:01 -07001718/* Built-in ARP rx feature path definition */
1719VNET_FEATURE_ARC_INIT (arp_feat, static) =
1720{
1721 .arc_name = "arp",
1722 .start_nodes = VNET_FEATURES ("arp-input"),
1723 .last_in_arc = "arp-disabled",
1724 .arc_index_ptr = &ethernet_arp_main.feature_arc_index,
1725};
1726
Neale Ranns57e53bb2019-05-29 13:58:43 +00001727VNET_FEATURE_INIT (arp_reply_feat_node, static) =
1728{
1729 .arc_name = "arp",
1730 .node_name = "arp-reply",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001731 .runs_before = VNET_FEATURES ("arp-disabled"),
Neale Ranns57e53bb2019-05-29 13:58:43 +00001732};
1733
1734VNET_FEATURE_INIT (arp_proxy_feat_node, static) =
1735{
1736 .arc_name = "arp",
1737 .node_name = "arp-proxy",
1738 .runs_after = VNET_FEATURES ("arp-reply"),
Neale Rannsfe2fff32019-06-26 08:22:01 -07001739 .runs_before = VNET_FEATURES ("arp-disabled"),
Neale Ranns57e53bb2019-05-29 13:58:43 +00001740};
1741
1742VNET_FEATURE_INIT (arp_drop_feat_node, static) =
1743{
1744 .arc_name = "arp",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001745 .node_name = "arp-disabled",
1746 .runs_before = 0, /* last feature */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001747};
1748
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001749/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001750
Ed Warnickecb9cada2015-12-08 15:45:58 -07001751static int
1752ip4_arp_entry_sort (void *a1, void *a2)
1753{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001754 ethernet_arp_ip4_entry_t *e1 = a1;
1755 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001756
1757 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001758 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001759
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001760 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001761 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001762 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763 return cmp;
1764}
1765
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001766ethernet_arp_ip4_entry_t *
John Lo7f358b32018-04-28 01:19:24 -04001767ip4_neighbors_pool (void)
1768{
1769 ethernet_arp_main_t *am = &ethernet_arp_main;
1770 return am->ip4_entry_pool;
1771}
1772
1773ethernet_arp_ip4_entry_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001774ip4_neighbor_entries (u32 sw_if_index)
1775{
1776 ethernet_arp_main_t *am = &ethernet_arp_main;
1777 ethernet_arp_ip4_entry_t *n, *ns = 0;
1778
1779 /* *INDENT-OFF* */
1780 pool_foreach (n, am->ip4_entry_pool, ({
1781 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1782 continue;
1783 vec_add1 (ns, n[0]);
1784 }));
1785 /* *INDENT-ON* */
1786
1787 if (ns)
1788 vec_sort_with_function (ns, ip4_arp_entry_sort);
1789 return ns;
1790}
1791
Ed Warnickecb9cada2015-12-08 15:45:58 -07001792static clib_error_t *
1793show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001794 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001795{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001796 vnet_main_t *vnm = vnet_get_main ();
1797 ethernet_arp_main_t *am = &ethernet_arp_main;
1798 ethernet_arp_ip4_entry_t *e, *es;
1799 ethernet_proxy_arp_t *pa;
1800 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001801 u32 sw_if_index;
1802
1803 /* Filter entries by interface if given. */
1804 sw_if_index = ~0;
1805 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1806
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001807 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001808 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001809 {
Keith Wilescb466842016-02-11 19:21:10 -06001810 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001811 vec_foreach (e, es)
1812 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001813 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001814 }
1815 vec_free (es);
1816 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001817
1818 if (vec_len (am->proxy_arps))
1819 {
1820 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001821 vec_foreach (pa, am->proxy_arps)
1822 {
1823 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1824 pa->fib_index,
1825 format_ip4_address, &pa->lo_addr,
1826 format_ip4_address, &pa->hi_addr);
1827 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001828 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001829
Ed Warnickecb9cada2015-12-08 15:45:58 -07001830 return error;
1831}
1832
Billy McFall2d085d92016-09-13 21:47:55 -04001833/*?
1834 * Display all the IPv4 ARP entries.
1835 *
1836 * @cliexpar
1837 * Example of how to display the IPv4 ARP table:
1838 * @cliexstart{show ip arp}
1839 * Time FIB IP4 Flags Ethernet Interface
1840 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1841 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1842 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1843 * Proxy arps enabled for:
1844 * Fib_index 0 6.0.0.1 - 6.0.0.11
1845 * @cliexend
1846 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001847/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001848VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1849 .path = "show ip arp",
1850 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001851 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001852};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001853/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001855typedef struct
1856{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001857 pg_edit_t l2_type, l3_type;
1858 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1859 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001860 struct
1861 {
Neale Ranns37029302018-08-10 05:30:06 -07001862 pg_edit_t mac;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001863 pg_edit_t ip4;
1864 } ip4_over_ethernet[2];
1865} pg_ethernet_arp_header_t;
1866
1867static inline void
1868pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1869{
1870 /* Initialize fields that are not bit fields in the IP header. */
1871#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001872 _(l2_type);
1873 _(l3_type);
1874 _(n_l2_address_bytes);
1875 _(n_l3_address_bytes);
1876 _(opcode);
Neale Ranns37029302018-08-10 05:30:06 -07001877 _(ip4_over_ethernet[0].mac);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001878 _(ip4_over_ethernet[0].ip4);
Neale Ranns37029302018-08-10 05:30:06 -07001879 _(ip4_over_ethernet[1].mac);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001880 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001881#undef _
1882}
1883
1884uword
1885unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1886{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001887 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1888 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001889 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001890
Ed Warnickecb9cada2015-12-08 15:45:58 -07001891 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1892 &group_index);
1893 pg_ethernet_arp_header_init (p);
1894
1895 /* Defaults. */
1896 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1897 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1898 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1899 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1900
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001901 if (!unformat (input, "%U: %U/%U -> %U/%U",
1902 unformat_pg_edit,
1903 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1904 unformat_pg_edit,
Neale Ranns37029302018-08-10 05:30:06 -07001905 unformat_mac_address_t, &p->ip4_over_ethernet[0].mac,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001906 unformat_pg_edit,
1907 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1908 unformat_pg_edit,
Neale Ranns37029302018-08-10 05:30:06 -07001909 unformat_mac_address_t, &p->ip4_over_ethernet[1].mac,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001910 unformat_pg_edit,
1911 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001912 {
1913 /* Free up any edits we may have added. */
1914 pg_free_edit_group (s);
1915 return 0;
1916 }
1917 return 1;
1918}
1919
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001920clib_error_t *
1921ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001922{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001923 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001924
1925 am->limit_arp_cache_size = arp_limit;
1926 return 0;
1927}
1928
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001929/**
1930 * @brief Control Plane hook to remove an ARP entry
1931 */
1932int
1933vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00001934 u32 sw_if_index,
1935 const
1936 ethernet_arp_ip4_over_ethernet_address_t *
1937 a)
Damjan Marion102ec522016-03-29 13:18:17 +02001938{
Neale Ranns37029302018-08-10 05:30:06 -07001939 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1940 .sw_if_index = sw_if_index,
1941 .flags = ETHERNET_ARP_ARGS_REMOVE,
1942 .ip4 = a->ip4,
1943 .mac = a->mac,
1944 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001945
1946 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1947 (u8 *) & args, sizeof (args));
1948 return 0;
1949}
1950
1951/**
Eyal Bari20197482017-09-13 12:29:08 +03001952 * @brief publish wildcard arp event
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001953 * @param sw_if_index The interface on which the ARP entries are acted
Eyal Bari20197482017-09-13 12:29:08 +03001954 */
1955static int
Neale Rannscf7efe02018-09-24 08:34:11 +00001956vnet_arp_wc_publish (u32 sw_if_index,
1957 const ethernet_arp_ip4_over_ethernet_address_t * a)
Eyal Bari20197482017-09-13 12:29:08 +03001958{
Eyal Bari20197482017-09-13 12:29:08 +03001959 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1960 .flags = ETHERNET_ARP_ARGS_WC_PUB,
1961 .sw_if_index = sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001962 .ip4 = a->ip4,
1963 .mac = a->mac,
Eyal Bari20197482017-09-13 12:29:08 +03001964 };
1965
1966 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1967 (u8 *) & args, sizeof (args));
1968 return 0;
1969}
1970
1971static void
1972vnet_arp_wc_publish_internal (vnet_main_t * vnm,
1973 vnet_arp_set_ip4_over_ethernet_rpc_args_t *
1974 args)
1975{
1976 vlib_main_t *vm = vlib_get_main ();
1977 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Baric125ecc2017-09-20 11:29:17 +03001978 uword ni = am->wc_ip4_arp_publisher_node;
1979 uword et = am->wc_ip4_arp_publisher_et;
1980
1981 if (ni == (uword) ~ 0)
Eyal Bari20197482017-09-13 12:29:08 +03001982 return;
1983 wc_arp_report_t *r =
Eyal Baric125ecc2017-09-20 11:29:17 +03001984 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *r);
Neale Ranns37029302018-08-10 05:30:06 -07001985 r->ip.as_u32 = args->ip4.as_u32;
Eyal Bari20197482017-09-13 12:29:08 +03001986 r->sw_if_index = args->sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -07001987 mac_address_copy (&r->mac, &args->mac);
Eyal Bari20197482017-09-13 12:29:08 +03001988}
1989
1990void
Eyal Baric125ecc2017-09-20 11:29:17 +03001991wc_arp_set_publisher_node (uword node_index, uword event_type)
Eyal Bari20197482017-09-13 12:29:08 +03001992{
1993 ethernet_arp_main_t *am = &ethernet_arp_main;
1994 am->wc_ip4_arp_publisher_node = node_index;
Eyal Baric125ecc2017-09-20 11:29:17 +03001995 am->wc_ip4_arp_publisher_et = event_type;
Eyal Bari20197482017-09-13 12:29:08 +03001996}
1997
Neale Rannscf7efe02018-09-24 08:34:11 +00001998static void
1999arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e);
2000
2001static int
2002vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
2003 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2004 * args)
2005{
2006 ethernet_arp_main_t *am = &ethernet_arp_main;
2007 ethernet_arp_ip4_entry_t *e;
2008 ethernet_arp_interface_t *eai;
2009
2010 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
2011 return 0;
2012
2013 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
2014
Neale Ranns37029302018-08-10 05:30:06 -07002015 e = arp_entry_find (eai, &args->ip4);
Neale Rannscf7efe02018-09-24 08:34:11 +00002016
2017 if (NULL != e)
2018 {
2019 adj_nbr_walk_nh4 (e->sw_if_index,
2020 &e->ip4_address, arp_mk_incomplete_walk, e);
2021
2022 /*
2023 * The difference between flush and unset, is that an unset
2024 * means delete for static and dynamic entries. A flush
2025 * means delete only for dynamic. Flushing is what the DP
2026 * does in response to interface events. unset is only done
2027 * by the control plane.
2028 */
Neale Ranns37029302018-08-10 05:30:06 -07002029 if (e->flags & IP_NEIGHBOR_FLAG_STATIC)
Neale Rannscf7efe02018-09-24 08:34:11 +00002030 {
Neale Ranns37029302018-08-10 05:30:06 -07002031 e->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
Neale Rannscf7efe02018-09-24 08:34:11 +00002032 }
Neale Ranns37029302018-08-10 05:30:06 -07002033 else if (e->flags & IP_NEIGHBOR_FLAG_DYNAMIC)
Neale Rannscf7efe02018-09-24 08:34:11 +00002034 {
2035 arp_entry_free (eai, e);
2036 }
2037 }
2038 return (0);
2039}
2040
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002041/*
2042 * arp_add_del_interface_address
2043 *
2044 * callback when an interface address is added or deleted
2045 */
2046static void
Neale Ranns57e53bb2019-05-29 13:58:43 +00002047arp_enable_disable_interface (ip4_main_t * im,
2048 uword opaque, u32 sw_if_index, u32 is_enable)
2049{
2050 ethernet_arp_main_t *am = &ethernet_arp_main;
2051
2052 if (is_enable)
2053 arp_enable (am, sw_if_index);
2054 else
2055 arp_disable (am, sw_if_index);
2056}
2057
2058/*
2059 * arp_add_del_interface_address
2060 *
2061 * callback when an interface address is added or deleted
2062 */
2063static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002064arp_add_del_interface_address (ip4_main_t * im,
2065 uword opaque,
2066 u32 sw_if_index,
2067 ip4_address_t * address,
2068 u32 address_length,
2069 u32 if_address_index, u32 is_del)
2070{
2071 /*
2072 * Flush the ARP cache of all entries covered by the address
2073 * that is being removed.
2074 */
2075 ethernet_arp_main_t *am = &ethernet_arp_main;
2076 ethernet_arp_ip4_entry_t *e;
2077
Neale Ranns177bbdc2016-11-15 09:46:51 +00002078 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002079 return;
2080
2081 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02002082 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002083 ethernet_arp_interface_t *eai;
2084 u32 i, *to_delete = 0;
2085 hash_pair_t *pair;
2086
2087 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2088
Neale Rannsb80c5362016-10-08 13:03:40 +01002089 /* *INDENT-OFF* */
2090 hash_foreach_pair (pair, eai->arp_entries,
2091 ({
2092 e = pool_elt_at_index(am->ip4_entry_pool,
2093 pair->value[0]);
2094 if (ip4_destination_matches_route (im, &e->ip4_address,
2095 address, address_length))
2096 {
2097 vec_add1 (to_delete, e - am->ip4_entry_pool);
2098 }
2099 }));
2100 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002101
2102 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002103 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002104 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
2105
Neale Rannscf7efe02018-09-24 08:34:11 +00002106 vnet_arp_set_ip4_over_ethernet_rpc_args_t delme = {
Neale Ranns37029302018-08-10 05:30:06 -07002107 .ip4.as_u32 = e->ip4_address.as_u32,
Neale Rannscf7efe02018-09-24 08:34:11 +00002108 .sw_if_index = e->sw_if_index,
2109 .flags = ETHERNET_ARP_ARGS_FLUSH,
2110 };
Neale Ranns37029302018-08-10 05:30:06 -07002111 mac_address_copy (&delme.mac, &e->mac);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002112
Neale Rannscf7efe02018-09-24 08:34:11 +00002113 vnet_arp_flush_ip4_over_ethernet_internal (vnet_get_main (),
2114 &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002115 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002116
2117 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02002118 }
2119}
2120
Neale Ranns15002542017-09-10 04:39:11 -07002121static void
2122arp_table_bind (ip4_main_t * im,
2123 uword opaque,
2124 u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
2125{
2126 ethernet_arp_main_t *am = &ethernet_arp_main;
2127 ethernet_arp_interface_t *eai;
2128 ethernet_arp_ip4_entry_t *e;
2129 hash_pair_t *pair;
2130
2131 /*
2132 * the IP table that the interface is bound to has changed.
2133 * reinstall all the adj fibs.
2134 */
2135
2136 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
2137 return;
2138
2139 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2140
2141 /* *INDENT-OFF* */
2142 hash_foreach_pair (pair, eai->arp_entries,
2143 ({
2144 e = pool_elt_at_index(am->ip4_entry_pool,
2145 pair->value[0]);
2146 /*
2147 * remove the adj-fib from the old table and add to the new
2148 */
2149 arp_adj_fib_remove(e, old_fib_index);
2150 arp_adj_fib_add(e, new_fib_index);
2151 }));
2152 /* *INDENT-ON* */
2153
2154}
2155
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002156static clib_error_t *
2157ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002158{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002159 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002160 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002161 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05002162
Ed Warnickecb9cada2015-12-08 15:45:58 -07002163 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
2164
2165 pn = pg_get_node (arp_input_node.index);
2166 pn->unformat_edit = unformat_pg_arp_header;
2167
2168 am->opcode_by_name = hash_create_string (0, sizeof (uword));
2169#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
2170 foreach_ethernet_arp_opcode;
2171#undef _
2172
Ed Warnickecb9cada2015-12-08 15:45:58 -07002173 /* $$$ configurable */
2174 am->limit_arp_cache_size = 50000;
2175
2176 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
2177 am->mac_changes_by_address = hash_create (0, sizeof (uword));
Eyal Bari20197482017-09-13 12:29:08 +03002178 am->wc_ip4_arp_publisher_node = (uword) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002179
2180 /* don't trace ARP error packets */
2181 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002182 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002183 vlib_node_get_runtime (vm, arp_input_node.index);
2184
2185#define _(a,b) \
2186 vnet_pcap_drop_trace_filter_add_del \
2187 (rt->errors[ETHERNET_ARP_ERROR_##a], \
2188 1 /* is_add */);
2189 foreach_ethernet_arp_error
2190#undef _
2191 }
Damjan Marion102ec522016-03-29 13:18:17 +02002192
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002193 ip4_add_del_interface_address_callback_t cb;
2194 cb.function = arp_add_del_interface_address;
2195 cb.function_opaque = 0;
2196 vec_add1 (im->add_del_interface_address_callbacks, cb);
2197
Neale Ranns57e53bb2019-05-29 13:58:43 +00002198 ip4_enable_disable_interface_callback_t cbe;
2199 cbe.function = arp_enable_disable_interface;
2200 cbe.function_opaque = 0;
2201 vec_add1 (im->enable_disable_interface_callbacks, cbe);
2202
Neale Ranns15002542017-09-10 04:39:11 -07002203 ip4_table_bind_callback_t cbt;
2204 cbt.function = arp_table_bind;
2205 cbt.function_opaque = 0;
2206 vec_add1 (im->table_bind_callbacks, cbt);
2207
Ed Warnickecb9cada2015-12-08 15:45:58 -07002208 return 0;
2209}
Dave Barachf8d50682019-05-14 18:01:44 -04002210/* *INDENT-OFF* */
2211VLIB_INIT_FUNCTION (ethernet_arp_init) =
2212{
2213 .runs_after = VLIB_INITS("ethernet_init"),
2214};
2215/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002216
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002217static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002218arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
2219{
2220 ethernet_arp_main_t *am = &ethernet_arp_main;
2221
John Lo4fed5b12018-05-22 03:35:06 -04002222 arp_adj_fib_remove
2223 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002224 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
2225 pool_put (am->ip4_entry_pool, e);
2226}
2227
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002228static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07002229vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002230 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2231 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002232{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002233 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002234 ethernet_arp_ip4_entry_t *e;
2235 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002236
Matthew Smith66c0adf2017-08-09 16:30:43 -05002237 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
2238 return 0;
2239
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002240 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002241
Neale Ranns37029302018-08-10 05:30:06 -07002242 e = arp_entry_find (eai, &args->ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002243
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002244 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002245 {
Neale Ranns19c68d22016-12-07 15:38:14 +00002246 adj_nbr_walk_nh4 (e->sw_if_index,
Neale Rannscf7efe02018-09-24 08:34:11 +00002247 &e->ip4_address, arp_mk_incomplete_walk, e);
John Lo4fed5b12018-05-22 03:35:06 -04002248 arp_entry_free (eai, e);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002249 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002250
Ed Warnickecb9cada2015-12-08 15:45:58 -07002251 return 0;
2252}
2253
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002254
2255static int
2256vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
2257 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2258 * args)
2259{
2260 ethernet_arp_main_t *am = &ethernet_arp_main;
2261 ethernet_arp_ip4_entry_t *e;
2262 ethernet_arp_interface_t *eai;
2263
Neale Ranns57e53bb2019-05-29 13:58:43 +00002264 arp_enable (am, args->sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002265 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
2266
Neale Ranns37029302018-08-10 05:30:06 -07002267 e = arp_entry_find (eai, &args->ip4);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002268
2269 if (NULL != e)
2270 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002271 adj_nbr_walk_nh4 (e->sw_if_index,
2272 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002273 }
2274 return (0);
2275}
2276
2277static void
2278set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
2279 * a)
2280{
2281 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02002282 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002283
2284 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
2285 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
2286 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
2287 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
2288 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
2289 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
Eyal Bari20197482017-09-13 12:29:08 +03002290 else if (a->flags & ETHERNET_ARP_ARGS_WC_PUB)
2291 vnet_arp_wc_publish_internal (vm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002292 else
2293 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
2294}
2295
2296/**
2297 * @brief Invoked when the interface's admin state changes
2298 */
2299static clib_error_t *
2300ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
2301 u32 sw_if_index, u32 flags)
2302{
2303 ethernet_arp_main_t *am = &ethernet_arp_main;
2304 ethernet_arp_ip4_entry_t *e;
Neale Rannscf7efe02018-09-24 08:34:11 +00002305 u32 i, *to_update = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002306
2307 /* *INDENT-OFF* */
2308 pool_foreach (e, am->ip4_entry_pool,
2309 ({
2310 if (e->sw_if_index == sw_if_index)
Neale Rannscf7efe02018-09-24 08:34:11 +00002311 vec_add1 (to_update,
Neale Rannsb80c5362016-10-08 13:03:40 +01002312 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002313 }));
2314 /* *INDENT-ON* */
2315
Neale Rannscf7efe02018-09-24 08:34:11 +00002316 for (i = 0; i < vec_len (to_update); i++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002317 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002318 e = pool_elt_at_index (am->ip4_entry_pool, to_update[i]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002319
Neale Rannscf7efe02018-09-24 08:34:11 +00002320 vnet_arp_set_ip4_over_ethernet_rpc_args_t update_me = {
Neale Ranns37029302018-08-10 05:30:06 -07002321 .ip4.as_u32 = e->ip4_address.as_u32,
Neale Rannscf7efe02018-09-24 08:34:11 +00002322 .sw_if_index = e->sw_if_index,
2323 };
Neale Ranns37029302018-08-10 05:30:06 -07002324 mac_address_copy (&update_me.mac, &e->mac);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002325
2326 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
2327 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002328 update_me.flags = ETHERNET_ARP_ARGS_POPULATE;
2329 vnet_arp_populate_ip4_over_ethernet_internal (vnm, &update_me);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002330 }
2331 else
2332 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002333 update_me.flags = ETHERNET_ARP_ARGS_FLUSH;
2334 vnet_arp_flush_ip4_over_ethernet_internal (vnm, &update_me);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002335 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002336 }
Neale Rannscf7efe02018-09-24 08:34:11 +00002337 vec_free (to_update);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002338
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002339 return 0;
2340}
2341
2342VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
2343
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002344static void
2345increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002346{
2347 u8 old;
2348 int i;
2349
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002350 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002351 {
2352 old = a->ip4.as_u8[i];
2353 a->ip4.as_u8[i] += 1;
2354 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002355 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002356 }
2357
2358 for (i = 5; i >= 0; i--)
2359 {
Neale Ranns37029302018-08-10 05:30:06 -07002360 old = a->mac.bytes[i];
2361 a->mac.bytes[i] += 1;
2362 if (old < a->mac.bytes[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002363 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002364 }
2365}
2366
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002367int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002368vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00002369 u32 sw_if_index,
2370 const ethernet_arp_ip4_over_ethernet_address_t
Neale Ranns37029302018-08-10 05:30:06 -07002371 * a, ip_neighbor_flags_t flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002372{
Neale Ranns37029302018-08-10 05:30:06 -07002373 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
2374 .sw_if_index = sw_if_index,
2375 .nbr_flags = flags,
2376 .flags = 0,
2377 .ip4.as_u32 = a->ip4.as_u32,
2378 .mac = a->mac,
2379 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002380
2381 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
2382 (u8 *) & args, sizeof (args));
2383 return 0;
2384}
2385
Neale Ranns0053de62018-05-22 08:40:52 -07002386void
2387proxy_arp_walk (proxy_arp_walk_t cb, void *data)
2388{
2389 ethernet_arp_main_t *am = &ethernet_arp_main;
2390 ethernet_proxy_arp_t *pa;
2391
2392 vec_foreach (pa, am->proxy_arps)
2393 {
2394 if (!cb (&pa->lo_addr, &pa->hi_addr, pa->fib_index, data))
2395 break;
2396 }
2397}
2398
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002399int
Neale Ranns57e53bb2019-05-29 13:58:43 +00002400vnet_proxy_arp_enable_disable (vnet_main_t * vnm, u32 sw_if_index, u8 enable)
2401{
2402 ethernet_arp_main_t *am = &ethernet_arp_main;
2403 ethernet_arp_interface_t *eai;
2404
2405 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
2406
2407 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2408
2409 if (enable)
2410 {
2411 if (!eai->proxy_enabled)
2412 {
2413 vnet_feature_enable_disable ("arp", "arp-proxy",
2414 sw_if_index, 1, NULL, 0);
2415 }
2416 eai->proxy_enabled = 1;
2417 }
2418 else
2419 {
2420 if (eai->proxy_enabled)
2421 {
2422 vnet_feature_enable_disable ("arp", "arp-proxy",
2423 sw_if_index, 0, NULL, 0);
2424 }
2425 eai->proxy_enabled = 0;
2426 }
2427
2428 return (0);
2429}
2430
2431int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002432vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
2433 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002434{
2435 ethernet_arp_main_t *am = &ethernet_arp_main;
2436 ethernet_proxy_arp_t *pa;
2437 u32 found_at_index = ~0;
2438
2439 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002440 {
Neale Ranns0053de62018-05-22 08:40:52 -07002441 if (pa->lo_addr.as_u32 == lo_addr->as_u32 &&
2442 pa->hi_addr.as_u32 == hi_addr->as_u32 && pa->fib_index == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002443 {
2444 found_at_index = pa - am->proxy_arps;
2445 break;
2446 }
2447 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002448
2449 if (found_at_index != ~0)
2450 {
2451 /* Delete, otherwise it's already in the table */
2452 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002453 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002454 return 0;
2455 }
2456 /* delete, no such entry */
2457 if (is_del)
2458 return VNET_API_ERROR_NO_SUCH_ENTRY;
2459
2460 /* add, not in table */
2461 vec_add2 (am->proxy_arps, pa, 1);
Neale Ranns0053de62018-05-22 08:40:52 -07002462 pa->lo_addr.as_u32 = lo_addr->as_u32;
2463 pa->hi_addr.as_u32 = hi_addr->as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002464 pa->fib_index = fib_index;
2465 return 0;
2466}
2467
Neale Ranns57e53bb2019-05-29 13:58:43 +00002468void
2469proxy_arp_intfc_walk (proxy_arp_intf_walk_t cb, void *data)
2470{
2471 ethernet_arp_main_t *am = &ethernet_arp_main;
2472 ethernet_arp_interface_t *eai;
2473
2474 vec_foreach (eai, am->ethernet_arp_by_sw_if_index)
2475 {
2476 if (eai->proxy_enabled)
2477 cb (eai - am->ethernet_arp_by_sw_if_index, data);
2478 }
2479}
2480
Ed Warnickecb9cada2015-12-08 15:45:58 -07002481/*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002482 * Remove any proxy arp entries associated with the
2483 * specified fib.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002484 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002485int
2486vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002487{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002488 ethernet_arp_main_t *am = &ethernet_arp_main;
2489 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002490 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002491 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002492 int i;
2493
Neale Ranns107e7d42017-04-11 09:55:19 -07002494 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2495 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002496 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002497
2498 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002499 {
2500 if (pa->fib_index == fib_index)
2501 {
2502 vec_add1 (entries_to_delete, pa - am->proxy_arps);
2503 }
2504 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002505
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002506 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002507 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002508 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
2509 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002510
2511 vec_free (entries_to_delete);
2512
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002513 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002514}
2515
2516static clib_error_t *
2517ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002518 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002519{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002520 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002521 u32 sw_if_index;
2522 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
2523 int addr_valid = 0;
2524 int is_del = 0;
2525 int count = 1;
2526 u32 fib_index = 0;
2527 u32 fib_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002528 int is_proxy = 0;
Neale Ranns37029302018-08-10 05:30:06 -07002529 ip_neighbor_flags_t flags;
2530
2531 flags = IP_NEIGHBOR_FLAG_NONE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002532
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002533 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002534 {
2535 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
2536 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002537 unformat_vnet_sw_interface, vnm, &sw_if_index,
2538 unformat_ip4_address, &addr.ip4,
Neale Ranns37029302018-08-10 05:30:06 -07002539 unformat_mac_address_t, &addr.mac))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002540 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002541
2542 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002543 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002544
2545 else if (unformat (input, "static"))
Neale Ranns37029302018-08-10 05:30:06 -07002546 flags |= IP_NEIGHBOR_FLAG_STATIC;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002547
Neale Rannsb3b2de72017-03-08 05:17:22 -08002548 else if (unformat (input, "no-fib-entry"))
Neale Ranns37029302018-08-10 05:30:06 -07002549 flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -08002550
Ed Warnickecb9cada2015-12-08 15:45:58 -07002551 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002552 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002553
2554 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002555 {
Neale Ranns107e7d42017-04-11 09:55:19 -07002556 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2557
2558 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002559 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002560 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002561
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002562 else if (unformat (input, "proxy %U - %U",
2563 unformat_ip4_address, &lo_addr.ip4,
2564 unformat_ip4_address, &hi_addr.ip4))
2565 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002566 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002567 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002568 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002569
Ed Warnickecb9cada2015-12-08 15:45:58 -07002570 if (is_proxy)
2571 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002572 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2573 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002574 return 0;
2575 }
2576
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002577 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002578 {
2579 int i;
2580
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002581 for (i = 0; i < count; i++)
2582 {
2583 if (is_del == 0)
2584 {
2585 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002586
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002587 /* Park the debug CLI until the arp entry is installed */
2588 vnet_register_ip4_arp_resolution_event
2589 (vnm, &addr.ip4, vlib_current_process (vm),
2590 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002591
Neale Ranns37029302018-08-10 05:30:06 -07002592 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, &addr, flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002593
2594 vlib_process_wait_for_event (vm);
2595 event_type = vlib_process_get_events (vm, &event_data);
2596 vec_reset_length (event_data);
2597 if (event_type != 1)
2598 clib_warning ("event type %d unexpected", event_type);
2599 }
2600 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002601 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002602
2603 increment_ip4_and_mac_address (&addr);
2604 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002605 }
2606 else
2607 {
2608 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002609 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002610 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002611
Ed Warnickecb9cada2015-12-08 15:45:58 -07002612 return 0;
2613}
2614
Neale Rannsb80c5362016-10-08 13:03:40 +01002615/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002616/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002617 * Add or delete IPv4 ARP cache entries.
2618 *
2619 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2620 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2621 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002622 *
2623 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002624 * @parblock
2625 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2626 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2627 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2628 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2629 *
2630 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2631 * table:
2632 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2633 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2634 *
2635 * Add or delete IPv4 static ARP cache entries as follows:
2636 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2637 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2638 *
2639 * For testing / debugging purposes, the 'set ip arp' command can add or
2640 * delete multiple entries. Supply the 'count N' parameter:
2641 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2642 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002643 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002644VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002645 .path = "set ip arp",
2646 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002647 "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 -07002648 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002649};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002650/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002651
2652static clib_error_t *
2653set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002654 unformat_input_t *
2655 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002656{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002657 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002658 u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002659 int enable = 0;
Neale Ranns57e53bb2019-05-29 13:58:43 +00002660
2661 sw_if_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002662
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002663 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002664 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002665 if (unformat (input, "%U", unformat_vnet_sw_interface,
2666 vnm, &sw_if_index))
Neale Ranns57e53bb2019-05-29 13:58:43 +00002667 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002668 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002669 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002670 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002671 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002672 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002673 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002674 }
2675
Neale Ranns57e53bb2019-05-29 13:58:43 +00002676 if (~0 == sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002677 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002678 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002679
Neale Ranns57e53bb2019-05-29 13:58:43 +00002680 vnet_proxy_arp_enable_disable (vnm, sw_if_index, enable);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002681
Ed Warnickecb9cada2015-12-08 15:45:58 -07002682 return 0;
2683}
2684
Neale Rannsb80c5362016-10-08 13:03:40 +01002685/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002686/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002687 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2688 * requests for the indicated address range. Multiple proxy-arp
2689 * ranges may be provisioned.
2690 *
2691 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2692 * Also, the underlying implementation has not been performance-tuned.
2693 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002694 *
2695 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002696 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002697 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2698 * Append 'del' to delete a range of proxy ARP addresses:
2699 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2700 * You must then specifically enable proxy arp on individual interfaces:
2701 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2702 * To disable proxy arp on an individual interface:
2703 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002704 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002705VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002706 .path = "set interface proxy-arp",
2707 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002708 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002709 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002710};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002711/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002712
2713
2714/*
John Lo1edfba92016-08-27 01:11:57 -04002715 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2716 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002717 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002718typedef enum
2719{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002720 ARP_TERM_NEXT_L2_OUTPUT,
2721 ARP_TERM_NEXT_DROP,
2722 ARP_TERM_N_NEXT,
2723} arp_term_next_t;
2724
2725u32 arp_term_next_node_index[32];
2726
2727static uword
2728arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002729 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002730{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002731 l2input_main_t *l2im = &l2input_main;
2732 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002733 u32 n_replies_sent = 0;
2734 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002735 l2_bridge_domain_t *last_bd_config = 0;
2736 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002737
2738 from = vlib_frame_vector_args (frame);
2739 n_left_from = frame->n_vectors;
2740 next_index = node->cached_next_index;
2741
2742 while (n_left_from > 0)
2743 {
2744 u32 n_left_to_next;
2745
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002746 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002747
2748 while (n_left_from > 0 && n_left_to_next > 0)
2749 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002750 vlib_buffer_t *p0;
2751 ethernet_header_t *eth0;
2752 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002753 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002754 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002755 u32 pi0, error0, next0, sw_if_index0;
2756 u16 ethertype0;
2757 u16 bd_index0;
2758 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002759 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002760
2761 pi0 = from[0];
2762 to_next[0] = pi0;
2763 from += 1;
2764 to_next += 1;
2765 n_left_from -= 1;
2766 n_left_to_next -= 1;
2767
2768 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002769 // Terminate only local (SHG == 0) ARP
2770 if (vnet_buffer (p0)->l2.shg != 0)
2771 goto next_l2_feature;
2772
Ed Warnickecb9cada2015-12-08 15:45:58 -07002773 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002774 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2775 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002776 arp0 = (ethernet_arp_header_t *) l3h0;
2777
John Lo0e6f4d62018-07-13 17:29:58 -04002778 if (ethertype0 != ETHERNET_TYPE_ARP)
John Lo1edfba92016-08-27 01:11:57 -04002779 goto check_ip6_nd;
2780
John Lo0e6f4d62018-07-13 17:29:58 -04002781 if ((arp0->opcode !=
2782 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request)) &&
2783 (arp0->opcode !=
2784 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply)))
2785 goto check_ip6_nd;
2786
2787 /* Must be ARP request/reply packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002788 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2789 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2790 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002791 u8 *t0 = vlib_add_trace (vm, node, p0,
2792 sizeof (ethernet_arp_input_trace_t));
Dave Barach178cf492018-11-13 16:34:13 -05002793 clib_memcpy_fast (t0, l3h0,
2794 sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002795 }
2796
John Lo0e6f4d62018-07-13 17:29:58 -04002797 error0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002798 error0 =
2799 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002800 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2801 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002802 error0 =
2803 (arp0->l3_type !=
2804 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2805 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002806
2807 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2808
2809 if (error0)
2810 goto drop;
2811
John Lo1edfba92016-08-27 01:11:57 -04002812 /* Trash ARP packets whose ARP-level source addresses do not
John Lo0131b6c2018-06-25 12:35:21 -04002813 match, or if requester address is mcast */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002814 if (PREDICT_FALSE
Neale Ranns37029302018-08-10 05:30:06 -07002815 (!ethernet_mac_address_equal (eth0->src_address,
2816 arp0->ip4_over_ethernet[0].
2817 mac.bytes))
2818 || ethernet_address_cast (arp0->ip4_over_ethernet[0].mac.bytes))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002819 {
John Lo0e6f4d62018-07-13 17:29:58 -04002820 /* VRRP virtual MAC may be different to SMAC in ARP reply */
Neale Ranns37029302018-08-10 05:30:06 -07002821 if (!ethernet_mac_address_equal
2822 (arp0->ip4_over_ethernet[0].mac.bytes, vrrp_prefix))
John Lo0e6f4d62018-07-13 17:29:58 -04002823 {
2824 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2825 goto drop;
2826 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002827 }
John Lo0131b6c2018-06-25 12:35:21 -04002828 if (PREDICT_FALSE
2829 (ip4_address_is_multicast (&arp0->ip4_over_ethernet[0].ip4)))
2830 {
2831 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
2832 goto drop;
2833 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002834
John Lo1edfba92016-08-27 01:11:57 -04002835 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002836 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002837 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Bari20197482017-09-13 12:29:08 +03002838 if (am->wc_ip4_arp_publisher_node != (uword) ~ 0)
2839 vnet_arp_wc_publish (sw_if_index0, &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002840 }
2841
John Lo1edfba92016-08-27 01:11:57 -04002842 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002843 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002844 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2845 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2846 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002847 {
2848 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002849 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002850 }
2851 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2852
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002853 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002854 goto next_l2_feature; /* MAC not found */
Neale Rannsd2bb6142019-03-04 14:11:25 -08002855 if (PREDICT_FALSE (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2856 arp0->ip4_over_ethernet[1].ip4.as_u32))
2857 goto next_l2_feature; /* GARP */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002858
John Lo1edfba92016-08-27 01:11:57 -04002859 /* MAC found, send ARP reply -
2860 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002861 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2862 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2863 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Neale Ranns37029302018-08-10 05:30:06 -07002864 mac_address_from_bytes (&arp0->ip4_over_ethernet[0].mac, macp0);
Dave Barach178cf492018-11-13 16:34:13 -05002865 clib_memcpy_fast (eth0->dst_address, eth0->src_address, 6);
2866 clib_memcpy_fast (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002867 n_replies_sent += 1;
2868
John Lo1edfba92016-08-27 01:11:57 -04002869 output_response:
2870 /* For BVI, need to use l2-fwd node to send ARP reply as
2871 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002872 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002873 if (PREDICT_FALSE (cfg0->bvi))
2874 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002875 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002876 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2877 goto next_l2_feature;
2878 }
2879
John Lo1edfba92016-08-27 01:11:57 -04002880 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002881 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2882 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002883 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2884 to_next, n_left_to_next, pi0,
2885 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002886 continue;
2887
John Lo1edfba92016-08-27 01:11:57 -04002888 check_ip6_nd:
2889 /* IP6 ND event notification or solicitation handling to generate
2890 local response instead of flooding */
2891 iph0 = (ip6_header_t *) l3h0;
2892 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2893 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002894 !ip6_address_is_unspecified
2895 (&iph0->src_address)))
2896 {
2897 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002898 if (vnet_ip6_nd_term
2899 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002900 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002901 goto output_response;
2902 }
2903
Ed Warnickecb9cada2015-12-08 15:45:58 -07002904 next_l2_feature:
2905 {
John Lobeb0b2e2017-07-22 00:21:36 -04002906 next0 = vnet_l2_feature_next (p0, arp_term_next_node_index,
2907 L2INPUT_FEAT_ARP_TERM);
Neale Rannsb80c5362016-10-08 13:03:40 +01002908 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2909 to_next, n_left_to_next,
2910 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002911 continue;
2912 }
2913
2914 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002915 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2916 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2917 arp0->ip4_over_ethernet[1].ip4.as_u32))
2918 {
2919 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2920 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002921 next0 = ARP_TERM_NEXT_DROP;
2922 p0->error = node->errors[error0];
2923
Neale Rannsb80c5362016-10-08 13:03:40 +01002924 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2925 to_next, n_left_to_next, pi0,
2926 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002927 }
2928
2929 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2930 }
2931
2932 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002933 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002934 return frame->n_vectors;
2935}
2936
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002937/* *INDENT-OFF* */
2938VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002939 .function = arp_term_l2bd,
2940 .name = "arp-term-l2bd",
2941 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002942 .n_errors = ETHERNET_ARP_N_ERROR,
2943 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002944 .n_next_nodes = ARP_TERM_N_NEXT,
2945 .next_nodes = {
2946 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2947 [ARP_TERM_NEXT_DROP] = "error-drop",
2948 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002949 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002950 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002951};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002952/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002953
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002954clib_error_t *
2955arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002956{
2957 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002958 feat_bitmap_init_next_nodes (vm,
2959 arp_term_l2bd_node.index,
2960 L2INPUT_N_FEAT,
2961 l2input_get_feat_names (),
2962 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002963 return 0;
2964}
2965
2966VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002967
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002968void
2969change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2970{
2971 if (e->sw_if_index == sw_if_index)
2972 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002973 adj_nbr_walk_nh4 (e->sw_if_index,
2974 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002975 }
2976}
2977
2978void
Neale Ranns3be6b282016-12-20 14:24:01 +00002979ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002980{
2981 ethernet_arp_main_t *am = &ethernet_arp_main;
2982 ethernet_arp_ip4_entry_t *e;
Neale Rannsc819fc62018-02-16 02:44:05 -08002983 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002984
2985 /* *INDENT-OFF* */
2986 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002987 ({
2988 change_arp_mac (sw_if_index, e);
2989 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002990 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08002991
2992 ai = adj_glean_get (FIB_PROTOCOL_IP4, sw_if_index);
2993
2994 if (ADJ_INDEX_INVALID != ai)
2995 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002996}
2997
John Lo7e9743a2017-09-23 08:59:58 -04002998void
Steven9f781d82018-06-05 11:09:32 -07002999send_ip4_garp (vlib_main_t * vm, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07003000{
3001 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07003002 ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
Neale Ranns25b04942018-04-04 09:34:50 -07003003
Steven9f781d82018-06-05 11:09:32 -07003004 send_ip4_garp_w_addr (vm, ip4_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07003005}
3006
3007void
3008send_ip4_garp_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07003009 const ip4_address_t * ip4_addr, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04003010{
3011 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07003012 vnet_main_t *vnm = vnet_get_main ();
3013 u8 *rewrite, rewrite_len;
3014 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
John Lo8b81cb42017-06-26 01:40:20 -04003015
3016 if (ip4_addr)
3017 {
3018 clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
3019 format_ip4_address, ip4_addr, sw_if_index);
3020
3021 /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
3022 where the interface IP/MAC pair is used for both source and request
3023 MAC/IP pairs in the request */
3024 u32 bi = 0;
3025 ethernet_arp_header_t *h = vlib_packet_template_get_packet
3026 (vm, &i4m->ip4_arp_request_packet_template, &bi);
John Lo084606b2018-06-19 15:27:48 -04003027
3028 if (!h)
3029 return;
3030
Neale Ranns37029302018-08-10 05:30:06 -07003031 mac_address_from_bytes (&h->ip4_over_ethernet[0].mac, hi->hw_address);
3032 mac_address_from_bytes (&h->ip4_over_ethernet[1].mac, hi->hw_address);
John Lo8b81cb42017-06-26 01:40:20 -04003033 h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
3034 h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
3035
3036 /* Setup MAC header with ARP Etype and broadcast DMAC */
3037 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07003038 rewrite =
3039 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_ARP,
3040 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST);
3041 rewrite_len = vec_len (rewrite);
3042 vlib_buffer_advance (b, -rewrite_len);
John Lo8b81cb42017-06-26 01:40:20 -04003043 ethernet_header_t *e = vlib_buffer_get_current (b);
Dave Barach178cf492018-11-13 16:34:13 -05003044 clib_memcpy_fast (e->dst_address, rewrite, rewrite_len);
Steven9f781d82018-06-05 11:09:32 -07003045 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04003046
3047 /* Send GARP packet out the specified interface */
3048 vnet_buffer (b)->sw_if_index[VLIB_RX] =
3049 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
3050 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
3051 u32 *to_next = vlib_frame_vector_args (f);
3052 to_next[0] = bi;
3053 f->n_vectors = 1;
3054 vlib_put_frame_to_node (vm, hi->output_node_index, f);
3055 }
3056}
3057
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07003058/*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07003059 * Remove any arp entries associated with the specified interface
Pavel Kotucek18934e62018-11-14 09:24:16 +01003060 */
Neale Ranns8f215b42019-02-22 12:40:53 +00003061static clib_error_t *
Pavel Kotucek18934e62018-11-14 09:24:16 +01003062vnet_arp_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
3063{
3064 if (!is_add && sw_if_index != ~0)
3065 {
3066 ethernet_arp_main_t *am = &ethernet_arp_main;
3067 ethernet_arp_ip4_entry_t *e;
3068 /* *INDENT-OFF* */
3069 pool_foreach (e, am->ip4_entry_pool, ({
3070 if (e->sw_if_index != sw_if_index)
3071 continue;
Neale Ranns37029302018-08-10 05:30:06 -07003072 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
3073 .sw_if_index = sw_if_index,
3074 .ip4 = e->ip4_address,
3075 };
Pavel Kotucek18934e62018-11-14 09:24:16 +01003076 vnet_arp_unset_ip4_over_ethernet_internal (vnm, &args);
3077 }));
3078 /* *INDENT-ON* */
3079 }
Neale Ranns8f215b42019-02-22 12:40:53 +00003080
3081 return (NULL);
Pavel Kotucek18934e62018-11-14 09:24:16 +01003082}
3083
3084VNET_SW_INTERFACE_ADD_DEL_FUNCTION (vnet_arp_delete_sw_interface);
3085
3086/*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07003087 * fd.io coding-style-patch-verification: ON
3088 *
3089 * Local Variables:
3090 * eval: (c-set-style "gnu")
3091 * End:
3092 */