blob: edf7656f1cb85cd8f62c4ba51c1bf30b00f640aa [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;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700268 if (!e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100269 return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700270 "Flags", "Ethernet", "Interface");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100272 si = vnet_get_sw_interface (vnm, e->sw_if_index);
Damjan Marion102ec522016-03-29 13:18:17 +0200273
Benoît Ganneadbaf7b2019-07-10 15:40:33 +0200274 return format (s, "%=12U%=16U%=6U%=20U%U",
275 format_vlib_time, vnm->vlib_main, e->time_last_updated,
276 format_ip4_address, &e->ip4_address,
277 format_ip_neighbor_flags, e->flags,
278 format_mac_address_t, &e->mac,
279 format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280}
281
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700282typedef struct
283{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 u8 packet_data[64];
285} ethernet_arp_input_trace_t;
286
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700287static u8 *
288format_ethernet_arp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289{
290 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
291 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700292 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
294 s = format (s, "%U",
295 format_ethernet_arp_header,
296 t->packet_data, sizeof (t->packet_data));
297
298 return s;
299}
300
John Lo1edfba92016-08-27 01:11:57 -0400301static u8 *
302format_arp_term_input_trace (u8 * s, va_list * va)
303{
304 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
305 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
306 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
307
308 /* arp-term trace data saved is either arp or ip6/icmp6 packet:
309 - for arp, the 1st 16-bit field is hw type of value of 0x0001.
310 - for ip6, the first nibble has value of 6. */
311 s = format (s, "%U", t->packet_data[0] == 0 ?
312 format_ethernet_arp_header : format_ip6_header,
313 t->packet_data, sizeof (t->packet_data));
314
315 return s;
316}
317
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100318static void
Neale Rannsb80c5362016-10-08 13:03:40 +0100319arp_nbr_probe (ip_adjacency_t * adj)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320{
Neale Rannsb80c5362016-10-08 13:03:40 +0100321 vnet_main_t *vnm = vnet_get_main ();
322 ip4_main_t *im = &ip4_main;
323 ip_interface_address_t *ia;
324 ethernet_arp_header_t *h;
325 vnet_hw_interface_t *hi;
326 vnet_sw_interface_t *si;
327 ip4_address_t *src;
328 vlib_buffer_t *b;
329 vlib_main_t *vm;
330 u32 bi = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Neale Rannsb80c5362016-10-08 13:03:40 +0100332 vm = vlib_get_main ();
John Locbec1a12016-07-05 18:34:40 -0400333
Neale Rannsb80c5362016-10-08 13:03:40 +0100334 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
335
336 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100338 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100340
341 src =
342 ip4_interface_address_matching_destination (im,
343 &adj->sub_type.nbr.next_hop.
344 ip4,
345 adj->rewrite_header.
346 sw_if_index, &ia);
347 if (!src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100349 return;
350 }
351
352 h =
353 vlib_packet_template_get_packet (vm, &im->ip4_arp_request_packet_template,
354 &bi);
John Lo084606b2018-06-19 15:27:48 -0400355 if (!h)
356 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100357
358 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
359
Neale Ranns37029302018-08-10 05:30:06 -0700360 mac_address_from_bytes (&h->ip4_over_ethernet[0].mac, hi->hw_address);
Neale Rannsb80c5362016-10-08 13:03:40 +0100361
362 h->ip4_over_ethernet[0].ip4 = src[0];
363 h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
364
365 b = vlib_get_buffer (vm, bi);
366 vnet_buffer (b)->sw_if_index[VLIB_RX] =
367 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
368
369 /* Add encapsulation string for software interface (e.g. ethernet header). */
370 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
371 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
372
373 {
374 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
375 u32 *to_next = vlib_frame_vector_args (f);
376 to_next[0] = bi;
377 f->n_vectors = 1;
378 vlib_put_frame_to_node (vm, hi->output_node_index, f);
379 }
380}
381
382static void
383arp_mk_complete (adj_index_t ai, ethernet_arp_ip4_entry_t * e)
384{
385 adj_nbr_update_rewrite
386 (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
387 ethernet_build_rewrite (vnet_get_main (),
388 e->sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700389 adj_get_link_type (ai), &e->mac));
Neale Rannsb80c5362016-10-08 13:03:40 +0100390}
391
392static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000393arp_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100394{
Neale Ranns19c68d22016-12-07 15:38:14 +0000395 ip_adjacency_t *adj = adj_get (ai);
396
Neale Rannsb80c5362016-10-08 13:03:40 +0100397 adj_nbr_update_rewrite
398 (ai,
399 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
400 ethernet_build_rewrite (vnet_get_main (),
Neale Ranns19c68d22016-12-07 15:38:14 +0000401 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100402 VNET_LINK_ARP,
403 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
404}
405
406static ethernet_arp_ip4_entry_t *
407arp_entry_find (ethernet_arp_interface_t * eai, const ip4_address_t * addr)
408{
409 ethernet_arp_main_t *am = &ethernet_arp_main;
410 ethernet_arp_ip4_entry_t *e = NULL;
411 uword *p;
412
413 if (NULL != eai->arp_entries)
414 {
415 p = hash_get (eai->arp_entries, addr->as_u32);
416 if (!p)
417 return (NULL);
418
419 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
420 }
421
422 return (e);
423}
424
425static adj_walk_rc_t
426arp_mk_complete_walk (adj_index_t ai, void *ctx)
427{
428 ethernet_arp_ip4_entry_t *e = ctx;
429
430 arp_mk_complete (ai, e);
431
432 return (ADJ_WALK_RC_CONTINUE);
433}
434
435static adj_walk_rc_t
436arp_mk_incomplete_walk (adj_index_t ai, void *ctx)
437{
Neale Ranns19c68d22016-12-07 15:38:14 +0000438 arp_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100439
440 return (ADJ_WALK_RC_CONTINUE);
441}
442
Neale Ranns57e53bb2019-05-29 13:58:43 +0000443static int
444arp_is_enabled (ethernet_arp_main_t * am, u32 sw_if_index)
445{
446 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
447 return 0;
448
449 return (am->ethernet_arp_by_sw_if_index[sw_if_index].enabled);
450}
451
452static void
453arp_enable (ethernet_arp_main_t * am, u32 sw_if_index)
454{
455 if (arp_is_enabled (am, sw_if_index))
456 return;
457
458 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
459
460 am->ethernet_arp_by_sw_if_index[sw_if_index].enabled = 1;
461
462 vnet_feature_enable_disable ("arp", "arp-reply", sw_if_index, 1, NULL, 0);
463}
464
465static int
466vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
467 vnet_arp_set_ip4_over_ethernet_rpc_args_t
468 * args);
469
470static void
471arp_disable (ethernet_arp_main_t * am, u32 sw_if_index)
472{
473 ethernet_arp_interface_t *eai;
474 ethernet_arp_ip4_entry_t *e;
475 u32 i, *to_delete = 0;
476 hash_pair_t *pair;
477
478 if (!arp_is_enabled (am, sw_if_index))
479 return;
480
481 vnet_feature_enable_disable ("arp", "arp-reply", sw_if_index, 0, NULL, 0);
482
483 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
484
485
486 /* *INDENT-OFF* */
487 hash_foreach_pair (pair, eai->arp_entries,
488 ({
489 e = pool_elt_at_index(am->ip4_entry_pool,
490 pair->value[0]);
491 vec_add1 (to_delete, e - am->ip4_entry_pool);
492 }));
493 /* *INDENT-ON* */
494
495 for (i = 0; i < vec_len (to_delete); i++)
496 {
497 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
498
499 vnet_arp_set_ip4_over_ethernet_rpc_args_t delme = {
500 .ip4.as_u32 = e->ip4_address.as_u32,
501 .sw_if_index = e->sw_if_index,
502 .flags = ETHERNET_ARP_ARGS_FLUSH,
503 };
504 mac_address_copy (&delme.mac, &e->mac);
505
506 vnet_arp_flush_ip4_over_ethernet_internal (vnet_get_main (), &delme);
507 }
508
509 vec_free (to_delete);
510
511 eai->enabled = 0;
512}
513
Neale Rannsb80c5362016-10-08 13:03:40 +0100514void
515arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
516{
517 ethernet_arp_main_t *am = &ethernet_arp_main;
518 ethernet_arp_interface_t *arp_int;
519 ethernet_arp_ip4_entry_t *e;
520 ip_adjacency_t *adj;
521
522 adj = adj_get (ai);
523
Neale Ranns57e53bb2019-05-29 13:58:43 +0000524 arp_enable (am, sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100525 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
526 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
527
Neale Ranns32e1c012016-11-22 17:07:28 +0000528 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100529 {
Ole Trøan438f6302018-02-15 21:56:06 +0000530 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800531 adj_glean_update_rewrite (ai);
532 break;
533 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000534 if (NULL != e)
535 {
536 adj_nbr_walk_nh4 (sw_if_index,
537 &e->ip4_address, arp_mk_complete_walk, e);
538 }
539 else
540 {
541 /*
542 * no matching ARP entry.
543 * construct the rewrite required to for an ARP packet, and stick
544 * that in the adj's pipe to smoke.
545 */
546 adj_nbr_update_rewrite
547 (ai,
548 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
549 ethernet_build_rewrite
550 (vnm,
551 sw_if_index,
552 VNET_LINK_ARP,
553 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
554
555 /*
556 * since the FIB has added this adj for a route, it makes sense it
557 * may want to forward traffic sometime soon. Let's send a
558 * speculative ARP. just one. If we were to do periodically that
559 * wouldn't be bad either, but that's more code than i'm prepared to
560 * write at this time for relatively little reward.
561 */
562 arp_nbr_probe (adj);
563 }
564 break;
Neale Ranns1855b8e2018-07-11 10:31:26 -0700565 case IP_LOOKUP_NEXT_BCAST:
566 adj_nbr_update_rewrite (ai,
567 ADJ_NBR_REWRITE_FLAG_COMPLETE,
568 ethernet_build_rewrite
569 (vnm,
570 sw_if_index,
571 VNET_LINK_IP4,
572 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
573 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000574 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700575 {
576 /*
577 * Construct a partial rewrite from the known ethernet mcast dest MAC
578 */
579 u8 *rewrite;
580 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100581
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700582 rewrite = ethernet_build_rewrite (vnm,
583 sw_if_index,
584 adj->ia_link,
585 ethernet_ip4_mcast_dst_addr ());
586 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000587
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700588 /*
589 * Complete the remaining fields of the adj's rewrite to direct the
590 * complete of the rewrite at switch time by copying in the IP
591 * dst address's bytes.
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700592 * Offset is 2 bytes into the MAC destination address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700593 */
Neale Ranns889fe942017-06-01 05:43:19 -0400594 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000595
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700596 break;
597 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000598 case IP_LOOKUP_NEXT_DROP:
599 case IP_LOOKUP_NEXT_PUNT:
600 case IP_LOOKUP_NEXT_LOCAL:
601 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800602 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000603 case IP_LOOKUP_NEXT_MIDCHAIN:
604 case IP_LOOKUP_NEXT_ICMP_ERROR:
605 case IP_LOOKUP_N_NEXT:
606 ASSERT (0);
607 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100608 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609}
610
Neale Ranns15002542017-09-10 04:39:11 -0700611static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700612arp_adj_fib_add (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700613{
614 fib_prefix_t pfx = {
615 .fp_len = 32,
616 .fp_proto = FIB_PROTOCOL_IP4,
617 .fp_addr.ip4 = e->ip4_address,
618 };
619
620 e->fib_entry_index =
621 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
622 FIB_ENTRY_FLAG_ATTACHED,
623 DPO_PROTO_IP4, &pfx.fp_addr,
624 e->sw_if_index, ~0, 1, NULL,
625 FIB_ROUTE_PATH_FLAG_NONE);
626 fib_table_lock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
627}
628
Neale Rannscf7efe02018-09-24 08:34:11 +0000629static void
John Lo4fed5b12018-05-22 03:35:06 -0400630arp_adj_fib_remove (ethernet_arp_ip4_entry_t * e, u32 fib_index)
631{
632 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
633 {
634 fib_prefix_t pfx = {
635 .fp_len = 32,
636 .fp_proto = FIB_PROTOCOL_IP4,
637 .fp_addr.ip4 = e->ip4_address,
638 };
639 u32 fib_index;
640
641 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
642
643 fib_table_entry_path_remove (fib_index, &pfx,
644 FIB_SOURCE_ADJ,
645 DPO_PROTO_IP4,
646 &pfx.fp_addr,
647 e->sw_if_index, ~0, 1,
648 FIB_ROUTE_PATH_FLAG_NONE);
649 fib_table_unlock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
650 }
651}
652
653static ethernet_arp_ip4_entry_t *
654force_reuse_arp_entry (void)
655{
656 ethernet_arp_ip4_entry_t *e;
657 ethernet_arp_main_t *am = &ethernet_arp_main;
658 u32 count = 0;
659 u32 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
660 if (index == ~0) /* Try again from elt 0 */
661 index = pool_next_index (am->ip4_entry_pool, index);
662
663 /* Find a non-static random entry to free up for reuse */
664 do
665 {
666 if ((count++ == 100) || (index == ~0))
667 return NULL; /* give up after 100 entries */
668 e = pool_elt_at_index (am->ip4_entry_pool, index);
669 am->arp_delete_rotor = index;
670 index = pool_next_index (am->ip4_entry_pool, index);
671 }
Neale Ranns37029302018-08-10 05:30:06 -0700672 while (e->flags & IP_NEIGHBOR_FLAG_STATIC);
John Lo4fed5b12018-05-22 03:35:06 -0400673
674 /* Remove ARP entry from its interface and update fib */
675 hash_unset
676 (am->ethernet_arp_by_sw_if_index[e->sw_if_index].arp_entries,
677 e->ip4_address.as_u32);
678 arp_adj_fib_remove
679 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
680 adj_nbr_walk_nh4 (e->sw_if_index,
Neale Rannscf7efe02018-09-24 08:34:11 +0000681 &e->ip4_address, arp_mk_incomplete_walk, e);
John Lo4fed5b12018-05-22 03:35:06 -0400682 return e;
683}
684
Eyal Bari20197482017-09-13 12:29:08 +0300685static int
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100687 vnet_arp_set_ip4_over_ethernet_rpc_args_t
688 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700690 ethernet_arp_ip4_entry_t *e = 0;
691 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700692 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700693 int make_new_arp_cache_entry = 1;
694 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700695 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100696 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100697 u32 sw_if_index = args->sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700698
Neale Ranns57e53bb2019-05-29 13:58:43 +0000699 arp_enable (am, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100701 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100703 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 {
Neale Ranns37029302018-08-10 05:30:06 -0700705 p = hash_get (arp_int->arp_entries, args->ip4.as_u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100706 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700707 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100708 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
709
710 /* Refuse to over-write static arp. */
Neale Ranns37029302018-08-10 05:30:06 -0700711 if (!(args->nbr_flags & IP_NEIGHBOR_FLAG_STATIC) &&
712 (e->flags & IP_NEIGHBOR_FLAG_STATIC))
John Lo0e6f4d62018-07-13 17:29:58 -0400713 {
714 /* if MAC address match, still check to send event */
Neale Ranns37029302018-08-10 05:30:06 -0700715 if (mac_address_equal (&e->mac, &args->mac))
John Lo0e6f4d62018-07-13 17:29:58 -0400716 goto check_customers;
717 return -2;
718 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100719 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700720 }
Damjan Marion102ec522016-03-29 13:18:17 +0200721 }
722
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 if (make_new_arp_cache_entry)
724 {
John Lo4fed5b12018-05-22 03:35:06 -0400725 if (am->limit_arp_cache_size &&
726 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
727 {
728 e = force_reuse_arp_entry ();
729 if (NULL == e)
730 return -2;
731 }
732 else
733 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100734
735 if (NULL == arp_int->arp_entries)
John Lo4fed5b12018-05-22 03:35:06 -0400736 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100737
Neale Ranns37029302018-08-10 05:30:06 -0700738 hash_set (arp_int->arp_entries, args->ip4.as_u32,
739 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100740
741 e->sw_if_index = sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -0700742 e->ip4_address = args->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700743 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Ranns37029302018-08-10 05:30:06 -0700744 mac_address_copy (&e->mac, &args->mac);
Neale Rannsb80c5362016-10-08 13:03:40 +0100745
Neale Ranns37029302018-08-10 05:30:06 -0700746 if (!(args->nbr_flags & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800747 {
Neale Ranns15002542017-09-10 04:39:11 -0700748 arp_adj_fib_add (e,
749 ip4_fib_table_get_index_for_sw_if_index
750 (e->sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700751 }
752 else
753 {
Neale Ranns37029302018-08-10 05:30:06 -0700754 e->flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800755 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100757 else
758 {
759 /*
760 * prevent a DoS attack from the data-plane that
761 * spams us with no-op updates to the MAC address
762 */
Neale Ranns37029302018-08-10 05:30:06 -0700763 if (mac_address_equal (&e->mac, &args->mac))
John Lo7f358b32018-04-28 01:19:24 -0400764 {
765 e->time_last_updated = vlib_time_now (vm);
766 goto check_customers;
767 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100768
John Lo0e6f4d62018-07-13 17:29:58 -0400769 /* Update ethernet address. */
Neale Ranns37029302018-08-10 05:30:06 -0700770 mac_address_copy (&e->mac, &args->mac);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100771 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772
John Lo0e6f4d62018-07-13 17:29:58 -0400773 /* Update time stamp and flags. */
John Lo7f358b32018-04-28 01:19:24 -0400774 e->time_last_updated = vlib_time_now (vm);
Neale Ranns37029302018-08-10 05:30:06 -0700775 if (args->nbr_flags & IP_NEIGHBOR_FLAG_STATIC)
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500776 {
Neale Ranns37029302018-08-10 05:30:06 -0700777 e->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
778 e->flags |= IP_NEIGHBOR_FLAG_STATIC;
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500779 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100780 else
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500781 {
Neale Ranns37029302018-08-10 05:30:06 -0700782 e->flags &= ~IP_NEIGHBOR_FLAG_STATIC;
783 e->flags |= IP_NEIGHBOR_FLAG_DYNAMIC;
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500784 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100785
Neale Rannsb80c5362016-10-08 13:03:40 +0100786 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
Dave Barach59b25652017-09-10 15:04:27 -0400788check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 /* Customer(s) waiting for this address to be resolved? */
Neale Ranns37029302018-08-10 05:30:06 -0700790 p = hash_get (am->pending_resolutions_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 if (p)
792 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100793 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794 next_index = p[0];
795
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700796 while (next_index != (u32) ~ 0)
797 {
798 pr = pool_elt_at_index (am->pending_resolutions, next_index);
799 vlib_process_signal_event (vm, pr->node_index,
800 pr->type_opaque, pr->data);
801 next_index = pr->next_index;
802 pool_put (am->pending_resolutions, pr);
803 }
804
Neale Ranns37029302018-08-10 05:30:06 -0700805 hash_unset (am->pending_resolutions_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806 }
807
808 /* Customer(s) requesting ARP event for this address? */
Neale Ranns37029302018-08-10 05:30:06 -0700809 p = hash_get (am->mac_changes_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 if (p)
811 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100812 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813 next_index = p[0];
814
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700815 while (next_index != (u32) ~ 0)
816 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700817 int rv = 1;
818 mc = pool_elt_at_index (am->mac_changes, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700820 /* Call the user's data callback, return 1 to suppress dup events */
Neale Ranns37029302018-08-10 05:30:06 -0700821 if (mc->data_callback)
822 rv = (mc->data_callback) (mc->data, &args->mac, sw_if_index, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700823
Damjan Marion607de1a2016-08-16 22:53:54 +0200824 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700825 * Signal the resolver process, as long as the user
826 * says they want to be notified
827 */
828 if (rv == 0)
829 vlib_process_signal_event (vm, mc->node_index,
830 mc->type_opaque, mc->data);
831 next_index = mc->next_index;
832 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 }
834
835 return 0;
836}
837
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700838void
839vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
840 void *address_arg,
841 uword node_index,
842 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700844 ethernet_arp_main_t *am = &ethernet_arp_main;
845 ip4_address_t *address = address_arg;
846 uword *p;
847 pending_resolution_t *pr;
848
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 pool_get (am->pending_resolutions, pr);
850
851 pr->next_index = ~0;
852 pr->node_index = node_index;
853 pr->type_opaque = type_opaque;
854 pr->data = data;
855 pr->data_callback = 0;
856
857 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
858 if (p)
859 {
860 /* Insert new resolution at the head of the list */
861 pr->next_index = p[0];
862 hash_unset (am->pending_resolutions_by_address, address->as_u32);
863 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700864
865 hash_set (am->pending_resolutions_by_address, address->as_u32,
866 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867}
868
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700869int
870vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
Neale Ranns37029302018-08-10 05:30:06 -0700871 arp_change_event_cb_t data_callback,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700872 u32 pid,
873 void *address_arg,
874 uword node_index,
875 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700877 ethernet_arp_main_t *am = &ethernet_arp_main;
878 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700879
Eyal Bari8db1de82017-03-31 02:15:17 +0300880 /* Try to find an existing entry */
881 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
882 u32 *p = first;
883 pending_resolution_t *mc;
884 while (p && *p != ~0)
885 {
886 mc = pool_elt_at_index (am->mac_changes, *p);
887 if (mc->node_index == node_index && mc->type_opaque == type_opaque
888 && mc->pid == pid)
889 break;
890 p = &mc->next_index;
891 }
892
893 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894 if (is_add)
895 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300896 if (found)
897 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
898
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899 pool_get (am->mac_changes, mc);
Neale Ranns37029302018-08-10 05:30:06 -0700900 /* *INDENT-OFF* */
Eyal Bari8db1de82017-03-31 02:15:17 +0300901 *mc = (pending_resolution_t)
902 {
Neale Ranns37029302018-08-10 05:30:06 -0700903 .next_index = ~0,
904 .node_index = node_index,
905 .type_opaque = type_opaque,
906 .data = data,
907 .data_callback = data_callback,
908 .pid = pid,
909 };
910 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911
Eyal Bari8db1de82017-03-31 02:15:17 +0300912 /* Insert new resolution at the end of the list */
913 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300915 p[0] = new_idx;
916 else
917 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 }
919 else
920 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300921 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700922 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923
Eyal Bari8db1de82017-03-31 02:15:17 +0300924 /* Clients may need to clean up pool entries, too */
Neale Ranns37029302018-08-10 05:30:06 -0700925 if (data_callback)
926 /* no new mac addrs */
927 (data_callback) (mc->data, NULL, ~0, NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
Eyal Bari8db1de82017-03-31 02:15:17 +0300929 /* Remove the entry from the list and delete the entry */
930 *p = mc->next_index;
931 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700932
Eyal Bari8db1de82017-03-31 02:15:17 +0300933 /* Remove from hash if we deleted the last entry */
934 if (*p == ~0 && p == first)
935 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300937 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938}
939
940/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700941typedef enum
942{
Neale Ranns57e53bb2019-05-29 13:58:43 +0000943 ARP_REPLY_NEXT_DROP,
944 ARP_REPLY_NEXT_REPLY_TX,
945 ARP_REPLY_N_NEXT,
946} arp_reply_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947
948#define foreach_ethernet_arp_error \
949 _ (replies_sent, "ARP replies sent") \
950 _ (l2_type_not_ethernet, "L2 type not ethernet") \
951 _ (l3_type_not_ip4, "L3 type not IP4") \
952 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
953 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
Neale Ranns59ae61e2018-06-07 18:09:49 -0700954 _ (l3_dst_address_unset, "IP4 destination address is unset") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
956 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
957 _ (replies_received, "ARP replies received") \
958 _ (opcode_not_request, "ARP opcode not request") \
959 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
960 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100962 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800963 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Neale Ranns7425f922019-01-23 00:36:16 -0800964 _ (unnumbered_mismatch, "RX interface is unnumbered to different subnet") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700966typedef enum
967{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
969 foreach_ethernet_arp_error
970#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700971 ETHERNET_ARP_N_ERROR,
Neale Ranns57e53bb2019-05-29 13:58:43 +0000972} ethernet_arp_reply_error_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973
Neale Ranns436d06b2016-11-30 07:41:53 -0800974static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700975arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700976 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700978 vnet_main_t *vnm = vnet_get_main ();
979 vnet_interface_main_t *vim = &vnm->interface_main;
980 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700982 /* verify that the input interface is unnumbered to the connected.
983 * the connected interface is the interface on which the subnet is
984 * configured */
985 si = &vim->sw_interfaces[input_sw_if_index];
986
987 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
988 (si->unnumbered_sw_if_index == conn_sw_if_index)))
989 {
990 /* the input interface is not unnumbered to the interface on which
991 * the sub-net is configured that covers the ARP request.
992 * So this is not the case for unnumbered.. */
993 return 0;
994 }
995
Neale Ranns436d06b2016-11-30 07:41:53 -0800996 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997}
998
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700999static u32
1000arp_learn (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00001001 ethernet_arp_main_t * am, u32 sw_if_index,
1002 const ethernet_arp_ip4_over_ethernet_address_t * addr)
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001003{
Neale Ranns37029302018-08-10 05:30:06 -07001004 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001005 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
1006}
1007
Neale Ranns57e53bb2019-05-29 13:58:43 +00001008typedef enum arp_input_next_t_
1009{
1010 ARP_INPUT_NEXT_DROP,
Neale Rannsfe2fff32019-06-26 08:22:01 -07001011 ARP_INPUT_NEXT_DISABLED,
Neale Ranns57e53bb2019-05-29 13:58:43 +00001012 ARP_INPUT_N_NEXT,
1013} arp_input_next_t;
1014
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001016arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017{
Neale Ranns57e53bb2019-05-29 13:58:43 +00001018 u32 n_left_from, next_index, *from, *to_next, n_left_to_next;
1019 ethernet_arp_main_t *am = &ethernet_arp_main;
1020
1021 from = vlib_frame_vector_args (frame);
1022 n_left_from = frame->n_vectors;
1023 next_index = node->cached_next_index;
1024
1025 if (node->flags & VLIB_NODE_FLAG_TRACE)
1026 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1027 /* stride */ 1,
1028 sizeof (ethernet_arp_input_trace_t));
1029
1030 while (n_left_from > 0)
1031 {
1032 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1033
1034 while (n_left_from > 0 && n_left_to_next > 0)
1035 {
1036 const ethernet_arp_header_t *arp0;
1037 arp_input_next_t next0;
1038 vlib_buffer_t *p0;
1039 u32 pi0, error0;
1040
1041 pi0 = to_next[0] = from[0];
1042 from += 1;
1043 to_next += 1;
1044 n_left_from -= 1;
1045 n_left_to_next -= 1;
1046
1047 p0 = vlib_get_buffer (vm, pi0);
1048 arp0 = vlib_buffer_get_current (p0);
1049
1050 error0 = ETHERNET_ARP_ERROR_replies_sent;
1051 next0 = ARP_INPUT_NEXT_DROP;
1052
1053 error0 =
1054 (arp0->l2_type !=
1055 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
1056 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
1057 error0 =
1058 (arp0->l3_type !=
1059 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
1060 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
1061 error0 =
1062 (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ?
1063 ETHERNET_ARP_ERROR_l3_dst_address_unset : error0);
1064
1065 if (ETHERNET_ARP_ERROR_replies_sent == error0)
Neale Rannsfe2fff32019-06-26 08:22:01 -07001066 {
1067 next0 = ARP_INPUT_NEXT_DISABLED;
1068 vnet_feature_arc_start (am->feature_arc_index,
1069 vnet_buffer (p0)->sw_if_index[VLIB_RX],
1070 &next0, p0);
1071 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001072 else
1073 p0->error = node->errors[error0];
1074
1075 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1076 n_left_to_next, pi0, next0);
1077 }
1078
1079 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1080 }
1081
1082 return frame->n_vectors;
1083}
1084
Neale Rannsfe2fff32019-06-26 08:22:01 -07001085typedef enum arp_disabled_next_t_
1086{
1087 ARP_DISABLED_NEXT_DROP,
1088 ARP_DISABLED_N_NEXT,
1089} arp_disabled_next_t;
1090
1091#define foreach_arp_disabled_error \
1092 _ (DISABLED, "ARP Disabled on this interface") \
1093
1094typedef enum
1095{
1096#define _(sym,string) ARP_DISABLED_ERROR_##sym,
1097 foreach_arp_disabled_error
1098#undef _
1099 ARP_DISABLED_N_ERROR,
1100} arp_disabled_error_t;
1101
1102static char *arp_disabled_error_strings[] = {
1103#define _(sym,string) string,
1104 foreach_arp_disabled_error
1105#undef _
1106};
1107
1108static uword
1109arp_disabled (vlib_main_t * vm,
1110 vlib_node_runtime_t * node, vlib_frame_t * frame)
1111{
1112 u32 n_left_from, next_index, *from, *to_next, n_left_to_next;
1113
1114 from = vlib_frame_vector_args (frame);
1115 n_left_from = frame->n_vectors;
1116 next_index = node->cached_next_index;
1117
1118 if (node->flags & VLIB_NODE_FLAG_TRACE)
1119 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1120 /* stride */ 1,
1121 sizeof (ethernet_arp_input_trace_t));
1122
1123 while (n_left_from > 0)
1124 {
1125 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1126
1127 while (n_left_from > 0 && n_left_to_next > 0)
1128 {
1129 arp_disabled_next_t next0 = ARP_DISABLED_NEXT_DROP;
1130 vlib_buffer_t *p0;
1131 u32 pi0, error0;
1132
1133 next0 = ARP_DISABLED_NEXT_DROP;
1134 error0 = ARP_DISABLED_ERROR_DISABLED;
1135
1136 pi0 = to_next[0] = from[0];
1137 from += 1;
1138 to_next += 1;
1139 n_left_from -= 1;
1140 n_left_to_next -= 1;
1141
1142 p0 = vlib_get_buffer (vm, pi0);
1143 p0->error = node->errors[error0];
1144
1145 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1146 n_left_to_next, pi0, next0);
1147 }
1148
1149 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1150 }
1151
1152 return frame->n_vectors;
1153}
1154
Neale Ranns57e53bb2019-05-29 13:58:43 +00001155static_always_inline u32
1156arp_mk_reply (vnet_main_t * vnm,
1157 vlib_buffer_t * p0,
1158 u32 sw_if_index0,
1159 const ip4_address_t * if_addr0,
1160 ethernet_arp_header_t * arp0, ethernet_header_t * eth_rx)
1161{
1162 vnet_hw_interface_t *hw_if0;
1163 u8 *rewrite0, rewrite0_len;
1164 ethernet_header_t *eth_tx;
1165 u32 next0;
1166
1167 /* Send a reply.
1168 An adjacency to the sender is not always present,
1169 so we use the interface to build us a rewrite string
1170 which will contain all the necessary tags. */
1171 rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1172 VNET_LINK_ARP, eth_rx->src_address);
1173 rewrite0_len = vec_len (rewrite0);
1174
1175 /* Figure out how much to rewind current data from adjacency. */
1176 vlib_buffer_advance (p0, -rewrite0_len);
1177 eth_tx = vlib_buffer_get_current (p0);
1178
1179 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1180 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1181
1182 /* Send reply back through input interface */
1183 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1184 next0 = ARP_REPLY_NEXT_REPLY_TX;
1185
1186 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1187
1188 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1189
1190 mac_address_from_bytes (&arp0->ip4_over_ethernet[0].mac,
1191 hw_if0->hw_address);
1192 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1193 if_addr0->data_u32;
1194
1195 /* Hardware must be ethernet-like. */
1196 ASSERT (vec_len (hw_if0->hw_address) == 6);
1197
1198 /* the rx nd tx ethernet headers wil overlap in the case
1199 * when we received a tagged VLAN=0 packet, but we are sending
1200 * back untagged */
1201 clib_memcpy_fast (eth_tx, rewrite0, vec_len (rewrite0));
1202 vec_free (rewrite0);
1203
1204 return (next0);
1205}
1206
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001207enum arp_dst_fib_type
1208{
1209 ARP_DST_FIB_NONE,
1210 ARP_DST_FIB_ADJ,
1211 ARP_DST_FIB_CONN
1212};
1213
1214/*
1215 * we're looking for FIB sources that indicate the destination
1216 * is attached. There may be interposed DPO prior to the one
1217 * we are looking for
1218 */
1219static enum arp_dst_fib_type
1220arp_dst_fib_check (const fib_node_index_t fei, fib_entry_flag_t * flags)
1221{
1222 const fib_entry_t *entry = fib_entry_get (fei);
1223 const fib_entry_src_t *entry_src;
1224 fib_source_t src;
1225 /* *INDENT-OFF* */
1226 FOR_EACH_SRC_ADDED(entry, entry_src, src,
1227 ({
1228 *flags = fib_entry_get_flags_for_source (fei, src);
1229 if (fib_entry_is_sourced (fei, FIB_SOURCE_ADJ))
1230 return ARP_DST_FIB_ADJ;
1231 else if (FIB_ENTRY_FLAG_CONNECTED & *flags)
1232 return ARP_DST_FIB_CONN;
1233 }))
1234 /* *INDENT-ON* */
1235
1236 return ARP_DST_FIB_NONE;
1237}
1238
Neale Ranns57e53bb2019-05-29 13:58:43 +00001239static uword
1240arp_reply (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1241{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001242 ethernet_arp_main_t *am = &ethernet_arp_main;
1243 vnet_main_t *vnm = vnet_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001244 u32 n_left_from, next_index, *from, *to_next;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001245 u32 n_replies_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246
1247 from = vlib_frame_vector_args (frame);
1248 n_left_from = frame->n_vectors;
1249 next_index = node->cached_next_index;
1250
1251 if (node->flags & VLIB_NODE_FLAG_TRACE)
1252 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1253 /* stride */ 1,
1254 sizeof (ethernet_arp_input_trace_t));
1255
1256 while (n_left_from > 0)
1257 {
1258 u32 n_left_to_next;
1259
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001260 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261
1262 while (n_left_from > 0 && n_left_to_next > 0)
1263 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001264 vlib_buffer_t *p0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001265 ethernet_arp_header_t *arp0;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001266 ethernet_header_t *eth_rx;
Neale Rannsc5d43172018-07-30 08:04:40 -07001267 const ip4_address_t *if_addr0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001268 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001269 u8 dst_is_local0, is_vrrp_reply0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001270 fib_node_index_t dst_fei, src_fei;
Neale Rannsc5d43172018-07-30 08:04:40 -07001271 const fib_prefix_t *pfx0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001272 fib_entry_flag_t src_flags, dst_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001273
1274 pi0 = from[0];
1275 to_next[0] = pi0;
1276 from += 1;
1277 to_next += 1;
1278 n_left_from -= 1;
1279 n_left_to_next -= 1;
1280
1281 p0 = vlib_get_buffer (vm, pi0);
1282 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -07001283 /* Fill in ethernet header. */
1284 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285
Neale Ranns57e53bb2019-05-29 13:58:43 +00001286 next0 = ARP_REPLY_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287 error0 = ETHERNET_ARP_ERROR_replies_sent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1289
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001291 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1292 if (~0 == fib_index0)
1293 {
1294 error0 = ETHERNET_ARP_ERROR_interface_no_table;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001295 goto drop;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001296
1297 }
Neale Rannsca193612017-06-14 06:50:08 -07001298
1299 {
1300 /*
1301 * we're looking for FIB entries that indicate the source
1302 * is attached. There may be more specific non-attached
Neale Ranns2303cb12018-02-21 04:57:17 -08001303 * routes that match the source, but these do not influence
Neale Rannsca193612017-06-14 06:50:08 -07001304 * whether we respond to an ARP request, i.e. they do not
1305 * influence whether we are the correct way for the sender
1306 * to reach us, they only affect how we reach the sender.
1307 */
1308 fib_entry_t *src_fib_entry;
Neale Rannsc5d43172018-07-30 08:04:40 -07001309 const fib_prefix_t *pfx;
Neale Rannsca193612017-06-14 06:50:08 -07001310 fib_entry_src_t *src;
1311 fib_source_t source;
Neale Rannsca193612017-06-14 06:50:08 -07001312 int attached;
1313 int mask;
1314
1315 mask = 32;
1316 attached = 0;
1317
1318 do
1319 {
1320 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1321 &arp0->
1322 ip4_over_ethernet[0].ip4,
1323 mask);
1324 src_fib_entry = fib_entry_get (src_fei);
1325
1326 /*
1327 * It's possible that the source that provides the
1328 * flags we need, or the flags we must not have,
1329 * is not the best source, so check then all.
1330 */
1331 /* *INDENT-OFF* */
1332 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1333 ({
1334 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1335
1336 /* Reject requests/replies with our local interface
1337 address. */
1338 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1339 {
1340 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns24b170a2017-08-15 05:33:11 -07001341 /*
1342 * When VPP has an interface whose address is also
1343 * applied to a TAP interface on the host, then VPP's
1344 * TAP interface will be unnumbered to the 'real'
1345 * interface and do proxy ARP from the host.
1346 * The curious aspect of this setup is that ARP requests
1347 * from the host will come from the VPP's own address.
1348 * So don't drop immediately here, instead go see if this
1349 * is a proxy ARP case.
1350 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001351 goto next_feature;
Neale Rannsca193612017-06-14 06:50:08 -07001352 }
1353 /* A Source must also be local to subnet of matching
1354 * interface address. */
1355 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1356 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1357 {
1358 attached = 1;
1359 break;
1360 }
1361 /*
1362 * else
1363 * The packet was sent from an address that is not
1364 * connected nor attached i.e. it is not from an
1365 * address that is covered by a link's sub-net,
1366 * nor is it a already learned host resp.
1367 */
1368 }));
1369 /* *INDENT-ON* */
1370
1371 /*
1372 * shorter mask lookup for the next iteration.
1373 */
Neale Rannsc5d43172018-07-30 08:04:40 -07001374 pfx = fib_entry_get_prefix (src_fei);
1375 mask = pfx->fp_len - 1;
Neale Rannsca193612017-06-14 06:50:08 -07001376
1377 /*
1378 * continue until we hit the default route or we find
1379 * the attached we are looking for. The most likely
1380 * outcome is we find the attached with the first source
1381 * on the first lookup.
1382 */
1383 }
1384 while (!attached &&
1385 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1386
1387 if (!attached)
1388 {
1389 /*
1390 * the matching route is a not attached, i.e. it was
1391 * added as a result of routing, rather than interface/ARP
1392 * configuration. If the matching route is not a host route
1393 * (i.e. a /32)
1394 */
1395 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001396 goto drop;
Neale Rannsca193612017-06-14 06:50:08 -07001397 }
1398 }
1399
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001400 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1401 &arp0->ip4_over_ethernet[1].ip4,
1402 32);
1403 switch (arp_dst_fib_check (dst_fei, &dst_flags))
Neale Ranns59ae61e2018-06-07 18:09:49 -07001404 {
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001405 case ARP_DST_FIB_ADJ:
Neale Ranns59ae61e2018-06-07 18:09:49 -07001406 /*
1407 * We matched an adj-fib on ths source subnet (a /32 previously
1408 * added as a result of ARP). If this request is a gratuitous
1409 * ARP, then learn from it.
1410 * The check for matching an adj-fib, is to prevent hosts
1411 * from spamming us with gratuitous ARPS that might otherwise
1412 * blow our ARP cache
1413 */
1414 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1415 arp0->ip4_over_ethernet[1].ip4.as_u32)
1416 error0 = arp_learn (vnm, am, sw_if_index0,
1417 &arp0->ip4_over_ethernet[0]);
Neale Ranns57e53bb2019-05-29 13:58:43 +00001418 goto drop;
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001419 case ARP_DST_FIB_CONN:
1420 /* destination is connected, continue to process */
1421 break;
1422 case ARP_DST_FIB_NONE:
1423 /* destination is not connected, stop here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001425 goto next_feature;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001426 }
1427
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001428 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
Neale Rannsc5d43172018-07-30 08:04:40 -07001429 pfx0 = fib_entry_get_prefix (dst_fei);
1430 if_addr0 = &pfx0->fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001431
Matthew Smithcb9ab472017-05-16 21:35:56 -05001432 is_vrrp_reply0 =
1433 ((arp0->opcode ==
1434 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1435 &&
1436 (!memcmp
Neale Ranns37029302018-08-10 05:30:06 -07001437 (arp0->ip4_over_ethernet[0].mac.bytes, vrrp_prefix,
Matthew Smithcb9ab472017-05-16 21:35:56 -05001438 sizeof (vrrp_prefix))));
1439
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001440 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001441 match their L2-frame-level source addresses, unless it's
1442 a reply from a VRRP virtual router */
Neale Ranns37029302018-08-10 05:30:06 -07001443 if (!ethernet_mac_address_equal
1444 (eth_rx->src_address,
1445 arp0->ip4_over_ethernet[0].mac.bytes) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001446 {
1447 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001448 goto drop;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001449 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001450
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001451 /* Learn or update sender's mapping only for replies to addresses
1452 * that are local to the subnet */
1453 if (arp0->opcode ==
Neale Ranns59ae61e2018-06-07 18:09:49 -07001454 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001455 {
Neale Ranns59ae61e2018-06-07 18:09:49 -07001456 if (dst_is_local0)
1457 error0 = arp_learn (vnm, am, sw_if_index0,
1458 &arp0->ip4_over_ethernet[0]);
1459 else
1460 /* a reply for a non-local destination could be a GARP.
1461 * GARPs for hosts we know were handled above, so this one
1462 * we drop */
1463 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1464
Neale Ranns57e53bb2019-05-29 13:58:43 +00001465 goto next_feature;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001466 }
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001467 else if (arp0->opcode ==
1468 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request) &&
1469 (dst_is_local0 == 0))
1470 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001471 goto next_feature;
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001472 }
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001473
1474 /* Honor unnumbered interface, if any */
1475 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
1476 if (sw_if_index0 != conn_sw_if_index0 ||
1477 sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001478 {
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001479 /*
1480 * The interface the ARP is sent to or was received on is not the
1481 * interface on which the covering prefix is configured.
1482 * Maybe this is a case for unnumbered.
1483 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001484 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001485 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001486 error0 = ETHERNET_ARP_ERROR_unnumbered_mismatch;
1487 goto drop;
Neale Ranns436d06b2016-11-30 07:41:53 -08001488 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001489 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001490 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1491 arp0->ip4_over_ethernet[1].ip4.as_u32)
1492 {
1493 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1494 goto drop;
1495 }
1496
1497 next0 = arp_mk_reply (vnm, p0, sw_if_index0,
1498 if_addr0, arp0, eth_rx);
Neale Ranns4b919a52017-03-11 05:55:21 -08001499
Neale Ranns24b170a2017-08-15 05:33:11 -07001500 /* We are going to reply to this request, so, in the absence of
1501 errors, learn the sender */
1502 if (!error0)
1503 error0 = arp_learn (vnm, am, sw_if_index0,
1504 &arp0->ip4_over_ethernet[1]);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001505
Neale Ranns57e53bb2019-05-29 13:58:43 +00001506 n_replies_sent += 1;
1507 goto enqueue;
1508
1509 next_feature:
1510 vnet_feature_next (&next0, p0);
1511 goto enqueue;
1512
1513 drop:
1514 p0->error = node->errors[error0];
1515
1516 enqueue:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001517 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1518 n_left_to_next, pi0, next0);
Neale Ranns57e53bb2019-05-29 13:58:43 +00001519 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001520
Neale Ranns57e53bb2019-05-29 13:58:43 +00001521 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1522 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523
Neale Ranns57e53bb2019-05-29 13:58:43 +00001524 vlib_error_count (vm, node->node_index,
1525 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
1526
1527 return frame->n_vectors;
1528}
1529
1530static uword
1531arp_proxy (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1532{
1533 ethernet_arp_main_t *am = &ethernet_arp_main;
1534 vnet_main_t *vnm = vnet_get_main ();
1535 u32 n_left_from, next_index, *from, *to_next;
1536 u32 n_arp_replies_sent = 0;
1537
1538 from = vlib_frame_vector_args (frame);
1539 n_left_from = frame->n_vectors;
1540 next_index = node->cached_next_index;
1541
1542 if (node->flags & VLIB_NODE_FLAG_TRACE)
1543 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1544 /* stride */ 1,
1545 sizeof (ethernet_arp_input_trace_t));
1546
1547 while (n_left_from > 0)
1548 {
1549 u32 n_left_to_next;
1550
1551 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1552
1553 while (n_left_from > 0 && n_left_to_next > 0)
1554 {
1555 vlib_buffer_t *p0;
1556 ethernet_arp_header_t *arp0;
1557 ethernet_header_t *eth_rx;
1558 ip4_address_t proxy_src;
1559 u32 pi0, error0, next0, sw_if_index0, fib_index0;
1560 u8 is_request0;
1561 ethernet_proxy_arp_t *pa;
1562
1563 pi0 = from[0];
1564 to_next[0] = pi0;
1565 from += 1;
1566 to_next += 1;
1567 n_left_from -= 1;
1568 n_left_to_next -= 1;
1569
1570 p0 = vlib_get_buffer (vm, pi0);
1571 arp0 = vlib_buffer_get_current (p0);
1572 /* Fill in ethernet header. */
1573 eth_rx = ethernet_buffer_get_header (p0);
1574
1575 is_request0 = arp0->opcode
1576 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
1577
1578 error0 = ETHERNET_ARP_ERROR_replies_sent;
1579 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1580 next0 = ARP_REPLY_NEXT_DROP;
1581
1582 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1583 if (~0 == fib_index0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001584 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001585 error0 = ETHERNET_ARP_ERROR_interface_no_table;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001586 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001587
1588 if (0 == error0 && is_request0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001589 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001590 u32 this_addr = clib_net_to_host_u32
1591 (arp0->ip4_over_ethernet[1].ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001592
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001593 vec_foreach (pa, am->proxy_arps)
1594 {
Neale Ranns0053de62018-05-22 08:40:52 -07001595 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr.as_u32);
1596 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001597
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001598 /* an ARP request hit in the proxy-arp table? */
1599 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1600 (fib_index0 == pa->fib_index))
1601 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001602 proxy_src.as_u32 =
1603 arp0->ip4_over_ethernet[1].ip4.data_u32;
1604
Damjan Marion607de1a2016-08-16 22:53:54 +02001605 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001606 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001607 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001608 n_arp_replies_sent++;
1609
1610 next0 =
1611 arp_mk_reply (vnm, p0, sw_if_index0, &proxy_src, arp0,
1612 eth_rx);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001613 }
1614 }
1615 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001616 else
1617 {
1618 p0->error = node->errors[error0];
1619 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001620
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001621 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1622 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001623 }
1624
1625 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1626 }
1627
1628 vlib_error_count (vm, node->node_index,
Neale Ranns57e53bb2019-05-29 13:58:43 +00001629 ETHERNET_ARP_ERROR_replies_sent, n_arp_replies_sent);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001630
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631 return frame->n_vectors;
1632}
1633
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001634static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001635#define _(sym,string) string,
1636 foreach_ethernet_arp_error
1637#undef _
1638};
1639
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001640/* *INDENT-OFF* */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001641
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001642VLIB_REGISTER_NODE (arp_input_node, static) =
1643{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644 .function = arp_input,
1645 .name = "arp-input",
1646 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001647 .n_errors = ETHERNET_ARP_N_ERROR,
1648 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001649 .n_next_nodes = ARP_INPUT_N_NEXT,
1650 .next_nodes = {
1651 [ARP_INPUT_NEXT_DROP] = "error-drop",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001652 [ARP_INPUT_NEXT_DISABLED] = "arp-disabled",
1653 },
1654 .format_buffer = format_ethernet_arp_header,
1655 .format_trace = format_ethernet_arp_input_trace,
1656};
1657
1658VLIB_REGISTER_NODE (arp_disabled_node, static) =
1659{
1660 .function = arp_disabled,
1661 .name = "arp-disabled",
1662 .vector_size = sizeof (u32),
1663 .n_errors = ARP_DISABLED_N_ERROR,
1664 .error_strings = arp_disabled_error_strings,
1665 .n_next_nodes = ARP_DISABLED_N_NEXT,
1666 .next_nodes = {
1667 [ARP_INPUT_NEXT_DROP] = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001668 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001669 .format_buffer = format_ethernet_arp_header,
1670 .format_trace = format_ethernet_arp_input_trace,
1671};
Neale Ranns57e53bb2019-05-29 13:58:43 +00001672
1673VLIB_REGISTER_NODE (arp_reply_node, static) =
1674{
1675 .function = arp_reply,
1676 .name = "arp-reply",
1677 .vector_size = sizeof (u32),
1678 .n_errors = ETHERNET_ARP_N_ERROR,
1679 .error_strings = ethernet_arp_error_strings,
1680 .n_next_nodes = ARP_REPLY_N_NEXT,
1681 .next_nodes = {
1682 [ARP_REPLY_NEXT_DROP] = "error-drop",
1683 [ARP_REPLY_NEXT_REPLY_TX] = "interface-output",
1684 },
1685 .format_buffer = format_ethernet_arp_header,
1686 .format_trace = format_ethernet_arp_input_trace,
1687};
1688
1689VLIB_REGISTER_NODE (arp_proxy_node, static) =
1690{
1691 .function = arp_proxy,
1692 .name = "arp-proxy",
1693 .vector_size = sizeof (u32),
1694 .n_errors = ETHERNET_ARP_N_ERROR,
1695 .error_strings = ethernet_arp_error_strings,
1696 .n_next_nodes = ARP_REPLY_N_NEXT,
1697 .next_nodes = {
1698 [ARP_REPLY_NEXT_DROP] = "error-drop",
1699 [ARP_REPLY_NEXT_REPLY_TX] = "interface-output",
1700 },
1701 .format_buffer = format_ethernet_arp_header,
1702 .format_trace = format_ethernet_arp_input_trace,
1703};
1704
Neale Rannsfe2fff32019-06-26 08:22:01 -07001705/* Built-in ARP rx feature path definition */
1706VNET_FEATURE_ARC_INIT (arp_feat, static) =
1707{
1708 .arc_name = "arp",
1709 .start_nodes = VNET_FEATURES ("arp-input"),
1710 .last_in_arc = "arp-disabled",
1711 .arc_index_ptr = &ethernet_arp_main.feature_arc_index,
1712};
1713
Neale Ranns57e53bb2019-05-29 13:58:43 +00001714VNET_FEATURE_INIT (arp_reply_feat_node, static) =
1715{
1716 .arc_name = "arp",
1717 .node_name = "arp-reply",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001718 .runs_before = VNET_FEATURES ("arp-disabled"),
Neale Ranns57e53bb2019-05-29 13:58:43 +00001719};
1720
1721VNET_FEATURE_INIT (arp_proxy_feat_node, static) =
1722{
1723 .arc_name = "arp",
1724 .node_name = "arp-proxy",
1725 .runs_after = VNET_FEATURES ("arp-reply"),
Neale Rannsfe2fff32019-06-26 08:22:01 -07001726 .runs_before = VNET_FEATURES ("arp-disabled"),
Neale Ranns57e53bb2019-05-29 13:58:43 +00001727};
1728
1729VNET_FEATURE_INIT (arp_drop_feat_node, static) =
1730{
1731 .arc_name = "arp",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001732 .node_name = "arp-disabled",
1733 .runs_before = 0, /* last feature */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001734};
1735
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001736/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001737
Ed Warnickecb9cada2015-12-08 15:45:58 -07001738static int
1739ip4_arp_entry_sort (void *a1, void *a2)
1740{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001741 ethernet_arp_ip4_entry_t *e1 = a1;
1742 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001743
1744 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001745 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001746
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001747 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001748 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001749 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001750 return cmp;
1751}
1752
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001753ethernet_arp_ip4_entry_t *
John Lo7f358b32018-04-28 01:19:24 -04001754ip4_neighbors_pool (void)
1755{
1756 ethernet_arp_main_t *am = &ethernet_arp_main;
1757 return am->ip4_entry_pool;
1758}
1759
1760ethernet_arp_ip4_entry_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001761ip4_neighbor_entries (u32 sw_if_index)
1762{
1763 ethernet_arp_main_t *am = &ethernet_arp_main;
1764 ethernet_arp_ip4_entry_t *n, *ns = 0;
1765
1766 /* *INDENT-OFF* */
1767 pool_foreach (n, am->ip4_entry_pool, ({
1768 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1769 continue;
1770 vec_add1 (ns, n[0]);
1771 }));
1772 /* *INDENT-ON* */
1773
1774 if (ns)
1775 vec_sort_with_function (ns, ip4_arp_entry_sort);
1776 return ns;
1777}
1778
Ed Warnickecb9cada2015-12-08 15:45:58 -07001779static clib_error_t *
1780show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001781 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001782{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001783 vnet_main_t *vnm = vnet_get_main ();
1784 ethernet_arp_main_t *am = &ethernet_arp_main;
1785 ethernet_arp_ip4_entry_t *e, *es;
1786 ethernet_proxy_arp_t *pa;
1787 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001788 u32 sw_if_index;
1789
1790 /* Filter entries by interface if given. */
1791 sw_if_index = ~0;
1792 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1793
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001794 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001795 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001796 {
Keith Wilescb466842016-02-11 19:21:10 -06001797 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001798 vec_foreach (e, es)
1799 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001800 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001801 }
1802 vec_free (es);
1803 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001804
1805 if (vec_len (am->proxy_arps))
1806 {
1807 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001808 vec_foreach (pa, am->proxy_arps)
1809 {
1810 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1811 pa->fib_index,
1812 format_ip4_address, &pa->lo_addr,
1813 format_ip4_address, &pa->hi_addr);
1814 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001815 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001816
Ed Warnickecb9cada2015-12-08 15:45:58 -07001817 return error;
1818}
1819
Billy McFall2d085d92016-09-13 21:47:55 -04001820/*?
1821 * Display all the IPv4 ARP entries.
1822 *
1823 * @cliexpar
1824 * Example of how to display the IPv4 ARP table:
1825 * @cliexstart{show ip arp}
1826 * Time FIB IP4 Flags Ethernet Interface
1827 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1828 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1829 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1830 * Proxy arps enabled for:
1831 * Fib_index 0 6.0.0.1 - 6.0.0.11
1832 * @cliexend
1833 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001834/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001835VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1836 .path = "show ip arp",
1837 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001838 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001839};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001840/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001841
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001842typedef struct
1843{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001844 pg_edit_t l2_type, l3_type;
1845 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1846 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001847 struct
1848 {
Neale Ranns37029302018-08-10 05:30:06 -07001849 pg_edit_t mac;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001850 pg_edit_t ip4;
1851 } ip4_over_ethernet[2];
1852} pg_ethernet_arp_header_t;
1853
1854static inline void
1855pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1856{
1857 /* Initialize fields that are not bit fields in the IP header. */
1858#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001859 _(l2_type);
1860 _(l3_type);
1861 _(n_l2_address_bytes);
1862 _(n_l3_address_bytes);
1863 _(opcode);
Neale Ranns37029302018-08-10 05:30:06 -07001864 _(ip4_over_ethernet[0].mac);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001865 _(ip4_over_ethernet[0].ip4);
Neale Ranns37029302018-08-10 05:30:06 -07001866 _(ip4_over_ethernet[1].mac);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001867 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001868#undef _
1869}
1870
1871uword
1872unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1873{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001874 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1875 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001876 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001877
Ed Warnickecb9cada2015-12-08 15:45:58 -07001878 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1879 &group_index);
1880 pg_ethernet_arp_header_init (p);
1881
1882 /* Defaults. */
1883 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1884 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1885 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1886 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1887
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001888 if (!unformat (input, "%U: %U/%U -> %U/%U",
1889 unformat_pg_edit,
1890 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1891 unformat_pg_edit,
Neale Ranns37029302018-08-10 05:30:06 -07001892 unformat_mac_address_t, &p->ip4_over_ethernet[0].mac,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001893 unformat_pg_edit,
1894 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1895 unformat_pg_edit,
Neale Ranns37029302018-08-10 05:30:06 -07001896 unformat_mac_address_t, &p->ip4_over_ethernet[1].mac,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001897 unformat_pg_edit,
1898 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001899 {
1900 /* Free up any edits we may have added. */
1901 pg_free_edit_group (s);
1902 return 0;
1903 }
1904 return 1;
1905}
1906
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001907clib_error_t *
1908ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001909{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001910 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001911
1912 am->limit_arp_cache_size = arp_limit;
1913 return 0;
1914}
1915
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001916/**
1917 * @brief Control Plane hook to remove an ARP entry
1918 */
1919int
1920vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00001921 u32 sw_if_index,
1922 const
1923 ethernet_arp_ip4_over_ethernet_address_t *
1924 a)
Damjan Marion102ec522016-03-29 13:18:17 +02001925{
Neale Ranns37029302018-08-10 05:30:06 -07001926 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1927 .sw_if_index = sw_if_index,
1928 .flags = ETHERNET_ARP_ARGS_REMOVE,
1929 .ip4 = a->ip4,
1930 .mac = a->mac,
1931 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001932
1933 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1934 (u8 *) & args, sizeof (args));
1935 return 0;
1936}
1937
1938/**
Eyal Bari20197482017-09-13 12:29:08 +03001939 * @brief publish wildcard arp event
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001940 * @param sw_if_index The interface on which the ARP entries are acted
Eyal Bari20197482017-09-13 12:29:08 +03001941 */
1942static int
Neale Rannscf7efe02018-09-24 08:34:11 +00001943vnet_arp_wc_publish (u32 sw_if_index,
1944 const ethernet_arp_ip4_over_ethernet_address_t * a)
Eyal Bari20197482017-09-13 12:29:08 +03001945{
Eyal Bari20197482017-09-13 12:29:08 +03001946 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1947 .flags = ETHERNET_ARP_ARGS_WC_PUB,
1948 .sw_if_index = sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001949 .ip4 = a->ip4,
1950 .mac = a->mac,
Eyal Bari20197482017-09-13 12:29:08 +03001951 };
1952
1953 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1954 (u8 *) & args, sizeof (args));
1955 return 0;
1956}
1957
1958static void
1959vnet_arp_wc_publish_internal (vnet_main_t * vnm,
1960 vnet_arp_set_ip4_over_ethernet_rpc_args_t *
1961 args)
1962{
1963 vlib_main_t *vm = vlib_get_main ();
1964 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Baric125ecc2017-09-20 11:29:17 +03001965 uword ni = am->wc_ip4_arp_publisher_node;
1966 uword et = am->wc_ip4_arp_publisher_et;
1967
1968 if (ni == (uword) ~ 0)
Eyal Bari20197482017-09-13 12:29:08 +03001969 return;
1970 wc_arp_report_t *r =
Eyal Baric125ecc2017-09-20 11:29:17 +03001971 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *r);
Neale Ranns37029302018-08-10 05:30:06 -07001972 r->ip.as_u32 = args->ip4.as_u32;
Eyal Bari20197482017-09-13 12:29:08 +03001973 r->sw_if_index = args->sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -07001974 mac_address_copy (&r->mac, &args->mac);
Eyal Bari20197482017-09-13 12:29:08 +03001975}
1976
1977void
Eyal Baric125ecc2017-09-20 11:29:17 +03001978wc_arp_set_publisher_node (uword node_index, uword event_type)
Eyal Bari20197482017-09-13 12:29:08 +03001979{
1980 ethernet_arp_main_t *am = &ethernet_arp_main;
1981 am->wc_ip4_arp_publisher_node = node_index;
Eyal Baric125ecc2017-09-20 11:29:17 +03001982 am->wc_ip4_arp_publisher_et = event_type;
Eyal Bari20197482017-09-13 12:29:08 +03001983}
1984
Neale Rannscf7efe02018-09-24 08:34:11 +00001985static void
1986arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e);
1987
1988static int
1989vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1990 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1991 * args)
1992{
1993 ethernet_arp_main_t *am = &ethernet_arp_main;
1994 ethernet_arp_ip4_entry_t *e;
1995 ethernet_arp_interface_t *eai;
1996
1997 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1998 return 0;
1999
2000 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
2001
Neale Ranns37029302018-08-10 05:30:06 -07002002 e = arp_entry_find (eai, &args->ip4);
Neale Rannscf7efe02018-09-24 08:34:11 +00002003
2004 if (NULL != e)
2005 {
2006 adj_nbr_walk_nh4 (e->sw_if_index,
2007 &e->ip4_address, arp_mk_incomplete_walk, e);
2008
2009 /*
2010 * The difference between flush and unset, is that an unset
2011 * means delete for static and dynamic entries. A flush
2012 * means delete only for dynamic. Flushing is what the DP
2013 * does in response to interface events. unset is only done
2014 * by the control plane.
2015 */
Neale Ranns37029302018-08-10 05:30:06 -07002016 if (e->flags & IP_NEIGHBOR_FLAG_STATIC)
Neale Rannscf7efe02018-09-24 08:34:11 +00002017 {
Neale Ranns37029302018-08-10 05:30:06 -07002018 e->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
Neale Rannscf7efe02018-09-24 08:34:11 +00002019 }
Neale Ranns37029302018-08-10 05:30:06 -07002020 else if (e->flags & IP_NEIGHBOR_FLAG_DYNAMIC)
Neale Rannscf7efe02018-09-24 08:34:11 +00002021 {
2022 arp_entry_free (eai, e);
2023 }
2024 }
2025 return (0);
2026}
2027
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002028/*
2029 * arp_add_del_interface_address
2030 *
2031 * callback when an interface address is added or deleted
2032 */
2033static void
Neale Ranns57e53bb2019-05-29 13:58:43 +00002034arp_enable_disable_interface (ip4_main_t * im,
2035 uword opaque, u32 sw_if_index, u32 is_enable)
2036{
2037 ethernet_arp_main_t *am = &ethernet_arp_main;
2038
2039 if (is_enable)
2040 arp_enable (am, sw_if_index);
2041 else
2042 arp_disable (am, sw_if_index);
2043}
2044
2045/*
2046 * arp_add_del_interface_address
2047 *
2048 * callback when an interface address is added or deleted
2049 */
2050static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002051arp_add_del_interface_address (ip4_main_t * im,
2052 uword opaque,
2053 u32 sw_if_index,
2054 ip4_address_t * address,
2055 u32 address_length,
2056 u32 if_address_index, u32 is_del)
2057{
2058 /*
2059 * Flush the ARP cache of all entries covered by the address
2060 * that is being removed.
2061 */
2062 ethernet_arp_main_t *am = &ethernet_arp_main;
2063 ethernet_arp_ip4_entry_t *e;
2064
Neale Ranns177bbdc2016-11-15 09:46:51 +00002065 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002066 return;
2067
2068 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02002069 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002070 ethernet_arp_interface_t *eai;
2071 u32 i, *to_delete = 0;
2072 hash_pair_t *pair;
2073
2074 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2075
Neale Rannsb80c5362016-10-08 13:03:40 +01002076 /* *INDENT-OFF* */
2077 hash_foreach_pair (pair, eai->arp_entries,
2078 ({
2079 e = pool_elt_at_index(am->ip4_entry_pool,
2080 pair->value[0]);
2081 if (ip4_destination_matches_route (im, &e->ip4_address,
2082 address, address_length))
2083 {
2084 vec_add1 (to_delete, e - am->ip4_entry_pool);
2085 }
2086 }));
2087 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002088
2089 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002090 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002091 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
2092
Neale Rannscf7efe02018-09-24 08:34:11 +00002093 vnet_arp_set_ip4_over_ethernet_rpc_args_t delme = {
Neale Ranns37029302018-08-10 05:30:06 -07002094 .ip4.as_u32 = e->ip4_address.as_u32,
Neale Rannscf7efe02018-09-24 08:34:11 +00002095 .sw_if_index = e->sw_if_index,
2096 .flags = ETHERNET_ARP_ARGS_FLUSH,
2097 };
Neale Ranns37029302018-08-10 05:30:06 -07002098 mac_address_copy (&delme.mac, &e->mac);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002099
Neale Rannscf7efe02018-09-24 08:34:11 +00002100 vnet_arp_flush_ip4_over_ethernet_internal (vnet_get_main (),
2101 &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002102 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002103
2104 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02002105 }
2106}
2107
Neale Ranns15002542017-09-10 04:39:11 -07002108static void
2109arp_table_bind (ip4_main_t * im,
2110 uword opaque,
2111 u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
2112{
2113 ethernet_arp_main_t *am = &ethernet_arp_main;
2114 ethernet_arp_interface_t *eai;
2115 ethernet_arp_ip4_entry_t *e;
2116 hash_pair_t *pair;
2117
2118 /*
2119 * the IP table that the interface is bound to has changed.
2120 * reinstall all the adj fibs.
2121 */
2122
2123 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
2124 return;
2125
2126 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2127
2128 /* *INDENT-OFF* */
2129 hash_foreach_pair (pair, eai->arp_entries,
2130 ({
2131 e = pool_elt_at_index(am->ip4_entry_pool,
2132 pair->value[0]);
2133 /*
2134 * remove the adj-fib from the old table and add to the new
2135 */
2136 arp_adj_fib_remove(e, old_fib_index);
2137 arp_adj_fib_add(e, new_fib_index);
2138 }));
2139 /* *INDENT-ON* */
2140
2141}
2142
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002143static clib_error_t *
2144ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002145{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002146 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002147 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002148 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05002149
Ed Warnickecb9cada2015-12-08 15:45:58 -07002150 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
2151
2152 pn = pg_get_node (arp_input_node.index);
2153 pn->unformat_edit = unformat_pg_arp_header;
2154
2155 am->opcode_by_name = hash_create_string (0, sizeof (uword));
2156#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
2157 foreach_ethernet_arp_opcode;
2158#undef _
2159
Ed Warnickecb9cada2015-12-08 15:45:58 -07002160 /* $$$ configurable */
2161 am->limit_arp_cache_size = 50000;
2162
2163 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
2164 am->mac_changes_by_address = hash_create (0, sizeof (uword));
Eyal Bari20197482017-09-13 12:29:08 +03002165 am->wc_ip4_arp_publisher_node = (uword) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002166
2167 /* don't trace ARP error packets */
2168 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002169 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002170 vlib_node_get_runtime (vm, arp_input_node.index);
2171
2172#define _(a,b) \
2173 vnet_pcap_drop_trace_filter_add_del \
2174 (rt->errors[ETHERNET_ARP_ERROR_##a], \
2175 1 /* is_add */);
2176 foreach_ethernet_arp_error
2177#undef _
2178 }
Damjan Marion102ec522016-03-29 13:18:17 +02002179
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002180 ip4_add_del_interface_address_callback_t cb;
2181 cb.function = arp_add_del_interface_address;
2182 cb.function_opaque = 0;
2183 vec_add1 (im->add_del_interface_address_callbacks, cb);
2184
Neale Ranns57e53bb2019-05-29 13:58:43 +00002185 ip4_enable_disable_interface_callback_t cbe;
2186 cbe.function = arp_enable_disable_interface;
2187 cbe.function_opaque = 0;
2188 vec_add1 (im->enable_disable_interface_callbacks, cbe);
2189
Neale Ranns15002542017-09-10 04:39:11 -07002190 ip4_table_bind_callback_t cbt;
2191 cbt.function = arp_table_bind;
2192 cbt.function_opaque = 0;
2193 vec_add1 (im->table_bind_callbacks, cbt);
2194
Ed Warnickecb9cada2015-12-08 15:45:58 -07002195 return 0;
2196}
Dave Barachf8d50682019-05-14 18:01:44 -04002197/* *INDENT-OFF* */
2198VLIB_INIT_FUNCTION (ethernet_arp_init) =
2199{
2200 .runs_after = VLIB_INITS("ethernet_init"),
2201};
2202/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002203
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002204static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002205arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
2206{
2207 ethernet_arp_main_t *am = &ethernet_arp_main;
2208
John Lo4fed5b12018-05-22 03:35:06 -04002209 arp_adj_fib_remove
2210 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002211 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
2212 pool_put (am->ip4_entry_pool, e);
2213}
2214
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002215static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07002216vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002217 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2218 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002219{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002220 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002221 ethernet_arp_ip4_entry_t *e;
2222 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223
Matthew Smith66c0adf2017-08-09 16:30:43 -05002224 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
2225 return 0;
2226
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002227 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002228
Neale Ranns37029302018-08-10 05:30:06 -07002229 e = arp_entry_find (eai, &args->ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002230
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002231 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002232 {
Neale Ranns19c68d22016-12-07 15:38:14 +00002233 adj_nbr_walk_nh4 (e->sw_if_index,
Neale Rannscf7efe02018-09-24 08:34:11 +00002234 &e->ip4_address, arp_mk_incomplete_walk, e);
John Lo4fed5b12018-05-22 03:35:06 -04002235 arp_entry_free (eai, e);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002236 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002237
Ed Warnickecb9cada2015-12-08 15:45:58 -07002238 return 0;
2239}
2240
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002241
2242static int
2243vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
2244 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2245 * args)
2246{
2247 ethernet_arp_main_t *am = &ethernet_arp_main;
2248 ethernet_arp_ip4_entry_t *e;
2249 ethernet_arp_interface_t *eai;
2250
Neale Ranns57e53bb2019-05-29 13:58:43 +00002251 arp_enable (am, args->sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002252 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
2253
Neale Ranns37029302018-08-10 05:30:06 -07002254 e = arp_entry_find (eai, &args->ip4);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002255
2256 if (NULL != e)
2257 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002258 adj_nbr_walk_nh4 (e->sw_if_index,
2259 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002260 }
2261 return (0);
2262}
2263
2264static void
2265set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
2266 * a)
2267{
2268 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02002269 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002270
2271 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
2272 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
2273 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
2274 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
2275 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
2276 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
Eyal Bari20197482017-09-13 12:29:08 +03002277 else if (a->flags & ETHERNET_ARP_ARGS_WC_PUB)
2278 vnet_arp_wc_publish_internal (vm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002279 else
2280 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
2281}
2282
2283/**
2284 * @brief Invoked when the interface's admin state changes
2285 */
2286static clib_error_t *
2287ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
2288 u32 sw_if_index, u32 flags)
2289{
2290 ethernet_arp_main_t *am = &ethernet_arp_main;
2291 ethernet_arp_ip4_entry_t *e;
Neale Rannscf7efe02018-09-24 08:34:11 +00002292 u32 i, *to_update = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002293
2294 /* *INDENT-OFF* */
2295 pool_foreach (e, am->ip4_entry_pool,
2296 ({
2297 if (e->sw_if_index == sw_if_index)
Neale Rannscf7efe02018-09-24 08:34:11 +00002298 vec_add1 (to_update,
Neale Rannsb80c5362016-10-08 13:03:40 +01002299 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002300 }));
2301 /* *INDENT-ON* */
2302
Neale Rannscf7efe02018-09-24 08:34:11 +00002303 for (i = 0; i < vec_len (to_update); i++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002304 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002305 e = pool_elt_at_index (am->ip4_entry_pool, to_update[i]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002306
Neale Rannscf7efe02018-09-24 08:34:11 +00002307 vnet_arp_set_ip4_over_ethernet_rpc_args_t update_me = {
Neale Ranns37029302018-08-10 05:30:06 -07002308 .ip4.as_u32 = e->ip4_address.as_u32,
Neale Rannscf7efe02018-09-24 08:34:11 +00002309 .sw_if_index = e->sw_if_index,
2310 };
Neale Ranns37029302018-08-10 05:30:06 -07002311 mac_address_copy (&update_me.mac, &e->mac);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002312
2313 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
2314 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002315 update_me.flags = ETHERNET_ARP_ARGS_POPULATE;
2316 vnet_arp_populate_ip4_over_ethernet_internal (vnm, &update_me);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002317 }
2318 else
2319 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002320 update_me.flags = ETHERNET_ARP_ARGS_FLUSH;
2321 vnet_arp_flush_ip4_over_ethernet_internal (vnm, &update_me);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002322 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002323 }
Neale Rannscf7efe02018-09-24 08:34:11 +00002324 vec_free (to_update);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002325
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002326 return 0;
2327}
2328
2329VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
2330
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002331static void
2332increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002333{
2334 u8 old;
2335 int i;
2336
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002337 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002338 {
2339 old = a->ip4.as_u8[i];
2340 a->ip4.as_u8[i] += 1;
2341 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002342 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002343 }
2344
2345 for (i = 5; i >= 0; i--)
2346 {
Neale Ranns37029302018-08-10 05:30:06 -07002347 old = a->mac.bytes[i];
2348 a->mac.bytes[i] += 1;
2349 if (old < a->mac.bytes[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002350 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002351 }
2352}
2353
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002354int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002355vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00002356 u32 sw_if_index,
2357 const ethernet_arp_ip4_over_ethernet_address_t
Neale Ranns37029302018-08-10 05:30:06 -07002358 * a, ip_neighbor_flags_t flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002359{
Neale Ranns37029302018-08-10 05:30:06 -07002360 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
2361 .sw_if_index = sw_if_index,
2362 .nbr_flags = flags,
2363 .flags = 0,
2364 .ip4.as_u32 = a->ip4.as_u32,
2365 .mac = a->mac,
2366 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002367
2368 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
2369 (u8 *) & args, sizeof (args));
2370 return 0;
2371}
2372
Neale Ranns0053de62018-05-22 08:40:52 -07002373void
2374proxy_arp_walk (proxy_arp_walk_t cb, void *data)
2375{
2376 ethernet_arp_main_t *am = &ethernet_arp_main;
2377 ethernet_proxy_arp_t *pa;
2378
2379 vec_foreach (pa, am->proxy_arps)
2380 {
2381 if (!cb (&pa->lo_addr, &pa->hi_addr, pa->fib_index, data))
2382 break;
2383 }
2384}
2385
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002386int
Neale Ranns57e53bb2019-05-29 13:58:43 +00002387vnet_proxy_arp_enable_disable (vnet_main_t * vnm, u32 sw_if_index, u8 enable)
2388{
2389 ethernet_arp_main_t *am = &ethernet_arp_main;
2390 ethernet_arp_interface_t *eai;
2391
2392 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
2393
2394 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2395
2396 if (enable)
2397 {
2398 if (!eai->proxy_enabled)
2399 {
2400 vnet_feature_enable_disable ("arp", "arp-proxy",
2401 sw_if_index, 1, NULL, 0);
2402 }
2403 eai->proxy_enabled = 1;
2404 }
2405 else
2406 {
2407 if (eai->proxy_enabled)
2408 {
2409 vnet_feature_enable_disable ("arp", "arp-proxy",
2410 sw_if_index, 0, NULL, 0);
2411 }
2412 eai->proxy_enabled = 0;
2413 }
2414
2415 return (0);
2416}
2417
2418int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002419vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
2420 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002421{
2422 ethernet_arp_main_t *am = &ethernet_arp_main;
2423 ethernet_proxy_arp_t *pa;
2424 u32 found_at_index = ~0;
2425
2426 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002427 {
Neale Ranns0053de62018-05-22 08:40:52 -07002428 if (pa->lo_addr.as_u32 == lo_addr->as_u32 &&
2429 pa->hi_addr.as_u32 == hi_addr->as_u32 && pa->fib_index == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002430 {
2431 found_at_index = pa - am->proxy_arps;
2432 break;
2433 }
2434 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002435
2436 if (found_at_index != ~0)
2437 {
2438 /* Delete, otherwise it's already in the table */
2439 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002440 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002441 return 0;
2442 }
2443 /* delete, no such entry */
2444 if (is_del)
2445 return VNET_API_ERROR_NO_SUCH_ENTRY;
2446
2447 /* add, not in table */
2448 vec_add2 (am->proxy_arps, pa, 1);
Neale Ranns0053de62018-05-22 08:40:52 -07002449 pa->lo_addr.as_u32 = lo_addr->as_u32;
2450 pa->hi_addr.as_u32 = hi_addr->as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002451 pa->fib_index = fib_index;
2452 return 0;
2453}
2454
Neale Ranns57e53bb2019-05-29 13:58:43 +00002455void
2456proxy_arp_intfc_walk (proxy_arp_intf_walk_t cb, void *data)
2457{
2458 ethernet_arp_main_t *am = &ethernet_arp_main;
2459 ethernet_arp_interface_t *eai;
2460
2461 vec_foreach (eai, am->ethernet_arp_by_sw_if_index)
2462 {
2463 if (eai->proxy_enabled)
2464 cb (eai - am->ethernet_arp_by_sw_if_index, data);
2465 }
2466}
2467
Ed Warnickecb9cada2015-12-08 15:45:58 -07002468/*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002469 * Remove any proxy arp entries associated with the
2470 * specified fib.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002471 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002472int
2473vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002474{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002475 ethernet_arp_main_t *am = &ethernet_arp_main;
2476 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002477 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002478 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002479 int i;
2480
Neale Ranns107e7d42017-04-11 09:55:19 -07002481 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2482 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002483 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002484
2485 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002486 {
2487 if (pa->fib_index == fib_index)
2488 {
2489 vec_add1 (entries_to_delete, pa - am->proxy_arps);
2490 }
2491 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002492
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002493 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002494 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002495 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
2496 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002497
2498 vec_free (entries_to_delete);
2499
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002500 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002501}
2502
2503static clib_error_t *
2504ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002505 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002506{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002507 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002508 u32 sw_if_index;
2509 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
2510 int addr_valid = 0;
2511 int is_del = 0;
2512 int count = 1;
2513 u32 fib_index = 0;
2514 u32 fib_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002515 int is_proxy = 0;
Neale Ranns37029302018-08-10 05:30:06 -07002516 ip_neighbor_flags_t flags;
2517
2518 flags = IP_NEIGHBOR_FLAG_NONE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002519
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002520 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002521 {
2522 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
2523 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002524 unformat_vnet_sw_interface, vnm, &sw_if_index,
2525 unformat_ip4_address, &addr.ip4,
Neale Ranns37029302018-08-10 05:30:06 -07002526 unformat_mac_address_t, &addr.mac))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002527 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002528
2529 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002530 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002531
2532 else if (unformat (input, "static"))
Neale Ranns37029302018-08-10 05:30:06 -07002533 flags |= IP_NEIGHBOR_FLAG_STATIC;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002534
Neale Rannsb3b2de72017-03-08 05:17:22 -08002535 else if (unformat (input, "no-fib-entry"))
Neale Ranns37029302018-08-10 05:30:06 -07002536 flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -08002537
Ed Warnickecb9cada2015-12-08 15:45:58 -07002538 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002539 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002540
2541 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002542 {
Neale Ranns107e7d42017-04-11 09:55:19 -07002543 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2544
2545 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002546 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002547 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002548
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002549 else if (unformat (input, "proxy %U - %U",
2550 unformat_ip4_address, &lo_addr.ip4,
2551 unformat_ip4_address, &hi_addr.ip4))
2552 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002553 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002554 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002555 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002556
Ed Warnickecb9cada2015-12-08 15:45:58 -07002557 if (is_proxy)
2558 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002559 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2560 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002561 return 0;
2562 }
2563
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002564 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002565 {
2566 int i;
2567
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002568 for (i = 0; i < count; i++)
2569 {
2570 if (is_del == 0)
2571 {
2572 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002573
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002574 /* Park the debug CLI until the arp entry is installed */
2575 vnet_register_ip4_arp_resolution_event
2576 (vnm, &addr.ip4, vlib_current_process (vm),
2577 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002578
Neale Ranns37029302018-08-10 05:30:06 -07002579 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, &addr, flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002580
2581 vlib_process_wait_for_event (vm);
2582 event_type = vlib_process_get_events (vm, &event_data);
2583 vec_reset_length (event_data);
2584 if (event_type != 1)
2585 clib_warning ("event type %d unexpected", event_type);
2586 }
2587 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002588 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002589
2590 increment_ip4_and_mac_address (&addr);
2591 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002592 }
2593 else
2594 {
2595 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002596 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002597 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002598
Ed Warnickecb9cada2015-12-08 15:45:58 -07002599 return 0;
2600}
2601
Neale Rannsb80c5362016-10-08 13:03:40 +01002602/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002603/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002604 * Add or delete IPv4 ARP cache entries.
2605 *
2606 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2607 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2608 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002609 *
2610 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002611 * @parblock
2612 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2613 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2614 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2615 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2616 *
2617 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2618 * table:
2619 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2620 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2621 *
2622 * Add or delete IPv4 static ARP cache entries as follows:
2623 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2624 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2625 *
2626 * For testing / debugging purposes, the 'set ip arp' command can add or
2627 * delete multiple entries. Supply the 'count N' parameter:
2628 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2629 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002630 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002631VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002632 .path = "set ip arp",
2633 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002634 "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 -07002635 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002636};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002637/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002638
2639static clib_error_t *
2640set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002641 unformat_input_t *
2642 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002643{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002644 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002645 u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002646 int enable = 0;
Neale Ranns57e53bb2019-05-29 13:58:43 +00002647
2648 sw_if_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002649
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002650 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002651 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002652 if (unformat (input, "%U", unformat_vnet_sw_interface,
2653 vnm, &sw_if_index))
Neale Ranns57e53bb2019-05-29 13:58:43 +00002654 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002655 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002656 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002657 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002658 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002659 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002660 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002661 }
2662
Neale Ranns57e53bb2019-05-29 13:58:43 +00002663 if (~0 == sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002664 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002665 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002666
Neale Ranns57e53bb2019-05-29 13:58:43 +00002667 vnet_proxy_arp_enable_disable (vnm, sw_if_index, enable);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002668
Ed Warnickecb9cada2015-12-08 15:45:58 -07002669 return 0;
2670}
2671
Neale Rannsb80c5362016-10-08 13:03:40 +01002672/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002673/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002674 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2675 * requests for the indicated address range. Multiple proxy-arp
2676 * ranges may be provisioned.
2677 *
2678 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2679 * Also, the underlying implementation has not been performance-tuned.
2680 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002681 *
2682 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002683 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002684 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2685 * Append 'del' to delete a range of proxy ARP addresses:
2686 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2687 * You must then specifically enable proxy arp on individual interfaces:
2688 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2689 * To disable proxy arp on an individual interface:
2690 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002691 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002692VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002693 .path = "set interface proxy-arp",
2694 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002695 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002696 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002697};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002698/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002699
2700
2701/*
John Lo1edfba92016-08-27 01:11:57 -04002702 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2703 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002704 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002705typedef enum
2706{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002707 ARP_TERM_NEXT_L2_OUTPUT,
2708 ARP_TERM_NEXT_DROP,
2709 ARP_TERM_N_NEXT,
2710} arp_term_next_t;
2711
2712u32 arp_term_next_node_index[32];
2713
2714static uword
2715arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002716 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002717{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002718 l2input_main_t *l2im = &l2input_main;
2719 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002720 u32 n_replies_sent = 0;
2721 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002722 l2_bridge_domain_t *last_bd_config = 0;
2723 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002724
2725 from = vlib_frame_vector_args (frame);
2726 n_left_from = frame->n_vectors;
2727 next_index = node->cached_next_index;
2728
2729 while (n_left_from > 0)
2730 {
2731 u32 n_left_to_next;
2732
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002733 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002734
2735 while (n_left_from > 0 && n_left_to_next > 0)
2736 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002737 vlib_buffer_t *p0;
2738 ethernet_header_t *eth0;
2739 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002740 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002741 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002742 u32 pi0, error0, next0, sw_if_index0;
2743 u16 ethertype0;
2744 u16 bd_index0;
2745 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002746 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002747
2748 pi0 = from[0];
2749 to_next[0] = pi0;
2750 from += 1;
2751 to_next += 1;
2752 n_left_from -= 1;
2753 n_left_to_next -= 1;
2754
2755 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002756 // Terminate only local (SHG == 0) ARP
2757 if (vnet_buffer (p0)->l2.shg != 0)
2758 goto next_l2_feature;
2759
Ed Warnickecb9cada2015-12-08 15:45:58 -07002760 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002761 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2762 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002763 arp0 = (ethernet_arp_header_t *) l3h0;
2764
John Lo0e6f4d62018-07-13 17:29:58 -04002765 if (ethertype0 != ETHERNET_TYPE_ARP)
John Lo1edfba92016-08-27 01:11:57 -04002766 goto check_ip6_nd;
2767
John Lo0e6f4d62018-07-13 17:29:58 -04002768 if ((arp0->opcode !=
2769 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request)) &&
2770 (arp0->opcode !=
2771 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply)))
2772 goto check_ip6_nd;
2773
2774 /* Must be ARP request/reply packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002775 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2776 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2777 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002778 u8 *t0 = vlib_add_trace (vm, node, p0,
2779 sizeof (ethernet_arp_input_trace_t));
Dave Barach178cf492018-11-13 16:34:13 -05002780 clib_memcpy_fast (t0, l3h0,
2781 sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002782 }
2783
John Lo0e6f4d62018-07-13 17:29:58 -04002784 error0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002785 error0 =
2786 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002787 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2788 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002789 error0 =
2790 (arp0->l3_type !=
2791 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2792 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002793
2794 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2795
2796 if (error0)
2797 goto drop;
2798
John Lo1edfba92016-08-27 01:11:57 -04002799 /* Trash ARP packets whose ARP-level source addresses do not
John Lo0131b6c2018-06-25 12:35:21 -04002800 match, or if requester address is mcast */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002801 if (PREDICT_FALSE
Neale Ranns37029302018-08-10 05:30:06 -07002802 (!ethernet_mac_address_equal (eth0->src_address,
2803 arp0->ip4_over_ethernet[0].
2804 mac.bytes))
2805 || ethernet_address_cast (arp0->ip4_over_ethernet[0].mac.bytes))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002806 {
John Lo0e6f4d62018-07-13 17:29:58 -04002807 /* VRRP virtual MAC may be different to SMAC in ARP reply */
Neale Ranns37029302018-08-10 05:30:06 -07002808 if (!ethernet_mac_address_equal
2809 (arp0->ip4_over_ethernet[0].mac.bytes, vrrp_prefix))
John Lo0e6f4d62018-07-13 17:29:58 -04002810 {
2811 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2812 goto drop;
2813 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002814 }
John Lo0131b6c2018-06-25 12:35:21 -04002815 if (PREDICT_FALSE
2816 (ip4_address_is_multicast (&arp0->ip4_over_ethernet[0].ip4)))
2817 {
2818 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
2819 goto drop;
2820 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002821
John Lo1edfba92016-08-27 01:11:57 -04002822 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002823 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002824 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Bari20197482017-09-13 12:29:08 +03002825 if (am->wc_ip4_arp_publisher_node != (uword) ~ 0)
2826 vnet_arp_wc_publish (sw_if_index0, &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002827 }
2828
John Lo1edfba92016-08-27 01:11:57 -04002829 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002830 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002831 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2832 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2833 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002834 {
2835 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002836 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002837 }
2838 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2839
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002840 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002841 goto next_l2_feature; /* MAC not found */
Neale Rannsd2bb6142019-03-04 14:11:25 -08002842 if (PREDICT_FALSE (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2843 arp0->ip4_over_ethernet[1].ip4.as_u32))
2844 goto next_l2_feature; /* GARP */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002845
John Lo1edfba92016-08-27 01:11:57 -04002846 /* MAC found, send ARP reply -
2847 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002848 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2849 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2850 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Neale Ranns37029302018-08-10 05:30:06 -07002851 mac_address_from_bytes (&arp0->ip4_over_ethernet[0].mac, macp0);
Dave Barach178cf492018-11-13 16:34:13 -05002852 clib_memcpy_fast (eth0->dst_address, eth0->src_address, 6);
2853 clib_memcpy_fast (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002854 n_replies_sent += 1;
2855
John Lo1edfba92016-08-27 01:11:57 -04002856 output_response:
2857 /* For BVI, need to use l2-fwd node to send ARP reply as
2858 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002859 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002860 if (PREDICT_FALSE (cfg0->bvi))
2861 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002862 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002863 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2864 goto next_l2_feature;
2865 }
2866
John Lo1edfba92016-08-27 01:11:57 -04002867 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002868 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2869 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002870 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2871 to_next, n_left_to_next, pi0,
2872 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002873 continue;
2874
John Lo1edfba92016-08-27 01:11:57 -04002875 check_ip6_nd:
2876 /* IP6 ND event notification or solicitation handling to generate
2877 local response instead of flooding */
2878 iph0 = (ip6_header_t *) l3h0;
2879 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2880 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002881 !ip6_address_is_unspecified
2882 (&iph0->src_address)))
2883 {
2884 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002885 if (vnet_ip6_nd_term
2886 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002887 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002888 goto output_response;
2889 }
2890
Ed Warnickecb9cada2015-12-08 15:45:58 -07002891 next_l2_feature:
2892 {
John Lobeb0b2e2017-07-22 00:21:36 -04002893 next0 = vnet_l2_feature_next (p0, arp_term_next_node_index,
2894 L2INPUT_FEAT_ARP_TERM);
Neale Rannsb80c5362016-10-08 13:03:40 +01002895 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2896 to_next, n_left_to_next,
2897 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002898 continue;
2899 }
2900
2901 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002902 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2903 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2904 arp0->ip4_over_ethernet[1].ip4.as_u32))
2905 {
2906 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2907 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002908 next0 = ARP_TERM_NEXT_DROP;
2909 p0->error = node->errors[error0];
2910
Neale Rannsb80c5362016-10-08 13:03:40 +01002911 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2912 to_next, n_left_to_next, pi0,
2913 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002914 }
2915
2916 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2917 }
2918
2919 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002920 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002921 return frame->n_vectors;
2922}
2923
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002924/* *INDENT-OFF* */
2925VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002926 .function = arp_term_l2bd,
2927 .name = "arp-term-l2bd",
2928 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002929 .n_errors = ETHERNET_ARP_N_ERROR,
2930 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002931 .n_next_nodes = ARP_TERM_N_NEXT,
2932 .next_nodes = {
2933 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2934 [ARP_TERM_NEXT_DROP] = "error-drop",
2935 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002936 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002937 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002938};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002939/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002940
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002941clib_error_t *
2942arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002943{
2944 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002945 feat_bitmap_init_next_nodes (vm,
2946 arp_term_l2bd_node.index,
2947 L2INPUT_N_FEAT,
2948 l2input_get_feat_names (),
2949 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002950 return 0;
2951}
2952
2953VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002954
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002955void
2956change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2957{
2958 if (e->sw_if_index == sw_if_index)
2959 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002960 adj_nbr_walk_nh4 (e->sw_if_index,
2961 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002962 }
2963}
2964
2965void
Neale Ranns3be6b282016-12-20 14:24:01 +00002966ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002967{
2968 ethernet_arp_main_t *am = &ethernet_arp_main;
2969 ethernet_arp_ip4_entry_t *e;
Neale Rannsc819fc62018-02-16 02:44:05 -08002970 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002971
2972 /* *INDENT-OFF* */
2973 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002974 ({
2975 change_arp_mac (sw_if_index, e);
2976 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002977 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08002978
2979 ai = adj_glean_get (FIB_PROTOCOL_IP4, sw_if_index);
2980
2981 if (ADJ_INDEX_INVALID != ai)
2982 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002983}
2984
John Lo7e9743a2017-09-23 08:59:58 -04002985void
Steven9f781d82018-06-05 11:09:32 -07002986send_ip4_garp (vlib_main_t * vm, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07002987{
2988 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002989 ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
Neale Ranns25b04942018-04-04 09:34:50 -07002990
Steven9f781d82018-06-05 11:09:32 -07002991 send_ip4_garp_w_addr (vm, ip4_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07002992}
2993
2994void
2995send_ip4_garp_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07002996 const ip4_address_t * ip4_addr, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04002997{
2998 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002999 vnet_main_t *vnm = vnet_get_main ();
3000 u8 *rewrite, rewrite_len;
3001 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
John Lo8b81cb42017-06-26 01:40:20 -04003002
3003 if (ip4_addr)
3004 {
3005 clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
3006 format_ip4_address, ip4_addr, sw_if_index);
3007
3008 /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
3009 where the interface IP/MAC pair is used for both source and request
3010 MAC/IP pairs in the request */
3011 u32 bi = 0;
3012 ethernet_arp_header_t *h = vlib_packet_template_get_packet
3013 (vm, &i4m->ip4_arp_request_packet_template, &bi);
John Lo084606b2018-06-19 15:27:48 -04003014
3015 if (!h)
3016 return;
3017
Neale Ranns37029302018-08-10 05:30:06 -07003018 mac_address_from_bytes (&h->ip4_over_ethernet[0].mac, hi->hw_address);
3019 mac_address_from_bytes (&h->ip4_over_ethernet[1].mac, hi->hw_address);
John Lo8b81cb42017-06-26 01:40:20 -04003020 h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
3021 h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
3022
3023 /* Setup MAC header with ARP Etype and broadcast DMAC */
3024 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07003025 rewrite =
3026 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_ARP,
3027 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST);
3028 rewrite_len = vec_len (rewrite);
3029 vlib_buffer_advance (b, -rewrite_len);
John Lo8b81cb42017-06-26 01:40:20 -04003030 ethernet_header_t *e = vlib_buffer_get_current (b);
Dave Barach178cf492018-11-13 16:34:13 -05003031 clib_memcpy_fast (e->dst_address, rewrite, rewrite_len);
Steven9f781d82018-06-05 11:09:32 -07003032 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04003033
3034 /* Send GARP packet out the specified interface */
3035 vnet_buffer (b)->sw_if_index[VLIB_RX] =
3036 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
3037 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
3038 u32 *to_next = vlib_frame_vector_args (f);
3039 to_next[0] = bi;
3040 f->n_vectors = 1;
3041 vlib_put_frame_to_node (vm, hi->output_node_index, f);
3042 }
3043}
3044
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07003045/*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07003046 * Remove any arp entries associated with the specified interface
Pavel Kotucek18934e62018-11-14 09:24:16 +01003047 */
Neale Ranns8f215b42019-02-22 12:40:53 +00003048static clib_error_t *
Pavel Kotucek18934e62018-11-14 09:24:16 +01003049vnet_arp_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
3050{
3051 if (!is_add && sw_if_index != ~0)
3052 {
3053 ethernet_arp_main_t *am = &ethernet_arp_main;
3054 ethernet_arp_ip4_entry_t *e;
3055 /* *INDENT-OFF* */
3056 pool_foreach (e, am->ip4_entry_pool, ({
3057 if (e->sw_if_index != sw_if_index)
3058 continue;
Neale Ranns37029302018-08-10 05:30:06 -07003059 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
3060 .sw_if_index = sw_if_index,
3061 .ip4 = e->ip4_address,
3062 };
Pavel Kotucek18934e62018-11-14 09:24:16 +01003063 vnet_arp_unset_ip4_over_ethernet_internal (vnm, &args);
3064 }));
3065 /* *INDENT-ON* */
3066 }
Neale Ranns8f215b42019-02-22 12:40:53 +00003067
3068 return (NULL);
Pavel Kotucek18934e62018-11-14 09:24:16 +01003069}
3070
3071VNET_SW_INTERFACE_ADD_DEL_FUNCTION (vnet_arp_delete_sw_interface);
3072
3073/*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07003074 * fd.io coding-style-patch-verification: ON
3075 *
3076 * Local Variables:
3077 * eval: (c-set-style "gnu")
3078 * End:
3079 */