blob: b5c2e6dc7480af06305127f865c90dd4cf400721 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ethernet/arp.c: IP v4 ARP node
3 *
4 * Copyright (c) 2010 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/ip/ip.h>
John Lo1edfba92016-08-27 01:11:57 -040019#include <vnet/ip/ip6.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vnet/ethernet/ethernet.h>
Neale Ranns0053de62018-05-22 08:40:52 -070021#include <vnet/ethernet/arp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022#include <vnet/l2/l2_input.h>
23#include <vppinfra/mhash.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/fib/ip4_fib.h>
Neale Rannsca193612017-06-14 06:50:08 -070025#include <vnet/fib/fib_entry_src.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010026#include <vnet/adj/adj_nbr.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000027#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010028#include <vnet/mpls/mpls.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070029
Billy McFall2d085d92016-09-13 21:47:55 -040030/**
31 * @file
32 * @brief IPv4 ARP.
33 *
34 * This file contains code to manage the IPv4 ARP tables (IP Address
35 * to MAC Address lookup).
36 */
37
38
Dave Barachf9bd6202015-12-14 13:22:11 -050039void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
40
Neale Ranns0bfe5d82016-08-25 15:29:12 +010041/**
42 * @brief Per-interface ARP configuration and state
43 */
44typedef struct ethernet_arp_interface_t_
45{
Neale Rannsb80c5362016-10-08 13:03:40 +010046 /**
47 * Hash table of ARP entries.
48 * Since this hash table is per-interface, the key is only the IPv4 address.
49 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050 uword *arp_entries;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051} ethernet_arp_interface_t;
52
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070053typedef struct
54{
Neale Ranns0053de62018-05-22 08:40:52 -070055 ip4_address_t lo_addr;
56 ip4_address_t hi_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057 u32 fib_index;
58} ethernet_proxy_arp_t;
59
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070060typedef struct
61{
Ed Warnickecb9cada2015-12-08 15:45:58 -070062 u32 next_index;
63 uword node_index;
64 uword type_opaque;
65 uword data;
66 /* Used for arp event notification only */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070067 void *data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 u32 pid;
69} pending_resolution_t;
70
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070071typedef struct
72{
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 /* Hash tables mapping name to opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070074 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070075
76 /* lite beer "glean" adjacency handling */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070077 uword *pending_resolutions_by_address;
78 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
80 /* Mac address change notification */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070081 uword *mac_changes_by_address;
82 pending_resolution_t *mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070084 ethernet_arp_ip4_entry_t *ip4_entry_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 /* ARP attack mitigation */
87 u32 arp_delete_rotor;
88 u32 limit_arp_cache_size;
89
Neale Ranns0bfe5d82016-08-25 15:29:12 +010090 /** Per interface state */
91 ethernet_arp_interface_t *ethernet_arp_by_sw_if_index;
92
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 /* Proxy arp vector */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070094 ethernet_proxy_arp_t *proxy_arps;
Eyal Bari20197482017-09-13 12:29:08 +030095
96 uword wc_ip4_arp_publisher_node;
Eyal Baric125ecc2017-09-20 11:29:17 +030097 uword wc_ip4_arp_publisher_et;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098} ethernet_arp_main_t;
99
100static ethernet_arp_main_t ethernet_arp_main;
101
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100102typedef struct
103{
104 u32 sw_if_index;
105 ethernet_arp_ip4_over_ethernet_address_t a;
106 int is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800107 int is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100108 int flags;
109#define ETHERNET_ARP_ARGS_REMOVE (1<<0)
110#define ETHERNET_ARP_ARGS_FLUSH (1<<1)
111#define ETHERNET_ARP_ARGS_POPULATE (1<<2)
Eyal Bari20197482017-09-13 12:29:08 +0300112#define ETHERNET_ARP_ARGS_WC_PUB (1<<3)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100113} vnet_arp_set_ip4_over_ethernet_rpc_args_t;
114
Matthew Smithcb9ab472017-05-16 21:35:56 -0500115static const u8 vrrp_prefix[] = { 0x00, 0x00, 0x5E, 0x00, 0x01 };
116
John Lo8b81cb42017-06-26 01:40:20 -0400117/* Node index for send_garp_na_process */
118u32 send_garp_na_process_node_index;
119
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100120static void
121set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
122 * a);
123
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700124static u8 *
125format_ethernet_arp_hardware_type (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126{
127 ethernet_arp_hardware_type_t h = va_arg (*va, ethernet_arp_hardware_type_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700128 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 switch (h)
130 {
131#define _(n,f) case n: t = #f; break;
132 foreach_ethernet_arp_hardware_type;
133#undef _
134
135 default:
136 return format (s, "unknown 0x%x", h);
137 }
138
139 return format (s, "%s", t);
140}
141
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700142static u8 *
143format_ethernet_arp_opcode (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144{
145 ethernet_arp_opcode_t o = va_arg (*va, ethernet_arp_opcode_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700146 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147 switch (o)
148 {
149#define _(f) case ETHERNET_ARP_OPCODE_##f: t = #f; break;
150 foreach_ethernet_arp_opcode;
151#undef _
152
153 default:
154 return format (s, "unknown 0x%x", o);
155 }
156
157 return format (s, "%s", t);
158}
159
160static uword
161unformat_ethernet_arp_opcode_host_byte_order (unformat_input_t * input,
162 va_list * args)
163{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700164 int *result = va_arg (*args, int *);
165 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 int x, i;
167
168 /* Numeric opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700169 if (unformat (input, "0x%x", &x) || unformat (input, "%d", &x))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 {
171 if (x >= (1 << 16))
172 return 0;
173 *result = x;
174 return 1;
175 }
176
177 /* Named type. */
178 if (unformat_user (input, unformat_vlib_number_by_name,
179 am->opcode_by_name, &i))
180 {
181 *result = i;
182 return 1;
183 }
184
185 return 0;
186}
187
188static uword
189unformat_ethernet_arp_opcode_net_byte_order (unformat_input_t * input,
190 va_list * args)
191{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700192 int *result = va_arg (*args, int *);
193 if (!unformat_user
194 (input, unformat_ethernet_arp_opcode_host_byte_order, result))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 return 0;
196
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700197 *result = clib_host_to_net_u16 ((u16) * result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198 return 1;
199}
200
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700201static u8 *
202format_ethernet_arp_header (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700204 ethernet_arp_header_t *a = va_arg (*va, ethernet_arp_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 u32 max_header_bytes = va_arg (*va, u32);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200206 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 u16 l2_type, l3_type;
208
209 if (max_header_bytes != 0 && sizeof (a[0]) > max_header_bytes)
210 return format (s, "ARP header truncated");
211
212 l2_type = clib_net_to_host_u16 (a->l2_type);
213 l3_type = clib_net_to_host_u16 (a->l3_type);
214
215 indent = format_get_indent (s);
216
217 s = format (s, "%U, type %U/%U, address size %d/%d",
218 format_ethernet_arp_opcode, clib_net_to_host_u16 (a->opcode),
219 format_ethernet_arp_hardware_type, l2_type,
220 format_ethernet_type, l3_type,
221 a->n_l2_address_bytes, a->n_l3_address_bytes);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 if (l2_type == ETHERNET_ARP_HARDWARE_TYPE_ethernet
224 && l3_type == ETHERNET_TYPE_IP4)
225 {
226 s = format (s, "\n%U%U/%U -> %U/%U",
227 format_white_space, indent,
228 format_ethernet_address, a->ip4_over_ethernet[0].ethernet,
229 format_ip4_address, &a->ip4_over_ethernet[0].ip4,
230 format_ethernet_address, a->ip4_over_ethernet[1].ethernet,
231 format_ip4_address, &a->ip4_over_ethernet[1].ip4);
232 }
233 else
234 {
235 uword n2 = a->n_l2_address_bytes;
236 uword n3 = a->n_l3_address_bytes;
237 s = format (s, "\n%U%U/%U -> %U/%U",
238 format_white_space, indent,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700239 format_hex_bytes, a->data + 0 * n2 + 0 * n3, n2,
240 format_hex_bytes, a->data + 1 * n2 + 0 * n3, n3,
241 format_hex_bytes, a->data + 1 * n2 + 1 * n3, n2,
242 format_hex_bytes, a->data + 2 * n2 + 1 * n3, n3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 }
244
245 return s;
246}
247
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100248u8 *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700249format_ethernet_arp_ip4_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700251 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
252 ethernet_arp_ip4_entry_t *e = va_arg (*va, ethernet_arp_ip4_entry_t *);
253 vnet_sw_interface_t *si;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700254 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700256 if (!e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100257 return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700258 "Flags", "Ethernet", "Interface");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100260 si = vnet_get_sw_interface (vnm, e->sw_if_index);
Damjan Marion102ec522016-03-29 13:18:17 +0200261
262 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700263 flags = format (flags, "S");
Damjan Marion102ec522016-03-29 13:18:17 +0200264
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100265 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
266 flags = format (flags, "D");
267
Neale Rannsb3b2de72017-03-08 05:17:22 -0800268 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY)
269 flags = format (flags, "N");
270
Neale Ranns5c994c12017-08-04 06:22:23 -0700271 s = format (s, "%=12U%=16U%=6s%=20U%U",
John Lo7f358b32018-04-28 01:19:24 -0400272 format_vlib_time, vnm->vlib_main, e->time_last_updated,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100273 format_ip4_address, &e->ip4_address,
Damjan Marion102ec522016-03-29 13:18:17 +0200274 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 format_ethernet_address, e->ethernet_address,
276 format_vnet_sw_interface_name, vnm, si);
277
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700278 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279 return s;
280}
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
360 clib_memcpy (h->ip4_over_ethernet[0].ethernet,
361 hi->hw_address, sizeof (h->ip4_over_ethernet[0].ethernet));
362
363 h->ip4_over_ethernet[0].ip4 = src[0];
364 h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
365
366 b = vlib_get_buffer (vm, bi);
367 vnet_buffer (b)->sw_if_index[VLIB_RX] =
368 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
369
370 /* Add encapsulation string for software interface (e.g. ethernet header). */
371 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
372 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
373
374 {
375 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
376 u32 *to_next = vlib_frame_vector_args (f);
377 to_next[0] = bi;
378 f->n_vectors = 1;
379 vlib_put_frame_to_node (vm, hi->output_node_index, f);
380 }
381}
382
383static void
384arp_mk_complete (adj_index_t ai, ethernet_arp_ip4_entry_t * e)
385{
386 adj_nbr_update_rewrite
387 (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
388 ethernet_build_rewrite (vnet_get_main (),
389 e->sw_if_index,
390 adj_get_link_type (ai), e->ethernet_address));
391}
392
393static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000394arp_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100395{
Neale Ranns19c68d22016-12-07 15:38:14 +0000396 ip_adjacency_t *adj = adj_get (ai);
397
Neale Rannsb80c5362016-10-08 13:03:40 +0100398 adj_nbr_update_rewrite
399 (ai,
400 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
401 ethernet_build_rewrite (vnet_get_main (),
Neale Ranns19c68d22016-12-07 15:38:14 +0000402 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100403 VNET_LINK_ARP,
404 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
405}
406
407static ethernet_arp_ip4_entry_t *
408arp_entry_find (ethernet_arp_interface_t * eai, const ip4_address_t * addr)
409{
410 ethernet_arp_main_t *am = &ethernet_arp_main;
411 ethernet_arp_ip4_entry_t *e = NULL;
412 uword *p;
413
414 if (NULL != eai->arp_entries)
415 {
416 p = hash_get (eai->arp_entries, addr->as_u32);
417 if (!p)
418 return (NULL);
419
420 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
421 }
422
423 return (e);
424}
425
426static adj_walk_rc_t
427arp_mk_complete_walk (adj_index_t ai, void *ctx)
428{
429 ethernet_arp_ip4_entry_t *e = ctx;
430
431 arp_mk_complete (ai, e);
432
433 return (ADJ_WALK_RC_CONTINUE);
434}
435
436static adj_walk_rc_t
437arp_mk_incomplete_walk (adj_index_t ai, void *ctx)
438{
Neale Ranns19c68d22016-12-07 15:38:14 +0000439 arp_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100440
441 return (ADJ_WALK_RC_CONTINUE);
442}
443
444void
445arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
446{
447 ethernet_arp_main_t *am = &ethernet_arp_main;
448 ethernet_arp_interface_t *arp_int;
449 ethernet_arp_ip4_entry_t *e;
450 ip_adjacency_t *adj;
451
452 adj = adj_get (ai);
453
454 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
455 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
456 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
457
Neale Ranns32e1c012016-11-22 17:07:28 +0000458 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100459 {
Ole Trøan438f6302018-02-15 21:56:06 +0000460 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800461 adj_glean_update_rewrite (ai);
462 break;
463 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000464 if (NULL != e)
465 {
466 adj_nbr_walk_nh4 (sw_if_index,
467 &e->ip4_address, arp_mk_complete_walk, e);
468 }
469 else
470 {
471 /*
472 * no matching ARP entry.
473 * construct the rewrite required to for an ARP packet, and stick
474 * that in the adj's pipe to smoke.
475 */
476 adj_nbr_update_rewrite
477 (ai,
478 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
479 ethernet_build_rewrite
480 (vnm,
481 sw_if_index,
482 VNET_LINK_ARP,
483 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
484
485 /*
486 * since the FIB has added this adj for a route, it makes sense it
487 * may want to forward traffic sometime soon. Let's send a
488 * speculative ARP. just one. If we were to do periodically that
489 * wouldn't be bad either, but that's more code than i'm prepared to
490 * write at this time for relatively little reward.
491 */
492 arp_nbr_probe (adj);
493 }
494 break;
Neale Ranns1855b8e2018-07-11 10:31:26 -0700495 case IP_LOOKUP_NEXT_BCAST:
496 adj_nbr_update_rewrite (ai,
497 ADJ_NBR_REWRITE_FLAG_COMPLETE,
498 ethernet_build_rewrite
499 (vnm,
500 sw_if_index,
501 VNET_LINK_IP4,
502 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
503 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000504 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700505 {
506 /*
507 * Construct a partial rewrite from the known ethernet mcast dest MAC
508 */
509 u8 *rewrite;
510 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100511
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700512 rewrite = ethernet_build_rewrite (vnm,
513 sw_if_index,
514 adj->ia_link,
515 ethernet_ip4_mcast_dst_addr ());
516 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000517
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700518 /*
519 * Complete the remaining fields of the adj's rewrite to direct the
520 * complete of the rewrite at switch time by copying in the IP
521 * dst address's bytes.
Neale Ranns889fe942017-06-01 05:43:19 -0400522 * Ofset is 2 bytes into the MAC desintation address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700523 */
Neale Ranns889fe942017-06-01 05:43:19 -0400524 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000525
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700526 break;
527 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000528 case IP_LOOKUP_NEXT_DROP:
529 case IP_LOOKUP_NEXT_PUNT:
530 case IP_LOOKUP_NEXT_LOCAL:
531 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800532 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000533 case IP_LOOKUP_NEXT_MIDCHAIN:
534 case IP_LOOKUP_NEXT_ICMP_ERROR:
535 case IP_LOOKUP_N_NEXT:
536 ASSERT (0);
537 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100538 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539}
540
Neale Ranns15002542017-09-10 04:39:11 -0700541static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700542arp_adj_fib_add (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700543{
544 fib_prefix_t pfx = {
545 .fp_len = 32,
546 .fp_proto = FIB_PROTOCOL_IP4,
547 .fp_addr.ip4 = e->ip4_address,
548 };
549
550 e->fib_entry_index =
551 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
552 FIB_ENTRY_FLAG_ATTACHED,
553 DPO_PROTO_IP4, &pfx.fp_addr,
554 e->sw_if_index, ~0, 1, NULL,
555 FIB_ROUTE_PATH_FLAG_NONE);
556 fib_table_lock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
557}
558
John Lo4fed5b12018-05-22 03:35:06 -0400559void
560arp_adj_fib_remove (ethernet_arp_ip4_entry_t * e, u32 fib_index)
561{
562 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
563 {
564 fib_prefix_t pfx = {
565 .fp_len = 32,
566 .fp_proto = FIB_PROTOCOL_IP4,
567 .fp_addr.ip4 = e->ip4_address,
568 };
569 u32 fib_index;
570
571 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
572
573 fib_table_entry_path_remove (fib_index, &pfx,
574 FIB_SOURCE_ADJ,
575 DPO_PROTO_IP4,
576 &pfx.fp_addr,
577 e->sw_if_index, ~0, 1,
578 FIB_ROUTE_PATH_FLAG_NONE);
579 fib_table_unlock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
580 }
581}
582
583static ethernet_arp_ip4_entry_t *
584force_reuse_arp_entry (void)
585{
586 ethernet_arp_ip4_entry_t *e;
587 ethernet_arp_main_t *am = &ethernet_arp_main;
588 u32 count = 0;
589 u32 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
590 if (index == ~0) /* Try again from elt 0 */
591 index = pool_next_index (am->ip4_entry_pool, index);
592
593 /* Find a non-static random entry to free up for reuse */
594 do
595 {
596 if ((count++ == 100) || (index == ~0))
597 return NULL; /* give up after 100 entries */
598 e = pool_elt_at_index (am->ip4_entry_pool, index);
599 am->arp_delete_rotor = index;
600 index = pool_next_index (am->ip4_entry_pool, index);
601 }
602 while (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC);
603
604 /* Remove ARP entry from its interface and update fib */
605 hash_unset
606 (am->ethernet_arp_by_sw_if_index[e->sw_if_index].arp_entries,
607 e->ip4_address.as_u32);
608 arp_adj_fib_remove
609 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
610 adj_nbr_walk_nh4 (e->sw_if_index,
611 &e->ip4_address, arp_mk_incomplete_walk, NULL);
612 return e;
613}
614
Eyal Bari20197482017-09-13 12:29:08 +0300615static int
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100617 vnet_arp_set_ip4_over_ethernet_rpc_args_t
618 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700620 ethernet_arp_ip4_entry_t *e = 0;
621 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700623 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700624 int make_new_arp_cache_entry = 1;
625 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700626 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100627 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100628 int is_static = args->is_static;
629 u32 sw_if_index = args->sw_if_index;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800630 int is_no_fib_entry = args->is_no_fib_entry;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700631
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100632 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100634 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100636 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100638 p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
639 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700640 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100641 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
642
643 /* Refuse to over-write static arp. */
644 if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
John Lo0e6f4d62018-07-13 17:29:58 -0400645 {
646 /* if MAC address match, still check to send event */
647 if (0 == memcmp (e->ethernet_address,
648 a->ethernet, sizeof (e->ethernet_address)))
649 goto check_customers;
650 return -2;
651 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100652 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700653 }
Damjan Marion102ec522016-03-29 13:18:17 +0200654 }
655
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656 if (make_new_arp_cache_entry)
657 {
John Lo4fed5b12018-05-22 03:35:06 -0400658 if (am->limit_arp_cache_size &&
659 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
660 {
661 e = force_reuse_arp_entry ();
662 if (NULL == e)
663 return -2;
664 }
665 else
666 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100667
668 if (NULL == arp_int->arp_entries)
John Lo4fed5b12018-05-22 03:35:06 -0400669 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100670
671 hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
672
673 e->sw_if_index = sw_if_index;
674 e->ip4_address = a->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700675 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100676 clib_memcpy (e->ethernet_address,
677 a->ethernet, sizeof (e->ethernet_address));
678
Neale Rannsb3b2de72017-03-08 05:17:22 -0800679 if (!is_no_fib_entry)
680 {
Neale Ranns15002542017-09-10 04:39:11 -0700681 arp_adj_fib_add (e,
682 ip4_fib_table_get_index_for_sw_if_index
683 (e->sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700684 }
685 else
686 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800687 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY;
688 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100690 else
691 {
692 /*
693 * prevent a DoS attack from the data-plane that
694 * spams us with no-op updates to the MAC address
695 */
696 if (0 == memcmp (e->ethernet_address,
697 a->ethernet, sizeof (e->ethernet_address)))
John Lo7f358b32018-04-28 01:19:24 -0400698 {
699 e->time_last_updated = vlib_time_now (vm);
700 goto check_customers;
701 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100702
John Lo0e6f4d62018-07-13 17:29:58 -0400703 /* Update ethernet address. */
Neale Rannsb80c5362016-10-08 13:03:40 +0100704 clib_memcpy (e->ethernet_address, a->ethernet,
705 sizeof (e->ethernet_address));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100706 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707
John Lo0e6f4d62018-07-13 17:29:58 -0400708 /* Update time stamp and flags. */
John Lo7f358b32018-04-28 01:19:24 -0400709 e->time_last_updated = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 if (is_static)
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500711 {
712 e->flags &= ~ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
713 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
714 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100715 else
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500716 {
717 e->flags &= ~ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
718 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
719 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100720
Neale Rannsb80c5362016-10-08 13:03:40 +0100721 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722
Dave Barach59b25652017-09-10 15:04:27 -0400723check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724 /* Customer(s) waiting for this address to be resolved? */
725 p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
726 if (p)
727 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100728 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729 next_index = p[0];
730
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700731 while (next_index != (u32) ~ 0)
732 {
733 pr = pool_elt_at_index (am->pending_resolutions, next_index);
734 vlib_process_signal_event (vm, pr->node_index,
735 pr->type_opaque, pr->data);
736 next_index = pr->next_index;
737 pool_put (am->pending_resolutions, pr);
738 }
739
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740 hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
741 }
742
743 /* Customer(s) requesting ARP event for this address? */
744 p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
745 if (p)
746 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100747 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 next_index = p[0];
749
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700750 while (next_index != (u32) ~ 0)
751 {
752 int (*fp) (u32, u8 *, u32, u32);
753 int rv = 1;
754 mc = pool_elt_at_index (am->mac_changes, next_index);
755 fp = mc->data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700757 /* Call the user's data callback, return 1 to suppress dup events */
758 if (fp)
759 rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
760
Damjan Marion607de1a2016-08-16 22:53:54 +0200761 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700762 * Signal the resolver process, as long as the user
763 * says they want to be notified
764 */
765 if (rv == 0)
766 vlib_process_signal_event (vm, mc->node_index,
767 mc->type_opaque, mc->data);
768 next_index = mc->next_index;
769 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 }
771
772 return 0;
773}
774
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700775void
776vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
777 void *address_arg,
778 uword node_index,
779 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700781 ethernet_arp_main_t *am = &ethernet_arp_main;
782 ip4_address_t *address = address_arg;
783 uword *p;
784 pending_resolution_t *pr;
785
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786 pool_get (am->pending_resolutions, pr);
787
788 pr->next_index = ~0;
789 pr->node_index = node_index;
790 pr->type_opaque = type_opaque;
791 pr->data = data;
792 pr->data_callback = 0;
793
794 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
795 if (p)
796 {
797 /* Insert new resolution at the head of the list */
798 pr->next_index = p[0];
799 hash_unset (am->pending_resolutions_by_address, address->as_u32);
800 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700801
802 hash_set (am->pending_resolutions_by_address, address->as_u32,
803 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804}
805
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700806int
807vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
808 void *data_callback,
809 u32 pid,
810 void *address_arg,
811 uword node_index,
812 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700814 ethernet_arp_main_t *am = &ethernet_arp_main;
815 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700816
Eyal Bari8db1de82017-03-31 02:15:17 +0300817 /* Try to find an existing entry */
818 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
819 u32 *p = first;
820 pending_resolution_t *mc;
821 while (p && *p != ~0)
822 {
823 mc = pool_elt_at_index (am->mac_changes, *p);
824 if (mc->node_index == node_index && mc->type_opaque == type_opaque
825 && mc->pid == pid)
826 break;
827 p = &mc->next_index;
828 }
829
830 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831 if (is_add)
832 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300833 if (found)
834 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
835
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836 pool_get (am->mac_changes, mc);
Eyal Bari8db1de82017-03-31 02:15:17 +0300837 *mc = (pending_resolution_t)
838 {
839 .next_index = ~0,.node_index = node_index,.type_opaque =
840 type_opaque,.data = data,.data_callback = data_callback,.pid =
841 pid,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842
Eyal Bari8db1de82017-03-31 02:15:17 +0300843 /* Insert new resolution at the end of the list */
844 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300846 p[0] = new_idx;
847 else
848 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 }
850 else
851 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300852 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700853 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854
Eyal Bari8db1de82017-03-31 02:15:17 +0300855 /* Clients may need to clean up pool entries, too */
856 void (*fp) (u32, u8 *) = data_callback;
857 if (fp)
858 (*fp) (mc->data, 0 /* no new mac addrs */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859
Eyal Bari8db1de82017-03-31 02:15:17 +0300860 /* Remove the entry from the list and delete the entry */
861 *p = mc->next_index;
862 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700863
Eyal Bari8db1de82017-03-31 02:15:17 +0300864 /* Remove from hash if we deleted the last entry */
865 if (*p == ~0 && p == first)
866 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300868 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869}
870
871/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700872typedef enum
873{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874 ARP_INPUT_NEXT_DROP,
John Lod1f5d042016-04-12 18:20:39 -0400875 ARP_INPUT_NEXT_REPLY_TX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 ARP_INPUT_N_NEXT,
877} arp_input_next_t;
878
879#define foreach_ethernet_arp_error \
880 _ (replies_sent, "ARP replies sent") \
881 _ (l2_type_not_ethernet, "L2 type not ethernet") \
882 _ (l3_type_not_ip4, "L3 type not IP4") \
883 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
884 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
Neale Ranns59ae61e2018-06-07 18:09:49 -0700885 _ (l3_dst_address_unset, "IP4 destination address is unset") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
887 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
888 _ (replies_received, "ARP replies received") \
889 _ (opcode_not_request, "ARP opcode not request") \
890 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
891 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100893 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800894 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700896typedef enum
897{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
899 foreach_ethernet_arp_error
900#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700901 ETHERNET_ARP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902} ethernet_arp_input_error_t;
903
Neale Ranns436d06b2016-11-30 07:41:53 -0800904static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700905arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700906 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700908 vnet_main_t *vnm = vnet_get_main ();
909 vnet_interface_main_t *vim = &vnm->interface_main;
910 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700912 /* verify that the input interface is unnumbered to the connected.
913 * the connected interface is the interface on which the subnet is
914 * configured */
915 si = &vim->sw_interfaces[input_sw_if_index];
916
917 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
918 (si->unnumbered_sw_if_index == conn_sw_if_index)))
919 {
920 /* the input interface is not unnumbered to the interface on which
921 * the sub-net is configured that covers the ARP request.
922 * So this is not the case for unnumbered.. */
923 return 0;
924 }
925
Neale Ranns436d06b2016-11-30 07:41:53 -0800926 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927}
928
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700929static u32
930arp_learn (vnet_main_t * vnm,
931 ethernet_arp_main_t * am, u32 sw_if_index, void *addr)
932{
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700933 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0, 0);
934 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
935}
936
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700938arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700940 ethernet_arp_main_t *am = &ethernet_arp_main;
941 vnet_main_t *vnm = vnet_get_main ();
942 ip4_main_t *im4 = &ip4_main;
943 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944 u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
945
946 from = vlib_frame_vector_args (frame);
947 n_left_from = frame->n_vectors;
948 next_index = node->cached_next_index;
949
950 if (node->flags & VLIB_NODE_FLAG_TRACE)
951 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
952 /* stride */ 1,
953 sizeof (ethernet_arp_input_trace_t));
954
955 while (n_left_from > 0)
956 {
957 u32 n_left_to_next;
958
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700959 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960
961 while (n_left_from > 0 && n_left_to_next > 0)
962 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700963 vlib_buffer_t *p0;
964 vnet_hw_interface_t *hw_if0;
965 ethernet_arp_header_t *arp0;
Neale Ranns30d0fd42017-05-30 07:30:04 -0700966 ethernet_header_t *eth_rx, *eth_tx;
Neale Rannsc5d43172018-07-30 08:04:40 -0700967 const ip4_address_t *if_addr0;
968 ip4_address_t proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100969 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Matthew Smithcb9ab472017-05-16 21:35:56 -0500970 u8 is_request0, dst_is_local0, is_unnum0, is_vrrp_reply0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700971 ethernet_proxy_arp_t *pa;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100972 fib_node_index_t dst_fei, src_fei;
Neale Rannsc5d43172018-07-30 08:04:40 -0700973 const fib_prefix_t *pfx0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100974 fib_entry_flag_t src_flags, dst_flags;
Neale Rannsa3a3a9d2017-08-08 12:35:11 -0700975 u8 *rewrite0, rewrite0_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700976
977 pi0 = from[0];
978 to_next[0] = pi0;
979 from += 1;
980 to_next += 1;
981 n_left_from -= 1;
982 n_left_to_next -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100983 pa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984
985 p0 = vlib_get_buffer (vm, pi0);
986 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -0700987 /* Fill in ethernet header. */
988 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700990 is_request0 = arp0->opcode
991 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992
993 error0 = ETHERNET_ARP_ERROR_replies_sent;
994
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700995 error0 =
996 (arp0->l2_type !=
997 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
998 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
999 error0 =
1000 (arp0->l3_type !=
1001 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
1002 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Neale Ranns59ae61e2018-06-07 18:09:49 -07001003 error0 =
1004 (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ?
1005 ETHERNET_ARP_ERROR_l3_dst_address_unset : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001006
1007 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1008
Neale Rannsd96bad82017-03-08 01:12:54 -08001009 /* not playing the ARP game if the interface is not IPv4 enabled */
1010 error0 =
1011 (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
1012 ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
1013
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014 if (error0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001015 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016
1017 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001018 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1019 if (~0 == fib_index0)
1020 {
1021 error0 = ETHERNET_ARP_ERROR_interface_no_table;
1022 goto drop2;
1023
1024 }
1025 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1026 &arp0->ip4_over_ethernet[1].ip4,
1027 32);
Matus Fabiandccbee32017-01-31 22:20:30 -08001028 dst_flags = fib_entry_get_flags (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001029
Matus Fabiandccbee32017-01-31 22:20:30 -08001030 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001031
Neale Rannsca193612017-06-14 06:50:08 -07001032 /* Honor unnumbered interface, if any */
1033 is_unnum0 = sw_if_index0 != conn_sw_if_index0;
1034
1035 {
1036 /*
1037 * we're looking for FIB entries that indicate the source
1038 * is attached. There may be more specific non-attached
Neale Ranns2303cb12018-02-21 04:57:17 -08001039 * routes that match the source, but these do not influence
Neale Rannsca193612017-06-14 06:50:08 -07001040 * whether we respond to an ARP request, i.e. they do not
1041 * influence whether we are the correct way for the sender
1042 * to reach us, they only affect how we reach the sender.
1043 */
1044 fib_entry_t *src_fib_entry;
Neale Rannsc5d43172018-07-30 08:04:40 -07001045 const fib_prefix_t *pfx;
Neale Rannsca193612017-06-14 06:50:08 -07001046 fib_entry_src_t *src;
1047 fib_source_t source;
Neale Rannsca193612017-06-14 06:50:08 -07001048 int attached;
1049 int mask;
1050
1051 mask = 32;
1052 attached = 0;
1053
1054 do
1055 {
1056 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1057 &arp0->
1058 ip4_over_ethernet[0].ip4,
1059 mask);
1060 src_fib_entry = fib_entry_get (src_fei);
1061
1062 /*
1063 * It's possible that the source that provides the
1064 * flags we need, or the flags we must not have,
1065 * is not the best source, so check then all.
1066 */
1067 /* *INDENT-OFF* */
1068 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1069 ({
1070 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1071
1072 /* Reject requests/replies with our local interface
1073 address. */
1074 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1075 {
1076 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns24b170a2017-08-15 05:33:11 -07001077 /*
1078 * When VPP has an interface whose address is also
1079 * applied to a TAP interface on the host, then VPP's
1080 * TAP interface will be unnumbered to the 'real'
1081 * interface and do proxy ARP from the host.
1082 * The curious aspect of this setup is that ARP requests
1083 * from the host will come from the VPP's own address.
1084 * So don't drop immediately here, instead go see if this
1085 * is a proxy ARP case.
1086 */
1087 goto drop1;
Neale Rannsca193612017-06-14 06:50:08 -07001088 }
1089 /* A Source must also be local to subnet of matching
1090 * interface address. */
1091 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1092 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1093 {
1094 attached = 1;
1095 break;
1096 }
1097 /*
1098 * else
1099 * The packet was sent from an address that is not
1100 * connected nor attached i.e. it is not from an
1101 * address that is covered by a link's sub-net,
1102 * nor is it a already learned host resp.
1103 */
1104 }));
1105 /* *INDENT-ON* */
1106
1107 /*
1108 * shorter mask lookup for the next iteration.
1109 */
Neale Rannsc5d43172018-07-30 08:04:40 -07001110 pfx = fib_entry_get_prefix (src_fei);
1111 mask = pfx->fp_len - 1;
Neale Rannsca193612017-06-14 06:50:08 -07001112
1113 /*
1114 * continue until we hit the default route or we find
1115 * the attached we are looking for. The most likely
1116 * outcome is we find the attached with the first source
1117 * on the first lookup.
1118 */
1119 }
1120 while (!attached &&
1121 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1122
1123 if (!attached)
1124 {
1125 /*
1126 * the matching route is a not attached, i.e. it was
1127 * added as a result of routing, rather than interface/ARP
1128 * configuration. If the matching route is not a host route
1129 * (i.e. a /32)
1130 */
1131 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
1132 goto drop2;
1133 }
1134 }
1135
Neale Ranns59ae61e2018-06-07 18:09:49 -07001136 if (fib_entry_is_sourced (dst_fei, FIB_SOURCE_ADJ))
1137 {
1138 /*
1139 * We matched an adj-fib on ths source subnet (a /32 previously
1140 * added as a result of ARP). If this request is a gratuitous
1141 * ARP, then learn from it.
1142 * The check for matching an adj-fib, is to prevent hosts
1143 * from spamming us with gratuitous ARPS that might otherwise
1144 * blow our ARP cache
1145 */
1146 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1147 arp0->ip4_over_ethernet[1].ip4.as_u32)
1148 error0 = arp_learn (vnm, am, sw_if_index0,
1149 &arp0->ip4_over_ethernet[0]);
1150 goto drop2;
1151 }
1152 else if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 {
1154 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1155 goto drop1;
1156 }
1157
Neale Ranns797235a2017-01-09 14:33:38 +01001158 if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1159 {
1160 /*
1161 * The interface the ARP was received on is not the interface
Neale Rannsca193612017-06-14 06:50:08 -07001162 * on which the covering prefix is configured. Maybe this is a
1163 * case for unnumbered.
Neale Ranns797235a2017-01-09 14:33:38 +01001164 */
1165 is_unnum0 = 1;
1166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001168 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
Neale Rannsc5d43172018-07-30 08:04:40 -07001169 pfx0 = fib_entry_get_prefix (dst_fei);
1170 if_addr0 = &pfx0->fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001171
Matthew Smithcb9ab472017-05-16 21:35:56 -05001172 is_vrrp_reply0 =
1173 ((arp0->opcode ==
1174 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1175 &&
1176 (!memcmp
1177 (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
1178 sizeof (vrrp_prefix))));
1179
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001180 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001181 match their L2-frame-level source addresses, unless it's
1182 a reply from a VRRP virtual router */
Neale Ranns30d0fd42017-05-30 07:30:04 -07001183 if (memcmp
1184 (eth_rx->src_address, arp0->ip4_over_ethernet[0].ethernet,
1185 sizeof (eth_rx->src_address)) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001186 {
1187 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1188 goto drop2;
1189 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001191 /* Learn or update sender's mapping only for replies to addresses
1192 * that are local to the subnet */
1193 if (arp0->opcode ==
Neale Ranns59ae61e2018-06-07 18:09:49 -07001194 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001195 {
Neale Ranns59ae61e2018-06-07 18:09:49 -07001196 if (dst_is_local0)
1197 error0 = arp_learn (vnm, am, sw_if_index0,
1198 &arp0->ip4_over_ethernet[0]);
1199 else
1200 /* a reply for a non-local destination could be a GARP.
1201 * GARPs for hosts we know were handled above, so this one
1202 * we drop */
1203 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1204
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 goto drop1;
1206 }
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001207 else if (arp0->opcode ==
1208 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request) &&
1209 (dst_is_local0 == 0))
1210 {
1211 goto drop1;
1212 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001214 send_reply:
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001215 /* Send a reply.
1216 An adjacency to the sender is not always present,
1217 so we use the interface to build us a rewrite string
1218 which will contain all the necessary tags. */
1219 rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1220 VNET_LINK_ARP,
1221 eth_rx->src_address);
1222 rewrite0_len = vec_len (rewrite0);
1223
Neale Ranns30d0fd42017-05-30 07:30:04 -07001224 /* Figure out how much to rewind current data from adjacency. */
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001225 vlib_buffer_advance (p0, -rewrite0_len);
Neale Ranns30d0fd42017-05-30 07:30:04 -07001226 eth_tx = vlib_buffer_get_current (p0);
1227
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1229 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1230
John Lod1f5d042016-04-12 18:20:39 -04001231 /* Send reply back through input interface */
1232 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1233 next0 = ARP_INPUT_NEXT_REPLY_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234
1235 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1236
1237 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1238
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001239 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1240 hw_if0->hw_address, 6);
1241 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1242 if_addr0->data_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243
1244 /* Hardware must be ethernet-like. */
1245 ASSERT (vec_len (hw_if0->hw_address) == 6);
1246
Neale Ranns30d0fd42017-05-30 07:30:04 -07001247 /* the rx nd tx ethernet headers wil overlap in the case
1248 * when we received a tagged VLAN=0 packet, but we are sending
1249 * back untagged */
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001250 clib_memcpy (eth_tx, rewrite0, vec_len (rewrite0));
1251 vec_free (rewrite0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001253 if (NULL == pa)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001254 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001255 if (is_unnum0)
Neale Ranns436d06b2016-11-30 07:41:53 -08001256 {
Neale Ranns30d0fd42017-05-30 07:30:04 -07001257 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001258 goto drop2;
1259 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001260 }
Neale Ranns4b919a52017-03-11 05:55:21 -08001261
Neale Ranns24b170a2017-08-15 05:33:11 -07001262 /* We are going to reply to this request, so, in the absence of
1263 errors, learn the sender */
1264 if (!error0)
1265 error0 = arp_learn (vnm, am, sw_if_index0,
1266 &arp0->ip4_over_ethernet[1]);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001267
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001268 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1269 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270
1271 n_replies_sent += 1;
1272 continue;
1273
1274 drop1:
Neale Ranns59ae61e2018-06-07 18:09:49 -07001275 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1276 arp0->ip4_over_ethernet[1].ip4.as_u32)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001277 {
1278 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1279 goto drop2;
1280 }
1281 /* See if proxy arp is configured for the address */
1282 if (is_request0)
1283 {
1284 vnet_sw_interface_t *si;
1285 u32 this_addr = clib_net_to_host_u32
1286 (arp0->ip4_over_ethernet[1].ip4.as_u32);
1287 u32 fib_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001289 si = vnet_get_sw_interface (vnm, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001291 if (!(si->flags & VNET_SW_INTERFACE_FLAG_PROXY_ARP))
1292 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001294 fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1295 sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001296
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001297 vec_foreach (pa, am->proxy_arps)
1298 {
Neale Ranns0053de62018-05-22 08:40:52 -07001299 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr.as_u32);
1300 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001301
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001302 /* an ARP request hit in the proxy-arp table? */
1303 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1304 (fib_index0 == pa->fib_index))
1305 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001306 proxy_src.as_u32 =
1307 arp0->ip4_over_ethernet[1].ip4.data_u32;
1308
Damjan Marion607de1a2016-08-16 22:53:54 +02001309 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001310 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001311 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001312 if_addr0 = &proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001313 is_unnum0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001314 n_proxy_arp_replies_sent++;
1315 goto send_reply;
1316 }
1317 }
1318 }
1319
1320 drop2:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321
1322 next0 = ARP_INPUT_NEXT_DROP;
1323 p0->error = node->errors[error0];
1324
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001325 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1326 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327 }
1328
1329 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1330 }
1331
1332 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001333 ETHERNET_ARP_ERROR_replies_sent,
1334 n_replies_sent - n_proxy_arp_replies_sent);
1335
Ed Warnickecb9cada2015-12-08 15:45:58 -07001336 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001337 ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1338 n_proxy_arp_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339 return frame->n_vectors;
1340}
1341
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001342static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001343#define _(sym,string) string,
1344 foreach_ethernet_arp_error
1345#undef _
1346};
1347
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001348/* *INDENT-OFF* */
1349VLIB_REGISTER_NODE (arp_input_node, static) =
1350{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001351 .function = arp_input,
1352 .name = "arp-input",
1353 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354 .n_errors = ETHERNET_ARP_N_ERROR,
1355 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001356 .n_next_nodes = ARP_INPUT_N_NEXT,
1357 .next_nodes = {
1358 [ARP_INPUT_NEXT_DROP] = "error-drop",
John Lod1f5d042016-04-12 18:20:39 -04001359 [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 .format_buffer = format_ethernet_arp_header,
1362 .format_trace = format_ethernet_arp_input_trace,
1363};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001364/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001365
Ed Warnickecb9cada2015-12-08 15:45:58 -07001366static int
1367ip4_arp_entry_sort (void *a1, void *a2)
1368{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001369 ethernet_arp_ip4_entry_t *e1 = a1;
1370 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001371
1372 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001373 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001375 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001376 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001377 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378 return cmp;
1379}
1380
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001381ethernet_arp_ip4_entry_t *
John Lo7f358b32018-04-28 01:19:24 -04001382ip4_neighbors_pool (void)
1383{
1384 ethernet_arp_main_t *am = &ethernet_arp_main;
1385 return am->ip4_entry_pool;
1386}
1387
1388ethernet_arp_ip4_entry_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001389ip4_neighbor_entries (u32 sw_if_index)
1390{
1391 ethernet_arp_main_t *am = &ethernet_arp_main;
1392 ethernet_arp_ip4_entry_t *n, *ns = 0;
1393
1394 /* *INDENT-OFF* */
1395 pool_foreach (n, am->ip4_entry_pool, ({
1396 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1397 continue;
1398 vec_add1 (ns, n[0]);
1399 }));
1400 /* *INDENT-ON* */
1401
1402 if (ns)
1403 vec_sort_with_function (ns, ip4_arp_entry_sort);
1404 return ns;
1405}
1406
Ed Warnickecb9cada2015-12-08 15:45:58 -07001407static clib_error_t *
1408show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001409 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001411 vnet_main_t *vnm = vnet_get_main ();
1412 ethernet_arp_main_t *am = &ethernet_arp_main;
1413 ethernet_arp_ip4_entry_t *e, *es;
1414 ethernet_proxy_arp_t *pa;
1415 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001416 u32 sw_if_index;
1417
1418 /* Filter entries by interface if given. */
1419 sw_if_index = ~0;
1420 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1421
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001422 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001423 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001424 {
Keith Wilescb466842016-02-11 19:21:10 -06001425 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001426 vec_foreach (e, es)
1427 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001428 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001429 }
1430 vec_free (es);
1431 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432
1433 if (vec_len (am->proxy_arps))
1434 {
1435 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001436 vec_foreach (pa, am->proxy_arps)
1437 {
1438 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1439 pa->fib_index,
1440 format_ip4_address, &pa->lo_addr,
1441 format_ip4_address, &pa->hi_addr);
1442 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001444
Ed Warnickecb9cada2015-12-08 15:45:58 -07001445 return error;
1446}
1447
Billy McFall2d085d92016-09-13 21:47:55 -04001448/*?
1449 * Display all the IPv4 ARP entries.
1450 *
1451 * @cliexpar
1452 * Example of how to display the IPv4 ARP table:
1453 * @cliexstart{show ip arp}
1454 * Time FIB IP4 Flags Ethernet Interface
1455 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1456 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1457 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1458 * Proxy arps enabled for:
1459 * Fib_index 0 6.0.0.1 - 6.0.0.11
1460 * @cliexend
1461 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001462/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001463VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1464 .path = "show ip arp",
1465 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001466 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001468/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001469
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001470typedef struct
1471{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001472 pg_edit_t l2_type, l3_type;
1473 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1474 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001475 struct
1476 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001477 pg_edit_t ethernet;
1478 pg_edit_t ip4;
1479 } ip4_over_ethernet[2];
1480} pg_ethernet_arp_header_t;
1481
1482static inline void
1483pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1484{
1485 /* Initialize fields that are not bit fields in the IP header. */
1486#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001487 _(l2_type);
1488 _(l3_type);
1489 _(n_l2_address_bytes);
1490 _(n_l3_address_bytes);
1491 _(opcode);
1492 _(ip4_over_ethernet[0].ethernet);
1493 _(ip4_over_ethernet[0].ip4);
1494 _(ip4_over_ethernet[1].ethernet);
1495 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001496#undef _
1497}
1498
1499uword
1500unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1501{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001502 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1503 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001505
Ed Warnickecb9cada2015-12-08 15:45:58 -07001506 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1507 &group_index);
1508 pg_ethernet_arp_header_init (p);
1509
1510 /* Defaults. */
1511 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1512 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1513 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1514 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1515
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001516 if (!unformat (input, "%U: %U/%U -> %U/%U",
1517 unformat_pg_edit,
1518 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1519 unformat_pg_edit,
1520 unformat_ethernet_address, &p->ip4_over_ethernet[0].ethernet,
1521 unformat_pg_edit,
1522 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1523 unformat_pg_edit,
1524 unformat_ethernet_address, &p->ip4_over_ethernet[1].ethernet,
1525 unformat_pg_edit,
1526 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001527 {
1528 /* Free up any edits we may have added. */
1529 pg_free_edit_group (s);
1530 return 0;
1531 }
1532 return 1;
1533}
1534
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001535clib_error_t *
1536ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001537{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001538 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001539
1540 am->limit_arp_cache_size = arp_limit;
1541 return 0;
1542}
1543
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001544/**
1545 * @brief Control Plane hook to remove an ARP entry
1546 */
1547int
1548vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
1549 u32 sw_if_index, void *a_arg)
Damjan Marion102ec522016-03-29 13:18:17 +02001550{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001551 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1552 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
Damjan Marion102ec522016-03-29 13:18:17 +02001553
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001554 args.sw_if_index = sw_if_index;
1555 args.flags = ETHERNET_ARP_ARGS_REMOVE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001556 clib_memcpy (&args.a, a, sizeof (*a));
1557
1558 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1559 (u8 *) & args, sizeof (args));
1560 return 0;
1561}
1562
1563/**
1564 * @brief Internally generated event to flush the ARP cache on an
1565 * interface state change event.
1566 * A flush will remove dynamic ARP entries, and for statics remove the MAC
1567 * address from the corresponding adjacencies.
1568 */
1569static int
1570vnet_arp_flush_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001571 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001572{
1573 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1574 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1575
1576 args.sw_if_index = sw_if_index;
1577 args.flags = ETHERNET_ARP_ARGS_FLUSH;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001578 clib_memcpy (&args.a, a, sizeof (*a));
1579
1580 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1581 (u8 *) & args, sizeof (args));
1582 return 0;
1583}
1584
1585/**
1586 * @brief Internally generated event to populate the ARP cache on an
1587 * interface state change event.
1588 * For static entries this will re-source the adjacencies.
1589 *
1590 * @param sw_if_index The interface on which the ARP entires are acted
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001591 */
1592static int
1593vnet_arp_populate_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001594 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001595{
1596 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1597 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1598
1599 args.sw_if_index = sw_if_index;
1600 args.flags = ETHERNET_ARP_ARGS_POPULATE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001601 clib_memcpy (&args.a, a, sizeof (*a));
1602
1603 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1604 (u8 *) & args, sizeof (args));
1605 return 0;
1606}
1607
Eyal Bari20197482017-09-13 12:29:08 +03001608/**
1609 * @brief publish wildcard arp event
1610 * @param sw_if_index The interface on which the ARP entires are acted
1611 */
1612static int
1613vnet_arp_wc_publish (u32 sw_if_index, void *a_arg)
1614{
1615 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1616 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1617 .flags = ETHERNET_ARP_ARGS_WC_PUB,
1618 .sw_if_index = sw_if_index,
1619 .a = *a
1620 };
1621
1622 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1623 (u8 *) & args, sizeof (args));
1624 return 0;
1625}
1626
1627static void
1628vnet_arp_wc_publish_internal (vnet_main_t * vnm,
1629 vnet_arp_set_ip4_over_ethernet_rpc_args_t *
1630 args)
1631{
1632 vlib_main_t *vm = vlib_get_main ();
1633 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Baric125ecc2017-09-20 11:29:17 +03001634 uword ni = am->wc_ip4_arp_publisher_node;
1635 uword et = am->wc_ip4_arp_publisher_et;
1636
1637 if (ni == (uword) ~ 0)
Eyal Bari20197482017-09-13 12:29:08 +03001638 return;
1639 wc_arp_report_t *r =
Eyal Baric125ecc2017-09-20 11:29:17 +03001640 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *r);
Eyal Bari20197482017-09-13 12:29:08 +03001641 r->ip4 = args->a.ip4.as_u32;
1642 r->sw_if_index = args->sw_if_index;
1643 memcpy (r->mac, args->a.ethernet, sizeof r->mac);
1644}
1645
1646void
Eyal Baric125ecc2017-09-20 11:29:17 +03001647wc_arp_set_publisher_node (uword node_index, uword event_type)
Eyal Bari20197482017-09-13 12:29:08 +03001648{
1649 ethernet_arp_main_t *am = &ethernet_arp_main;
1650 am->wc_ip4_arp_publisher_node = node_index;
Eyal Baric125ecc2017-09-20 11:29:17 +03001651 am->wc_ip4_arp_publisher_et = event_type;
Eyal Bari20197482017-09-13 12:29:08 +03001652}
1653
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001654/*
1655 * arp_add_del_interface_address
1656 *
1657 * callback when an interface address is added or deleted
1658 */
1659static void
1660arp_add_del_interface_address (ip4_main_t * im,
1661 uword opaque,
1662 u32 sw_if_index,
1663 ip4_address_t * address,
1664 u32 address_length,
1665 u32 if_address_index, u32 is_del)
1666{
1667 /*
1668 * Flush the ARP cache of all entries covered by the address
1669 * that is being removed.
1670 */
1671 ethernet_arp_main_t *am = &ethernet_arp_main;
1672 ethernet_arp_ip4_entry_t *e;
1673
Neale Ranns177bbdc2016-11-15 09:46:51 +00001674 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001675 return;
1676
1677 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02001678 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001679 ethernet_arp_interface_t *eai;
1680 u32 i, *to_delete = 0;
1681 hash_pair_t *pair;
1682
1683 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1684
Neale Rannsb80c5362016-10-08 13:03:40 +01001685 /* *INDENT-OFF* */
1686 hash_foreach_pair (pair, eai->arp_entries,
1687 ({
1688 e = pool_elt_at_index(am->ip4_entry_pool,
1689 pair->value[0]);
1690 if (ip4_destination_matches_route (im, &e->ip4_address,
1691 address, address_length))
1692 {
1693 vec_add1 (to_delete, e - am->ip4_entry_pool);
1694 }
1695 }));
1696 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001697
1698 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001699 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001700 ethernet_arp_ip4_over_ethernet_address_t delme;
1701 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1702
1703 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1704 delme.ip4.as_u32 = e->ip4_address.as_u32;
1705
1706 vnet_arp_flush_ip4_over_ethernet (vnet_get_main (),
Neale Rannsb80c5362016-10-08 13:03:40 +01001707 e->sw_if_index, &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001708 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001709
1710 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02001711 }
1712}
1713
Neale Ranns15002542017-09-10 04:39:11 -07001714static void
1715arp_table_bind (ip4_main_t * im,
1716 uword opaque,
1717 u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
1718{
1719 ethernet_arp_main_t *am = &ethernet_arp_main;
1720 ethernet_arp_interface_t *eai;
1721 ethernet_arp_ip4_entry_t *e;
1722 hash_pair_t *pair;
1723
1724 /*
1725 * the IP table that the interface is bound to has changed.
1726 * reinstall all the adj fibs.
1727 */
1728
1729 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
1730 return;
1731
1732 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1733
1734 /* *INDENT-OFF* */
1735 hash_foreach_pair (pair, eai->arp_entries,
1736 ({
1737 e = pool_elt_at_index(am->ip4_entry_pool,
1738 pair->value[0]);
1739 /*
1740 * remove the adj-fib from the old table and add to the new
1741 */
1742 arp_adj_fib_remove(e, old_fib_index);
1743 arp_adj_fib_add(e, new_fib_index);
1744 }));
1745 /* *INDENT-ON* */
1746
1747}
1748
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001749static clib_error_t *
1750ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001751{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001752 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001753 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001754 clib_error_t *error;
1755 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05001756
1757 if ((error = vlib_call_init_function (vm, ethernet_init)))
1758 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001759
1760 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1761
1762 pn = pg_get_node (arp_input_node.index);
1763 pn->unformat_edit = unformat_pg_arp_header;
1764
1765 am->opcode_by_name = hash_create_string (0, sizeof (uword));
1766#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1767 foreach_ethernet_arp_opcode;
1768#undef _
1769
Ed Warnickecb9cada2015-12-08 15:45:58 -07001770 /* $$$ configurable */
1771 am->limit_arp_cache_size = 50000;
1772
1773 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1774 am->mac_changes_by_address = hash_create (0, sizeof (uword));
Eyal Bari20197482017-09-13 12:29:08 +03001775 am->wc_ip4_arp_publisher_node = (uword) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001776
1777 /* don't trace ARP error packets */
1778 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001779 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001780 vlib_node_get_runtime (vm, arp_input_node.index);
1781
1782#define _(a,b) \
1783 vnet_pcap_drop_trace_filter_add_del \
1784 (rt->errors[ETHERNET_ARP_ERROR_##a], \
1785 1 /* is_add */);
1786 foreach_ethernet_arp_error
1787#undef _
1788 }
Damjan Marion102ec522016-03-29 13:18:17 +02001789
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001790 ip4_add_del_interface_address_callback_t cb;
1791 cb.function = arp_add_del_interface_address;
1792 cb.function_opaque = 0;
1793 vec_add1 (im->add_del_interface_address_callbacks, cb);
1794
Neale Ranns15002542017-09-10 04:39:11 -07001795 ip4_table_bind_callback_t cbt;
1796 cbt.function = arp_table_bind;
1797 cbt.function_opaque = 0;
1798 vec_add1 (im->table_bind_callbacks, cbt);
1799
Ed Warnickecb9cada2015-12-08 15:45:58 -07001800 return 0;
1801}
1802
1803VLIB_INIT_FUNCTION (ethernet_arp_init);
1804
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001805static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001806arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
1807{
1808 ethernet_arp_main_t *am = &ethernet_arp_main;
1809
John Lo4fed5b12018-05-22 03:35:06 -04001810 arp_adj_fib_remove
1811 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001812 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
1813 pool_put (am->ip4_entry_pool, e);
1814}
1815
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001816static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07001817vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001818 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1819 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001820{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001821 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001822 ethernet_arp_ip4_entry_t *e;
1823 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001824
Matthew Smith66c0adf2017-08-09 16:30:43 -05001825 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1826 return 0;
1827
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001828 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001829
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001830 e = arp_entry_find (eai, &args->a.ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001831
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001832 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001833 {
Neale Ranns19c68d22016-12-07 15:38:14 +00001834 adj_nbr_walk_nh4 (e->sw_if_index,
1835 &e->ip4_address, arp_mk_incomplete_walk, NULL);
John Lo4fed5b12018-05-22 03:35:06 -04001836 arp_entry_free (eai, e);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001837 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001838
Ed Warnickecb9cada2015-12-08 15:45:58 -07001839 return 0;
1840}
1841
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001842static int
1843vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1844 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1845 * args)
1846{
1847 ethernet_arp_main_t *am = &ethernet_arp_main;
1848 ethernet_arp_ip4_entry_t *e;
1849 ethernet_arp_interface_t *eai;
1850
Matthew Smith66c0adf2017-08-09 16:30:43 -05001851 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1852 return 0;
1853
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001854 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1855
1856 e = arp_entry_find (eai, &args->a.ip4);
1857
1858 if (NULL != e)
1859 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001860 adj_nbr_walk_nh4 (e->sw_if_index,
1861 &e->ip4_address, arp_mk_incomplete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001862
1863 /*
1864 * The difference between flush and unset, is that an unset
1865 * means delete for static and dynamic entries. A flush
1866 * means delete only for dynamic. Flushing is what the DP
1867 * does in response to interface events. unset is only done
1868 * by the control plane.
1869 */
Neale Ranns15002542017-09-10 04:39:11 -07001870 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
1871 {
Jon Loeliger1f6e9282018-05-17 15:55:00 -05001872 e->flags &= ~ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
Neale Ranns15002542017-09-10 04:39:11 -07001873 }
1874 else if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001875 {
1876 arp_entry_free (eai, e);
1877 }
1878 }
1879 return (0);
1880}
1881
1882static int
1883vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
1884 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1885 * args)
1886{
1887 ethernet_arp_main_t *am = &ethernet_arp_main;
1888 ethernet_arp_ip4_entry_t *e;
1889 ethernet_arp_interface_t *eai;
1890
Matthew Smith66c0adf2017-08-09 16:30:43 -05001891 vec_validate (am->ethernet_arp_by_sw_if_index, args->sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001892 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1893
1894 e = arp_entry_find (eai, &args->a.ip4);
1895
1896 if (NULL != e)
1897 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001898 adj_nbr_walk_nh4 (e->sw_if_index,
1899 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001900 }
1901 return (0);
1902}
1903
1904static void
1905set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
1906 * a)
1907{
1908 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001909 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001910
1911 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
1912 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
1913 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1914 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
1915 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1916 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
Eyal Bari20197482017-09-13 12:29:08 +03001917 else if (a->flags & ETHERNET_ARP_ARGS_WC_PUB)
1918 vnet_arp_wc_publish_internal (vm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001919 else
1920 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
1921}
1922
1923/**
1924 * @brief Invoked when the interface's admin state changes
1925 */
1926static clib_error_t *
1927ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
1928 u32 sw_if_index, u32 flags)
1929{
1930 ethernet_arp_main_t *am = &ethernet_arp_main;
1931 ethernet_arp_ip4_entry_t *e;
1932 u32 i, *to_delete = 0;
1933
1934 /* *INDENT-OFF* */
1935 pool_foreach (e, am->ip4_entry_pool,
1936 ({
1937 if (e->sw_if_index == sw_if_index)
Neale Rannsb80c5362016-10-08 13:03:40 +01001938 vec_add1 (to_delete,
1939 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001940 }));
1941 /* *INDENT-ON* */
1942
1943 for (i = 0; i < vec_len (to_delete); i++)
1944 {
1945 ethernet_arp_ip4_over_ethernet_address_t delme;
1946 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1947
1948 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1949 delme.ip4.as_u32 = e->ip4_address.as_u32;
1950
1951 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1952 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001953 vnet_arp_populate_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001954 }
1955 else
1956 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001957 vnet_arp_flush_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001958 }
1959
1960 }
1961 vec_free (to_delete);
1962
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001963 return 0;
1964}
1965
1966VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
1967
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001968static void
1969increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001970{
1971 u8 old;
1972 int i;
1973
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001974 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001975 {
1976 old = a->ip4.as_u8[i];
1977 a->ip4.as_u8[i] += 1;
1978 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001979 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001980 }
1981
1982 for (i = 5; i >= 0; i--)
1983 {
1984 old = a->ethernet[i];
1985 a->ethernet[i] += 1;
1986 if (old < a->ethernet[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001987 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001988 }
1989}
1990
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001991int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001992vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb3b2de72017-03-08 05:17:22 -08001993 u32 sw_if_index, void *a_arg,
1994 int is_static, int is_no_fib_entry)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001995{
1996 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1997 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1998
1999 args.sw_if_index = sw_if_index;
2000 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -08002001 args.is_no_fib_entry = is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002002 args.flags = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002003 clib_memcpy (&args.a, a, sizeof (*a));
2004
2005 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
2006 (u8 *) & args, sizeof (args));
2007 return 0;
2008}
2009
Neale Ranns0053de62018-05-22 08:40:52 -07002010void
2011proxy_arp_walk (proxy_arp_walk_t cb, void *data)
2012{
2013 ethernet_arp_main_t *am = &ethernet_arp_main;
2014 ethernet_proxy_arp_t *pa;
2015
2016 vec_foreach (pa, am->proxy_arps)
2017 {
2018 if (!cb (&pa->lo_addr, &pa->hi_addr, pa->fib_index, data))
2019 break;
2020 }
2021}
2022
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002023int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002024vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
2025 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002026{
2027 ethernet_arp_main_t *am = &ethernet_arp_main;
2028 ethernet_proxy_arp_t *pa;
2029 u32 found_at_index = ~0;
2030
2031 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002032 {
Neale Ranns0053de62018-05-22 08:40:52 -07002033 if (pa->lo_addr.as_u32 == lo_addr->as_u32 &&
2034 pa->hi_addr.as_u32 == hi_addr->as_u32 && pa->fib_index == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002035 {
2036 found_at_index = pa - am->proxy_arps;
2037 break;
2038 }
2039 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002040
2041 if (found_at_index != ~0)
2042 {
2043 /* Delete, otherwise it's already in the table */
2044 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002045 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002046 return 0;
2047 }
2048 /* delete, no such entry */
2049 if (is_del)
2050 return VNET_API_ERROR_NO_SUCH_ENTRY;
2051
2052 /* add, not in table */
2053 vec_add2 (am->proxy_arps, pa, 1);
Neale Ranns0053de62018-05-22 08:40:52 -07002054 pa->lo_addr.as_u32 = lo_addr->as_u32;
2055 pa->hi_addr.as_u32 = hi_addr->as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002056 pa->fib_index = fib_index;
2057 return 0;
2058}
2059
2060/*
Damjan Marion607de1a2016-08-16 22:53:54 +02002061 * Remove any proxy arp entries asdociated with the
Ed Warnickecb9cada2015-12-08 15:45:58 -07002062 * specificed fib.
2063 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002064int
2065vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002066{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002067 ethernet_arp_main_t *am = &ethernet_arp_main;
2068 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002069 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002070 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002071 int i;
2072
Neale Ranns107e7d42017-04-11 09:55:19 -07002073 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2074 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002075 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002076
2077 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002078 {
2079 if (pa->fib_index == fib_index)
2080 {
2081 vec_add1 (entries_to_delete, pa - am->proxy_arps);
2082 }
2083 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002084
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002085 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002086 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002087 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
2088 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089
2090 vec_free (entries_to_delete);
2091
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002092 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002093}
2094
2095static clib_error_t *
2096ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002097 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002098{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002099 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002100 u32 sw_if_index;
2101 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
2102 int addr_valid = 0;
2103 int is_del = 0;
2104 int count = 1;
2105 u32 fib_index = 0;
2106 u32 fib_id;
2107 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08002108 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109 int is_proxy = 0;
2110
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002111 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002112 {
2113 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
2114 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002115 unformat_vnet_sw_interface, vnm, &sw_if_index,
2116 unformat_ip4_address, &addr.ip4,
2117 unformat_ethernet_address, &addr.ethernet))
2118 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002119
2120 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002121 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002122
2123 else if (unformat (input, "static"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002124 is_static = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002125
Neale Rannsb3b2de72017-03-08 05:17:22 -08002126 else if (unformat (input, "no-fib-entry"))
2127 is_no_fib_entry = 1;
2128
Ed Warnickecb9cada2015-12-08 15:45:58 -07002129 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002130 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002131
2132 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002133 {
Neale Ranns107e7d42017-04-11 09:55:19 -07002134 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2135
2136 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002137 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002138 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002139
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002140 else if (unformat (input, "proxy %U - %U",
2141 unformat_ip4_address, &lo_addr.ip4,
2142 unformat_ip4_address, &hi_addr.ip4))
2143 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002144 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002145 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002146 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002147
Ed Warnickecb9cada2015-12-08 15:45:58 -07002148 if (is_proxy)
2149 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002150 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2151 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002152 return 0;
2153 }
2154
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002155 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002156 {
2157 int i;
2158
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002159 for (i = 0; i < count; i++)
2160 {
2161 if (is_del == 0)
2162 {
2163 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002164
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002165 /* Park the debug CLI until the arp entry is installed */
2166 vnet_register_ip4_arp_resolution_event
2167 (vnm, &addr.ip4, vlib_current_process (vm),
2168 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002169
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002170 vnet_arp_set_ip4_over_ethernet
Neale Rannsb3b2de72017-03-08 05:17:22 -08002171 (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002172
2173 vlib_process_wait_for_event (vm);
2174 event_type = vlib_process_get_events (vm, &event_data);
2175 vec_reset_length (event_data);
2176 if (event_type != 1)
2177 clib_warning ("event type %d unexpected", event_type);
2178 }
2179 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002180 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002181
2182 increment_ip4_and_mac_address (&addr);
2183 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002184 }
2185 else
2186 {
2187 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002188 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002189 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002190
Ed Warnickecb9cada2015-12-08 15:45:58 -07002191 return 0;
2192}
2193
Neale Rannsb80c5362016-10-08 13:03:40 +01002194/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002195/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002196 * Add or delete IPv4 ARP cache entries.
2197 *
2198 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2199 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2200 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002201 *
2202 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002203 * @parblock
2204 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2205 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2206 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2207 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2208 *
2209 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2210 * table:
2211 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2212 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2213 *
2214 * Add or delete IPv4 static ARP cache entries as follows:
2215 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2216 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2217 *
2218 * For testing / debugging purposes, the 'set ip arp' command can add or
2219 * delete multiple entries. Supply the 'count N' parameter:
2220 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2221 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002222 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002224 .path = "set ip arp",
2225 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002226 "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 -07002227 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002228};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002229/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002230
2231static clib_error_t *
2232set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002233 unformat_input_t *
2234 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002235{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002236 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002237 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002238 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002239 int enable = 0;
2240 int intfc_set = 0;
2241
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002242 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002243 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002244 if (unformat (input, "%U", unformat_vnet_sw_interface,
2245 vnm, &sw_if_index))
2246 intfc_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002247 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002248 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002249 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002250 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002251 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002252 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002253 }
2254
2255 if (intfc_set == 0)
2256 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002257 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002258
2259 si = vnet_get_sw_interface (vnm, sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002260 ASSERT (si);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002261 if (enable)
2262 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002263 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07002264 si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002265
Ed Warnickecb9cada2015-12-08 15:45:58 -07002266 return 0;
2267}
2268
Neale Rannsb80c5362016-10-08 13:03:40 +01002269/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002270/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002271 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2272 * requests for the indicated address range. Multiple proxy-arp
2273 * ranges may be provisioned.
2274 *
2275 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2276 * Also, the underlying implementation has not been performance-tuned.
2277 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002278 *
2279 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002280 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002281 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2282 * Append 'del' to delete a range of proxy ARP addresses:
2283 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2284 * You must then specifically enable proxy arp on individual interfaces:
2285 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2286 * To disable proxy arp on an individual interface:
2287 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002288 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002289VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002290 .path = "set interface proxy-arp",
2291 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002292 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002293 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002294};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002295/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002296
2297
2298/*
John Lo1edfba92016-08-27 01:11:57 -04002299 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2300 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002301 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002302typedef enum
2303{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002304 ARP_TERM_NEXT_L2_OUTPUT,
2305 ARP_TERM_NEXT_DROP,
2306 ARP_TERM_N_NEXT,
2307} arp_term_next_t;
2308
2309u32 arp_term_next_node_index[32];
2310
2311static uword
2312arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002313 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002314{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002315 l2input_main_t *l2im = &l2input_main;
2316 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002317 u32 n_replies_sent = 0;
2318 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002319 l2_bridge_domain_t *last_bd_config = 0;
2320 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002321
2322 from = vlib_frame_vector_args (frame);
2323 n_left_from = frame->n_vectors;
2324 next_index = node->cached_next_index;
2325
2326 while (n_left_from > 0)
2327 {
2328 u32 n_left_to_next;
2329
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002330 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002331
2332 while (n_left_from > 0 && n_left_to_next > 0)
2333 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002334 vlib_buffer_t *p0;
2335 ethernet_header_t *eth0;
2336 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002337 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002338 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002339 u32 pi0, error0, next0, sw_if_index0;
2340 u16 ethertype0;
2341 u16 bd_index0;
2342 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002343 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002344
2345 pi0 = from[0];
2346 to_next[0] = pi0;
2347 from += 1;
2348 to_next += 1;
2349 n_left_from -= 1;
2350 n_left_to_next -= 1;
2351
2352 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002353 // Terminate only local (SHG == 0) ARP
2354 if (vnet_buffer (p0)->l2.shg != 0)
2355 goto next_l2_feature;
2356
Ed Warnickecb9cada2015-12-08 15:45:58 -07002357 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002358 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2359 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002360 arp0 = (ethernet_arp_header_t *) l3h0;
2361
John Lo0e6f4d62018-07-13 17:29:58 -04002362 if (ethertype0 != ETHERNET_TYPE_ARP)
John Lo1edfba92016-08-27 01:11:57 -04002363 goto check_ip6_nd;
2364
John Lo0e6f4d62018-07-13 17:29:58 -04002365 if ((arp0->opcode !=
2366 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request)) &&
2367 (arp0->opcode !=
2368 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply)))
2369 goto check_ip6_nd;
2370
2371 /* Must be ARP request/reply packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002372 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2373 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2374 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002375 u8 *t0 = vlib_add_trace (vm, node, p0,
2376 sizeof (ethernet_arp_input_trace_t));
2377 clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002378 }
2379
John Lo0e6f4d62018-07-13 17:29:58 -04002380 error0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002381 error0 =
2382 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002383 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2384 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002385 error0 =
2386 (arp0->l3_type !=
2387 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2388 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002389
2390 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2391
2392 if (error0)
2393 goto drop;
2394
John Lo1edfba92016-08-27 01:11:57 -04002395 /* Trash ARP packets whose ARP-level source addresses do not
John Lo0131b6c2018-06-25 12:35:21 -04002396 match, or if requester address is mcast */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002397 if (PREDICT_FALSE
Matthew Smithcb9ab472017-05-16 21:35:56 -05002398 (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
John Lo0131b6c2018-06-25 12:35:21 -04002399 sizeof (eth0->src_address)) ||
2400 ethernet_address_cast (arp0->ip4_over_ethernet[0].ethernet)))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002401 {
John Lo0e6f4d62018-07-13 17:29:58 -04002402 /* VRRP virtual MAC may be different to SMAC in ARP reply */
2403 if (memcmp (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
2404 sizeof (vrrp_prefix)))
2405 {
2406 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2407 goto drop;
2408 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002409 }
John Lo0131b6c2018-06-25 12:35:21 -04002410 if (PREDICT_FALSE
2411 (ip4_address_is_multicast (&arp0->ip4_over_ethernet[0].ip4)))
2412 {
2413 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
2414 goto drop;
2415 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002416
John Lo1edfba92016-08-27 01:11:57 -04002417 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002418 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002419 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Bari20197482017-09-13 12:29:08 +03002420 if (am->wc_ip4_arp_publisher_node != (uword) ~ 0)
2421 vnet_arp_wc_publish (sw_if_index0, &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002422 }
2423
John Lo1edfba92016-08-27 01:11:57 -04002424 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002425 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002426 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2427 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2428 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002429 {
2430 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002431 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002432 }
2433 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2434
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002435 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002436 goto next_l2_feature; /* MAC not found */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002437
John Lo1edfba92016-08-27 01:11:57 -04002438 /* MAC found, send ARP reply -
2439 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002440 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2441 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2442 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Damjan Marionf1213b82016-03-13 02:22:06 +01002443 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2444 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2445 clib_memcpy (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002446 n_replies_sent += 1;
2447
John Lo1edfba92016-08-27 01:11:57 -04002448 output_response:
2449 /* For BVI, need to use l2-fwd node to send ARP reply as
2450 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002451 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002452 if (PREDICT_FALSE (cfg0->bvi))
2453 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002454 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002455 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2456 goto next_l2_feature;
2457 }
2458
John Lo1edfba92016-08-27 01:11:57 -04002459 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002460 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2461 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002462 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2463 to_next, n_left_to_next, pi0,
2464 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002465 continue;
2466
John Lo1edfba92016-08-27 01:11:57 -04002467 check_ip6_nd:
2468 /* IP6 ND event notification or solicitation handling to generate
2469 local response instead of flooding */
2470 iph0 = (ip6_header_t *) l3h0;
2471 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2472 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002473 !ip6_address_is_unspecified
2474 (&iph0->src_address)))
2475 {
2476 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002477 if (vnet_ip6_nd_term
2478 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002479 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002480 goto output_response;
2481 }
2482
Ed Warnickecb9cada2015-12-08 15:45:58 -07002483 next_l2_feature:
2484 {
John Lobeb0b2e2017-07-22 00:21:36 -04002485 next0 = vnet_l2_feature_next (p0, arp_term_next_node_index,
2486 L2INPUT_FEAT_ARP_TERM);
Neale Rannsb80c5362016-10-08 13:03:40 +01002487 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2488 to_next, n_left_to_next,
2489 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002490 continue;
2491 }
2492
2493 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002494 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2495 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2496 arp0->ip4_over_ethernet[1].ip4.as_u32))
2497 {
2498 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2499 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002500 next0 = ARP_TERM_NEXT_DROP;
2501 p0->error = node->errors[error0];
2502
Neale Rannsb80c5362016-10-08 13:03:40 +01002503 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2504 to_next, n_left_to_next, pi0,
2505 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002506 }
2507
2508 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2509 }
2510
2511 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002512 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002513 return frame->n_vectors;
2514}
2515
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002516/* *INDENT-OFF* */
2517VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002518 .function = arp_term_l2bd,
2519 .name = "arp-term-l2bd",
2520 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002521 .n_errors = ETHERNET_ARP_N_ERROR,
2522 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002523 .n_next_nodes = ARP_TERM_N_NEXT,
2524 .next_nodes = {
2525 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2526 [ARP_TERM_NEXT_DROP] = "error-drop",
2527 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002528 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002529 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002530};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002531/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002532
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002533clib_error_t *
2534arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002535{
2536 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002537 feat_bitmap_init_next_nodes (vm,
2538 arp_term_l2bd_node.index,
2539 L2INPUT_N_FEAT,
2540 l2input_get_feat_names (),
2541 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002542 return 0;
2543}
2544
2545VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002546
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002547void
2548change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2549{
2550 if (e->sw_if_index == sw_if_index)
2551 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002552 adj_nbr_walk_nh4 (e->sw_if_index,
2553 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002554 }
2555}
2556
2557void
Neale Ranns3be6b282016-12-20 14:24:01 +00002558ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002559{
2560 ethernet_arp_main_t *am = &ethernet_arp_main;
2561 ethernet_arp_ip4_entry_t *e;
Neale Rannsc819fc62018-02-16 02:44:05 -08002562 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002563
2564 /* *INDENT-OFF* */
2565 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002566 ({
2567 change_arp_mac (sw_if_index, e);
2568 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002569 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08002570
2571 ai = adj_glean_get (FIB_PROTOCOL_IP4, sw_if_index);
2572
2573 if (ADJ_INDEX_INVALID != ai)
2574 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002575}
2576
John Lo7e9743a2017-09-23 08:59:58 -04002577void
Steven9f781d82018-06-05 11:09:32 -07002578send_ip4_garp (vlib_main_t * vm, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07002579{
2580 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002581 ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
Neale Ranns25b04942018-04-04 09:34:50 -07002582
Steven9f781d82018-06-05 11:09:32 -07002583 send_ip4_garp_w_addr (vm, ip4_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07002584}
2585
2586void
2587send_ip4_garp_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07002588 const ip4_address_t * ip4_addr, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04002589{
2590 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002591 vnet_main_t *vnm = vnet_get_main ();
2592 u8 *rewrite, rewrite_len;
2593 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
John Lo8b81cb42017-06-26 01:40:20 -04002594
2595 if (ip4_addr)
2596 {
2597 clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
2598 format_ip4_address, ip4_addr, sw_if_index);
2599
2600 /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
2601 where the interface IP/MAC pair is used for both source and request
2602 MAC/IP pairs in the request */
2603 u32 bi = 0;
2604 ethernet_arp_header_t *h = vlib_packet_template_get_packet
2605 (vm, &i4m->ip4_arp_request_packet_template, &bi);
John Lo084606b2018-06-19 15:27:48 -04002606
2607 if (!h)
2608 return;
2609
John Lo8b81cb42017-06-26 01:40:20 -04002610 clib_memcpy (h->ip4_over_ethernet[0].ethernet, hi->hw_address,
2611 sizeof (h->ip4_over_ethernet[0].ethernet));
2612 clib_memcpy (h->ip4_over_ethernet[1].ethernet, hi->hw_address,
2613 sizeof (h->ip4_over_ethernet[1].ethernet));
2614 h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
2615 h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
2616
2617 /* Setup MAC header with ARP Etype and broadcast DMAC */
2618 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07002619 rewrite =
2620 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_ARP,
2621 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST);
2622 rewrite_len = vec_len (rewrite);
2623 vlib_buffer_advance (b, -rewrite_len);
John Lo8b81cb42017-06-26 01:40:20 -04002624 ethernet_header_t *e = vlib_buffer_get_current (b);
Steven9f781d82018-06-05 11:09:32 -07002625 clib_memcpy (e->dst_address, rewrite, rewrite_len);
2626 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04002627
2628 /* Send GARP packet out the specified interface */
2629 vnet_buffer (b)->sw_if_index[VLIB_RX] =
2630 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
2631 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
2632 u32 *to_next = vlib_frame_vector_args (f);
2633 to_next[0] = bi;
2634 f->n_vectors = 1;
2635 vlib_put_frame_to_node (vm, hi->output_node_index, f);
2636 }
2637}
2638
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002639/*
2640 * fd.io coding-style-patch-verification: ON
2641 *
2642 * Local Variables:
2643 * eval: (c-set-style "gnu")
2644 * End:
2645 */