blob: 86ad9f3decf7fcdc00425e825a5bef2776bf6d89 [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);
Neale Ranns1ff56f02019-07-30 06:29:47 -0700463 vnet_feature_enable_disable ("arp", "arp-disabled", sw_if_index, 0, NULL,
464 0);
Neale Ranns57e53bb2019-05-29 13:58:43 +0000465}
466
467static int
468vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
469 vnet_arp_set_ip4_over_ethernet_rpc_args_t
470 * args);
471
472static void
473arp_disable (ethernet_arp_main_t * am, u32 sw_if_index)
474{
475 ethernet_arp_interface_t *eai;
476 ethernet_arp_ip4_entry_t *e;
477 u32 i, *to_delete = 0;
478 hash_pair_t *pair;
479
480 if (!arp_is_enabled (am, sw_if_index))
481 return;
482
Neale Ranns1ff56f02019-07-30 06:29:47 -0700483 vnet_feature_enable_disable ("arp", "arp-disabled", sw_if_index, 1, NULL,
484 0);
Neale Ranns57e53bb2019-05-29 13:58:43 +0000485 vnet_feature_enable_disable ("arp", "arp-reply", sw_if_index, 0, NULL, 0);
486
487 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
488
489
490 /* *INDENT-OFF* */
491 hash_foreach_pair (pair, eai->arp_entries,
492 ({
493 e = pool_elt_at_index(am->ip4_entry_pool,
494 pair->value[0]);
495 vec_add1 (to_delete, e - am->ip4_entry_pool);
496 }));
497 /* *INDENT-ON* */
498
499 for (i = 0; i < vec_len (to_delete); i++)
500 {
501 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
502
503 vnet_arp_set_ip4_over_ethernet_rpc_args_t delme = {
504 .ip4.as_u32 = e->ip4_address.as_u32,
505 .sw_if_index = e->sw_if_index,
506 .flags = ETHERNET_ARP_ARGS_FLUSH,
507 };
508 mac_address_copy (&delme.mac, &e->mac);
509
510 vnet_arp_flush_ip4_over_ethernet_internal (vnet_get_main (), &delme);
511 }
512
513 vec_free (to_delete);
514
515 eai->enabled = 0;
516}
517
Neale Rannsb80c5362016-10-08 13:03:40 +0100518void
519arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
520{
521 ethernet_arp_main_t *am = &ethernet_arp_main;
522 ethernet_arp_interface_t *arp_int;
523 ethernet_arp_ip4_entry_t *e;
524 ip_adjacency_t *adj;
525
526 adj = adj_get (ai);
527
Neale Ranns57e53bb2019-05-29 13:58:43 +0000528 arp_enable (am, sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100529 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
530 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
531
Neale Ranns32e1c012016-11-22 17:07:28 +0000532 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100533 {
Ole Trøan438f6302018-02-15 21:56:06 +0000534 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800535 adj_glean_update_rewrite (ai);
536 break;
537 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000538 if (NULL != e)
539 {
540 adj_nbr_walk_nh4 (sw_if_index,
541 &e->ip4_address, arp_mk_complete_walk, e);
542 }
543 else
544 {
545 /*
546 * no matching ARP entry.
547 * construct the rewrite required to for an ARP packet, and stick
548 * that in the adj's pipe to smoke.
549 */
550 adj_nbr_update_rewrite
551 (ai,
552 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
553 ethernet_build_rewrite
554 (vnm,
555 sw_if_index,
556 VNET_LINK_ARP,
557 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
558
559 /*
560 * since the FIB has added this adj for a route, it makes sense it
561 * may want to forward traffic sometime soon. Let's send a
562 * speculative ARP. just one. If we were to do periodically that
563 * wouldn't be bad either, but that's more code than i'm prepared to
564 * write at this time for relatively little reward.
565 */
566 arp_nbr_probe (adj);
567 }
568 break;
Neale Ranns1855b8e2018-07-11 10:31:26 -0700569 case IP_LOOKUP_NEXT_BCAST:
570 adj_nbr_update_rewrite (ai,
571 ADJ_NBR_REWRITE_FLAG_COMPLETE,
572 ethernet_build_rewrite
573 (vnm,
574 sw_if_index,
575 VNET_LINK_IP4,
576 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
577 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000578 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700579 {
580 /*
581 * Construct a partial rewrite from the known ethernet mcast dest MAC
582 */
583 u8 *rewrite;
584 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100585
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700586 rewrite = ethernet_build_rewrite (vnm,
587 sw_if_index,
588 adj->ia_link,
589 ethernet_ip4_mcast_dst_addr ());
590 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000591
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700592 /*
593 * Complete the remaining fields of the adj's rewrite to direct the
594 * complete of the rewrite at switch time by copying in the IP
595 * dst address's bytes.
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700596 * Offset is 2 bytes into the MAC destination address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700597 */
Neale Ranns889fe942017-06-01 05:43:19 -0400598 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000599
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700600 break;
601 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000602 case IP_LOOKUP_NEXT_DROP:
603 case IP_LOOKUP_NEXT_PUNT:
604 case IP_LOOKUP_NEXT_LOCAL:
605 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800606 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000607 case IP_LOOKUP_NEXT_MIDCHAIN:
608 case IP_LOOKUP_NEXT_ICMP_ERROR:
609 case IP_LOOKUP_N_NEXT:
610 ASSERT (0);
611 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100612 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613}
614
Neale Ranns15002542017-09-10 04:39:11 -0700615static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700616arp_adj_fib_add (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700617{
618 fib_prefix_t pfx = {
619 .fp_len = 32,
620 .fp_proto = FIB_PROTOCOL_IP4,
621 .fp_addr.ip4 = e->ip4_address,
622 };
623
624 e->fib_entry_index =
625 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
626 FIB_ENTRY_FLAG_ATTACHED,
627 DPO_PROTO_IP4, &pfx.fp_addr,
628 e->sw_if_index, ~0, 1, NULL,
629 FIB_ROUTE_PATH_FLAG_NONE);
630 fib_table_lock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
631}
632
Neale Rannscf7efe02018-09-24 08:34:11 +0000633static void
John Lo4fed5b12018-05-22 03:35:06 -0400634arp_adj_fib_remove (ethernet_arp_ip4_entry_t * e, u32 fib_index)
635{
636 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
637 {
638 fib_prefix_t pfx = {
639 .fp_len = 32,
640 .fp_proto = FIB_PROTOCOL_IP4,
641 .fp_addr.ip4 = e->ip4_address,
642 };
643 u32 fib_index;
644
645 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
646
647 fib_table_entry_path_remove (fib_index, &pfx,
648 FIB_SOURCE_ADJ,
649 DPO_PROTO_IP4,
650 &pfx.fp_addr,
651 e->sw_if_index, ~0, 1,
652 FIB_ROUTE_PATH_FLAG_NONE);
653 fib_table_unlock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
654 }
655}
656
657static ethernet_arp_ip4_entry_t *
658force_reuse_arp_entry (void)
659{
660 ethernet_arp_ip4_entry_t *e;
661 ethernet_arp_main_t *am = &ethernet_arp_main;
662 u32 count = 0;
663 u32 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
664 if (index == ~0) /* Try again from elt 0 */
665 index = pool_next_index (am->ip4_entry_pool, index);
666
667 /* Find a non-static random entry to free up for reuse */
668 do
669 {
670 if ((count++ == 100) || (index == ~0))
671 return NULL; /* give up after 100 entries */
672 e = pool_elt_at_index (am->ip4_entry_pool, index);
673 am->arp_delete_rotor = index;
674 index = pool_next_index (am->ip4_entry_pool, index);
675 }
Neale Ranns37029302018-08-10 05:30:06 -0700676 while (e->flags & IP_NEIGHBOR_FLAG_STATIC);
John Lo4fed5b12018-05-22 03:35:06 -0400677
678 /* Remove ARP entry from its interface and update fib */
679 hash_unset
680 (am->ethernet_arp_by_sw_if_index[e->sw_if_index].arp_entries,
681 e->ip4_address.as_u32);
682 arp_adj_fib_remove
683 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
684 adj_nbr_walk_nh4 (e->sw_if_index,
Neale Rannscf7efe02018-09-24 08:34:11 +0000685 &e->ip4_address, arp_mk_incomplete_walk, e);
John Lo4fed5b12018-05-22 03:35:06 -0400686 return e;
687}
688
Eyal Bari20197482017-09-13 12:29:08 +0300689static int
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100691 vnet_arp_set_ip4_over_ethernet_rpc_args_t
692 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700694 ethernet_arp_ip4_entry_t *e = 0;
695 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700696 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700697 int make_new_arp_cache_entry = 1;
698 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700699 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100700 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100701 u32 sw_if_index = args->sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700702
Neale Ranns57e53bb2019-05-29 13:58:43 +0000703 arp_enable (am, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100705 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100707 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 {
Neale Ranns37029302018-08-10 05:30:06 -0700709 p = hash_get (arp_int->arp_entries, args->ip4.as_u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100710 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700711 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100712 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
713
714 /* Refuse to over-write static arp. */
Neale Ranns37029302018-08-10 05:30:06 -0700715 if (!(args->nbr_flags & IP_NEIGHBOR_FLAG_STATIC) &&
716 (e->flags & IP_NEIGHBOR_FLAG_STATIC))
John Lo0e6f4d62018-07-13 17:29:58 -0400717 {
718 /* if MAC address match, still check to send event */
Neale Ranns37029302018-08-10 05:30:06 -0700719 if (mac_address_equal (&e->mac, &args->mac))
John Lo0e6f4d62018-07-13 17:29:58 -0400720 goto check_customers;
721 return -2;
722 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100723 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700724 }
Damjan Marion102ec522016-03-29 13:18:17 +0200725 }
726
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727 if (make_new_arp_cache_entry)
728 {
John Lo4fed5b12018-05-22 03:35:06 -0400729 if (am->limit_arp_cache_size &&
730 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
731 {
732 e = force_reuse_arp_entry ();
733 if (NULL == e)
734 return -2;
735 }
736 else
737 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100738
739 if (NULL == arp_int->arp_entries)
John Lo4fed5b12018-05-22 03:35:06 -0400740 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100741
Neale Ranns37029302018-08-10 05:30:06 -0700742 hash_set (arp_int->arp_entries, args->ip4.as_u32,
743 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100744
745 e->sw_if_index = sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -0700746 e->ip4_address = args->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700747 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Ranns37029302018-08-10 05:30:06 -0700748 mac_address_copy (&e->mac, &args->mac);
Neale Rannsb80c5362016-10-08 13:03:40 +0100749
Neale Ranns37029302018-08-10 05:30:06 -0700750 if (!(args->nbr_flags & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800751 {
Neale Ranns15002542017-09-10 04:39:11 -0700752 arp_adj_fib_add (e,
753 ip4_fib_table_get_index_for_sw_if_index
754 (e->sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700755 }
756 else
757 {
Neale Ranns37029302018-08-10 05:30:06 -0700758 e->flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800759 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700760 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100761 else
762 {
763 /*
764 * prevent a DoS attack from the data-plane that
765 * spams us with no-op updates to the MAC address
766 */
Neale Ranns37029302018-08-10 05:30:06 -0700767 if (mac_address_equal (&e->mac, &args->mac))
John Lo7f358b32018-04-28 01:19:24 -0400768 {
769 e->time_last_updated = vlib_time_now (vm);
770 goto check_customers;
771 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100772
John Lo0e6f4d62018-07-13 17:29:58 -0400773 /* Update ethernet address. */
Neale Ranns37029302018-08-10 05:30:06 -0700774 mac_address_copy (&e->mac, &args->mac);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100775 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776
John Lo0e6f4d62018-07-13 17:29:58 -0400777 /* Update time stamp and flags. */
John Lo7f358b32018-04-28 01:19:24 -0400778 e->time_last_updated = vlib_time_now (vm);
Neale Ranns37029302018-08-10 05:30:06 -0700779 if (args->nbr_flags & IP_NEIGHBOR_FLAG_STATIC)
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500780 {
Neale Ranns37029302018-08-10 05:30:06 -0700781 e->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
782 e->flags |= IP_NEIGHBOR_FLAG_STATIC;
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500783 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100784 else
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500785 {
Neale Ranns37029302018-08-10 05:30:06 -0700786 e->flags &= ~IP_NEIGHBOR_FLAG_STATIC;
787 e->flags |= IP_NEIGHBOR_FLAG_DYNAMIC;
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500788 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100789
Neale Rannsb80c5362016-10-08 13:03:40 +0100790 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791
Dave Barach59b25652017-09-10 15:04:27 -0400792check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793 /* Customer(s) waiting for this address to be resolved? */
Neale Ranns37029302018-08-10 05:30:06 -0700794 p = hash_get (am->pending_resolutions_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795 if (p)
796 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100797 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798 next_index = p[0];
799
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700800 while (next_index != (u32) ~ 0)
801 {
802 pr = pool_elt_at_index (am->pending_resolutions, next_index);
803 vlib_process_signal_event (vm, pr->node_index,
804 pr->type_opaque, pr->data);
805 next_index = pr->next_index;
806 pool_put (am->pending_resolutions, pr);
807 }
808
Neale Ranns37029302018-08-10 05:30:06 -0700809 hash_unset (am->pending_resolutions_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 }
811
812 /* Customer(s) requesting ARP event for this address? */
Neale Ranns37029302018-08-10 05:30:06 -0700813 p = hash_get (am->mac_changes_by_address, args->ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814 if (p)
815 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100816 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817 next_index = p[0];
818
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700819 while (next_index != (u32) ~ 0)
820 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700821 int rv = 1;
822 mc = pool_elt_at_index (am->mac_changes, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700824 /* Call the user's data callback, return 1 to suppress dup events */
Neale Ranns37029302018-08-10 05:30:06 -0700825 if (mc->data_callback)
826 rv = (mc->data_callback) (mc->data, &args->mac, sw_if_index, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700827
Damjan Marion607de1a2016-08-16 22:53:54 +0200828 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700829 * Signal the resolver process, as long as the user
830 * says they want to be notified
831 */
832 if (rv == 0)
833 vlib_process_signal_event (vm, mc->node_index,
834 mc->type_opaque, mc->data);
835 next_index = mc->next_index;
836 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 }
838
839 return 0;
840}
841
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700842void
843vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
844 void *address_arg,
845 uword node_index,
846 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700848 ethernet_arp_main_t *am = &ethernet_arp_main;
849 ip4_address_t *address = address_arg;
850 uword *p;
851 pending_resolution_t *pr;
852
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853 pool_get (am->pending_resolutions, pr);
854
855 pr->next_index = ~0;
856 pr->node_index = node_index;
857 pr->type_opaque = type_opaque;
858 pr->data = data;
859 pr->data_callback = 0;
860
861 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
862 if (p)
863 {
864 /* Insert new resolution at the head of the list */
865 pr->next_index = p[0];
866 hash_unset (am->pending_resolutions_by_address, address->as_u32);
867 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700868
869 hash_set (am->pending_resolutions_by_address, address->as_u32,
870 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871}
872
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700873int
874vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
Neale Ranns37029302018-08-10 05:30:06 -0700875 arp_change_event_cb_t data_callback,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700876 u32 pid,
877 void *address_arg,
878 uword node_index,
879 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700881 ethernet_arp_main_t *am = &ethernet_arp_main;
882 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700883
Eyal Bari8db1de82017-03-31 02:15:17 +0300884 /* Try to find an existing entry */
885 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
886 u32 *p = first;
887 pending_resolution_t *mc;
888 while (p && *p != ~0)
889 {
890 mc = pool_elt_at_index (am->mac_changes, *p);
891 if (mc->node_index == node_index && mc->type_opaque == type_opaque
892 && mc->pid == pid)
893 break;
894 p = &mc->next_index;
895 }
896
897 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898 if (is_add)
899 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300900 if (found)
901 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
902
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903 pool_get (am->mac_changes, mc);
Neale Ranns37029302018-08-10 05:30:06 -0700904 /* *INDENT-OFF* */
Eyal Bari8db1de82017-03-31 02:15:17 +0300905 *mc = (pending_resolution_t)
906 {
Neale Ranns37029302018-08-10 05:30:06 -0700907 .next_index = ~0,
908 .node_index = node_index,
909 .type_opaque = type_opaque,
910 .data = data,
911 .data_callback = data_callback,
912 .pid = pid,
913 };
914 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915
Eyal Bari8db1de82017-03-31 02:15:17 +0300916 /* Insert new resolution at the end of the list */
917 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300919 p[0] = new_idx;
920 else
921 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700922 }
923 else
924 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300925 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700926 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927
Eyal Bari8db1de82017-03-31 02:15:17 +0300928 /* Clients may need to clean up pool entries, too */
Neale Ranns37029302018-08-10 05:30:06 -0700929 if (data_callback)
930 /* no new mac addrs */
931 (data_callback) (mc->data, NULL, ~0, NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932
Eyal Bari8db1de82017-03-31 02:15:17 +0300933 /* Remove the entry from the list and delete the entry */
934 *p = mc->next_index;
935 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700936
Eyal Bari8db1de82017-03-31 02:15:17 +0300937 /* Remove from hash if we deleted the last entry */
938 if (*p == ~0 && p == first)
939 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700940 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300941 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942}
943
944/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700945typedef enum
946{
Neale Ranns57e53bb2019-05-29 13:58:43 +0000947 ARP_REPLY_NEXT_DROP,
948 ARP_REPLY_NEXT_REPLY_TX,
949 ARP_REPLY_N_NEXT,
950} arp_reply_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951
952#define foreach_ethernet_arp_error \
953 _ (replies_sent, "ARP replies sent") \
954 _ (l2_type_not_ethernet, "L2 type not ethernet") \
955 _ (l3_type_not_ip4, "L3 type not IP4") \
956 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
957 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
Neale Ranns59ae61e2018-06-07 18:09:49 -0700958 _ (l3_dst_address_unset, "IP4 destination address is unset") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
960 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
961 _ (replies_received, "ARP replies received") \
962 _ (opcode_not_request, "ARP opcode not request") \
963 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
964 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100966 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800967 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Neale Ranns7425f922019-01-23 00:36:16 -0800968 _ (unnumbered_mismatch, "RX interface is unnumbered to different subnet") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700969
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700970typedef enum
971{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
973 foreach_ethernet_arp_error
974#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700975 ETHERNET_ARP_N_ERROR,
Neale Ranns57e53bb2019-05-29 13:58:43 +0000976} ethernet_arp_reply_error_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977
Neale Ranns436d06b2016-11-30 07:41:53 -0800978static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700979arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700980 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700982 vnet_main_t *vnm = vnet_get_main ();
983 vnet_interface_main_t *vim = &vnm->interface_main;
984 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700986 /* verify that the input interface is unnumbered to the connected.
987 * the connected interface is the interface on which the subnet is
988 * configured */
989 si = &vim->sw_interfaces[input_sw_if_index];
990
991 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
992 (si->unnumbered_sw_if_index == conn_sw_if_index)))
993 {
994 /* the input interface is not unnumbered to the interface on which
995 * the sub-net is configured that covers the ARP request.
996 * So this is not the case for unnumbered.. */
997 return 0;
998 }
999
Neale Ranns436d06b2016-11-30 07:41:53 -08001000 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001001}
1002
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001003static u32
1004arp_learn (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00001005 ethernet_arp_main_t * am, u32 sw_if_index,
1006 const ethernet_arp_ip4_over_ethernet_address_t * addr)
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001007{
Neale Ranns37029302018-08-10 05:30:06 -07001008 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001009 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
1010}
1011
Neale Ranns57e53bb2019-05-29 13:58:43 +00001012typedef enum arp_input_next_t_
1013{
1014 ARP_INPUT_NEXT_DROP,
Neale Rannsfe2fff32019-06-26 08:22:01 -07001015 ARP_INPUT_NEXT_DISABLED,
Neale Ranns57e53bb2019-05-29 13:58:43 +00001016 ARP_INPUT_N_NEXT,
1017} arp_input_next_t;
1018
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001020arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021{
Neale Ranns57e53bb2019-05-29 13:58:43 +00001022 u32 n_left_from, next_index, *from, *to_next, n_left_to_next;
1023 ethernet_arp_main_t *am = &ethernet_arp_main;
1024
1025 from = vlib_frame_vector_args (frame);
1026 n_left_from = frame->n_vectors;
1027 next_index = node->cached_next_index;
1028
1029 if (node->flags & VLIB_NODE_FLAG_TRACE)
1030 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1031 /* stride */ 1,
1032 sizeof (ethernet_arp_input_trace_t));
1033
1034 while (n_left_from > 0)
1035 {
1036 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1037
1038 while (n_left_from > 0 && n_left_to_next > 0)
1039 {
1040 const ethernet_arp_header_t *arp0;
1041 arp_input_next_t next0;
1042 vlib_buffer_t *p0;
1043 u32 pi0, error0;
1044
1045 pi0 = to_next[0] = from[0];
1046 from += 1;
1047 to_next += 1;
1048 n_left_from -= 1;
1049 n_left_to_next -= 1;
1050
1051 p0 = vlib_get_buffer (vm, pi0);
1052 arp0 = vlib_buffer_get_current (p0);
1053
1054 error0 = ETHERNET_ARP_ERROR_replies_sent;
1055 next0 = ARP_INPUT_NEXT_DROP;
1056
1057 error0 =
1058 (arp0->l2_type !=
1059 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
1060 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
1061 error0 =
1062 (arp0->l3_type !=
1063 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
1064 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
1065 error0 =
1066 (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ?
1067 ETHERNET_ARP_ERROR_l3_dst_address_unset : error0);
1068
1069 if (ETHERNET_ARP_ERROR_replies_sent == error0)
Neale Rannsfe2fff32019-06-26 08:22:01 -07001070 {
1071 next0 = ARP_INPUT_NEXT_DISABLED;
1072 vnet_feature_arc_start (am->feature_arc_index,
1073 vnet_buffer (p0)->sw_if_index[VLIB_RX],
1074 &next0, p0);
1075 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001076 else
1077 p0->error = node->errors[error0];
1078
1079 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1080 n_left_to_next, pi0, next0);
1081 }
1082
1083 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1084 }
1085
1086 return frame->n_vectors;
1087}
1088
Neale Rannsfe2fff32019-06-26 08:22:01 -07001089typedef enum arp_disabled_next_t_
1090{
1091 ARP_DISABLED_NEXT_DROP,
1092 ARP_DISABLED_N_NEXT,
1093} arp_disabled_next_t;
1094
1095#define foreach_arp_disabled_error \
1096 _ (DISABLED, "ARP Disabled on this interface") \
1097
1098typedef enum
1099{
1100#define _(sym,string) ARP_DISABLED_ERROR_##sym,
1101 foreach_arp_disabled_error
1102#undef _
1103 ARP_DISABLED_N_ERROR,
1104} arp_disabled_error_t;
1105
1106static char *arp_disabled_error_strings[] = {
1107#define _(sym,string) string,
1108 foreach_arp_disabled_error
1109#undef _
1110};
1111
1112static uword
1113arp_disabled (vlib_main_t * vm,
1114 vlib_node_runtime_t * node, vlib_frame_t * frame)
1115{
1116 u32 n_left_from, next_index, *from, *to_next, n_left_to_next;
1117
1118 from = vlib_frame_vector_args (frame);
1119 n_left_from = frame->n_vectors;
1120 next_index = node->cached_next_index;
1121
1122 if (node->flags & VLIB_NODE_FLAG_TRACE)
1123 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1124 /* stride */ 1,
1125 sizeof (ethernet_arp_input_trace_t));
1126
1127 while (n_left_from > 0)
1128 {
1129 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1130
1131 while (n_left_from > 0 && n_left_to_next > 0)
1132 {
1133 arp_disabled_next_t next0 = ARP_DISABLED_NEXT_DROP;
1134 vlib_buffer_t *p0;
1135 u32 pi0, error0;
1136
1137 next0 = ARP_DISABLED_NEXT_DROP;
1138 error0 = ARP_DISABLED_ERROR_DISABLED;
1139
1140 pi0 = to_next[0] = from[0];
1141 from += 1;
1142 to_next += 1;
1143 n_left_from -= 1;
1144 n_left_to_next -= 1;
1145
1146 p0 = vlib_get_buffer (vm, pi0);
1147 p0->error = node->errors[error0];
1148
1149 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1150 n_left_to_next, pi0, next0);
1151 }
1152
1153 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1154 }
1155
1156 return frame->n_vectors;
1157}
1158
Neale Ranns57e53bb2019-05-29 13:58:43 +00001159static_always_inline u32
1160arp_mk_reply (vnet_main_t * vnm,
1161 vlib_buffer_t * p0,
1162 u32 sw_if_index0,
1163 const ip4_address_t * if_addr0,
1164 ethernet_arp_header_t * arp0, ethernet_header_t * eth_rx)
1165{
1166 vnet_hw_interface_t *hw_if0;
1167 u8 *rewrite0, rewrite0_len;
1168 ethernet_header_t *eth_tx;
1169 u32 next0;
1170
1171 /* Send a reply.
1172 An adjacency to the sender is not always present,
1173 so we use the interface to build us a rewrite string
1174 which will contain all the necessary tags. */
1175 rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1176 VNET_LINK_ARP, eth_rx->src_address);
1177 rewrite0_len = vec_len (rewrite0);
1178
1179 /* Figure out how much to rewind current data from adjacency. */
1180 vlib_buffer_advance (p0, -rewrite0_len);
1181 eth_tx = vlib_buffer_get_current (p0);
1182
1183 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1184 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1185
1186 /* Send reply back through input interface */
1187 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1188 next0 = ARP_REPLY_NEXT_REPLY_TX;
1189
1190 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1191
1192 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1193
1194 mac_address_from_bytes (&arp0->ip4_over_ethernet[0].mac,
1195 hw_if0->hw_address);
1196 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1197 if_addr0->data_u32;
1198
1199 /* Hardware must be ethernet-like. */
1200 ASSERT (vec_len (hw_if0->hw_address) == 6);
1201
1202 /* the rx nd tx ethernet headers wil overlap in the case
1203 * when we received a tagged VLAN=0 packet, but we are sending
1204 * back untagged */
1205 clib_memcpy_fast (eth_tx, rewrite0, vec_len (rewrite0));
1206 vec_free (rewrite0);
1207
1208 return (next0);
1209}
1210
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001211enum arp_dst_fib_type
1212{
1213 ARP_DST_FIB_NONE,
1214 ARP_DST_FIB_ADJ,
1215 ARP_DST_FIB_CONN
1216};
1217
1218/*
1219 * we're looking for FIB sources that indicate the destination
1220 * is attached. There may be interposed DPO prior to the one
1221 * we are looking for
1222 */
1223static enum arp_dst_fib_type
1224arp_dst_fib_check (const fib_node_index_t fei, fib_entry_flag_t * flags)
1225{
1226 const fib_entry_t *entry = fib_entry_get (fei);
1227 const fib_entry_src_t *entry_src;
1228 fib_source_t src;
1229 /* *INDENT-OFF* */
1230 FOR_EACH_SRC_ADDED(entry, entry_src, src,
1231 ({
1232 *flags = fib_entry_get_flags_for_source (fei, src);
1233 if (fib_entry_is_sourced (fei, FIB_SOURCE_ADJ))
1234 return ARP_DST_FIB_ADJ;
1235 else if (FIB_ENTRY_FLAG_CONNECTED & *flags)
1236 return ARP_DST_FIB_CONN;
1237 }))
1238 /* *INDENT-ON* */
1239
1240 return ARP_DST_FIB_NONE;
1241}
1242
Neale Ranns57e53bb2019-05-29 13:58:43 +00001243static uword
1244arp_reply (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1245{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001246 ethernet_arp_main_t *am = &ethernet_arp_main;
1247 vnet_main_t *vnm = vnet_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001248 u32 n_left_from, next_index, *from, *to_next;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001249 u32 n_replies_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250
1251 from = vlib_frame_vector_args (frame);
1252 n_left_from = frame->n_vectors;
1253 next_index = node->cached_next_index;
1254
1255 if (node->flags & VLIB_NODE_FLAG_TRACE)
1256 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1257 /* stride */ 1,
1258 sizeof (ethernet_arp_input_trace_t));
1259
1260 while (n_left_from > 0)
1261 {
1262 u32 n_left_to_next;
1263
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001264 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265
1266 while (n_left_from > 0 && n_left_to_next > 0)
1267 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001268 vlib_buffer_t *p0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001269 ethernet_arp_header_t *arp0;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001270 ethernet_header_t *eth_rx;
Neale Rannsc5d43172018-07-30 08:04:40 -07001271 const ip4_address_t *if_addr0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001272 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001273 u8 dst_is_local0, is_vrrp_reply0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001274 fib_node_index_t dst_fei, src_fei;
Neale Rannsc5d43172018-07-30 08:04:40 -07001275 const fib_prefix_t *pfx0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001276 fib_entry_flag_t src_flags, dst_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001277
1278 pi0 = from[0];
1279 to_next[0] = pi0;
1280 from += 1;
1281 to_next += 1;
1282 n_left_from -= 1;
1283 n_left_to_next -= 1;
1284
1285 p0 = vlib_get_buffer (vm, pi0);
1286 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -07001287 /* Fill in ethernet header. */
1288 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289
Neale Ranns57e53bb2019-05-29 13:58:43 +00001290 next0 = ARP_REPLY_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291 error0 = ETHERNET_ARP_ERROR_replies_sent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1293
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001295 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1296 if (~0 == fib_index0)
1297 {
1298 error0 = ETHERNET_ARP_ERROR_interface_no_table;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001299 goto drop;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001300
1301 }
Neale Rannsca193612017-06-14 06:50:08 -07001302
1303 {
1304 /*
1305 * we're looking for FIB entries that indicate the source
1306 * is attached. There may be more specific non-attached
Neale Ranns2303cb12018-02-21 04:57:17 -08001307 * routes that match the source, but these do not influence
Neale Rannsca193612017-06-14 06:50:08 -07001308 * whether we respond to an ARP request, i.e. they do not
1309 * influence whether we are the correct way for the sender
1310 * to reach us, they only affect how we reach the sender.
1311 */
1312 fib_entry_t *src_fib_entry;
Neale Rannsc5d43172018-07-30 08:04:40 -07001313 const fib_prefix_t *pfx;
Neale Rannsca193612017-06-14 06:50:08 -07001314 fib_entry_src_t *src;
1315 fib_source_t source;
Neale Rannsca193612017-06-14 06:50:08 -07001316 int attached;
1317 int mask;
1318
1319 mask = 32;
1320 attached = 0;
1321
1322 do
1323 {
1324 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1325 &arp0->
1326 ip4_over_ethernet[0].ip4,
1327 mask);
1328 src_fib_entry = fib_entry_get (src_fei);
1329
1330 /*
1331 * It's possible that the source that provides the
1332 * flags we need, or the flags we must not have,
1333 * is not the best source, so check then all.
1334 */
1335 /* *INDENT-OFF* */
1336 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1337 ({
1338 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1339
1340 /* Reject requests/replies with our local interface
1341 address. */
1342 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1343 {
1344 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns24b170a2017-08-15 05:33:11 -07001345 /*
1346 * When VPP has an interface whose address is also
1347 * applied to a TAP interface on the host, then VPP's
1348 * TAP interface will be unnumbered to the 'real'
1349 * interface and do proxy ARP from the host.
1350 * The curious aspect of this setup is that ARP requests
1351 * from the host will come from the VPP's own address.
1352 * So don't drop immediately here, instead go see if this
1353 * is a proxy ARP case.
1354 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001355 goto next_feature;
Neale Rannsca193612017-06-14 06:50:08 -07001356 }
1357 /* A Source must also be local to subnet of matching
1358 * interface address. */
1359 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1360 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1361 {
1362 attached = 1;
1363 break;
1364 }
1365 /*
1366 * else
1367 * The packet was sent from an address that is not
1368 * connected nor attached i.e. it is not from an
1369 * address that is covered by a link's sub-net,
1370 * nor is it a already learned host resp.
1371 */
1372 }));
1373 /* *INDENT-ON* */
1374
1375 /*
1376 * shorter mask lookup for the next iteration.
1377 */
Neale Rannsc5d43172018-07-30 08:04:40 -07001378 pfx = fib_entry_get_prefix (src_fei);
1379 mask = pfx->fp_len - 1;
Neale Rannsca193612017-06-14 06:50:08 -07001380
1381 /*
1382 * continue until we hit the default route or we find
1383 * the attached we are looking for. The most likely
1384 * outcome is we find the attached with the first source
1385 * on the first lookup.
1386 */
1387 }
1388 while (!attached &&
1389 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1390
1391 if (!attached)
1392 {
1393 /*
1394 * the matching route is a not attached, i.e. it was
1395 * added as a result of routing, rather than interface/ARP
1396 * configuration. If the matching route is not a host route
1397 * (i.e. a /32)
1398 */
1399 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001400 goto drop;
Neale Rannsca193612017-06-14 06:50:08 -07001401 }
1402 }
1403
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001404 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1405 &arp0->ip4_over_ethernet[1].ip4,
1406 32);
1407 switch (arp_dst_fib_check (dst_fei, &dst_flags))
Neale Ranns59ae61e2018-06-07 18:09:49 -07001408 {
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001409 case ARP_DST_FIB_ADJ:
Neale Ranns59ae61e2018-06-07 18:09:49 -07001410 /*
1411 * We matched an adj-fib on ths source subnet (a /32 previously
1412 * added as a result of ARP). If this request is a gratuitous
1413 * ARP, then learn from it.
1414 * The check for matching an adj-fib, is to prevent hosts
1415 * from spamming us with gratuitous ARPS that might otherwise
1416 * blow our ARP cache
1417 */
1418 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1419 arp0->ip4_over_ethernet[1].ip4.as_u32)
1420 error0 = arp_learn (vnm, am, sw_if_index0,
1421 &arp0->ip4_over_ethernet[0]);
Neale Ranns57e53bb2019-05-29 13:58:43 +00001422 goto drop;
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001423 case ARP_DST_FIB_CONN:
1424 /* destination is connected, continue to process */
1425 break;
1426 case ARP_DST_FIB_NONE:
1427 /* destination is not connected, stop here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001429 goto next_feature;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001430 }
1431
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001432 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
Neale Rannsc5d43172018-07-30 08:04:40 -07001433 pfx0 = fib_entry_get_prefix (dst_fei);
1434 if_addr0 = &pfx0->fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001435
Matthew Smithcb9ab472017-05-16 21:35:56 -05001436 is_vrrp_reply0 =
1437 ((arp0->opcode ==
1438 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1439 &&
1440 (!memcmp
Neale Ranns37029302018-08-10 05:30:06 -07001441 (arp0->ip4_over_ethernet[0].mac.bytes, vrrp_prefix,
Matthew Smithcb9ab472017-05-16 21:35:56 -05001442 sizeof (vrrp_prefix))));
1443
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001444 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001445 match their L2-frame-level source addresses, unless it's
1446 a reply from a VRRP virtual router */
Neale Ranns37029302018-08-10 05:30:06 -07001447 if (!ethernet_mac_address_equal
1448 (eth_rx->src_address,
1449 arp0->ip4_over_ethernet[0].mac.bytes) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001450 {
1451 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
Neale Ranns57e53bb2019-05-29 13:58:43 +00001452 goto drop;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001453 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001454
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001455 /* Learn or update sender's mapping only for replies to addresses
1456 * that are local to the subnet */
1457 if (arp0->opcode ==
Neale Ranns59ae61e2018-06-07 18:09:49 -07001458 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001459 {
Neale Ranns59ae61e2018-06-07 18:09:49 -07001460 if (dst_is_local0)
1461 error0 = arp_learn (vnm, am, sw_if_index0,
1462 &arp0->ip4_over_ethernet[0]);
1463 else
1464 /* a reply for a non-local destination could be a GARP.
1465 * GARPs for hosts we know were handled above, so this one
1466 * we drop */
1467 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1468
Neale Ranns57e53bb2019-05-29 13:58:43 +00001469 goto next_feature;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001470 }
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001471 else if (arp0->opcode ==
1472 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request) &&
1473 (dst_is_local0 == 0))
1474 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001475 goto next_feature;
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001476 }
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001477
1478 /* Honor unnumbered interface, if any */
1479 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
1480 if (sw_if_index0 != conn_sw_if_index0 ||
1481 sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001482 {
Benoît Ganne8a8b83f2019-06-25 10:32:28 +02001483 /*
1484 * The interface the ARP is sent to or was received on is not the
1485 * interface on which the covering prefix is configured.
1486 * Maybe this is a case for unnumbered.
1487 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001488 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001489 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001490 error0 = ETHERNET_ARP_ERROR_unnumbered_mismatch;
1491 goto drop;
Neale Ranns436d06b2016-11-30 07:41:53 -08001492 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001493 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001494 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1495 arp0->ip4_over_ethernet[1].ip4.as_u32)
1496 {
1497 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1498 goto drop;
1499 }
1500
1501 next0 = arp_mk_reply (vnm, p0, sw_if_index0,
1502 if_addr0, arp0, eth_rx);
Neale Ranns4b919a52017-03-11 05:55:21 -08001503
Neale Ranns24b170a2017-08-15 05:33:11 -07001504 /* We are going to reply to this request, so, in the absence of
1505 errors, learn the sender */
1506 if (!error0)
1507 error0 = arp_learn (vnm, am, sw_if_index0,
1508 &arp0->ip4_over_ethernet[1]);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001509
Neale Ranns57e53bb2019-05-29 13:58:43 +00001510 n_replies_sent += 1;
1511 goto enqueue;
1512
1513 next_feature:
1514 vnet_feature_next (&next0, p0);
1515 goto enqueue;
1516
1517 drop:
1518 p0->error = node->errors[error0];
1519
1520 enqueue:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001521 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1522 n_left_to_next, pi0, next0);
Neale Ranns57e53bb2019-05-29 13:58:43 +00001523 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001524
Neale Ranns57e53bb2019-05-29 13:58:43 +00001525 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1526 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001527
Neale Ranns57e53bb2019-05-29 13:58:43 +00001528 vlib_error_count (vm, node->node_index,
1529 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
1530
1531 return frame->n_vectors;
1532}
1533
1534static uword
1535arp_proxy (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1536{
1537 ethernet_arp_main_t *am = &ethernet_arp_main;
1538 vnet_main_t *vnm = vnet_get_main ();
1539 u32 n_left_from, next_index, *from, *to_next;
1540 u32 n_arp_replies_sent = 0;
1541
1542 from = vlib_frame_vector_args (frame);
1543 n_left_from = frame->n_vectors;
1544 next_index = node->cached_next_index;
1545
1546 if (node->flags & VLIB_NODE_FLAG_TRACE)
1547 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1548 /* stride */ 1,
1549 sizeof (ethernet_arp_input_trace_t));
1550
1551 while (n_left_from > 0)
1552 {
1553 u32 n_left_to_next;
1554
1555 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1556
1557 while (n_left_from > 0 && n_left_to_next > 0)
1558 {
1559 vlib_buffer_t *p0;
1560 ethernet_arp_header_t *arp0;
1561 ethernet_header_t *eth_rx;
1562 ip4_address_t proxy_src;
1563 u32 pi0, error0, next0, sw_if_index0, fib_index0;
1564 u8 is_request0;
1565 ethernet_proxy_arp_t *pa;
1566
1567 pi0 = from[0];
1568 to_next[0] = pi0;
1569 from += 1;
1570 to_next += 1;
1571 n_left_from -= 1;
1572 n_left_to_next -= 1;
1573
1574 p0 = vlib_get_buffer (vm, pi0);
1575 arp0 = vlib_buffer_get_current (p0);
1576 /* Fill in ethernet header. */
1577 eth_rx = ethernet_buffer_get_header (p0);
1578
1579 is_request0 = arp0->opcode
1580 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
1581
1582 error0 = ETHERNET_ARP_ERROR_replies_sent;
1583 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1584 next0 = ARP_REPLY_NEXT_DROP;
1585
1586 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1587 if (~0 == fib_index0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001588 {
Neale Ranns57e53bb2019-05-29 13:58:43 +00001589 error0 = ETHERNET_ARP_ERROR_interface_no_table;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001590 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001591
1592 if (0 == error0 && is_request0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001593 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001594 u32 this_addr = clib_net_to_host_u32
1595 (arp0->ip4_over_ethernet[1].ip4.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001596
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001597 vec_foreach (pa, am->proxy_arps)
1598 {
Neale Ranns0053de62018-05-22 08:40:52 -07001599 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr.as_u32);
1600 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001601
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001602 /* an ARP request hit in the proxy-arp table? */
1603 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1604 (fib_index0 == pa->fib_index))
1605 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001606 proxy_src.as_u32 =
1607 arp0->ip4_over_ethernet[1].ip4.data_u32;
1608
Damjan Marion607de1a2016-08-16 22:53:54 +02001609 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001610 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001611 */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001612 n_arp_replies_sent++;
1613
1614 next0 =
1615 arp_mk_reply (vnm, p0, sw_if_index0, &proxy_src, arp0,
1616 eth_rx);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001617 }
1618 }
1619 }
Neale Ranns57e53bb2019-05-29 13:58:43 +00001620 else
1621 {
1622 p0->error = node->errors[error0];
1623 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001624
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001625 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1626 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001627 }
1628
1629 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1630 }
1631
1632 vlib_error_count (vm, node->node_index,
Neale Ranns57e53bb2019-05-29 13:58:43 +00001633 ETHERNET_ARP_ERROR_replies_sent, n_arp_replies_sent);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001634
Ed Warnickecb9cada2015-12-08 15:45:58 -07001635 return frame->n_vectors;
1636}
1637
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001638static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001639#define _(sym,string) string,
1640 foreach_ethernet_arp_error
1641#undef _
1642};
1643
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001644/* *INDENT-OFF* */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001645
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001646VLIB_REGISTER_NODE (arp_input_node, static) =
1647{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001648 .function = arp_input,
1649 .name = "arp-input",
1650 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651 .n_errors = ETHERNET_ARP_N_ERROR,
1652 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001653 .n_next_nodes = ARP_INPUT_N_NEXT,
1654 .next_nodes = {
1655 [ARP_INPUT_NEXT_DROP] = "error-drop",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001656 [ARP_INPUT_NEXT_DISABLED] = "arp-disabled",
1657 },
1658 .format_buffer = format_ethernet_arp_header,
1659 .format_trace = format_ethernet_arp_input_trace,
1660};
1661
1662VLIB_REGISTER_NODE (arp_disabled_node, static) =
1663{
1664 .function = arp_disabled,
1665 .name = "arp-disabled",
1666 .vector_size = sizeof (u32),
1667 .n_errors = ARP_DISABLED_N_ERROR,
1668 .error_strings = arp_disabled_error_strings,
1669 .n_next_nodes = ARP_DISABLED_N_NEXT,
1670 .next_nodes = {
1671 [ARP_INPUT_NEXT_DROP] = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001672 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001673 .format_buffer = format_ethernet_arp_header,
1674 .format_trace = format_ethernet_arp_input_trace,
1675};
Neale Ranns57e53bb2019-05-29 13:58:43 +00001676
1677VLIB_REGISTER_NODE (arp_reply_node, static) =
1678{
1679 .function = arp_reply,
1680 .name = "arp-reply",
1681 .vector_size = sizeof (u32),
1682 .n_errors = ETHERNET_ARP_N_ERROR,
1683 .error_strings = ethernet_arp_error_strings,
1684 .n_next_nodes = ARP_REPLY_N_NEXT,
1685 .next_nodes = {
1686 [ARP_REPLY_NEXT_DROP] = "error-drop",
1687 [ARP_REPLY_NEXT_REPLY_TX] = "interface-output",
1688 },
1689 .format_buffer = format_ethernet_arp_header,
1690 .format_trace = format_ethernet_arp_input_trace,
1691};
1692
1693VLIB_REGISTER_NODE (arp_proxy_node, static) =
1694{
1695 .function = arp_proxy,
1696 .name = "arp-proxy",
1697 .vector_size = sizeof (u32),
1698 .n_errors = ETHERNET_ARP_N_ERROR,
1699 .error_strings = ethernet_arp_error_strings,
1700 .n_next_nodes = ARP_REPLY_N_NEXT,
1701 .next_nodes = {
1702 [ARP_REPLY_NEXT_DROP] = "error-drop",
1703 [ARP_REPLY_NEXT_REPLY_TX] = "interface-output",
1704 },
1705 .format_buffer = format_ethernet_arp_header,
1706 .format_trace = format_ethernet_arp_input_trace,
1707};
1708
Neale Rannsfe2fff32019-06-26 08:22:01 -07001709/* Built-in ARP rx feature path definition */
1710VNET_FEATURE_ARC_INIT (arp_feat, static) =
1711{
1712 .arc_name = "arp",
1713 .start_nodes = VNET_FEATURES ("arp-input"),
Neale Ranns1ff56f02019-07-30 06:29:47 -07001714 .last_in_arc = "error-drop",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001715 .arc_index_ptr = &ethernet_arp_main.feature_arc_index,
1716};
1717
Neale Ranns57e53bb2019-05-29 13:58:43 +00001718VNET_FEATURE_INIT (arp_reply_feat_node, static) =
1719{
1720 .arc_name = "arp",
1721 .node_name = "arp-reply",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001722 .runs_before = VNET_FEATURES ("arp-disabled"),
Neale Ranns57e53bb2019-05-29 13:58:43 +00001723};
1724
1725VNET_FEATURE_INIT (arp_proxy_feat_node, static) =
1726{
1727 .arc_name = "arp",
1728 .node_name = "arp-proxy",
1729 .runs_after = VNET_FEATURES ("arp-reply"),
Neale Rannsfe2fff32019-06-26 08:22:01 -07001730 .runs_before = VNET_FEATURES ("arp-disabled"),
Neale Ranns57e53bb2019-05-29 13:58:43 +00001731};
1732
1733VNET_FEATURE_INIT (arp_drop_feat_node, static) =
1734{
1735 .arc_name = "arp",
Neale Rannsfe2fff32019-06-26 08:22:01 -07001736 .node_name = "arp-disabled",
1737 .runs_before = 0, /* last feature */
Neale Ranns57e53bb2019-05-29 13:58:43 +00001738};
1739
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001740/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001741
Ed Warnickecb9cada2015-12-08 15:45:58 -07001742static int
1743ip4_arp_entry_sort (void *a1, void *a2)
1744{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001745 ethernet_arp_ip4_entry_t *e1 = a1;
1746 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001747
1748 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001749 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001750
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001751 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001752 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001753 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001754 return cmp;
1755}
1756
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001757ethernet_arp_ip4_entry_t *
John Lo7f358b32018-04-28 01:19:24 -04001758ip4_neighbors_pool (void)
1759{
1760 ethernet_arp_main_t *am = &ethernet_arp_main;
1761 return am->ip4_entry_pool;
1762}
1763
1764ethernet_arp_ip4_entry_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001765ip4_neighbor_entries (u32 sw_if_index)
1766{
1767 ethernet_arp_main_t *am = &ethernet_arp_main;
1768 ethernet_arp_ip4_entry_t *n, *ns = 0;
1769
1770 /* *INDENT-OFF* */
1771 pool_foreach (n, am->ip4_entry_pool, ({
1772 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1773 continue;
1774 vec_add1 (ns, n[0]);
1775 }));
1776 /* *INDENT-ON* */
1777
1778 if (ns)
1779 vec_sort_with_function (ns, ip4_arp_entry_sort);
1780 return ns;
1781}
1782
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783static clib_error_t *
1784show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001785 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001786{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001787 vnet_main_t *vnm = vnet_get_main ();
1788 ethernet_arp_main_t *am = &ethernet_arp_main;
1789 ethernet_arp_ip4_entry_t *e, *es;
1790 ethernet_proxy_arp_t *pa;
1791 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001792 u32 sw_if_index;
1793
1794 /* Filter entries by interface if given. */
1795 sw_if_index = ~0;
1796 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1797
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001798 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001799 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001800 {
Keith Wilescb466842016-02-11 19:21:10 -06001801 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001802 vec_foreach (e, es)
1803 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001804 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001805 }
1806 vec_free (es);
1807 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001808
1809 if (vec_len (am->proxy_arps))
1810 {
1811 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001812 vec_foreach (pa, am->proxy_arps)
1813 {
1814 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1815 pa->fib_index,
1816 format_ip4_address, &pa->lo_addr,
1817 format_ip4_address, &pa->hi_addr);
1818 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001819 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001820
Ed Warnickecb9cada2015-12-08 15:45:58 -07001821 return error;
1822}
1823
Billy McFall2d085d92016-09-13 21:47:55 -04001824/*?
1825 * Display all the IPv4 ARP entries.
1826 *
1827 * @cliexpar
1828 * Example of how to display the IPv4 ARP table:
1829 * @cliexstart{show ip arp}
1830 * Time FIB IP4 Flags Ethernet Interface
1831 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1832 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1833 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1834 * Proxy arps enabled for:
1835 * Fib_index 0 6.0.0.1 - 6.0.0.11
1836 * @cliexend
1837 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001838/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001839VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1840 .path = "show ip arp",
1841 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001842 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001843};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001844/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001845
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001846typedef struct
1847{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001848 pg_edit_t l2_type, l3_type;
1849 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1850 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001851 struct
1852 {
Neale Ranns37029302018-08-10 05:30:06 -07001853 pg_edit_t mac;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854 pg_edit_t ip4;
1855 } ip4_over_ethernet[2];
1856} pg_ethernet_arp_header_t;
1857
1858static inline void
1859pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1860{
1861 /* Initialize fields that are not bit fields in the IP header. */
1862#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001863 _(l2_type);
1864 _(l3_type);
1865 _(n_l2_address_bytes);
1866 _(n_l3_address_bytes);
1867 _(opcode);
Neale Ranns37029302018-08-10 05:30:06 -07001868 _(ip4_over_ethernet[0].mac);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001869 _(ip4_over_ethernet[0].ip4);
Neale Ranns37029302018-08-10 05:30:06 -07001870 _(ip4_over_ethernet[1].mac);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001871 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001872#undef _
1873}
1874
1875uword
1876unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1877{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001878 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1879 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001880 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001881
Ed Warnickecb9cada2015-12-08 15:45:58 -07001882 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1883 &group_index);
1884 pg_ethernet_arp_header_init (p);
1885
1886 /* Defaults. */
1887 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1888 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1889 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1890 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1891
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001892 if (!unformat (input, "%U: %U/%U -> %U/%U",
1893 unformat_pg_edit,
1894 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1895 unformat_pg_edit,
Neale Ranns37029302018-08-10 05:30:06 -07001896 unformat_mac_address_t, &p->ip4_over_ethernet[0].mac,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001897 unformat_pg_edit,
1898 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1899 unformat_pg_edit,
Neale Ranns37029302018-08-10 05:30:06 -07001900 unformat_mac_address_t, &p->ip4_over_ethernet[1].mac,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001901 unformat_pg_edit,
1902 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001903 {
1904 /* Free up any edits we may have added. */
1905 pg_free_edit_group (s);
1906 return 0;
1907 }
1908 return 1;
1909}
1910
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001911clib_error_t *
1912ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001913{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001914 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001915
1916 am->limit_arp_cache_size = arp_limit;
1917 return 0;
1918}
1919
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001920/**
1921 * @brief Control Plane hook to remove an ARP entry
1922 */
1923int
1924vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00001925 u32 sw_if_index,
1926 const
1927 ethernet_arp_ip4_over_ethernet_address_t *
1928 a)
Damjan Marion102ec522016-03-29 13:18:17 +02001929{
Neale Ranns37029302018-08-10 05:30:06 -07001930 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1931 .sw_if_index = sw_if_index,
1932 .flags = ETHERNET_ARP_ARGS_REMOVE,
1933 .ip4 = a->ip4,
1934 .mac = a->mac,
1935 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001936
1937 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1938 (u8 *) & args, sizeof (args));
1939 return 0;
1940}
1941
1942/**
Eyal Bari20197482017-09-13 12:29:08 +03001943 * @brief publish wildcard arp event
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001944 * @param sw_if_index The interface on which the ARP entries are acted
Eyal Bari20197482017-09-13 12:29:08 +03001945 */
1946static int
Neale Rannscf7efe02018-09-24 08:34:11 +00001947vnet_arp_wc_publish (u32 sw_if_index,
1948 const ethernet_arp_ip4_over_ethernet_address_t * a)
Eyal Bari20197482017-09-13 12:29:08 +03001949{
Eyal Bari20197482017-09-13 12:29:08 +03001950 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1951 .flags = ETHERNET_ARP_ARGS_WC_PUB,
1952 .sw_if_index = sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001953 .ip4 = a->ip4,
1954 .mac = a->mac,
Eyal Bari20197482017-09-13 12:29:08 +03001955 };
1956
1957 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1958 (u8 *) & args, sizeof (args));
1959 return 0;
1960}
1961
1962static void
1963vnet_arp_wc_publish_internal (vnet_main_t * vnm,
1964 vnet_arp_set_ip4_over_ethernet_rpc_args_t *
1965 args)
1966{
1967 vlib_main_t *vm = vlib_get_main ();
1968 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Baric125ecc2017-09-20 11:29:17 +03001969 uword ni = am->wc_ip4_arp_publisher_node;
1970 uword et = am->wc_ip4_arp_publisher_et;
1971
1972 if (ni == (uword) ~ 0)
Eyal Bari20197482017-09-13 12:29:08 +03001973 return;
1974 wc_arp_report_t *r =
Eyal Baric125ecc2017-09-20 11:29:17 +03001975 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *r);
Neale Ranns37029302018-08-10 05:30:06 -07001976 r->ip.as_u32 = args->ip4.as_u32;
Eyal Bari20197482017-09-13 12:29:08 +03001977 r->sw_if_index = args->sw_if_index;
Neale Ranns37029302018-08-10 05:30:06 -07001978 mac_address_copy (&r->mac, &args->mac);
Eyal Bari20197482017-09-13 12:29:08 +03001979}
1980
1981void
Eyal Baric125ecc2017-09-20 11:29:17 +03001982wc_arp_set_publisher_node (uword node_index, uword event_type)
Eyal Bari20197482017-09-13 12:29:08 +03001983{
1984 ethernet_arp_main_t *am = &ethernet_arp_main;
1985 am->wc_ip4_arp_publisher_node = node_index;
Eyal Baric125ecc2017-09-20 11:29:17 +03001986 am->wc_ip4_arp_publisher_et = event_type;
Eyal Bari20197482017-09-13 12:29:08 +03001987}
1988
Neale Rannscf7efe02018-09-24 08:34:11 +00001989static void
1990arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e);
1991
1992static int
1993vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1994 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1995 * args)
1996{
1997 ethernet_arp_main_t *am = &ethernet_arp_main;
1998 ethernet_arp_ip4_entry_t *e;
1999 ethernet_arp_interface_t *eai;
2000
2001 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
2002 return 0;
2003
2004 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
2005
Neale Ranns37029302018-08-10 05:30:06 -07002006 e = arp_entry_find (eai, &args->ip4);
Neale Rannscf7efe02018-09-24 08:34:11 +00002007
2008 if (NULL != e)
2009 {
2010 adj_nbr_walk_nh4 (e->sw_if_index,
2011 &e->ip4_address, arp_mk_incomplete_walk, e);
2012
2013 /*
2014 * The difference between flush and unset, is that an unset
2015 * means delete for static and dynamic entries. A flush
2016 * means delete only for dynamic. Flushing is what the DP
2017 * does in response to interface events. unset is only done
2018 * by the control plane.
2019 */
Neale Ranns37029302018-08-10 05:30:06 -07002020 if (e->flags & IP_NEIGHBOR_FLAG_STATIC)
Neale Rannscf7efe02018-09-24 08:34:11 +00002021 {
Neale Ranns37029302018-08-10 05:30:06 -07002022 e->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
Neale Rannscf7efe02018-09-24 08:34:11 +00002023 }
Neale Ranns37029302018-08-10 05:30:06 -07002024 else if (e->flags & IP_NEIGHBOR_FLAG_DYNAMIC)
Neale Rannscf7efe02018-09-24 08:34:11 +00002025 {
2026 arp_entry_free (eai, e);
2027 }
2028 }
2029 return (0);
2030}
2031
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002032/*
2033 * arp_add_del_interface_address
2034 *
2035 * callback when an interface address is added or deleted
2036 */
2037static void
Neale Ranns57e53bb2019-05-29 13:58:43 +00002038arp_enable_disable_interface (ip4_main_t * im,
2039 uword opaque, u32 sw_if_index, u32 is_enable)
2040{
2041 ethernet_arp_main_t *am = &ethernet_arp_main;
2042
2043 if (is_enable)
2044 arp_enable (am, sw_if_index);
2045 else
2046 arp_disable (am, sw_if_index);
2047}
2048
2049/*
2050 * arp_add_del_interface_address
2051 *
2052 * callback when an interface address is added or deleted
2053 */
2054static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002055arp_add_del_interface_address (ip4_main_t * im,
2056 uword opaque,
2057 u32 sw_if_index,
2058 ip4_address_t * address,
2059 u32 address_length,
2060 u32 if_address_index, u32 is_del)
2061{
2062 /*
2063 * Flush the ARP cache of all entries covered by the address
2064 * that is being removed.
2065 */
2066 ethernet_arp_main_t *am = &ethernet_arp_main;
2067 ethernet_arp_ip4_entry_t *e;
2068
Neale Ranns177bbdc2016-11-15 09:46:51 +00002069 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002070 return;
2071
2072 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02002073 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002074 ethernet_arp_interface_t *eai;
2075 u32 i, *to_delete = 0;
2076 hash_pair_t *pair;
2077
2078 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2079
Neale Rannsb80c5362016-10-08 13:03:40 +01002080 /* *INDENT-OFF* */
2081 hash_foreach_pair (pair, eai->arp_entries,
2082 ({
2083 e = pool_elt_at_index(am->ip4_entry_pool,
2084 pair->value[0]);
2085 if (ip4_destination_matches_route (im, &e->ip4_address,
2086 address, address_length))
2087 {
2088 vec_add1 (to_delete, e - am->ip4_entry_pool);
2089 }
2090 }));
2091 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002092
2093 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002094 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002095 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
2096
Neale Rannscf7efe02018-09-24 08:34:11 +00002097 vnet_arp_set_ip4_over_ethernet_rpc_args_t delme = {
Neale Ranns37029302018-08-10 05:30:06 -07002098 .ip4.as_u32 = e->ip4_address.as_u32,
Neale Rannscf7efe02018-09-24 08:34:11 +00002099 .sw_if_index = e->sw_if_index,
2100 .flags = ETHERNET_ARP_ARGS_FLUSH,
2101 };
Neale Ranns37029302018-08-10 05:30:06 -07002102 mac_address_copy (&delme.mac, &e->mac);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002103
Neale Rannscf7efe02018-09-24 08:34:11 +00002104 vnet_arp_flush_ip4_over_ethernet_internal (vnet_get_main (),
2105 &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002106 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002107
2108 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02002109 }
2110}
2111
Neale Ranns15002542017-09-10 04:39:11 -07002112static void
2113arp_table_bind (ip4_main_t * im,
2114 uword opaque,
2115 u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
2116{
2117 ethernet_arp_main_t *am = &ethernet_arp_main;
2118 ethernet_arp_interface_t *eai;
2119 ethernet_arp_ip4_entry_t *e;
2120 hash_pair_t *pair;
2121
2122 /*
2123 * the IP table that the interface is bound to has changed.
2124 * reinstall all the adj fibs.
2125 */
2126
2127 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
2128 return;
2129
2130 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2131
2132 /* *INDENT-OFF* */
2133 hash_foreach_pair (pair, eai->arp_entries,
2134 ({
2135 e = pool_elt_at_index(am->ip4_entry_pool,
2136 pair->value[0]);
2137 /*
2138 * remove the adj-fib from the old table and add to the new
2139 */
2140 arp_adj_fib_remove(e, old_fib_index);
2141 arp_adj_fib_add(e, new_fib_index);
2142 }));
2143 /* *INDENT-ON* */
2144
2145}
2146
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002147static clib_error_t *
2148ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002149{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002150 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002151 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002152 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05002153
Ed Warnickecb9cada2015-12-08 15:45:58 -07002154 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
2155
2156 pn = pg_get_node (arp_input_node.index);
2157 pn->unformat_edit = unformat_pg_arp_header;
2158
2159 am->opcode_by_name = hash_create_string (0, sizeof (uword));
2160#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
2161 foreach_ethernet_arp_opcode;
2162#undef _
2163
Ed Warnickecb9cada2015-12-08 15:45:58 -07002164 /* $$$ configurable */
2165 am->limit_arp_cache_size = 50000;
2166
2167 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
2168 am->mac_changes_by_address = hash_create (0, sizeof (uword));
Eyal Bari20197482017-09-13 12:29:08 +03002169 am->wc_ip4_arp_publisher_node = (uword) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002170
2171 /* don't trace ARP error packets */
2172 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002173 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002174 vlib_node_get_runtime (vm, arp_input_node.index);
2175
2176#define _(a,b) \
2177 vnet_pcap_drop_trace_filter_add_del \
2178 (rt->errors[ETHERNET_ARP_ERROR_##a], \
2179 1 /* is_add */);
2180 foreach_ethernet_arp_error
2181#undef _
2182 }
Damjan Marion102ec522016-03-29 13:18:17 +02002183
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002184 ip4_add_del_interface_address_callback_t cb;
2185 cb.function = arp_add_del_interface_address;
2186 cb.function_opaque = 0;
2187 vec_add1 (im->add_del_interface_address_callbacks, cb);
2188
Neale Ranns57e53bb2019-05-29 13:58:43 +00002189 ip4_enable_disable_interface_callback_t cbe;
2190 cbe.function = arp_enable_disable_interface;
2191 cbe.function_opaque = 0;
2192 vec_add1 (im->enable_disable_interface_callbacks, cbe);
2193
Neale Ranns15002542017-09-10 04:39:11 -07002194 ip4_table_bind_callback_t cbt;
2195 cbt.function = arp_table_bind;
2196 cbt.function_opaque = 0;
2197 vec_add1 (im->table_bind_callbacks, cbt);
2198
Ed Warnickecb9cada2015-12-08 15:45:58 -07002199 return 0;
2200}
Dave Barachf8d50682019-05-14 18:01:44 -04002201/* *INDENT-OFF* */
2202VLIB_INIT_FUNCTION (ethernet_arp_init) =
2203{
2204 .runs_after = VLIB_INITS("ethernet_init"),
2205};
2206/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002207
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002208static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002209arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
2210{
2211 ethernet_arp_main_t *am = &ethernet_arp_main;
2212
John Lo4fed5b12018-05-22 03:35:06 -04002213 arp_adj_fib_remove
2214 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002215 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
2216 pool_put (am->ip4_entry_pool, e);
2217}
2218
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002219static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07002220vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002221 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2222 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002224 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002225 ethernet_arp_ip4_entry_t *e;
2226 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002227
Matthew Smith66c0adf2017-08-09 16:30:43 -05002228 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
2229 return 0;
2230
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002231 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002232
Neale Ranns37029302018-08-10 05:30:06 -07002233 e = arp_entry_find (eai, &args->ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002234
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002235 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002236 {
Neale Ranns19c68d22016-12-07 15:38:14 +00002237 adj_nbr_walk_nh4 (e->sw_if_index,
Neale Rannscf7efe02018-09-24 08:34:11 +00002238 &e->ip4_address, arp_mk_incomplete_walk, e);
John Lo4fed5b12018-05-22 03:35:06 -04002239 arp_entry_free (eai, e);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002240 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002241
Ed Warnickecb9cada2015-12-08 15:45:58 -07002242 return 0;
2243}
2244
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002245
2246static int
2247vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
2248 vnet_arp_set_ip4_over_ethernet_rpc_args_t
2249 * args)
2250{
2251 ethernet_arp_main_t *am = &ethernet_arp_main;
2252 ethernet_arp_ip4_entry_t *e;
2253 ethernet_arp_interface_t *eai;
2254
Neale Ranns57e53bb2019-05-29 13:58:43 +00002255 arp_enable (am, args->sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002256 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
2257
Neale Ranns37029302018-08-10 05:30:06 -07002258 e = arp_entry_find (eai, &args->ip4);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002259
2260 if (NULL != e)
2261 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002262 adj_nbr_walk_nh4 (e->sw_if_index,
2263 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002264 }
2265 return (0);
2266}
2267
2268static void
2269set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
2270 * a)
2271{
2272 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02002273 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002274
2275 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
2276 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
2277 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
2278 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
2279 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
2280 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
Eyal Bari20197482017-09-13 12:29:08 +03002281 else if (a->flags & ETHERNET_ARP_ARGS_WC_PUB)
2282 vnet_arp_wc_publish_internal (vm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002283 else
2284 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
2285}
2286
2287/**
2288 * @brief Invoked when the interface's admin state changes
2289 */
2290static clib_error_t *
2291ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
2292 u32 sw_if_index, u32 flags)
2293{
2294 ethernet_arp_main_t *am = &ethernet_arp_main;
2295 ethernet_arp_ip4_entry_t *e;
Neale Rannscf7efe02018-09-24 08:34:11 +00002296 u32 i, *to_update = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002297
2298 /* *INDENT-OFF* */
2299 pool_foreach (e, am->ip4_entry_pool,
2300 ({
2301 if (e->sw_if_index == sw_if_index)
Neale Rannscf7efe02018-09-24 08:34:11 +00002302 vec_add1 (to_update,
Neale Rannsb80c5362016-10-08 13:03:40 +01002303 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002304 }));
2305 /* *INDENT-ON* */
2306
Neale Rannscf7efe02018-09-24 08:34:11 +00002307 for (i = 0; i < vec_len (to_update); i++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002308 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002309 e = pool_elt_at_index (am->ip4_entry_pool, to_update[i]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002310
Neale Rannscf7efe02018-09-24 08:34:11 +00002311 vnet_arp_set_ip4_over_ethernet_rpc_args_t update_me = {
Neale Ranns37029302018-08-10 05:30:06 -07002312 .ip4.as_u32 = e->ip4_address.as_u32,
Neale Rannscf7efe02018-09-24 08:34:11 +00002313 .sw_if_index = e->sw_if_index,
2314 };
Neale Ranns37029302018-08-10 05:30:06 -07002315 mac_address_copy (&update_me.mac, &e->mac);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002316
2317 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
2318 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002319 update_me.flags = ETHERNET_ARP_ARGS_POPULATE;
2320 vnet_arp_populate_ip4_over_ethernet_internal (vnm, &update_me);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002321 }
2322 else
2323 {
Neale Rannscf7efe02018-09-24 08:34:11 +00002324 update_me.flags = ETHERNET_ARP_ARGS_FLUSH;
2325 vnet_arp_flush_ip4_over_ethernet_internal (vnm, &update_me);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002326 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002327 }
Neale Rannscf7efe02018-09-24 08:34:11 +00002328 vec_free (to_update);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002329
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002330 return 0;
2331}
2332
2333VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
2334
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002335static void
2336increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002337{
2338 u8 old;
2339 int i;
2340
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002341 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002342 {
2343 old = a->ip4.as_u8[i];
2344 a->ip4.as_u8[i] += 1;
2345 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002346 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002347 }
2348
2349 for (i = 5; i >= 0; i--)
2350 {
Neale Ranns37029302018-08-10 05:30:06 -07002351 old = a->mac.bytes[i];
2352 a->mac.bytes[i] += 1;
2353 if (old < a->mac.bytes[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002354 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002355 }
2356}
2357
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002358int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002359vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannscf7efe02018-09-24 08:34:11 +00002360 u32 sw_if_index,
2361 const ethernet_arp_ip4_over_ethernet_address_t
Neale Ranns37029302018-08-10 05:30:06 -07002362 * a, ip_neighbor_flags_t flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002363{
Neale Ranns37029302018-08-10 05:30:06 -07002364 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
2365 .sw_if_index = sw_if_index,
2366 .nbr_flags = flags,
2367 .flags = 0,
2368 .ip4.as_u32 = a->ip4.as_u32,
2369 .mac = a->mac,
2370 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002371
2372 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
2373 (u8 *) & args, sizeof (args));
2374 return 0;
2375}
2376
Neale Ranns0053de62018-05-22 08:40:52 -07002377void
2378proxy_arp_walk (proxy_arp_walk_t cb, void *data)
2379{
2380 ethernet_arp_main_t *am = &ethernet_arp_main;
2381 ethernet_proxy_arp_t *pa;
2382
2383 vec_foreach (pa, am->proxy_arps)
2384 {
2385 if (!cb (&pa->lo_addr, &pa->hi_addr, pa->fib_index, data))
2386 break;
2387 }
2388}
2389
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002390int
Neale Ranns57e53bb2019-05-29 13:58:43 +00002391vnet_proxy_arp_enable_disable (vnet_main_t * vnm, u32 sw_if_index, u8 enable)
2392{
2393 ethernet_arp_main_t *am = &ethernet_arp_main;
2394 ethernet_arp_interface_t *eai;
2395
2396 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
2397
2398 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
2399
2400 if (enable)
2401 {
2402 if (!eai->proxy_enabled)
2403 {
2404 vnet_feature_enable_disable ("arp", "arp-proxy",
2405 sw_if_index, 1, NULL, 0);
2406 }
2407 eai->proxy_enabled = 1;
2408 }
2409 else
2410 {
2411 if (eai->proxy_enabled)
2412 {
2413 vnet_feature_enable_disable ("arp", "arp-proxy",
2414 sw_if_index, 0, NULL, 0);
2415 }
2416 eai->proxy_enabled = 0;
2417 }
2418
2419 return (0);
2420}
2421
2422int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002423vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
2424 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002425{
2426 ethernet_arp_main_t *am = &ethernet_arp_main;
2427 ethernet_proxy_arp_t *pa;
2428 u32 found_at_index = ~0;
2429
2430 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002431 {
Neale Ranns0053de62018-05-22 08:40:52 -07002432 if (pa->lo_addr.as_u32 == lo_addr->as_u32 &&
2433 pa->hi_addr.as_u32 == hi_addr->as_u32 && pa->fib_index == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002434 {
2435 found_at_index = pa - am->proxy_arps;
2436 break;
2437 }
2438 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002439
2440 if (found_at_index != ~0)
2441 {
2442 /* Delete, otherwise it's already in the table */
2443 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002444 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002445 return 0;
2446 }
2447 /* delete, no such entry */
2448 if (is_del)
2449 return VNET_API_ERROR_NO_SUCH_ENTRY;
2450
2451 /* add, not in table */
2452 vec_add2 (am->proxy_arps, pa, 1);
Neale Ranns0053de62018-05-22 08:40:52 -07002453 pa->lo_addr.as_u32 = lo_addr->as_u32;
2454 pa->hi_addr.as_u32 = hi_addr->as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002455 pa->fib_index = fib_index;
2456 return 0;
2457}
2458
Neale Ranns57e53bb2019-05-29 13:58:43 +00002459void
2460proxy_arp_intfc_walk (proxy_arp_intf_walk_t cb, void *data)
2461{
2462 ethernet_arp_main_t *am = &ethernet_arp_main;
2463 ethernet_arp_interface_t *eai;
2464
2465 vec_foreach (eai, am->ethernet_arp_by_sw_if_index)
2466 {
2467 if (eai->proxy_enabled)
2468 cb (eai - am->ethernet_arp_by_sw_if_index, data);
2469 }
2470}
2471
Ed Warnickecb9cada2015-12-08 15:45:58 -07002472/*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002473 * Remove any proxy arp entries associated with the
2474 * specified fib.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002475 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002476int
2477vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002478{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002479 ethernet_arp_main_t *am = &ethernet_arp_main;
2480 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002481 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002482 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002483 int i;
2484
Neale Ranns107e7d42017-04-11 09:55:19 -07002485 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2486 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002487 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002488
2489 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002490 {
2491 if (pa->fib_index == fib_index)
2492 {
2493 vec_add1 (entries_to_delete, pa - am->proxy_arps);
2494 }
2495 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002496
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002497 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002498 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002499 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
2500 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002501
2502 vec_free (entries_to_delete);
2503
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002504 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002505}
2506
2507static clib_error_t *
2508ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002509 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002510{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002511 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002512 u32 sw_if_index;
2513 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
2514 int addr_valid = 0;
2515 int is_del = 0;
2516 int count = 1;
2517 u32 fib_index = 0;
2518 u32 fib_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002519 int is_proxy = 0;
Neale Ranns37029302018-08-10 05:30:06 -07002520 ip_neighbor_flags_t flags;
2521
2522 flags = IP_NEIGHBOR_FLAG_NONE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002523
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002524 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002525 {
2526 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
2527 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002528 unformat_vnet_sw_interface, vnm, &sw_if_index,
2529 unformat_ip4_address, &addr.ip4,
Neale Ranns37029302018-08-10 05:30:06 -07002530 unformat_mac_address_t, &addr.mac))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002531 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002532
2533 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002534 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002535
2536 else if (unformat (input, "static"))
Neale Ranns37029302018-08-10 05:30:06 -07002537 flags |= IP_NEIGHBOR_FLAG_STATIC;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002538
Neale Rannsb3b2de72017-03-08 05:17:22 -08002539 else if (unformat (input, "no-fib-entry"))
Neale Ranns37029302018-08-10 05:30:06 -07002540 flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -08002541
Ed Warnickecb9cada2015-12-08 15:45:58 -07002542 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002543 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002544
2545 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002546 {
Neale Ranns107e7d42017-04-11 09:55:19 -07002547 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2548
2549 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002550 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002551 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002552
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002553 else if (unformat (input, "proxy %U - %U",
2554 unformat_ip4_address, &lo_addr.ip4,
2555 unformat_ip4_address, &hi_addr.ip4))
2556 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002557 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002558 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002559 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002560
Ed Warnickecb9cada2015-12-08 15:45:58 -07002561 if (is_proxy)
2562 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002563 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2564 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002565 return 0;
2566 }
2567
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002568 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002569 {
2570 int i;
2571
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002572 for (i = 0; i < count; i++)
2573 {
2574 if (is_del == 0)
2575 {
2576 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002577
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002578 /* Park the debug CLI until the arp entry is installed */
2579 vnet_register_ip4_arp_resolution_event
2580 (vnm, &addr.ip4, vlib_current_process (vm),
2581 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002582
Neale Ranns37029302018-08-10 05:30:06 -07002583 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, &addr, flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002584
2585 vlib_process_wait_for_event (vm);
2586 event_type = vlib_process_get_events (vm, &event_data);
2587 vec_reset_length (event_data);
2588 if (event_type != 1)
2589 clib_warning ("event type %d unexpected", event_type);
2590 }
2591 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002592 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002593
2594 increment_ip4_and_mac_address (&addr);
2595 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002596 }
2597 else
2598 {
2599 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002600 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002601 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002602
Ed Warnickecb9cada2015-12-08 15:45:58 -07002603 return 0;
2604}
2605
Neale Rannsb80c5362016-10-08 13:03:40 +01002606/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002607/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002608 * Add or delete IPv4 ARP cache entries.
2609 *
2610 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2611 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2612 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002613 *
2614 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002615 * @parblock
2616 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2617 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2618 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2619 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2620 *
2621 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2622 * table:
2623 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2624 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2625 *
2626 * Add or delete IPv4 static ARP cache entries as follows:
2627 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2628 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2629 *
2630 * For testing / debugging purposes, the 'set ip arp' command can add or
2631 * delete multiple entries. Supply the 'count N' parameter:
2632 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2633 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002634 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002635VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002636 .path = "set ip arp",
2637 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002638 "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 -07002639 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002640};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002641/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002642
2643static clib_error_t *
2644set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002645 unformat_input_t *
2646 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002647{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002648 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002649 u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002650 int enable = 0;
Neale Ranns57e53bb2019-05-29 13:58:43 +00002651
2652 sw_if_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002653
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002654 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002655 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002656 if (unformat (input, "%U", unformat_vnet_sw_interface,
2657 vnm, &sw_if_index))
Neale Ranns57e53bb2019-05-29 13:58:43 +00002658 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002659 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002660 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002661 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002662 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002663 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002664 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002665 }
2666
Neale Ranns57e53bb2019-05-29 13:58:43 +00002667 if (~0 == sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002668 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002669 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002670
Neale Ranns57e53bb2019-05-29 13:58:43 +00002671 vnet_proxy_arp_enable_disable (vnm, sw_if_index, enable);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002672
Ed Warnickecb9cada2015-12-08 15:45:58 -07002673 return 0;
2674}
2675
Neale Rannsb80c5362016-10-08 13:03:40 +01002676/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002677/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002678 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2679 * requests for the indicated address range. Multiple proxy-arp
2680 * ranges may be provisioned.
2681 *
2682 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2683 * Also, the underlying implementation has not been performance-tuned.
2684 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002685 *
2686 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002687 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002688 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2689 * Append 'del' to delete a range of proxy ARP addresses:
2690 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2691 * You must then specifically enable proxy arp on individual interfaces:
2692 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2693 * To disable proxy arp on an individual interface:
2694 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002695 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002696VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002697 .path = "set interface proxy-arp",
2698 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002699 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002700 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002701};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002702/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002703
2704
2705/*
John Lo1edfba92016-08-27 01:11:57 -04002706 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2707 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002708 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002709typedef enum
2710{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002711 ARP_TERM_NEXT_L2_OUTPUT,
2712 ARP_TERM_NEXT_DROP,
2713 ARP_TERM_N_NEXT,
2714} arp_term_next_t;
2715
2716u32 arp_term_next_node_index[32];
2717
2718static uword
2719arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002720 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002721{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002722 l2input_main_t *l2im = &l2input_main;
2723 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002724 u32 n_replies_sent = 0;
2725 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002726 l2_bridge_domain_t *last_bd_config = 0;
2727 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002728
2729 from = vlib_frame_vector_args (frame);
2730 n_left_from = frame->n_vectors;
2731 next_index = node->cached_next_index;
2732
2733 while (n_left_from > 0)
2734 {
2735 u32 n_left_to_next;
2736
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002737 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002738
2739 while (n_left_from > 0 && n_left_to_next > 0)
2740 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002741 vlib_buffer_t *p0;
2742 ethernet_header_t *eth0;
2743 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002744 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002745 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002746 u32 pi0, error0, next0, sw_if_index0;
2747 u16 ethertype0;
2748 u16 bd_index0;
2749 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002750 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002751
2752 pi0 = from[0];
2753 to_next[0] = pi0;
2754 from += 1;
2755 to_next += 1;
2756 n_left_from -= 1;
2757 n_left_to_next -= 1;
2758
2759 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002760 // Terminate only local (SHG == 0) ARP
2761 if (vnet_buffer (p0)->l2.shg != 0)
2762 goto next_l2_feature;
2763
Ed Warnickecb9cada2015-12-08 15:45:58 -07002764 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002765 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2766 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002767 arp0 = (ethernet_arp_header_t *) l3h0;
2768
John Lo0e6f4d62018-07-13 17:29:58 -04002769 if (ethertype0 != ETHERNET_TYPE_ARP)
John Lo1edfba92016-08-27 01:11:57 -04002770 goto check_ip6_nd;
2771
John Lo0e6f4d62018-07-13 17:29:58 -04002772 if ((arp0->opcode !=
2773 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request)) &&
2774 (arp0->opcode !=
2775 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply)))
2776 goto check_ip6_nd;
2777
2778 /* Must be ARP request/reply packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002779 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2780 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2781 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002782 u8 *t0 = vlib_add_trace (vm, node, p0,
2783 sizeof (ethernet_arp_input_trace_t));
Dave Barach178cf492018-11-13 16:34:13 -05002784 clib_memcpy_fast (t0, l3h0,
2785 sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002786 }
2787
John Lo0e6f4d62018-07-13 17:29:58 -04002788 error0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002789 error0 =
2790 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002791 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2792 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002793 error0 =
2794 (arp0->l3_type !=
2795 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2796 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002797
2798 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2799
2800 if (error0)
2801 goto drop;
2802
John Lo1edfba92016-08-27 01:11:57 -04002803 /* Trash ARP packets whose ARP-level source addresses do not
John Lo0131b6c2018-06-25 12:35:21 -04002804 match, or if requester address is mcast */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002805 if (PREDICT_FALSE
Neale Ranns37029302018-08-10 05:30:06 -07002806 (!ethernet_mac_address_equal (eth0->src_address,
2807 arp0->ip4_over_ethernet[0].
2808 mac.bytes))
2809 || ethernet_address_cast (arp0->ip4_over_ethernet[0].mac.bytes))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002810 {
John Lo0e6f4d62018-07-13 17:29:58 -04002811 /* VRRP virtual MAC may be different to SMAC in ARP reply */
Neale Ranns37029302018-08-10 05:30:06 -07002812 if (!ethernet_mac_address_equal
2813 (arp0->ip4_over_ethernet[0].mac.bytes, vrrp_prefix))
John Lo0e6f4d62018-07-13 17:29:58 -04002814 {
2815 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2816 goto drop;
2817 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002818 }
John Lo0131b6c2018-06-25 12:35:21 -04002819 if (PREDICT_FALSE
2820 (ip4_address_is_multicast (&arp0->ip4_over_ethernet[0].ip4)))
2821 {
2822 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
2823 goto drop;
2824 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002825
John Lo1edfba92016-08-27 01:11:57 -04002826 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002827 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002828 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Bari20197482017-09-13 12:29:08 +03002829 if (am->wc_ip4_arp_publisher_node != (uword) ~ 0)
2830 vnet_arp_wc_publish (sw_if_index0, &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002831 }
2832
John Lo1edfba92016-08-27 01:11:57 -04002833 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002834 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002835 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2836 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2837 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002838 {
2839 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002840 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002841 }
2842 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2843
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002844 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002845 goto next_l2_feature; /* MAC not found */
Neale Rannsd2bb6142019-03-04 14:11:25 -08002846 if (PREDICT_FALSE (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2847 arp0->ip4_over_ethernet[1].ip4.as_u32))
2848 goto next_l2_feature; /* GARP */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002849
John Lo1edfba92016-08-27 01:11:57 -04002850 /* MAC found, send ARP reply -
2851 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002852 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2853 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2854 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Neale Ranns37029302018-08-10 05:30:06 -07002855 mac_address_from_bytes (&arp0->ip4_over_ethernet[0].mac, macp0);
Dave Barach178cf492018-11-13 16:34:13 -05002856 clib_memcpy_fast (eth0->dst_address, eth0->src_address, 6);
2857 clib_memcpy_fast (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002858 n_replies_sent += 1;
2859
John Lo1edfba92016-08-27 01:11:57 -04002860 output_response:
2861 /* For BVI, need to use l2-fwd node to send ARP reply as
2862 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002863 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002864 if (PREDICT_FALSE (cfg0->bvi))
2865 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002866 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002867 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2868 goto next_l2_feature;
2869 }
2870
John Lo1edfba92016-08-27 01:11:57 -04002871 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002872 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2873 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002874 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2875 to_next, n_left_to_next, pi0,
2876 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002877 continue;
2878
John Lo1edfba92016-08-27 01:11:57 -04002879 check_ip6_nd:
2880 /* IP6 ND event notification or solicitation handling to generate
2881 local response instead of flooding */
2882 iph0 = (ip6_header_t *) l3h0;
2883 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2884 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002885 !ip6_address_is_unspecified
2886 (&iph0->src_address)))
2887 {
2888 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002889 if (vnet_ip6_nd_term
2890 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002891 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002892 goto output_response;
2893 }
2894
Ed Warnickecb9cada2015-12-08 15:45:58 -07002895 next_l2_feature:
2896 {
John Lobeb0b2e2017-07-22 00:21:36 -04002897 next0 = vnet_l2_feature_next (p0, arp_term_next_node_index,
2898 L2INPUT_FEAT_ARP_TERM);
Neale Rannsb80c5362016-10-08 13:03:40 +01002899 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2900 to_next, n_left_to_next,
2901 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002902 continue;
2903 }
2904
2905 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002906 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2907 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2908 arp0->ip4_over_ethernet[1].ip4.as_u32))
2909 {
2910 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2911 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002912 next0 = ARP_TERM_NEXT_DROP;
2913 p0->error = node->errors[error0];
2914
Neale Rannsb80c5362016-10-08 13:03:40 +01002915 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2916 to_next, n_left_to_next, pi0,
2917 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002918 }
2919
2920 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2921 }
2922
2923 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002924 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002925 return frame->n_vectors;
2926}
2927
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002928/* *INDENT-OFF* */
2929VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002930 .function = arp_term_l2bd,
2931 .name = "arp-term-l2bd",
2932 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002933 .n_errors = ETHERNET_ARP_N_ERROR,
2934 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002935 .n_next_nodes = ARP_TERM_N_NEXT,
2936 .next_nodes = {
2937 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2938 [ARP_TERM_NEXT_DROP] = "error-drop",
2939 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002940 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002941 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002942};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002943/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002944
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002945clib_error_t *
2946arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002947{
2948 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002949 feat_bitmap_init_next_nodes (vm,
2950 arp_term_l2bd_node.index,
2951 L2INPUT_N_FEAT,
2952 l2input_get_feat_names (),
2953 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002954 return 0;
2955}
2956
2957VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002958
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002959void
2960change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2961{
2962 if (e->sw_if_index == sw_if_index)
2963 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002964 adj_nbr_walk_nh4 (e->sw_if_index,
2965 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002966 }
2967}
2968
2969void
Neale Ranns3be6b282016-12-20 14:24:01 +00002970ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002971{
2972 ethernet_arp_main_t *am = &ethernet_arp_main;
2973 ethernet_arp_ip4_entry_t *e;
Neale Rannsc819fc62018-02-16 02:44:05 -08002974 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002975
2976 /* *INDENT-OFF* */
2977 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002978 ({
2979 change_arp_mac (sw_if_index, e);
2980 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002981 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08002982
2983 ai = adj_glean_get (FIB_PROTOCOL_IP4, sw_if_index);
2984
2985 if (ADJ_INDEX_INVALID != ai)
2986 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002987}
2988
John Lo7e9743a2017-09-23 08:59:58 -04002989void
Steven9f781d82018-06-05 11:09:32 -07002990send_ip4_garp (vlib_main_t * vm, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07002991{
2992 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002993 ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
Neale Ranns25b04942018-04-04 09:34:50 -07002994
Steven9f781d82018-06-05 11:09:32 -07002995 send_ip4_garp_w_addr (vm, ip4_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07002996}
2997
2998void
2999send_ip4_garp_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07003000 const ip4_address_t * ip4_addr, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04003001{
3002 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07003003 vnet_main_t *vnm = vnet_get_main ();
3004 u8 *rewrite, rewrite_len;
3005 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
John Lo8b81cb42017-06-26 01:40:20 -04003006
3007 if (ip4_addr)
3008 {
3009 clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
3010 format_ip4_address, ip4_addr, sw_if_index);
3011
3012 /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
3013 where the interface IP/MAC pair is used for both source and request
3014 MAC/IP pairs in the request */
3015 u32 bi = 0;
3016 ethernet_arp_header_t *h = vlib_packet_template_get_packet
3017 (vm, &i4m->ip4_arp_request_packet_template, &bi);
John Lo084606b2018-06-19 15:27:48 -04003018
3019 if (!h)
3020 return;
3021
Neale Ranns37029302018-08-10 05:30:06 -07003022 mac_address_from_bytes (&h->ip4_over_ethernet[0].mac, hi->hw_address);
3023 mac_address_from_bytes (&h->ip4_over_ethernet[1].mac, hi->hw_address);
John Lo8b81cb42017-06-26 01:40:20 -04003024 h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
3025 h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
3026
3027 /* Setup MAC header with ARP Etype and broadcast DMAC */
3028 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07003029 rewrite =
3030 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_ARP,
3031 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST);
3032 rewrite_len = vec_len (rewrite);
3033 vlib_buffer_advance (b, -rewrite_len);
John Lo8b81cb42017-06-26 01:40:20 -04003034 ethernet_header_t *e = vlib_buffer_get_current (b);
Dave Barach178cf492018-11-13 16:34:13 -05003035 clib_memcpy_fast (e->dst_address, rewrite, rewrite_len);
Steven9f781d82018-06-05 11:09:32 -07003036 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04003037
3038 /* Send GARP packet out the specified interface */
3039 vnet_buffer (b)->sw_if_index[VLIB_RX] =
3040 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
3041 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
3042 u32 *to_next = vlib_frame_vector_args (f);
3043 to_next[0] = bi;
3044 f->n_vectors = 1;
3045 vlib_put_frame_to_node (vm, hi->output_node_index, f);
3046 }
3047}
3048
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07003049/*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07003050 * Remove any arp entries associated with the specified interface
Pavel Kotucek18934e62018-11-14 09:24:16 +01003051 */
Neale Ranns8f215b42019-02-22 12:40:53 +00003052static clib_error_t *
Pavel Kotucek18934e62018-11-14 09:24:16 +01003053vnet_arp_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
3054{
Neale Ranns1ff56f02019-07-30 06:29:47 -07003055 ethernet_arp_main_t *am = &ethernet_arp_main;
3056
Pavel Kotucek18934e62018-11-14 09:24:16 +01003057 if (!is_add && sw_if_index != ~0)
3058 {
Pavel Kotucek18934e62018-11-14 09:24:16 +01003059 ethernet_arp_ip4_entry_t *e;
3060 /* *INDENT-OFF* */
3061 pool_foreach (e, am->ip4_entry_pool, ({
3062 if (e->sw_if_index != sw_if_index)
3063 continue;
Neale Ranns37029302018-08-10 05:30:06 -07003064 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
3065 .sw_if_index = sw_if_index,
3066 .ip4 = e->ip4_address,
3067 };
Pavel Kotucek18934e62018-11-14 09:24:16 +01003068 vnet_arp_unset_ip4_over_ethernet_internal (vnm, &args);
3069 }));
3070 /* *INDENT-ON* */
Neale Ranns1ff56f02019-07-30 06:29:47 -07003071 arp_disable (am, sw_if_index);
3072 }
3073 else if (is_add)
3074 {
3075 vnet_feature_enable_disable ("arp", "arp-disabled",
3076 sw_if_index, 1, NULL, 0);
Pavel Kotucek18934e62018-11-14 09:24:16 +01003077 }
Neale Ranns8f215b42019-02-22 12:40:53 +00003078
3079 return (NULL);
Pavel Kotucek18934e62018-11-14 09:24:16 +01003080}
3081
3082VNET_SW_INTERFACE_ADD_DEL_FUNCTION (vnet_arp_delete_sw_interface);
3083
3084/*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07003085 * fd.io coding-style-patch-verification: ON
3086 *
3087 * Local Variables:
3088 * eval: (c-set-style "gnu")
3089 * End:
3090 */