blob: c6f9324eabee41f50e4c19765e0bdb16c3e40b26 [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;
495 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700496 {
497 /*
498 * Construct a partial rewrite from the known ethernet mcast dest MAC
499 */
500 u8 *rewrite;
501 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100502
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700503 rewrite = ethernet_build_rewrite (vnm,
504 sw_if_index,
505 adj->ia_link,
506 ethernet_ip4_mcast_dst_addr ());
507 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000508
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700509 /*
510 * Complete the remaining fields of the adj's rewrite to direct the
511 * complete of the rewrite at switch time by copying in the IP
512 * dst address's bytes.
Neale Ranns889fe942017-06-01 05:43:19 -0400513 * Ofset is 2 bytes into the MAC desintation address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700514 */
Neale Ranns889fe942017-06-01 05:43:19 -0400515 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000516
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700517 break;
518 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000519 case IP_LOOKUP_NEXT_DROP:
520 case IP_LOOKUP_NEXT_PUNT:
521 case IP_LOOKUP_NEXT_LOCAL:
522 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800523 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000524 case IP_LOOKUP_NEXT_MIDCHAIN:
525 case IP_LOOKUP_NEXT_ICMP_ERROR:
526 case IP_LOOKUP_N_NEXT:
527 ASSERT (0);
528 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100529 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530}
531
Neale Ranns15002542017-09-10 04:39:11 -0700532static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700533arp_adj_fib_add (ethernet_arp_ip4_entry_t * e, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700534{
535 fib_prefix_t pfx = {
536 .fp_len = 32,
537 .fp_proto = FIB_PROTOCOL_IP4,
538 .fp_addr.ip4 = e->ip4_address,
539 };
540
541 e->fib_entry_index =
542 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
543 FIB_ENTRY_FLAG_ATTACHED,
544 DPO_PROTO_IP4, &pfx.fp_addr,
545 e->sw_if_index, ~0, 1, NULL,
546 FIB_ROUTE_PATH_FLAG_NONE);
547 fib_table_lock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
548}
549
John Lo4fed5b12018-05-22 03:35:06 -0400550void
551arp_adj_fib_remove (ethernet_arp_ip4_entry_t * e, u32 fib_index)
552{
553 if (FIB_NODE_INDEX_INVALID != e->fib_entry_index)
554 {
555 fib_prefix_t pfx = {
556 .fp_len = 32,
557 .fp_proto = FIB_PROTOCOL_IP4,
558 .fp_addr.ip4 = e->ip4_address,
559 };
560 u32 fib_index;
561
562 fib_index = ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
563
564 fib_table_entry_path_remove (fib_index, &pfx,
565 FIB_SOURCE_ADJ,
566 DPO_PROTO_IP4,
567 &pfx.fp_addr,
568 e->sw_if_index, ~0, 1,
569 FIB_ROUTE_PATH_FLAG_NONE);
570 fib_table_unlock (fib_index, FIB_PROTOCOL_IP4, FIB_SOURCE_ADJ);
571 }
572}
573
574static ethernet_arp_ip4_entry_t *
575force_reuse_arp_entry (void)
576{
577 ethernet_arp_ip4_entry_t *e;
578 ethernet_arp_main_t *am = &ethernet_arp_main;
579 u32 count = 0;
580 u32 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
581 if (index == ~0) /* Try again from elt 0 */
582 index = pool_next_index (am->ip4_entry_pool, index);
583
584 /* Find a non-static random entry to free up for reuse */
585 do
586 {
587 if ((count++ == 100) || (index == ~0))
588 return NULL; /* give up after 100 entries */
589 e = pool_elt_at_index (am->ip4_entry_pool, index);
590 am->arp_delete_rotor = index;
591 index = pool_next_index (am->ip4_entry_pool, index);
592 }
593 while (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC);
594
595 /* Remove ARP entry from its interface and update fib */
596 hash_unset
597 (am->ethernet_arp_by_sw_if_index[e->sw_if_index].arp_entries,
598 e->ip4_address.as_u32);
599 arp_adj_fib_remove
600 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
601 adj_nbr_walk_nh4 (e->sw_if_index,
602 &e->ip4_address, arp_mk_incomplete_walk, NULL);
603 return e;
604}
605
Eyal Bari20197482017-09-13 12:29:08 +0300606static int
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100608 vnet_arp_set_ip4_over_ethernet_rpc_args_t
609 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700611 ethernet_arp_ip4_entry_t *e = 0;
612 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100613 ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700614 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700615 int make_new_arp_cache_entry = 1;
616 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700617 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100618 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100619 int is_static = args->is_static;
620 u32 sw_if_index = args->sw_if_index;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800621 int is_no_fib_entry = args->is_no_fib_entry;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700622
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100623 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100625 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100627 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100629 p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
630 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700631 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100632 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
633
634 /* Refuse to over-write static arp. */
635 if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
636 return -2;
637 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700638 }
Damjan Marion102ec522016-03-29 13:18:17 +0200639 }
640
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641 if (make_new_arp_cache_entry)
642 {
John Lo4fed5b12018-05-22 03:35:06 -0400643 if (am->limit_arp_cache_size &&
644 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
645 {
646 e = force_reuse_arp_entry ();
647 if (NULL == e)
648 return -2;
649 }
650 else
651 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100652
653 if (NULL == arp_int->arp_entries)
John Lo4fed5b12018-05-22 03:35:06 -0400654 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100655
656 hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
657
658 e->sw_if_index = sw_if_index;
659 e->ip4_address = a->ip4;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700660 e->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100661 clib_memcpy (e->ethernet_address,
662 a->ethernet, sizeof (e->ethernet_address));
663
Neale Rannsb3b2de72017-03-08 05:17:22 -0800664 if (!is_no_fib_entry)
665 {
Neale Ranns15002542017-09-10 04:39:11 -0700666 arp_adj_fib_add (e,
667 ip4_fib_table_get_index_for_sw_if_index
668 (e->sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700669 }
670 else
671 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800672 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY;
673 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100675 else
676 {
677 /*
678 * prevent a DoS attack from the data-plane that
679 * spams us with no-op updates to the MAC address
680 */
681 if (0 == memcmp (e->ethernet_address,
682 a->ethernet, sizeof (e->ethernet_address)))
John Lo7f358b32018-04-28 01:19:24 -0400683 {
684 e->time_last_updated = vlib_time_now (vm);
685 goto check_customers;
686 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100687
688 /* Update time stamp and ethernet address. */
689 clib_memcpy (e->ethernet_address, a->ethernet,
690 sizeof (e->ethernet_address));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100691 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692
John Lo7f358b32018-04-28 01:19:24 -0400693 e->time_last_updated = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 if (is_static)
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500695 {
696 e->flags &= ~ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
697 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
698 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100699 else
Jon Loeliger1f6e9282018-05-17 15:55:00 -0500700 {
701 e->flags &= ~ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
702 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
703 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100704
Neale Rannsb80c5362016-10-08 13:03:40 +0100705 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Dave Barach59b25652017-09-10 15:04:27 -0400707check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 /* Customer(s) waiting for this address to be resolved? */
709 p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
710 if (p)
711 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100712 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713 next_index = p[0];
714
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700715 while (next_index != (u32) ~ 0)
716 {
717 pr = pool_elt_at_index (am->pending_resolutions, next_index);
718 vlib_process_signal_event (vm, pr->node_index,
719 pr->type_opaque, pr->data);
720 next_index = pr->next_index;
721 pool_put (am->pending_resolutions, pr);
722 }
723
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724 hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
725 }
726
727 /* Customer(s) requesting ARP event for this address? */
728 p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
729 if (p)
730 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100731 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 next_index = p[0];
733
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700734 while (next_index != (u32) ~ 0)
735 {
736 int (*fp) (u32, u8 *, u32, u32);
737 int rv = 1;
738 mc = pool_elt_at_index (am->mac_changes, next_index);
739 fp = mc->data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700741 /* Call the user's data callback, return 1 to suppress dup events */
742 if (fp)
743 rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
744
Damjan Marion607de1a2016-08-16 22:53:54 +0200745 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700746 * Signal the resolver process, as long as the user
747 * says they want to be notified
748 */
749 if (rv == 0)
750 vlib_process_signal_event (vm, mc->node_index,
751 mc->type_opaque, mc->data);
752 next_index = mc->next_index;
753 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 }
755
756 return 0;
757}
758
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700759void
760vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
761 void *address_arg,
762 uword node_index,
763 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700765 ethernet_arp_main_t *am = &ethernet_arp_main;
766 ip4_address_t *address = address_arg;
767 uword *p;
768 pending_resolution_t *pr;
769
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 pool_get (am->pending_resolutions, pr);
771
772 pr->next_index = ~0;
773 pr->node_index = node_index;
774 pr->type_opaque = type_opaque;
775 pr->data = data;
776 pr->data_callback = 0;
777
778 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
779 if (p)
780 {
781 /* Insert new resolution at the head of the list */
782 pr->next_index = p[0];
783 hash_unset (am->pending_resolutions_by_address, address->as_u32);
784 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700785
786 hash_set (am->pending_resolutions_by_address, address->as_u32,
787 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788}
789
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700790int
791vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
792 void *data_callback,
793 u32 pid,
794 void *address_arg,
795 uword node_index,
796 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700798 ethernet_arp_main_t *am = &ethernet_arp_main;
799 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700800
Eyal Bari8db1de82017-03-31 02:15:17 +0300801 /* Try to find an existing entry */
802 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
803 u32 *p = first;
804 pending_resolution_t *mc;
805 while (p && *p != ~0)
806 {
807 mc = pool_elt_at_index (am->mac_changes, *p);
808 if (mc->node_index == node_index && mc->type_opaque == type_opaque
809 && mc->pid == pid)
810 break;
811 p = &mc->next_index;
812 }
813
814 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815 if (is_add)
816 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300817 if (found)
818 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
819
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820 pool_get (am->mac_changes, mc);
Eyal Bari8db1de82017-03-31 02:15:17 +0300821 *mc = (pending_resolution_t)
822 {
823 .next_index = ~0,.node_index = node_index,.type_opaque =
824 type_opaque,.data = data,.data_callback = data_callback,.pid =
825 pid,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826
Eyal Bari8db1de82017-03-31 02:15:17 +0300827 /* Insert new resolution at the end of the list */
828 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300830 p[0] = new_idx;
831 else
832 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 }
834 else
835 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300836 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700837 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838
Eyal Bari8db1de82017-03-31 02:15:17 +0300839 /* Clients may need to clean up pool entries, too */
840 void (*fp) (u32, u8 *) = data_callback;
841 if (fp)
842 (*fp) (mc->data, 0 /* no new mac addrs */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843
Eyal Bari8db1de82017-03-31 02:15:17 +0300844 /* Remove the entry from the list and delete the entry */
845 *p = mc->next_index;
846 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700847
Eyal Bari8db1de82017-03-31 02:15:17 +0300848 /* Remove from hash if we deleted the last entry */
849 if (*p == ~0 && p == first)
850 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300852 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853}
854
855/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700856typedef enum
857{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858 ARP_INPUT_NEXT_DROP,
John Lod1f5d042016-04-12 18:20:39 -0400859 ARP_INPUT_NEXT_REPLY_TX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860 ARP_INPUT_N_NEXT,
861} arp_input_next_t;
862
863#define foreach_ethernet_arp_error \
864 _ (replies_sent, "ARP replies sent") \
865 _ (l2_type_not_ethernet, "L2 type not ethernet") \
866 _ (l3_type_not_ip4, "L3 type not IP4") \
867 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
868 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
Neale Ranns59ae61e2018-06-07 18:09:49 -0700869 _ (l3_dst_address_unset, "IP4 destination address is unset") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
871 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
872 _ (replies_received, "ARP replies received") \
873 _ (opcode_not_request, "ARP opcode not request") \
874 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
875 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100877 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800878 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700880typedef enum
881{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
883 foreach_ethernet_arp_error
884#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700885 ETHERNET_ARP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886} ethernet_arp_input_error_t;
887
Neale Ranns436d06b2016-11-30 07:41:53 -0800888static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700889arp_unnumbered (vlib_buffer_t * p0,
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700890 u32 input_sw_if_index, u32 conn_sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700892 vnet_main_t *vnm = vnet_get_main ();
893 vnet_interface_main_t *vim = &vnm->interface_main;
894 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700896 /* verify that the input interface is unnumbered to the connected.
897 * the connected interface is the interface on which the subnet is
898 * configured */
899 si = &vim->sw_interfaces[input_sw_if_index];
900
901 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
902 (si->unnumbered_sw_if_index == conn_sw_if_index)))
903 {
904 /* the input interface is not unnumbered to the interface on which
905 * the sub-net is configured that covers the ARP request.
906 * So this is not the case for unnumbered.. */
907 return 0;
908 }
909
Neale Ranns436d06b2016-11-30 07:41:53 -0800910 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911}
912
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700913static u32
914arp_learn (vnet_main_t * vnm,
915 ethernet_arp_main_t * am, u32 sw_if_index, void *addr)
916{
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700917 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0, 0);
918 return (ETHERNET_ARP_ERROR_l3_src_address_learned);
919}
920
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700922arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700924 ethernet_arp_main_t *am = &ethernet_arp_main;
925 vnet_main_t *vnm = vnet_get_main ();
926 ip4_main_t *im4 = &ip4_main;
927 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
929
930 from = vlib_frame_vector_args (frame);
931 n_left_from = frame->n_vectors;
932 next_index = node->cached_next_index;
933
934 if (node->flags & VLIB_NODE_FLAG_TRACE)
935 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
936 /* stride */ 1,
937 sizeof (ethernet_arp_input_trace_t));
938
939 while (n_left_from > 0)
940 {
941 u32 n_left_to_next;
942
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700943 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
945 while (n_left_from > 0 && n_left_to_next > 0)
946 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700947 vlib_buffer_t *p0;
948 vnet_hw_interface_t *hw_if0;
949 ethernet_arp_header_t *arp0;
Neale Ranns30d0fd42017-05-30 07:30:04 -0700950 ethernet_header_t *eth_rx, *eth_tx;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100951 ip4_address_t *if_addr0, proxy_src;
952 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
Matthew Smithcb9ab472017-05-16 21:35:56 -0500953 u8 is_request0, dst_is_local0, is_unnum0, is_vrrp_reply0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700954 ethernet_proxy_arp_t *pa;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100955 fib_node_index_t dst_fei, src_fei;
956 fib_prefix_t pfx0;
957 fib_entry_flag_t src_flags, dst_flags;
Neale Rannsa3a3a9d2017-08-08 12:35:11 -0700958 u8 *rewrite0, rewrite0_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959
960 pi0 = from[0];
961 to_next[0] = pi0;
962 from += 1;
963 to_next += 1;
964 n_left_from -= 1;
965 n_left_to_next -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100966 pa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967
968 p0 = vlib_get_buffer (vm, pi0);
969 arp0 = vlib_buffer_get_current (p0);
Neale Ranns30d0fd42017-05-30 07:30:04 -0700970 /* Fill in ethernet header. */
971 eth_rx = ethernet_buffer_get_header (p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700973 is_request0 = arp0->opcode
974 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975
976 error0 = ETHERNET_ARP_ERROR_replies_sent;
977
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700978 error0 =
979 (arp0->l2_type !=
980 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
981 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
982 error0 =
983 (arp0->l3_type !=
984 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
985 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Neale Ranns59ae61e2018-06-07 18:09:49 -0700986 error0 =
987 (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ?
988 ETHERNET_ARP_ERROR_l3_dst_address_unset : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989
990 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
991
Neale Rannsd96bad82017-03-08 01:12:54 -0800992 /* not playing the ARP game if the interface is not IPv4 enabled */
993 error0 =
994 (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
995 ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
996
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997 if (error0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100998 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999
1000 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001001 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1002 if (~0 == fib_index0)
1003 {
1004 error0 = ETHERNET_ARP_ERROR_interface_no_table;
1005 goto drop2;
1006
1007 }
1008 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1009 &arp0->ip4_over_ethernet[1].ip4,
1010 32);
Matus Fabiandccbee32017-01-31 22:20:30 -08001011 dst_flags = fib_entry_get_flags (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001012
Matus Fabiandccbee32017-01-31 22:20:30 -08001013 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001014
Neale Rannsca193612017-06-14 06:50:08 -07001015 /* Honor unnumbered interface, if any */
1016 is_unnum0 = sw_if_index0 != conn_sw_if_index0;
1017
1018 {
1019 /*
1020 * we're looking for FIB entries that indicate the source
1021 * is attached. There may be more specific non-attached
Neale Ranns2303cb12018-02-21 04:57:17 -08001022 * routes that match the source, but these do not influence
Neale Rannsca193612017-06-14 06:50:08 -07001023 * whether we respond to an ARP request, i.e. they do not
1024 * influence whether we are the correct way for the sender
1025 * to reach us, they only affect how we reach the sender.
1026 */
1027 fib_entry_t *src_fib_entry;
1028 fib_entry_src_t *src;
1029 fib_source_t source;
1030 fib_prefix_t pfx;
1031 int attached;
1032 int mask;
1033
1034 mask = 32;
1035 attached = 0;
1036
1037 do
1038 {
1039 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1040 &arp0->
1041 ip4_over_ethernet[0].ip4,
1042 mask);
1043 src_fib_entry = fib_entry_get (src_fei);
1044
1045 /*
1046 * It's possible that the source that provides the
1047 * flags we need, or the flags we must not have,
1048 * is not the best source, so check then all.
1049 */
1050 /* *INDENT-OFF* */
1051 FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1052 ({
1053 src_flags = fib_entry_get_flags_for_source (src_fei, source);
1054
1055 /* Reject requests/replies with our local interface
1056 address. */
1057 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1058 {
1059 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns24b170a2017-08-15 05:33:11 -07001060 /*
1061 * When VPP has an interface whose address is also
1062 * applied to a TAP interface on the host, then VPP's
1063 * TAP interface will be unnumbered to the 'real'
1064 * interface and do proxy ARP from the host.
1065 * The curious aspect of this setup is that ARP requests
1066 * from the host will come from the VPP's own address.
1067 * So don't drop immediately here, instead go see if this
1068 * is a proxy ARP case.
1069 */
1070 goto drop1;
Neale Rannsca193612017-06-14 06:50:08 -07001071 }
1072 /* A Source must also be local to subnet of matching
1073 * interface address. */
1074 if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1075 (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1076 {
1077 attached = 1;
1078 break;
1079 }
1080 /*
1081 * else
1082 * The packet was sent from an address that is not
1083 * connected nor attached i.e. it is not from an
1084 * address that is covered by a link's sub-net,
1085 * nor is it a already learned host resp.
1086 */
1087 }));
1088 /* *INDENT-ON* */
1089
1090 /*
1091 * shorter mask lookup for the next iteration.
1092 */
1093 fib_entry_get_prefix (src_fei, &pfx);
1094 mask = pfx.fp_len - 1;
1095
1096 /*
1097 * continue until we hit the default route or we find
1098 * the attached we are looking for. The most likely
1099 * outcome is we find the attached with the first source
1100 * on the first lookup.
1101 */
1102 }
1103 while (!attached &&
1104 !fib_entry_is_sourced (src_fei, FIB_SOURCE_DEFAULT_ROUTE));
1105
1106 if (!attached)
1107 {
1108 /*
1109 * the matching route is a not attached, i.e. it was
1110 * added as a result of routing, rather than interface/ARP
1111 * configuration. If the matching route is not a host route
1112 * (i.e. a /32)
1113 */
1114 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
1115 goto drop2;
1116 }
1117 }
1118
Neale Ranns59ae61e2018-06-07 18:09:49 -07001119 if (fib_entry_is_sourced (dst_fei, FIB_SOURCE_ADJ))
1120 {
1121 /*
1122 * We matched an adj-fib on ths source subnet (a /32 previously
1123 * added as a result of ARP). If this request is a gratuitous
1124 * ARP, then learn from it.
1125 * The check for matching an adj-fib, is to prevent hosts
1126 * from spamming us with gratuitous ARPS that might otherwise
1127 * blow our ARP cache
1128 */
1129 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1130 arp0->ip4_over_ethernet[1].ip4.as_u32)
1131 error0 = arp_learn (vnm, am, sw_if_index0,
1132 &arp0->ip4_over_ethernet[0]);
1133 goto drop2;
1134 }
1135 else if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 {
1137 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1138 goto drop1;
1139 }
1140
Neale Ranns797235a2017-01-09 14:33:38 +01001141 if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1142 {
1143 /*
1144 * The interface the ARP was received on is not the interface
Neale Rannsca193612017-06-14 06:50:08 -07001145 * on which the covering prefix is configured. Maybe this is a
1146 * case for unnumbered.
Neale Ranns797235a2017-01-09 14:33:38 +01001147 */
1148 is_unnum0 = 1;
1149 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001151 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
1152 fib_entry_get_prefix (dst_fei, &pfx0);
1153 if_addr0 = &pfx0.fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001154
Matthew Smithcb9ab472017-05-16 21:35:56 -05001155 is_vrrp_reply0 =
1156 ((arp0->opcode ==
1157 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1158 &&
1159 (!memcmp
1160 (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
1161 sizeof (vrrp_prefix))));
1162
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001163 /* Trash ARP packets whose ARP-level source addresses do not
Matthew Smithcb9ab472017-05-16 21:35:56 -05001164 match their L2-frame-level source addresses, unless it's
1165 a reply from a VRRP virtual router */
Neale Ranns30d0fd42017-05-30 07:30:04 -07001166 if (memcmp
1167 (eth_rx->src_address, arp0->ip4_over_ethernet[0].ethernet,
1168 sizeof (eth_rx->src_address)) && !is_vrrp_reply0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001169 {
1170 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1171 goto drop2;
1172 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001174 /* Learn or update sender's mapping only for replies to addresses
1175 * that are local to the subnet */
1176 if (arp0->opcode ==
Neale Ranns59ae61e2018-06-07 18:09:49 -07001177 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001178 {
Neale Ranns59ae61e2018-06-07 18:09:49 -07001179 if (dst_is_local0)
1180 error0 = arp_learn (vnm, am, sw_if_index0,
1181 &arp0->ip4_over_ethernet[0]);
1182 else
1183 /* a reply for a non-local destination could be a GARP.
1184 * GARPs for hosts we know were handled above, so this one
1185 * we drop */
1186 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1187
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188 goto drop1;
1189 }
zhaoqinglingb4c42cd2017-12-23 15:20:59 +08001190 else if (arp0->opcode ==
1191 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request) &&
1192 (dst_is_local0 == 0))
1193 {
1194 goto drop1;
1195 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001196
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001197 send_reply:
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001198 /* Send a reply.
1199 An adjacency to the sender is not always present,
1200 so we use the interface to build us a rewrite string
1201 which will contain all the necessary tags. */
1202 rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1203 VNET_LINK_ARP,
1204 eth_rx->src_address);
1205 rewrite0_len = vec_len (rewrite0);
1206
Neale Ranns30d0fd42017-05-30 07:30:04 -07001207 /* Figure out how much to rewind current data from adjacency. */
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001208 vlib_buffer_advance (p0, -rewrite0_len);
Neale Ranns30d0fd42017-05-30 07:30:04 -07001209 eth_tx = vlib_buffer_get_current (p0);
1210
Ed Warnickecb9cada2015-12-08 15:45:58 -07001211 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1212 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1213
John Lod1f5d042016-04-12 18:20:39 -04001214 /* Send reply back through input interface */
1215 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1216 next0 = ARP_INPUT_NEXT_REPLY_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001217
1218 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1219
1220 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1221
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001222 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1223 hw_if0->hw_address, 6);
1224 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1225 if_addr0->data_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001226
1227 /* Hardware must be ethernet-like. */
1228 ASSERT (vec_len (hw_if0->hw_address) == 6);
1229
Neale Ranns30d0fd42017-05-30 07:30:04 -07001230 /* the rx nd tx ethernet headers wil overlap in the case
1231 * when we received a tagged VLAN=0 packet, but we are sending
1232 * back untagged */
Neale Rannsa3a3a9d2017-08-08 12:35:11 -07001233 clib_memcpy (eth_tx, rewrite0, vec_len (rewrite0));
1234 vec_free (rewrite0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001236 if (NULL == pa)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001237 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001238 if (is_unnum0)
Neale Ranns436d06b2016-11-30 07:41:53 -08001239 {
Neale Ranns30d0fd42017-05-30 07:30:04 -07001240 if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
Neale Ranns436d06b2016-11-30 07:41:53 -08001241 goto drop2;
1242 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001243 }
Neale Ranns4b919a52017-03-11 05:55:21 -08001244
Neale Ranns24b170a2017-08-15 05:33:11 -07001245 /* We are going to reply to this request, so, in the absence of
1246 errors, learn the sender */
1247 if (!error0)
1248 error0 = arp_learn (vnm, am, sw_if_index0,
1249 &arp0->ip4_over_ethernet[1]);
Neale Rannsd5b6aa12017-05-16 08:46:45 -07001250
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001251 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1252 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253
1254 n_replies_sent += 1;
1255 continue;
1256
1257 drop1:
Neale Ranns59ae61e2018-06-07 18:09:49 -07001258 if (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1259 arp0->ip4_over_ethernet[1].ip4.as_u32)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001260 {
1261 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1262 goto drop2;
1263 }
1264 /* See if proxy arp is configured for the address */
1265 if (is_request0)
1266 {
1267 vnet_sw_interface_t *si;
1268 u32 this_addr = clib_net_to_host_u32
1269 (arp0->ip4_over_ethernet[1].ip4.as_u32);
1270 u32 fib_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001272 si = vnet_get_sw_interface (vnm, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001273
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001274 if (!(si->flags & VNET_SW_INTERFACE_FLAG_PROXY_ARP))
1275 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001277 fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1278 sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001280 vec_foreach (pa, am->proxy_arps)
1281 {
Neale Ranns0053de62018-05-22 08:40:52 -07001282 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr.as_u32);
1283 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr.as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001285 /* an ARP request hit in the proxy-arp table? */
1286 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1287 (fib_index0 == pa->fib_index))
1288 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001289 proxy_src.as_u32 =
1290 arp0->ip4_over_ethernet[1].ip4.data_u32;
1291
Damjan Marion607de1a2016-08-16 22:53:54 +02001292 /*
Neale Ranns30d0fd42017-05-30 07:30:04 -07001293 * change the interface address to the proxied
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001294 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001295 if_addr0 = &proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001296 is_unnum0 = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001297 n_proxy_arp_replies_sent++;
1298 goto send_reply;
1299 }
1300 }
1301 }
1302
1303 drop2:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001304
1305 next0 = ARP_INPUT_NEXT_DROP;
1306 p0->error = node->errors[error0];
1307
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001308 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1309 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310 }
1311
1312 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1313 }
1314
1315 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001316 ETHERNET_ARP_ERROR_replies_sent,
1317 n_replies_sent - n_proxy_arp_replies_sent);
1318
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001320 ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1321 n_proxy_arp_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001322 return frame->n_vectors;
1323}
1324
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001325static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326#define _(sym,string) string,
1327 foreach_ethernet_arp_error
1328#undef _
1329};
1330
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001331/* *INDENT-OFF* */
1332VLIB_REGISTER_NODE (arp_input_node, static) =
1333{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334 .function = arp_input,
1335 .name = "arp-input",
1336 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337 .n_errors = ETHERNET_ARP_N_ERROR,
1338 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339 .n_next_nodes = ARP_INPUT_N_NEXT,
1340 .next_nodes = {
1341 [ARP_INPUT_NEXT_DROP] = "error-drop",
John Lod1f5d042016-04-12 18:20:39 -04001342 [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001343 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001344 .format_buffer = format_ethernet_arp_header,
1345 .format_trace = format_ethernet_arp_input_trace,
1346};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001347/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348
Ed Warnickecb9cada2015-12-08 15:45:58 -07001349static int
1350ip4_arp_entry_sort (void *a1, void *a2)
1351{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001352 ethernet_arp_ip4_entry_t *e1 = a1;
1353 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354
1355 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001356 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001358 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001359 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001360 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 return cmp;
1362}
1363
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001364ethernet_arp_ip4_entry_t *
John Lo7f358b32018-04-28 01:19:24 -04001365ip4_neighbors_pool (void)
1366{
1367 ethernet_arp_main_t *am = &ethernet_arp_main;
1368 return am->ip4_entry_pool;
1369}
1370
1371ethernet_arp_ip4_entry_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001372ip4_neighbor_entries (u32 sw_if_index)
1373{
1374 ethernet_arp_main_t *am = &ethernet_arp_main;
1375 ethernet_arp_ip4_entry_t *n, *ns = 0;
1376
1377 /* *INDENT-OFF* */
1378 pool_foreach (n, am->ip4_entry_pool, ({
1379 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1380 continue;
1381 vec_add1 (ns, n[0]);
1382 }));
1383 /* *INDENT-ON* */
1384
1385 if (ns)
1386 vec_sort_with_function (ns, ip4_arp_entry_sort);
1387 return ns;
1388}
1389
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390static clib_error_t *
1391show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001392 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001393{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001394 vnet_main_t *vnm = vnet_get_main ();
1395 ethernet_arp_main_t *am = &ethernet_arp_main;
1396 ethernet_arp_ip4_entry_t *e, *es;
1397 ethernet_proxy_arp_t *pa;
1398 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001399 u32 sw_if_index;
1400
1401 /* Filter entries by interface if given. */
1402 sw_if_index = ~0;
1403 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1404
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001405 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001406 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001407 {
Keith Wilescb466842016-02-11 19:21:10 -06001408 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001409 vec_foreach (e, es)
1410 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001411 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001412 }
1413 vec_free (es);
1414 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001415
1416 if (vec_len (am->proxy_arps))
1417 {
1418 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001419 vec_foreach (pa, am->proxy_arps)
1420 {
1421 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1422 pa->fib_index,
1423 format_ip4_address, &pa->lo_addr,
1424 format_ip4_address, &pa->hi_addr);
1425 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001426 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001427
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428 return error;
1429}
1430
Billy McFall2d085d92016-09-13 21:47:55 -04001431/*?
1432 * Display all the IPv4 ARP entries.
1433 *
1434 * @cliexpar
1435 * Example of how to display the IPv4 ARP table:
1436 * @cliexstart{show ip arp}
1437 * Time FIB IP4 Flags Ethernet Interface
1438 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1439 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1440 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1441 * Proxy arps enabled for:
1442 * Fib_index 0 6.0.0.1 - 6.0.0.11
1443 * @cliexend
1444 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001445/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001446VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1447 .path = "show ip arp",
1448 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001449 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001450};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001451/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001452
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001453typedef struct
1454{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001455 pg_edit_t l2_type, l3_type;
1456 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1457 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001458 struct
1459 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001460 pg_edit_t ethernet;
1461 pg_edit_t ip4;
1462 } ip4_over_ethernet[2];
1463} pg_ethernet_arp_header_t;
1464
1465static inline void
1466pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1467{
1468 /* Initialize fields that are not bit fields in the IP header. */
1469#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001470 _(l2_type);
1471 _(l3_type);
1472 _(n_l2_address_bytes);
1473 _(n_l3_address_bytes);
1474 _(opcode);
1475 _(ip4_over_ethernet[0].ethernet);
1476 _(ip4_over_ethernet[0].ip4);
1477 _(ip4_over_ethernet[1].ethernet);
1478 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001479#undef _
1480}
1481
1482uword
1483unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1484{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001485 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1486 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001487 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001488
Ed Warnickecb9cada2015-12-08 15:45:58 -07001489 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1490 &group_index);
1491 pg_ethernet_arp_header_init (p);
1492
1493 /* Defaults. */
1494 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1495 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1496 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1497 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1498
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001499 if (!unformat (input, "%U: %U/%U -> %U/%U",
1500 unformat_pg_edit,
1501 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1502 unformat_pg_edit,
1503 unformat_ethernet_address, &p->ip4_over_ethernet[0].ethernet,
1504 unformat_pg_edit,
1505 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1506 unformat_pg_edit,
1507 unformat_ethernet_address, &p->ip4_over_ethernet[1].ethernet,
1508 unformat_pg_edit,
1509 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001510 {
1511 /* Free up any edits we may have added. */
1512 pg_free_edit_group (s);
1513 return 0;
1514 }
1515 return 1;
1516}
1517
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001518clib_error_t *
1519ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001520{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001521 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001522
1523 am->limit_arp_cache_size = arp_limit;
1524 return 0;
1525}
1526
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001527/**
1528 * @brief Control Plane hook to remove an ARP entry
1529 */
1530int
1531vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
1532 u32 sw_if_index, void *a_arg)
Damjan Marion102ec522016-03-29 13:18:17 +02001533{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001534 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1535 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
Damjan Marion102ec522016-03-29 13:18:17 +02001536
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001537 args.sw_if_index = sw_if_index;
1538 args.flags = ETHERNET_ARP_ARGS_REMOVE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001539 clib_memcpy (&args.a, a, sizeof (*a));
1540
1541 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1542 (u8 *) & args, sizeof (args));
1543 return 0;
1544}
1545
1546/**
1547 * @brief Internally generated event to flush the ARP cache on an
1548 * interface state change event.
1549 * A flush will remove dynamic ARP entries, and for statics remove the MAC
1550 * address from the corresponding adjacencies.
1551 */
1552static int
1553vnet_arp_flush_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001554 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001555{
1556 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1557 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1558
1559 args.sw_if_index = sw_if_index;
1560 args.flags = ETHERNET_ARP_ARGS_FLUSH;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001561 clib_memcpy (&args.a, a, sizeof (*a));
1562
1563 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1564 (u8 *) & args, sizeof (args));
1565 return 0;
1566}
1567
1568/**
1569 * @brief Internally generated event to populate the ARP cache on an
1570 * interface state change event.
1571 * For static entries this will re-source the adjacencies.
1572 *
1573 * @param sw_if_index The interface on which the ARP entires are acted
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001574 */
1575static int
1576vnet_arp_populate_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001577 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001578{
1579 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1580 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1581
1582 args.sw_if_index = sw_if_index;
1583 args.flags = ETHERNET_ARP_ARGS_POPULATE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001584 clib_memcpy (&args.a, a, sizeof (*a));
1585
1586 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1587 (u8 *) & args, sizeof (args));
1588 return 0;
1589}
1590
Eyal Bari20197482017-09-13 12:29:08 +03001591/**
1592 * @brief publish wildcard arp event
1593 * @param sw_if_index The interface on which the ARP entires are acted
1594 */
1595static int
1596vnet_arp_wc_publish (u32 sw_if_index, void *a_arg)
1597{
1598 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1599 vnet_arp_set_ip4_over_ethernet_rpc_args_t args = {
1600 .flags = ETHERNET_ARP_ARGS_WC_PUB,
1601 .sw_if_index = sw_if_index,
1602 .a = *a
1603 };
1604
1605 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1606 (u8 *) & args, sizeof (args));
1607 return 0;
1608}
1609
1610static void
1611vnet_arp_wc_publish_internal (vnet_main_t * vnm,
1612 vnet_arp_set_ip4_over_ethernet_rpc_args_t *
1613 args)
1614{
1615 vlib_main_t *vm = vlib_get_main ();
1616 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Baric125ecc2017-09-20 11:29:17 +03001617 uword ni = am->wc_ip4_arp_publisher_node;
1618 uword et = am->wc_ip4_arp_publisher_et;
1619
1620 if (ni == (uword) ~ 0)
Eyal Bari20197482017-09-13 12:29:08 +03001621 return;
1622 wc_arp_report_t *r =
Eyal Baric125ecc2017-09-20 11:29:17 +03001623 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *r);
Eyal Bari20197482017-09-13 12:29:08 +03001624 r->ip4 = args->a.ip4.as_u32;
1625 r->sw_if_index = args->sw_if_index;
1626 memcpy (r->mac, args->a.ethernet, sizeof r->mac);
1627}
1628
1629void
Eyal Baric125ecc2017-09-20 11:29:17 +03001630wc_arp_set_publisher_node (uword node_index, uword event_type)
Eyal Bari20197482017-09-13 12:29:08 +03001631{
1632 ethernet_arp_main_t *am = &ethernet_arp_main;
1633 am->wc_ip4_arp_publisher_node = node_index;
Eyal Baric125ecc2017-09-20 11:29:17 +03001634 am->wc_ip4_arp_publisher_et = event_type;
Eyal Bari20197482017-09-13 12:29:08 +03001635}
1636
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001637/*
1638 * arp_add_del_interface_address
1639 *
1640 * callback when an interface address is added or deleted
1641 */
1642static void
1643arp_add_del_interface_address (ip4_main_t * im,
1644 uword opaque,
1645 u32 sw_if_index,
1646 ip4_address_t * address,
1647 u32 address_length,
1648 u32 if_address_index, u32 is_del)
1649{
1650 /*
1651 * Flush the ARP cache of all entries covered by the address
1652 * that is being removed.
1653 */
1654 ethernet_arp_main_t *am = &ethernet_arp_main;
1655 ethernet_arp_ip4_entry_t *e;
1656
Neale Ranns177bbdc2016-11-15 09:46:51 +00001657 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001658 return;
1659
1660 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02001661 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001662 ethernet_arp_interface_t *eai;
1663 u32 i, *to_delete = 0;
1664 hash_pair_t *pair;
1665
1666 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1667
Neale Rannsb80c5362016-10-08 13:03:40 +01001668 /* *INDENT-OFF* */
1669 hash_foreach_pair (pair, eai->arp_entries,
1670 ({
1671 e = pool_elt_at_index(am->ip4_entry_pool,
1672 pair->value[0]);
1673 if (ip4_destination_matches_route (im, &e->ip4_address,
1674 address, address_length))
1675 {
1676 vec_add1 (to_delete, e - am->ip4_entry_pool);
1677 }
1678 }));
1679 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001680
1681 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001682 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001683 ethernet_arp_ip4_over_ethernet_address_t delme;
1684 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1685
1686 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1687 delme.ip4.as_u32 = e->ip4_address.as_u32;
1688
1689 vnet_arp_flush_ip4_over_ethernet (vnet_get_main (),
Neale Rannsb80c5362016-10-08 13:03:40 +01001690 e->sw_if_index, &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001691 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001692
1693 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02001694 }
1695}
1696
Neale Ranns15002542017-09-10 04:39:11 -07001697static void
1698arp_table_bind (ip4_main_t * im,
1699 uword opaque,
1700 u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
1701{
1702 ethernet_arp_main_t *am = &ethernet_arp_main;
1703 ethernet_arp_interface_t *eai;
1704 ethernet_arp_ip4_entry_t *e;
1705 hash_pair_t *pair;
1706
1707 /*
1708 * the IP table that the interface is bound to has changed.
1709 * reinstall all the adj fibs.
1710 */
1711
1712 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
1713 return;
1714
1715 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1716
1717 /* *INDENT-OFF* */
1718 hash_foreach_pair (pair, eai->arp_entries,
1719 ({
1720 e = pool_elt_at_index(am->ip4_entry_pool,
1721 pair->value[0]);
1722 /*
1723 * remove the adj-fib from the old table and add to the new
1724 */
1725 arp_adj_fib_remove(e, old_fib_index);
1726 arp_adj_fib_add(e, new_fib_index);
1727 }));
1728 /* *INDENT-ON* */
1729
1730}
1731
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001732static clib_error_t *
1733ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001734{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001735 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001736 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001737 clib_error_t *error;
1738 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05001739
1740 if ((error = vlib_call_init_function (vm, ethernet_init)))
1741 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001742
1743 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1744
1745 pn = pg_get_node (arp_input_node.index);
1746 pn->unformat_edit = unformat_pg_arp_header;
1747
1748 am->opcode_by_name = hash_create_string (0, sizeof (uword));
1749#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1750 foreach_ethernet_arp_opcode;
1751#undef _
1752
Ed Warnickecb9cada2015-12-08 15:45:58 -07001753 /* $$$ configurable */
1754 am->limit_arp_cache_size = 50000;
1755
1756 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1757 am->mac_changes_by_address = hash_create (0, sizeof (uword));
Eyal Bari20197482017-09-13 12:29:08 +03001758 am->wc_ip4_arp_publisher_node = (uword) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001759
1760 /* don't trace ARP error packets */
1761 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001762 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763 vlib_node_get_runtime (vm, arp_input_node.index);
1764
1765#define _(a,b) \
1766 vnet_pcap_drop_trace_filter_add_del \
1767 (rt->errors[ETHERNET_ARP_ERROR_##a], \
1768 1 /* is_add */);
1769 foreach_ethernet_arp_error
1770#undef _
1771 }
Damjan Marion102ec522016-03-29 13:18:17 +02001772
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001773 ip4_add_del_interface_address_callback_t cb;
1774 cb.function = arp_add_del_interface_address;
1775 cb.function_opaque = 0;
1776 vec_add1 (im->add_del_interface_address_callbacks, cb);
1777
Neale Ranns15002542017-09-10 04:39:11 -07001778 ip4_table_bind_callback_t cbt;
1779 cbt.function = arp_table_bind;
1780 cbt.function_opaque = 0;
1781 vec_add1 (im->table_bind_callbacks, cbt);
1782
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783 return 0;
1784}
1785
1786VLIB_INIT_FUNCTION (ethernet_arp_init);
1787
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001788static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001789arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
1790{
1791 ethernet_arp_main_t *am = &ethernet_arp_main;
1792
John Lo4fed5b12018-05-22 03:35:06 -04001793 arp_adj_fib_remove
1794 (e, ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001795 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
1796 pool_put (am->ip4_entry_pool, e);
1797}
1798
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001799static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07001800vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001801 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1802 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001803{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001804 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001805 ethernet_arp_ip4_entry_t *e;
1806 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001807
Matthew Smith66c0adf2017-08-09 16:30:43 -05001808 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1809 return 0;
1810
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001811 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001812
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001813 e = arp_entry_find (eai, &args->a.ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001814
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001815 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001816 {
Neale Ranns19c68d22016-12-07 15:38:14 +00001817 adj_nbr_walk_nh4 (e->sw_if_index,
1818 &e->ip4_address, arp_mk_incomplete_walk, NULL);
John Lo4fed5b12018-05-22 03:35:06 -04001819 arp_entry_free (eai, e);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001820 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001821
Ed Warnickecb9cada2015-12-08 15:45:58 -07001822 return 0;
1823}
1824
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001825static int
1826vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1827 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1828 * args)
1829{
1830 ethernet_arp_main_t *am = &ethernet_arp_main;
1831 ethernet_arp_ip4_entry_t *e;
1832 ethernet_arp_interface_t *eai;
1833
Matthew Smith66c0adf2017-08-09 16:30:43 -05001834 if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1835 return 0;
1836
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001837 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1838
1839 e = arp_entry_find (eai, &args->a.ip4);
1840
1841 if (NULL != e)
1842 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001843 adj_nbr_walk_nh4 (e->sw_if_index,
1844 &e->ip4_address, arp_mk_incomplete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001845
1846 /*
1847 * The difference between flush and unset, is that an unset
1848 * means delete for static and dynamic entries. A flush
1849 * means delete only for dynamic. Flushing is what the DP
1850 * does in response to interface events. unset is only done
1851 * by the control plane.
1852 */
Neale Ranns15002542017-09-10 04:39:11 -07001853 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
1854 {
Jon Loeliger1f6e9282018-05-17 15:55:00 -05001855 e->flags &= ~ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
Neale Ranns15002542017-09-10 04:39:11 -07001856 }
1857 else if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001858 {
1859 arp_entry_free (eai, e);
1860 }
1861 }
1862 return (0);
1863}
1864
1865static int
1866vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
1867 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1868 * args)
1869{
1870 ethernet_arp_main_t *am = &ethernet_arp_main;
1871 ethernet_arp_ip4_entry_t *e;
1872 ethernet_arp_interface_t *eai;
1873
Matthew Smith66c0adf2017-08-09 16:30:43 -05001874 vec_validate (am->ethernet_arp_by_sw_if_index, args->sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001875 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1876
1877 e = arp_entry_find (eai, &args->a.ip4);
1878
1879 if (NULL != e)
1880 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001881 adj_nbr_walk_nh4 (e->sw_if_index,
1882 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001883 }
1884 return (0);
1885}
1886
1887static void
1888set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
1889 * a)
1890{
1891 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001892 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001893
1894 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
1895 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
1896 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1897 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
1898 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1899 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
Eyal Bari20197482017-09-13 12:29:08 +03001900 else if (a->flags & ETHERNET_ARP_ARGS_WC_PUB)
1901 vnet_arp_wc_publish_internal (vm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001902 else
1903 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
1904}
1905
1906/**
1907 * @brief Invoked when the interface's admin state changes
1908 */
1909static clib_error_t *
1910ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
1911 u32 sw_if_index, u32 flags)
1912{
1913 ethernet_arp_main_t *am = &ethernet_arp_main;
1914 ethernet_arp_ip4_entry_t *e;
1915 u32 i, *to_delete = 0;
1916
1917 /* *INDENT-OFF* */
1918 pool_foreach (e, am->ip4_entry_pool,
1919 ({
1920 if (e->sw_if_index == sw_if_index)
Neale Rannsb80c5362016-10-08 13:03:40 +01001921 vec_add1 (to_delete,
1922 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001923 }));
1924 /* *INDENT-ON* */
1925
1926 for (i = 0; i < vec_len (to_delete); i++)
1927 {
1928 ethernet_arp_ip4_over_ethernet_address_t delme;
1929 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1930
1931 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1932 delme.ip4.as_u32 = e->ip4_address.as_u32;
1933
1934 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1935 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001936 vnet_arp_populate_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001937 }
1938 else
1939 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001940 vnet_arp_flush_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001941 }
1942
1943 }
1944 vec_free (to_delete);
1945
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001946 return 0;
1947}
1948
1949VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
1950
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001951static void
1952increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953{
1954 u8 old;
1955 int i;
1956
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001957 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001958 {
1959 old = a->ip4.as_u8[i];
1960 a->ip4.as_u8[i] += 1;
1961 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001962 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001963 }
1964
1965 for (i = 5; i >= 0; i--)
1966 {
1967 old = a->ethernet[i];
1968 a->ethernet[i] += 1;
1969 if (old < a->ethernet[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001970 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001971 }
1972}
1973
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001974int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001975vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb3b2de72017-03-08 05:17:22 -08001976 u32 sw_if_index, void *a_arg,
1977 int is_static, int is_no_fib_entry)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001978{
1979 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1980 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1981
1982 args.sw_if_index = sw_if_index;
1983 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001984 args.is_no_fib_entry = is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001985 args.flags = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001986 clib_memcpy (&args.a, a, sizeof (*a));
1987
1988 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1989 (u8 *) & args, sizeof (args));
1990 return 0;
1991}
1992
Neale Ranns0053de62018-05-22 08:40:52 -07001993void
1994proxy_arp_walk (proxy_arp_walk_t cb, void *data)
1995{
1996 ethernet_arp_main_t *am = &ethernet_arp_main;
1997 ethernet_proxy_arp_t *pa;
1998
1999 vec_foreach (pa, am->proxy_arps)
2000 {
2001 if (!cb (&pa->lo_addr, &pa->hi_addr, pa->fib_index, data))
2002 break;
2003 }
2004}
2005
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002006int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002007vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
2008 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002009{
2010 ethernet_arp_main_t *am = &ethernet_arp_main;
2011 ethernet_proxy_arp_t *pa;
2012 u32 found_at_index = ~0;
2013
2014 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002015 {
Neale Ranns0053de62018-05-22 08:40:52 -07002016 if (pa->lo_addr.as_u32 == lo_addr->as_u32 &&
2017 pa->hi_addr.as_u32 == hi_addr->as_u32 && pa->fib_index == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002018 {
2019 found_at_index = pa - am->proxy_arps;
2020 break;
2021 }
2022 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002023
2024 if (found_at_index != ~0)
2025 {
2026 /* Delete, otherwise it's already in the table */
2027 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002028 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002029 return 0;
2030 }
2031 /* delete, no such entry */
2032 if (is_del)
2033 return VNET_API_ERROR_NO_SUCH_ENTRY;
2034
2035 /* add, not in table */
2036 vec_add2 (am->proxy_arps, pa, 1);
Neale Ranns0053de62018-05-22 08:40:52 -07002037 pa->lo_addr.as_u32 = lo_addr->as_u32;
2038 pa->hi_addr.as_u32 = hi_addr->as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002039 pa->fib_index = fib_index;
2040 return 0;
2041}
2042
2043/*
Damjan Marion607de1a2016-08-16 22:53:54 +02002044 * Remove any proxy arp entries asdociated with the
Ed Warnickecb9cada2015-12-08 15:45:58 -07002045 * specificed fib.
2046 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002047int
2048vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002049{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002050 ethernet_arp_main_t *am = &ethernet_arp_main;
2051 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002052 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002053 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002054 int i;
2055
Neale Ranns107e7d42017-04-11 09:55:19 -07002056 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2057 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002058 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002059
2060 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002061 {
2062 if (pa->fib_index == fib_index)
2063 {
2064 vec_add1 (entries_to_delete, pa - am->proxy_arps);
2065 }
2066 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002067
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002068 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002069 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002070 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
2071 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002072
2073 vec_free (entries_to_delete);
2074
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002075 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002076}
2077
2078static clib_error_t *
2079ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002080 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002081{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002082 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002083 u32 sw_if_index;
2084 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
2085 int addr_valid = 0;
2086 int is_del = 0;
2087 int count = 1;
2088 u32 fib_index = 0;
2089 u32 fib_id;
2090 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08002091 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002092 int is_proxy = 0;
2093
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002094 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002095 {
2096 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
2097 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002098 unformat_vnet_sw_interface, vnm, &sw_if_index,
2099 unformat_ip4_address, &addr.ip4,
2100 unformat_ethernet_address, &addr.ethernet))
2101 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002102
2103 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002104 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002105
2106 else if (unformat (input, "static"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002107 is_static = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002108
Neale Rannsb3b2de72017-03-08 05:17:22 -08002109 else if (unformat (input, "no-fib-entry"))
2110 is_no_fib_entry = 1;
2111
Ed Warnickecb9cada2015-12-08 15:45:58 -07002112 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002113 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002114
2115 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002116 {
Neale Ranns107e7d42017-04-11 09:55:19 -07002117 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2118
2119 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002120 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002121 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002122
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002123 else if (unformat (input, "proxy %U - %U",
2124 unformat_ip4_address, &lo_addr.ip4,
2125 unformat_ip4_address, &hi_addr.ip4))
2126 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002127 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002128 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002129 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002130
Ed Warnickecb9cada2015-12-08 15:45:58 -07002131 if (is_proxy)
2132 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002133 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2134 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002135 return 0;
2136 }
2137
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002138 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002139 {
2140 int i;
2141
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002142 for (i = 0; i < count; i++)
2143 {
2144 if (is_del == 0)
2145 {
2146 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002147
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002148 /* Park the debug CLI until the arp entry is installed */
2149 vnet_register_ip4_arp_resolution_event
2150 (vnm, &addr.ip4, vlib_current_process (vm),
2151 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002152
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002153 vnet_arp_set_ip4_over_ethernet
Neale Rannsb3b2de72017-03-08 05:17:22 -08002154 (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002155
2156 vlib_process_wait_for_event (vm);
2157 event_type = vlib_process_get_events (vm, &event_data);
2158 vec_reset_length (event_data);
2159 if (event_type != 1)
2160 clib_warning ("event type %d unexpected", event_type);
2161 }
2162 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002163 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002164
2165 increment_ip4_and_mac_address (&addr);
2166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002167 }
2168 else
2169 {
2170 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002171 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002172 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002173
Ed Warnickecb9cada2015-12-08 15:45:58 -07002174 return 0;
2175}
2176
Neale Rannsb80c5362016-10-08 13:03:40 +01002177/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002178/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002179 * Add or delete IPv4 ARP cache entries.
2180 *
2181 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2182 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2183 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002184 *
2185 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002186 * @parblock
2187 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2188 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2189 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2190 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2191 *
2192 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2193 * table:
2194 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2195 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2196 *
2197 * Add or delete IPv4 static ARP cache entries as follows:
2198 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2199 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2200 *
2201 * For testing / debugging purposes, the 'set ip arp' command can add or
2202 * delete multiple entries. Supply the 'count N' parameter:
2203 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2204 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002205 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002206VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002207 .path = "set ip arp",
2208 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002209 "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 -07002210 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002211};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002212/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002213
2214static clib_error_t *
2215set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002216 unformat_input_t *
2217 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002218{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002219 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002220 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002221 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002222 int enable = 0;
2223 int intfc_set = 0;
2224
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002225 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002226 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002227 if (unformat (input, "%U", unformat_vnet_sw_interface,
2228 vnm, &sw_if_index))
2229 intfc_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002230 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002231 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002232 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002233 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002234 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002235 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002236 }
2237
2238 if (intfc_set == 0)
2239 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002240 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002241
2242 si = vnet_get_sw_interface (vnm, sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002243 ASSERT (si);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002244 if (enable)
2245 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002246 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07002247 si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002248
Ed Warnickecb9cada2015-12-08 15:45:58 -07002249 return 0;
2250}
2251
Neale Rannsb80c5362016-10-08 13:03:40 +01002252/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002253/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002254 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2255 * requests for the indicated address range. Multiple proxy-arp
2256 * ranges may be provisioned.
2257 *
2258 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2259 * Also, the underlying implementation has not been performance-tuned.
2260 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002261 *
2262 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002263 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002264 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2265 * Append 'del' to delete a range of proxy ARP addresses:
2266 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2267 * You must then specifically enable proxy arp on individual interfaces:
2268 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2269 * To disable proxy arp on an individual interface:
2270 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002271 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002272VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002273 .path = "set interface proxy-arp",
2274 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002275 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002276 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002277};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002278/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002279
2280
2281/*
John Lo1edfba92016-08-27 01:11:57 -04002282 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2283 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002284 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002285typedef enum
2286{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002287 ARP_TERM_NEXT_L2_OUTPUT,
2288 ARP_TERM_NEXT_DROP,
2289 ARP_TERM_N_NEXT,
2290} arp_term_next_t;
2291
2292u32 arp_term_next_node_index[32];
2293
2294static uword
2295arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002296 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002297{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002298 l2input_main_t *l2im = &l2input_main;
2299 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002300 u32 n_replies_sent = 0;
2301 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002302 l2_bridge_domain_t *last_bd_config = 0;
2303 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002304
2305 from = vlib_frame_vector_args (frame);
2306 n_left_from = frame->n_vectors;
2307 next_index = node->cached_next_index;
2308
2309 while (n_left_from > 0)
2310 {
2311 u32 n_left_to_next;
2312
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002313 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002314
2315 while (n_left_from > 0 && n_left_to_next > 0)
2316 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002317 vlib_buffer_t *p0;
2318 ethernet_header_t *eth0;
2319 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002320 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002321 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002322 u32 pi0, error0, next0, sw_if_index0;
2323 u16 ethertype0;
2324 u16 bd_index0;
2325 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002326 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002327
2328 pi0 = from[0];
2329 to_next[0] = pi0;
2330 from += 1;
2331 to_next += 1;
2332 n_left_from -= 1;
2333 n_left_to_next -= 1;
2334
2335 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002336 // Terminate only local (SHG == 0) ARP
2337 if (vnet_buffer (p0)->l2.shg != 0)
2338 goto next_l2_feature;
2339
Ed Warnickecb9cada2015-12-08 15:45:58 -07002340 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002341 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2342 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002343 arp0 = (ethernet_arp_header_t *) l3h0;
2344
John Lo1edfba92016-08-27 01:11:57 -04002345 if (PREDICT_FALSE ((ethertype0 != ETHERNET_TYPE_ARP) ||
2346 (arp0->opcode !=
2347 clib_host_to_net_u16
2348 (ETHERNET_ARP_OPCODE_request))))
2349 goto check_ip6_nd;
2350
2351 /* Must be ARP request packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002352 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2353 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2354 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002355 u8 *t0 = vlib_add_trace (vm, node, p0,
2356 sizeof (ethernet_arp_input_trace_t));
2357 clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002358 }
2359
Ed Warnickecb9cada2015-12-08 15:45:58 -07002360 error0 = ETHERNET_ARP_ERROR_replies_sent;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002361 error0 =
2362 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002363 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2364 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002365 error0 =
2366 (arp0->l3_type !=
2367 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2368 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002369
2370 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2371
2372 if (error0)
2373 goto drop;
2374
John Lo1edfba92016-08-27 01:11:57 -04002375 /* Trash ARP packets whose ARP-level source addresses do not
John Lo0131b6c2018-06-25 12:35:21 -04002376 match, or if requester address is mcast */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002377 if (PREDICT_FALSE
Matthew Smithcb9ab472017-05-16 21:35:56 -05002378 (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
John Lo0131b6c2018-06-25 12:35:21 -04002379 sizeof (eth0->src_address)) ||
2380 ethernet_address_cast (arp0->ip4_over_ethernet[0].ethernet)))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002381 {
2382 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2383 goto drop;
2384 }
John Lo0131b6c2018-06-25 12:35:21 -04002385 if (PREDICT_FALSE
2386 (ip4_address_is_multicast (&arp0->ip4_over_ethernet[0].ip4)))
2387 {
2388 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
2389 goto drop;
2390 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002391
John Lo1edfba92016-08-27 01:11:57 -04002392 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002393 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002394 ethernet_arp_main_t *am = &ethernet_arp_main;
Eyal Bari20197482017-09-13 12:29:08 +03002395 if (am->wc_ip4_arp_publisher_node != (uword) ~ 0)
2396 vnet_arp_wc_publish (sw_if_index0, &arp0->ip4_over_ethernet[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002397 }
2398
John Lo1edfba92016-08-27 01:11:57 -04002399 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002400 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002401 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2402 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2403 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002404 {
2405 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002406 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002407 }
2408 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2409
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002410 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002411 goto next_l2_feature; /* MAC not found */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002412
John Lo1edfba92016-08-27 01:11:57 -04002413 /* MAC found, send ARP reply -
2414 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002415 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2416 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2417 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Damjan Marionf1213b82016-03-13 02:22:06 +01002418 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2419 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2420 clib_memcpy (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002421 n_replies_sent += 1;
2422
John Lo1edfba92016-08-27 01:11:57 -04002423 output_response:
2424 /* For BVI, need to use l2-fwd node to send ARP reply as
2425 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002426 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002427 if (PREDICT_FALSE (cfg0->bvi))
2428 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002429 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002430 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2431 goto next_l2_feature;
2432 }
2433
John Lo1edfba92016-08-27 01:11:57 -04002434 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002435 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2436 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002437 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2438 to_next, n_left_to_next, pi0,
2439 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002440 continue;
2441
John Lo1edfba92016-08-27 01:11:57 -04002442 check_ip6_nd:
2443 /* IP6 ND event notification or solicitation handling to generate
2444 local response instead of flooding */
2445 iph0 = (ip6_header_t *) l3h0;
2446 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2447 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002448 !ip6_address_is_unspecified
2449 (&iph0->src_address)))
2450 {
2451 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002452 if (vnet_ip6_nd_term
2453 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002454 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002455 goto output_response;
2456 }
2457
Ed Warnickecb9cada2015-12-08 15:45:58 -07002458 next_l2_feature:
2459 {
John Lobeb0b2e2017-07-22 00:21:36 -04002460 next0 = vnet_l2_feature_next (p0, arp_term_next_node_index,
2461 L2INPUT_FEAT_ARP_TERM);
Neale Rannsb80c5362016-10-08 13:03:40 +01002462 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2463 to_next, n_left_to_next,
2464 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002465 continue;
2466 }
2467
2468 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002469 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2470 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2471 arp0->ip4_over_ethernet[1].ip4.as_u32))
2472 {
2473 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2474 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002475 next0 = ARP_TERM_NEXT_DROP;
2476 p0->error = node->errors[error0];
2477
Neale Rannsb80c5362016-10-08 13:03:40 +01002478 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2479 to_next, n_left_to_next, pi0,
2480 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002481 }
2482
2483 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2484 }
2485
2486 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002487 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002488 return frame->n_vectors;
2489}
2490
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002491/* *INDENT-OFF* */
2492VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002493 .function = arp_term_l2bd,
2494 .name = "arp-term-l2bd",
2495 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002496 .n_errors = ETHERNET_ARP_N_ERROR,
2497 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002498 .n_next_nodes = ARP_TERM_N_NEXT,
2499 .next_nodes = {
2500 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2501 [ARP_TERM_NEXT_DROP] = "error-drop",
2502 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002503 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002504 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002505};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002506/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002507
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002508clib_error_t *
2509arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002510{
2511 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002512 feat_bitmap_init_next_nodes (vm,
2513 arp_term_l2bd_node.index,
2514 L2INPUT_N_FEAT,
2515 l2input_get_feat_names (),
2516 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002517 return 0;
2518}
2519
2520VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002521
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002522void
2523change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2524{
2525 if (e->sw_if_index == sw_if_index)
2526 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002527 adj_nbr_walk_nh4 (e->sw_if_index,
2528 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002529 }
2530}
2531
2532void
Neale Ranns3be6b282016-12-20 14:24:01 +00002533ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002534{
2535 ethernet_arp_main_t *am = &ethernet_arp_main;
2536 ethernet_arp_ip4_entry_t *e;
Neale Rannsc819fc62018-02-16 02:44:05 -08002537 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002538
2539 /* *INDENT-OFF* */
2540 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002541 ({
2542 change_arp_mac (sw_if_index, e);
2543 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002544 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08002545
2546 ai = adj_glean_get (FIB_PROTOCOL_IP4, sw_if_index);
2547
2548 if (ADJ_INDEX_INVALID != ai)
2549 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002550}
2551
John Lo7e9743a2017-09-23 08:59:58 -04002552void
Steven9f781d82018-06-05 11:09:32 -07002553send_ip4_garp (vlib_main_t * vm, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07002554{
2555 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002556 ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
Neale Ranns25b04942018-04-04 09:34:50 -07002557
Steven9f781d82018-06-05 11:09:32 -07002558 send_ip4_garp_w_addr (vm, ip4_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07002559}
2560
2561void
2562send_ip4_garp_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07002563 const ip4_address_t * ip4_addr, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04002564{
2565 ip4_main_t *i4m = &ip4_main;
Steven9f781d82018-06-05 11:09:32 -07002566 vnet_main_t *vnm = vnet_get_main ();
2567 u8 *rewrite, rewrite_len;
2568 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
John Lo8b81cb42017-06-26 01:40:20 -04002569
2570 if (ip4_addr)
2571 {
2572 clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
2573 format_ip4_address, ip4_addr, sw_if_index);
2574
2575 /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
2576 where the interface IP/MAC pair is used for both source and request
2577 MAC/IP pairs in the request */
2578 u32 bi = 0;
2579 ethernet_arp_header_t *h = vlib_packet_template_get_packet
2580 (vm, &i4m->ip4_arp_request_packet_template, &bi);
John Lo084606b2018-06-19 15:27:48 -04002581
2582 if (!h)
2583 return;
2584
John Lo8b81cb42017-06-26 01:40:20 -04002585 clib_memcpy (h->ip4_over_ethernet[0].ethernet, hi->hw_address,
2586 sizeof (h->ip4_over_ethernet[0].ethernet));
2587 clib_memcpy (h->ip4_over_ethernet[1].ethernet, hi->hw_address,
2588 sizeof (h->ip4_over_ethernet[1].ethernet));
2589 h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
2590 h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
2591
2592 /* Setup MAC header with ARP Etype and broadcast DMAC */
2593 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07002594 rewrite =
2595 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_ARP,
2596 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST);
2597 rewrite_len = vec_len (rewrite);
2598 vlib_buffer_advance (b, -rewrite_len);
John Lo8b81cb42017-06-26 01:40:20 -04002599 ethernet_header_t *e = vlib_buffer_get_current (b);
Steven9f781d82018-06-05 11:09:32 -07002600 clib_memcpy (e->dst_address, rewrite, rewrite_len);
2601 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04002602
2603 /* Send GARP packet out the specified interface */
2604 vnet_buffer (b)->sw_if_index[VLIB_RX] =
2605 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
2606 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
2607 u32 *to_next = vlib_frame_vector_args (f);
2608 to_next[0] = bi;
2609 f->n_vectors = 1;
2610 vlib_put_frame_to_node (vm, hi->output_node_index, f);
2611 }
2612}
2613
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002614/*
2615 * fd.io coding-style-patch-verification: ON
2616 *
2617 * Local Variables:
2618 * eval: (c-set-style "gnu")
2619 * End:
2620 */