blob: 75c7e20372a601fa16ad310be744de4ceafcbb62 [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>
21#include <vnet/ethernet/arp_packet.h>
22#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 Rannsb80c5362016-10-08 13:03:40 +010025#include <vnet/adj/adj_nbr.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000026#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010027#include <vnet/mpls/mpls.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Billy McFall2d085d92016-09-13 21:47:55 -040029/**
30 * @file
31 * @brief IPv4 ARP.
32 *
33 * This file contains code to manage the IPv4 ARP tables (IP Address
34 * to MAC Address lookup).
35 */
36
37
Dave Barachf9bd6202015-12-14 13:22:11 -050038void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
39
Neale Ranns0bfe5d82016-08-25 15:29:12 +010040/**
41 * @brief Per-interface ARP configuration and state
42 */
43typedef struct ethernet_arp_interface_t_
44{
Neale Rannsb80c5362016-10-08 13:03:40 +010045 /**
46 * Hash table of ARP entries.
47 * Since this hash table is per-interface, the key is only the IPv4 address.
48 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010049 uword *arp_entries;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050} ethernet_arp_interface_t;
51
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070052typedef struct
53{
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 u32 lo_addr;
55 u32 hi_addr;
56 u32 fib_index;
57} ethernet_proxy_arp_t;
58
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070059typedef struct
60{
Ed Warnickecb9cada2015-12-08 15:45:58 -070061 u32 next_index;
62 uword node_index;
63 uword type_opaque;
64 uword data;
65 /* Used for arp event notification only */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070066 void *data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 u32 pid;
68} pending_resolution_t;
69
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070070typedef struct
71{
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 /* Hash tables mapping name to opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070073 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
75 /* lite beer "glean" adjacency handling */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070076 uword *pending_resolutions_by_address;
77 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79 /* Mac address change notification */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070080 uword *mac_changes_by_address;
81 pending_resolution_t *mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070083 ethernet_arp_ip4_entry_t *ip4_entry_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 /* ARP attack mitigation */
86 u32 arp_delete_rotor;
87 u32 limit_arp_cache_size;
88
Neale Ranns0bfe5d82016-08-25 15:29:12 +010089 /** Per interface state */
90 ethernet_arp_interface_t *ethernet_arp_by_sw_if_index;
91
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 /* Proxy arp vector */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070093 ethernet_proxy_arp_t *proxy_arps;
Ed Warnickecb9cada2015-12-08 15:45:58 -070094} ethernet_arp_main_t;
95
96static ethernet_arp_main_t ethernet_arp_main;
97
Neale Ranns0bfe5d82016-08-25 15:29:12 +010098typedef struct
99{
100 u32 sw_if_index;
101 ethernet_arp_ip4_over_ethernet_address_t a;
102 int is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800103 int is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100104 int flags;
105#define ETHERNET_ARP_ARGS_REMOVE (1<<0)
106#define ETHERNET_ARP_ARGS_FLUSH (1<<1)
107#define ETHERNET_ARP_ARGS_POPULATE (1<<2)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100108} vnet_arp_set_ip4_over_ethernet_rpc_args_t;
109
110static void
111set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
112 * a);
113
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700114static u8 *
115format_ethernet_arp_hardware_type (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116{
117 ethernet_arp_hardware_type_t h = va_arg (*va, ethernet_arp_hardware_type_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700118 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 switch (h)
120 {
121#define _(n,f) case n: t = #f; break;
122 foreach_ethernet_arp_hardware_type;
123#undef _
124
125 default:
126 return format (s, "unknown 0x%x", h);
127 }
128
129 return format (s, "%s", t);
130}
131
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700132static u8 *
133format_ethernet_arp_opcode (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134{
135 ethernet_arp_opcode_t o = va_arg (*va, ethernet_arp_opcode_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700136 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 switch (o)
138 {
139#define _(f) case ETHERNET_ARP_OPCODE_##f: t = #f; break;
140 foreach_ethernet_arp_opcode;
141#undef _
142
143 default:
144 return format (s, "unknown 0x%x", o);
145 }
146
147 return format (s, "%s", t);
148}
149
150static uword
151unformat_ethernet_arp_opcode_host_byte_order (unformat_input_t * input,
152 va_list * args)
153{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700154 int *result = va_arg (*args, int *);
155 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 int x, i;
157
158 /* Numeric opcode. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700159 if (unformat (input, "0x%x", &x) || unformat (input, "%d", &x))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160 {
161 if (x >= (1 << 16))
162 return 0;
163 *result = x;
164 return 1;
165 }
166
167 /* Named type. */
168 if (unformat_user (input, unformat_vlib_number_by_name,
169 am->opcode_by_name, &i))
170 {
171 *result = i;
172 return 1;
173 }
174
175 return 0;
176}
177
178static uword
179unformat_ethernet_arp_opcode_net_byte_order (unformat_input_t * input,
180 va_list * args)
181{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700182 int *result = va_arg (*args, int *);
183 if (!unformat_user
184 (input, unformat_ethernet_arp_opcode_host_byte_order, result))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 return 0;
186
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700187 *result = clib_host_to_net_u16 ((u16) * result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 return 1;
189}
190
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700191static u8 *
192format_ethernet_arp_header (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700194 ethernet_arp_header_t *a = va_arg (*va, ethernet_arp_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 u32 max_header_bytes = va_arg (*va, u32);
196 uword indent;
197 u16 l2_type, l3_type;
198
199 if (max_header_bytes != 0 && sizeof (a[0]) > max_header_bytes)
200 return format (s, "ARP header truncated");
201
202 l2_type = clib_net_to_host_u16 (a->l2_type);
203 l3_type = clib_net_to_host_u16 (a->l3_type);
204
205 indent = format_get_indent (s);
206
207 s = format (s, "%U, type %U/%U, address size %d/%d",
208 format_ethernet_arp_opcode, clib_net_to_host_u16 (a->opcode),
209 format_ethernet_arp_hardware_type, l2_type,
210 format_ethernet_type, l3_type,
211 a->n_l2_address_bytes, a->n_l3_address_bytes);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700212
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 if (l2_type == ETHERNET_ARP_HARDWARE_TYPE_ethernet
214 && l3_type == ETHERNET_TYPE_IP4)
215 {
216 s = format (s, "\n%U%U/%U -> %U/%U",
217 format_white_space, indent,
218 format_ethernet_address, a->ip4_over_ethernet[0].ethernet,
219 format_ip4_address, &a->ip4_over_ethernet[0].ip4,
220 format_ethernet_address, a->ip4_over_ethernet[1].ethernet,
221 format_ip4_address, &a->ip4_over_ethernet[1].ip4);
222 }
223 else
224 {
225 uword n2 = a->n_l2_address_bytes;
226 uword n3 = a->n_l3_address_bytes;
227 s = format (s, "\n%U%U/%U -> %U/%U",
228 format_white_space, indent,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700229 format_hex_bytes, a->data + 0 * n2 + 0 * n3, n2,
230 format_hex_bytes, a->data + 1 * n2 + 0 * n3, n3,
231 format_hex_bytes, a->data + 1 * n2 + 1 * n3, n2,
232 format_hex_bytes, a->data + 2 * n2 + 1 * n3, n3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 }
234
235 return s;
236}
237
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100238u8 *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700239format_ethernet_arp_ip4_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700241 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
242 ethernet_arp_ip4_entry_t *e = va_arg (*va, ethernet_arp_ip4_entry_t *);
243 vnet_sw_interface_t *si;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700244 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700246 if (!e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100247 return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700248 "Flags", "Ethernet", "Interface");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100250 si = vnet_get_sw_interface (vnm, e->sw_if_index);
Damjan Marion102ec522016-03-29 13:18:17 +0200251
252 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700253 flags = format (flags, "S");
Damjan Marion102ec522016-03-29 13:18:17 +0200254
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100255 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
256 flags = format (flags, "D");
257
Neale Rannsb3b2de72017-03-08 05:17:22 -0800258 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY)
259 flags = format (flags, "N");
260
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100261 s = format (s, "%=12U%=16U%=6s%=20U%=24U",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 format_vlib_cpu_time, vnm->vlib_main, e->cpu_time_last_updated,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100263 format_ip4_address, &e->ip4_address,
Damjan Marion102ec522016-03-29 13:18:17 +0200264 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265 format_ethernet_address, e->ethernet_address,
266 format_vnet_sw_interface_name, vnm, si);
267
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700268 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 return s;
270}
271
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700272typedef struct
273{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 u8 packet_data[64];
275} ethernet_arp_input_trace_t;
276
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700277static u8 *
278format_ethernet_arp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279{
280 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
281 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700282 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
284 s = format (s, "%U",
285 format_ethernet_arp_header,
286 t->packet_data, sizeof (t->packet_data));
287
288 return s;
289}
290
John Lo1edfba92016-08-27 01:11:57 -0400291static u8 *
292format_arp_term_input_trace (u8 * s, va_list * va)
293{
294 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
295 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
296 ethernet_arp_input_trace_t *t = va_arg (*va, ethernet_arp_input_trace_t *);
297
298 /* arp-term trace data saved is either arp or ip6/icmp6 packet:
299 - for arp, the 1st 16-bit field is hw type of value of 0x0001.
300 - for ip6, the first nibble has value of 6. */
301 s = format (s, "%U", t->packet_data[0] == 0 ?
302 format_ethernet_arp_header : format_ip6_header,
303 t->packet_data, sizeof (t->packet_data));
304
305 return s;
306}
307
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100308static void
Neale Rannsb80c5362016-10-08 13:03:40 +0100309arp_nbr_probe (ip_adjacency_t * adj)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310{
Neale Rannsb80c5362016-10-08 13:03:40 +0100311 vnet_main_t *vnm = vnet_get_main ();
312 ip4_main_t *im = &ip4_main;
313 ip_interface_address_t *ia;
314 ethernet_arp_header_t *h;
315 vnet_hw_interface_t *hi;
316 vnet_sw_interface_t *si;
317 ip4_address_t *src;
318 vlib_buffer_t *b;
319 vlib_main_t *vm;
320 u32 bi = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Neale Rannsb80c5362016-10-08 13:03:40 +0100322 vm = vlib_get_main ();
John Locbec1a12016-07-05 18:34:40 -0400323
Neale Rannsb80c5362016-10-08 13:03:40 +0100324 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
325
326 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100328 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100330
331 src =
332 ip4_interface_address_matching_destination (im,
333 &adj->sub_type.nbr.next_hop.
334 ip4,
335 adj->rewrite_header.
336 sw_if_index, &ia);
337 if (!src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100338 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100339 return;
340 }
341
342 h =
343 vlib_packet_template_get_packet (vm, &im->ip4_arp_request_packet_template,
344 &bi);
345
346 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
347
348 clib_memcpy (h->ip4_over_ethernet[0].ethernet,
349 hi->hw_address, sizeof (h->ip4_over_ethernet[0].ethernet));
350
351 h->ip4_over_ethernet[0].ip4 = src[0];
352 h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
353
354 b = vlib_get_buffer (vm, bi);
355 vnet_buffer (b)->sw_if_index[VLIB_RX] =
356 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
357
358 /* Add encapsulation string for software interface (e.g. ethernet header). */
359 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
360 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
361
362 {
363 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
364 u32 *to_next = vlib_frame_vector_args (f);
365 to_next[0] = bi;
366 f->n_vectors = 1;
367 vlib_put_frame_to_node (vm, hi->output_node_index, f);
368 }
369}
370
371static void
372arp_mk_complete (adj_index_t ai, ethernet_arp_ip4_entry_t * e)
373{
374 adj_nbr_update_rewrite
375 (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
376 ethernet_build_rewrite (vnet_get_main (),
377 e->sw_if_index,
378 adj_get_link_type (ai), e->ethernet_address));
379}
380
381static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000382arp_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100383{
Neale Ranns19c68d22016-12-07 15:38:14 +0000384 ip_adjacency_t *adj = adj_get (ai);
385
Neale Rannsb80c5362016-10-08 13:03:40 +0100386 adj_nbr_update_rewrite
387 (ai,
388 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
389 ethernet_build_rewrite (vnet_get_main (),
Neale Ranns19c68d22016-12-07 15:38:14 +0000390 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100391 VNET_LINK_ARP,
392 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
393}
394
395static ethernet_arp_ip4_entry_t *
396arp_entry_find (ethernet_arp_interface_t * eai, const ip4_address_t * addr)
397{
398 ethernet_arp_main_t *am = &ethernet_arp_main;
399 ethernet_arp_ip4_entry_t *e = NULL;
400 uword *p;
401
402 if (NULL != eai->arp_entries)
403 {
404 p = hash_get (eai->arp_entries, addr->as_u32);
405 if (!p)
406 return (NULL);
407
408 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
409 }
410
411 return (e);
412}
413
414static adj_walk_rc_t
415arp_mk_complete_walk (adj_index_t ai, void *ctx)
416{
417 ethernet_arp_ip4_entry_t *e = ctx;
418
419 arp_mk_complete (ai, e);
420
421 return (ADJ_WALK_RC_CONTINUE);
422}
423
424static adj_walk_rc_t
425arp_mk_incomplete_walk (adj_index_t ai, void *ctx)
426{
Neale Ranns19c68d22016-12-07 15:38:14 +0000427 arp_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100428
429 return (ADJ_WALK_RC_CONTINUE);
430}
431
432void
433arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
434{
435 ethernet_arp_main_t *am = &ethernet_arp_main;
436 ethernet_arp_interface_t *arp_int;
437 ethernet_arp_ip4_entry_t *e;
438 ip_adjacency_t *adj;
439
440 adj = adj_get (ai);
441
442 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
443 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
444 e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
445
Neale Ranns32e1c012016-11-22 17:07:28 +0000446 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100447 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000448 case IP_LOOKUP_NEXT_ARP:
449 case IP_LOOKUP_NEXT_GLEAN:
450 if (NULL != e)
451 {
452 adj_nbr_walk_nh4 (sw_if_index,
453 &e->ip4_address, arp_mk_complete_walk, e);
454 }
455 else
456 {
457 /*
458 * no matching ARP entry.
459 * construct the rewrite required to for an ARP packet, and stick
460 * that in the adj's pipe to smoke.
461 */
462 adj_nbr_update_rewrite
463 (ai,
464 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
465 ethernet_build_rewrite
466 (vnm,
467 sw_if_index,
468 VNET_LINK_ARP,
469 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
470
471 /*
472 * since the FIB has added this adj for a route, it makes sense it
473 * may want to forward traffic sometime soon. Let's send a
474 * speculative ARP. just one. If we were to do periodically that
475 * wouldn't be bad either, but that's more code than i'm prepared to
476 * write at this time for relatively little reward.
477 */
478 arp_nbr_probe (adj);
479 }
480 break;
481 case IP_LOOKUP_NEXT_MCAST:
Neale Rannsb80c5362016-10-08 13:03:40 +0100482 /*
Neale Ranns32e1c012016-11-22 17:07:28 +0000483 * Construct a partial rewrite from the known ethernet mcast dest MAC
Neale Rannsb80c5362016-10-08 13:03:40 +0100484 */
Neale Ranns32e1c012016-11-22 17:07:28 +0000485 adj_mcast_update_rewrite
486 (ai,
487 ethernet_build_rewrite (vnm,
488 sw_if_index,
489 adj->ia_link,
490 ethernet_ip4_mcast_dst_addr ()));
Neale Rannsb80c5362016-10-08 13:03:40 +0100491
492 /*
Neale Ranns32e1c012016-11-22 17:07:28 +0000493 * Complete the remaining fields of the adj's rewrite to direct the
494 * complete of the rewrite at switch time by copying in the IP
495 * dst address's bytes.
496 * Ofset is 11 bytes from the end of the MAC header - which is three
497 * bytes into the desintation address. And we write 3 bytes.
Neale Rannsb80c5362016-10-08 13:03:40 +0100498 */
Neale Ranns32e1c012016-11-22 17:07:28 +0000499 adj->rewrite_header.dst_mcast_offset = 11;
500 adj->rewrite_header.dst_mcast_n_bytes = 3;
501
502 break;
503
504 case IP_LOOKUP_NEXT_DROP:
505 case IP_LOOKUP_NEXT_PUNT:
506 case IP_LOOKUP_NEXT_LOCAL:
507 case IP_LOOKUP_NEXT_REWRITE:
508 case IP_LOOKUP_NEXT_LOAD_BALANCE:
509 case IP_LOOKUP_NEXT_MIDCHAIN:
510 case IP_LOOKUP_NEXT_ICMP_ERROR:
511 case IP_LOOKUP_N_NEXT:
512 ASSERT (0);
513 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100514 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515}
516
517int
518vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 vnet_arp_set_ip4_over_ethernet_rpc_args_t
520 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700522 ethernet_arp_ip4_entry_t *e = 0;
523 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100524 ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700525 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700526 int make_new_arp_cache_entry = 1;
527 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700528 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100529 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100530 int is_static = args->is_static;
531 u32 sw_if_index = args->sw_if_index;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800532 int is_no_fib_entry = args->is_no_fib_entry;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700533
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100534 vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100536 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100538 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100540 p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
541 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700542 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100543 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
544
545 /* Refuse to over-write static arp. */
546 if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
547 return -2;
548 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700549 }
Damjan Marion102ec522016-03-29 13:18:17 +0200550 }
551
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 if (make_new_arp_cache_entry)
553 {
554 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100555
556 if (NULL == arp_int->arp_entries)
557 {
558 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100559 }
560
561 hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
562
563 e->sw_if_index = sw_if_index;
564 e->ip4_address = a->ip4;
Neale Rannsb80c5362016-10-08 13:03:40 +0100565 clib_memcpy (e->ethernet_address,
566 a->ethernet, sizeof (e->ethernet_address));
567
Neale Rannsb3b2de72017-03-08 05:17:22 -0800568 if (!is_no_fib_entry)
569 {
570 fib_prefix_t pfx = {
571 .fp_len = 32,
572 .fp_proto = FIB_PROTOCOL_IP4,
573 .fp_addr.ip4 = a->ip4,
574 };
575 u32 fib_index;
576
577 fib_index =
578 ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
579 e->fib_entry_index =
580 fib_table_entry_update_one_path (fib_index, &pfx, FIB_SOURCE_ADJ,
581 FIB_ENTRY_FLAG_ATTACHED,
582 FIB_PROTOCOL_IP4, &pfx.fp_addr,
583 e->sw_if_index, ~0, 1, NULL,
584 FIB_ROUTE_PATH_FLAG_NONE);
585 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY;
586 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100588 else
589 {
590 /*
591 * prevent a DoS attack from the data-plane that
592 * spams us with no-op updates to the MAC address
593 */
594 if (0 == memcmp (e->ethernet_address,
595 a->ethernet, sizeof (e->ethernet_address)))
596 return -1;
Neale Rannsb80c5362016-10-08 13:03:40 +0100597
598 /* Update time stamp and ethernet address. */
599 clib_memcpy (e->ethernet_address, a->ethernet,
600 sizeof (e->ethernet_address));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100601 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603 e->cpu_time_last_updated = clib_cpu_time_now ();
604 if (is_static)
605 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100606 else
607 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
608
Neale Rannsb80c5362016-10-08 13:03:40 +0100609 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610
611 /* Customer(s) waiting for this address to be resolved? */
612 p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
613 if (p)
614 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100615 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616 next_index = p[0];
617
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700618 while (next_index != (u32) ~ 0)
619 {
620 pr = pool_elt_at_index (am->pending_resolutions, next_index);
621 vlib_process_signal_event (vm, pr->node_index,
622 pr->type_opaque, pr->data);
623 next_index = pr->next_index;
624 pool_put (am->pending_resolutions, pr);
625 }
626
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627 hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
628 }
629
630 /* Customer(s) requesting ARP event for this address? */
631 p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
632 if (p)
633 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100634 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635 next_index = p[0];
636
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700637 while (next_index != (u32) ~ 0)
638 {
639 int (*fp) (u32, u8 *, u32, u32);
640 int rv = 1;
641 mc = pool_elt_at_index (am->mac_changes, next_index);
642 fp = mc->data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700644 /* Call the user's data callback, return 1 to suppress dup events */
645 if (fp)
646 rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
647
Damjan Marion607de1a2016-08-16 22:53:54 +0200648 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700649 * Signal the resolver process, as long as the user
650 * says they want to be notified
651 */
652 if (rv == 0)
653 vlib_process_signal_event (vm, mc->node_index,
654 mc->type_opaque, mc->data);
655 next_index = mc->next_index;
656 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 }
658
659 return 0;
660}
661
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700662void
663vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
664 void *address_arg,
665 uword node_index,
666 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700668 ethernet_arp_main_t *am = &ethernet_arp_main;
669 ip4_address_t *address = address_arg;
670 uword *p;
671 pending_resolution_t *pr;
672
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673 pool_get (am->pending_resolutions, pr);
674
675 pr->next_index = ~0;
676 pr->node_index = node_index;
677 pr->type_opaque = type_opaque;
678 pr->data = data;
679 pr->data_callback = 0;
680
681 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
682 if (p)
683 {
684 /* Insert new resolution at the head of the list */
685 pr->next_index = p[0];
686 hash_unset (am->pending_resolutions_by_address, address->as_u32);
687 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700688
689 hash_set (am->pending_resolutions_by_address, address->as_u32,
690 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691}
692
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700693int
694vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
695 void *data_callback,
696 u32 pid,
697 void *address_arg,
698 uword node_index,
699 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700701 ethernet_arp_main_t *am = &ethernet_arp_main;
702 ip4_address_t *address = address_arg;
703 uword *p;
704 pending_resolution_t *mc;
705 void (*fp) (u32, u8 *) = data_callback;
706
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 if (is_add)
708 {
709 pool_get (am->mac_changes, mc);
710
711 mc->next_index = ~0;
712 mc->node_index = node_index;
713 mc->type_opaque = type_opaque;
714 mc->data = data;
715 mc->data_callback = data_callback;
716 mc->pid = pid;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700717
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718 p = hash_get (am->mac_changes_by_address, address->as_u32);
719 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700720 {
721 /* Insert new resolution at the head of the list */
722 mc->next_index = p[0];
723 hash_unset (am->mac_changes_by_address, address->as_u32);
724 }
725
726 hash_set (am->mac_changes_by_address, address->as_u32,
727 mc - am->mac_changes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728 return 0;
729 }
730 else
731 {
732 u32 index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700733 pending_resolution_t *mc_last = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734
735 p = hash_get (am->mac_changes_by_address, address->as_u32);
736 if (p == 0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700737 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738
739 index = p[0];
740
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700741 while (index != (u32) ~ 0)
742 {
743 mc = pool_elt_at_index (am->mac_changes, index);
744 if (mc->node_index == node_index &&
745 mc->type_opaque == type_opaque && mc->pid == pid)
746 {
747 /* Clients may need to clean up pool entries, too */
748 if (fp)
749 (*fp) (mc->data, 0 /* no new mac addrs */ );
750 if (index == p[0])
751 {
752 hash_unset (am->mac_changes_by_address, address->as_u32);
753 if (mc->next_index != ~0)
754 hash_set (am->mac_changes_by_address, address->as_u32,
755 mc->next_index);
756 pool_put (am->mac_changes, mc);
757 return 0;
758 }
759 else
760 {
761 ASSERT (mc_last);
762 mc_last->next_index = mc->next_index;
763 pool_put (am->mac_changes, mc);
764 return 0;
765 }
766 }
767 mc_last = mc;
768 index = mc->next_index;
769 }
770
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 return VNET_API_ERROR_NO_SUCH_ENTRY;
772 }
773}
774
775/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700776typedef enum
777{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778 ARP_INPUT_NEXT_DROP,
John Lod1f5d042016-04-12 18:20:39 -0400779 ARP_INPUT_NEXT_REPLY_TX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 ARP_INPUT_N_NEXT,
781} arp_input_next_t;
782
783#define foreach_ethernet_arp_error \
784 _ (replies_sent, "ARP replies sent") \
785 _ (l2_type_not_ethernet, "L2 type not ethernet") \
786 _ (l3_type_not_ip4, "L3 type not IP4") \
787 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
788 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
789 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
790 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
791 _ (replies_received, "ARP replies received") \
792 _ (opcode_not_request, "ARP opcode not request") \
793 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
794 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
795 _ (missing_interface_address, "ARP missing interface address") \
796 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100797 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800798 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700800typedef enum
801{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
803 foreach_ethernet_arp_error
804#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700805 ETHERNET_ARP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806} ethernet_arp_input_error_t;
807
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700809static void
810unset_random_arp_entry (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700812 ethernet_arp_main_t *am = &ethernet_arp_main;
813 ethernet_arp_ip4_entry_t *e;
814 vnet_main_t *vnm = vnet_get_main ();
815 ethernet_arp_ip4_over_ethernet_address_t delme;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816 u32 index;
817
818 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
819 am->arp_delete_rotor = index;
820
821 /* Try again from elt 0, could happen if an intfc goes down */
822 if (index == ~0)
823 {
824 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
825 am->arp_delete_rotor = index;
826 }
827
828 /* Nothing left in the pool */
829 if (index == ~0)
830 return;
831
832 e = pool_elt_at_index (am->ip4_entry_pool, index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700833
Damjan Marionf1213b82016-03-13 02:22:06 +0100834 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100835 delme.ip4.as_u32 = e->ip4_address.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700836
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100837 vnet_arp_unset_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700839
Neale Ranns436d06b2016-11-30 07:41:53 -0800840static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700841arp_unnumbered (vlib_buffer_t * p0,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100842 u32 pi0, ethernet_header_t * eth0, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700844 vlib_main_t *vm = vlib_get_main ();
845 vnet_main_t *vnm = vnet_get_main ();
846 vnet_interface_main_t *vim = &vnm->interface_main;
847 vnet_sw_interface_t *si;
848 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 u32 unnum_src_sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700850 u32 *broadcast_swifs = 0;
851 u32 *buffers = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852 u32 n_alloc = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700853 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854 int i;
855 u8 dst_mac_address[6];
856 i16 header_size;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700857 ethernet_arp_header_t *arp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858
859 /* Save the dst mac address */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700860 clib_memcpy (dst_mac_address, eth0->dst_address, sizeof (dst_mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861
862 /* Figure out which sw_if_index supplied the address */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100863 unnum_src_sw_if_index = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
865 /* Track down all users of the unnumbered source */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700866 /* *INDENT-OFF* */
867 pool_foreach (si, vim->sw_interfaces,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 ({
869 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700870 (si->unnumbered_sw_if_index == unnum_src_sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700872 vec_add1 (broadcast_swifs, si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 }
874 }));
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700875 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876
Neale Ranns436d06b2016-11-30 07:41:53 -0800877 /* If there are no interfaces un-unmbered to this interface,
878 we are done here. */
879 if (0 == vec_len (broadcast_swifs))
880 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881
882 /* Allocate buffering if we need it */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700883 if (vec_len (broadcast_swifs) > 1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700885 vec_validate (buffers, vec_len (broadcast_swifs) - 2);
886 n_alloc = vlib_buffer_alloc (vm, buffers, vec_len (buffers));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887 _vec_len (buffers) = n_alloc;
888 for (i = 0; i < n_alloc; i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700889 {
890 b0 = vlib_get_buffer (vm, buffers[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700892 /* xerox (partially built) ARP pkt */
893 clib_memcpy (b0->data, p0->data,
894 p0->current_length + p0->current_data);
895 b0->current_data = p0->current_data;
896 b0->current_length = p0->current_length;
897 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
898 vnet_buffer (p0)->sw_if_index[VLIB_RX];
899 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900 }
901
902 vec_insert (buffers, 1, 0);
903 buffers[0] = pi0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700904
905 for (i = 0; i < vec_len (buffers); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700907 b0 = vlib_get_buffer (vm, buffers[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 arp0 = vlib_buffer_get_current (b0);
909
910 hi = vnet_get_sup_hw_interface (vnm, broadcast_swifs[i]);
911 si = vnet_get_sw_interface (vnm, broadcast_swifs[i]);
912
913 /* For decoration, most likely */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700914 vnet_buffer (b0)->sw_if_index[VLIB_TX] = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915
916 /* Fix ARP pkt src address */
Damjan Marionf1213b82016-03-13 02:22:06 +0100917 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, hi->hw_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918
919 /* Build L2 encaps for this swif */
920 header_size = sizeof (ethernet_header_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700921 if (si->sub.eth.flags.one_tag)
922 header_size += 4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923 else if (si->sub.eth.flags.two_tags)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700924 header_size += 8;
925
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926 vlib_buffer_advance (b0, -header_size);
927 eth0 = vlib_buffer_get_current (b0);
928
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700929 if (si->sub.eth.flags.one_tag)
930 {
931 ethernet_vlan_header_t *outer = (void *) (eth0 + 1);
932
933 eth0->type = si->sub.eth.flags.dot1ad ?
934 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
935 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
936 outer->priority_cfi_and_id =
937 clib_host_to_net_u16 (si->sub.eth.outer_vlan_id);
938 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
939
940 }
941 else if (si->sub.eth.flags.two_tags)
942 {
943 ethernet_vlan_header_t *outer = (void *) (eth0 + 1);
944 ethernet_vlan_header_t *inner = (void *) (outer + 1);
945
946 eth0->type = si->sub.eth.flags.dot1ad ?
947 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
948 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
949 outer->priority_cfi_and_id =
950 clib_host_to_net_u16 (si->sub.eth.outer_vlan_id);
951 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
952 inner->priority_cfi_and_id =
953 clib_host_to_net_u16 (si->sub.eth.inner_vlan_id);
954 inner->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
955
956 }
957 else
958 {
959 eth0->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
960 }
961
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962 /* Restore the original dst address, set src address */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700963 clib_memcpy (eth0->dst_address, dst_mac_address,
964 sizeof (eth0->dst_address));
965 clib_memcpy (eth0->src_address, hi->hw_address,
966 sizeof (eth0->src_address));
967
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968 /* Transmit replicas */
969 if (i > 0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700970 {
971 vlib_frame_t *f =
972 vlib_get_frame_to_node (vm, hi->output_node_index);
973 u32 *to_next = vlib_frame_vector_args (f);
974 to_next[0] = buffers[i];
975 f->n_vectors = 1;
976 vlib_put_frame_to_node (vm, hi->output_node_index, f);
977 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700978 }
979
John Lod1f5d042016-04-12 18:20:39 -0400980 /* The regular path outputs the original pkt.. */
981 vnet_buffer (p0)->sw_if_index[VLIB_TX] = broadcast_swifs[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982
983 vec_free (broadcast_swifs);
984 vec_free (buffers);
Neale Ranns436d06b2016-11-30 07:41:53 -0800985
986 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987}
988
989static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700990arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700992 ethernet_arp_main_t *am = &ethernet_arp_main;
993 vnet_main_t *vnm = vnet_get_main ();
994 ip4_main_t *im4 = &ip4_main;
995 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996 u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
997
998 from = vlib_frame_vector_args (frame);
999 n_left_from = frame->n_vectors;
1000 next_index = node->cached_next_index;
1001
1002 if (node->flags & VLIB_NODE_FLAG_TRACE)
1003 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1004 /* stride */ 1,
1005 sizeof (ethernet_arp_input_trace_t));
1006
1007 while (n_left_from > 0)
1008 {
1009 u32 n_left_to_next;
1010
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001011 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012
1013 while (n_left_from > 0 && n_left_to_next > 0)
1014 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001015 vlib_buffer_t *p0;
1016 vnet_hw_interface_t *hw_if0;
1017 ethernet_arp_header_t *arp0;
1018 ethernet_header_t *eth0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001019 ip4_address_t *if_addr0, proxy_src;
1020 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
1021 u8 is_request0, dst_is_local0, is_unnum0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001022 ethernet_proxy_arp_t *pa;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001023 fib_node_index_t dst_fei, src_fei;
1024 fib_prefix_t pfx0;
1025 fib_entry_flag_t src_flags, dst_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026
1027 pi0 = from[0];
1028 to_next[0] = pi0;
1029 from += 1;
1030 to_next += 1;
1031 n_left_from -= 1;
1032 n_left_to_next -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001033 pa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034
1035 p0 = vlib_get_buffer (vm, pi0);
1036 arp0 = vlib_buffer_get_current (p0);
1037
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001038 is_request0 = arp0->opcode
1039 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040
1041 error0 = ETHERNET_ARP_ERROR_replies_sent;
1042
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001043 error0 =
1044 (arp0->l2_type !=
1045 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
1046 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
1047 error0 =
1048 (arp0->l3_type !=
1049 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
1050 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051
1052 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1053
Neale Rannsd96bad82017-03-08 01:12:54 -08001054 /* not playing the ARP game if the interface is not IPv4 enabled */
1055 error0 =
1056 (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
1057 ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
1058
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059 if (error0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001060 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061
1062 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001063 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1064 if (~0 == fib_index0)
1065 {
1066 error0 = ETHERNET_ARP_ERROR_interface_no_table;
1067 goto drop2;
1068
1069 }
1070 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1071 &arp0->ip4_over_ethernet[1].ip4,
1072 32);
Matus Fabiandccbee32017-01-31 22:20:30 -08001073 dst_flags = fib_entry_get_flags (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001074
Neale Ranns4b919a52017-03-11 05:55:21 -08001075 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1076 &arp0->ip4_over_ethernet[0].ip4,
1077 32);
1078 src_flags = fib_entry_get_flags (src_fei);
1079
Matus Fabiandccbee32017-01-31 22:20:30 -08001080 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001081
1082 if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083 {
1084 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1085 goto drop1;
1086 }
1087
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001088 /* Honor unnumbered interface, if any */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001089 is_unnum0 = sw_if_index0 != conn_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090
1091 /* Source must also be local to subnet of matching interface address. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001092 if (!((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
Neale Ranns797235a2017-01-09 14:33:38 +01001093 (FIB_ENTRY_FLAG_CONNECTED & src_flags)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 {
Neale Ranns797235a2017-01-09 14:33:38 +01001095 /*
1096 * The packet was sent from an address that is not connected nor attached
1097 * i.e. it is not from an address that is covered by a link's sub-net,
1098 * nor is it a already learned host resp.
1099 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001101 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102 }
Neale Ranns797235a2017-01-09 14:33:38 +01001103 if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1104 {
1105 /*
1106 * The interface the ARP was received on is not the interface
1107 * on which the covering prefix is configured. Maybe this is a case
1108 * for unnumbered.
1109 */
1110 is_unnum0 = 1;
1111 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001112
1113 /* Reject requests/replies with our local interface address. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001114 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 {
1116 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001117 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 }
1119
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001120 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
1121 fib_entry_get_prefix (dst_fei, &pfx0);
1122 if_addr0 = &pfx0.fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123
1124 /* Fill in ethernet header. */
1125 eth0 = ethernet_buffer_get_header (p0);
1126
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001127 /* Trash ARP packets whose ARP-level source addresses do not
1128 match their L2-frame-level source addresses */
1129 if (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
1130 sizeof (eth0->src_address)))
1131 {
1132 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1133 goto drop2;
1134 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001135
1136 /* Learn or update sender's mapping only for requests or unicasts
1137 that don't match local interface address. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001138 if (ethernet_address_cast (eth0->dst_address) ==
1139 ETHERNET_ADDRESS_UNICAST || is_request0)
1140 {
1141 if (am->limit_arp_cache_size &&
1142 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
1143 unset_random_arp_entry ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001145 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001146 &arp0->ip4_over_ethernet[0],
Neale Rannsb3b2de72017-03-08 05:17:22 -08001147 0 /* is_static */ , 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148 error0 = ETHERNET_ARP_ERROR_l3_src_address_learned;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001149 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150
1151 /* Only send a reply for requests sent which match a local interface. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001152 if (!(is_request0 && dst_is_local0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001154 error0 =
1155 (arp0->opcode ==
1156 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply) ?
1157 ETHERNET_ARP_ERROR_replies_received : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158 goto drop1;
1159 }
1160
1161 /* Send a reply. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001162 send_reply:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1164 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1165
John Lod1f5d042016-04-12 18:20:39 -04001166 /* Send reply back through input interface */
1167 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1168 next0 = ARP_INPUT_NEXT_REPLY_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169
1170 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1171
1172 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1173
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001174 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1175 hw_if0->hw_address, 6);
1176 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1177 if_addr0->data_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178
1179 /* Hardware must be ethernet-like. */
1180 ASSERT (vec_len (hw_if0->hw_address) == 6);
1181
Damjan Marionf1213b82016-03-13 02:22:06 +01001182 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
1183 clib_memcpy (eth0->src_address, hw_if0->hw_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184
1185 /* Figure out how much to rewind current data from adjacency. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001186 /* get the adj from the destination's covering connected */
1187 if (NULL == pa)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001188 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001189 if (is_unnum0)
Neale Ranns436d06b2016-11-30 07:41:53 -08001190 {
1191 if (!arp_unnumbered (p0, pi0, eth0, conn_sw_if_index0))
1192 goto drop2;
1193 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001194 else
Neale Ranns4b919a52017-03-11 05:55:21 -08001195 {
1196 ip_adjacency_t *adj0 = NULL;
1197 adj_index_t ai;
1198
1199 if (FIB_ENTRY_FLAG_ATTACHED & src_flags)
1200 {
1201 /*
1202 * If the source is attached use the adj from that source.
1203 */
1204 ai = fib_entry_get_adj (src_fei);
1205 if (ADJ_INDEX_INVALID != ai)
1206 {
1207 adj0 = adj_get (ai);
1208 }
1209 }
1210 else
1211 {
1212 /*
1213 * Get the glean adj from the cover. This is presumably interface
1214 * sourced, and therefre needs to be a glean adj.
1215 */
1216 ai = fib_entry_get_adj_for_source
1217 (ip4_fib_table_lookup
1218 (ip4_fib_get (fib_index0),
1219 &arp0->ip4_over_ethernet[1].ip4, 31),
1220 FIB_SOURCE_INTERFACE);
1221
1222 if (ADJ_INDEX_INVALID != ai)
1223 {
1224 adj0 = adj_get (ai);
1225
1226 if (adj0->lookup_next_index == IP_LOOKUP_NEXT_GLEAN)
1227 {
1228 adj0 = NULL;
1229 }
1230 }
1231 }
1232 if (NULL != adj0)
1233 {
1234 vlib_buffer_advance (p0,
1235 -adj0->rewrite_header.data_bytes);
1236 }
1237 else
1238 {
1239 error0 = ETHERNET_ARP_ERROR_missing_interface_address;
1240 goto drop2;
1241 }
1242 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001243 }
Neale Ranns4b919a52017-03-11 05:55:21 -08001244
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001245 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1246 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001247
1248 n_replies_sent += 1;
1249 continue;
1250
1251 drop1:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001252 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
1253 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1254 arp0->ip4_over_ethernet[1].ip4.as_u32))
1255 {
1256 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1257 goto drop2;
1258 }
1259 /* See if proxy arp is configured for the address */
1260 if (is_request0)
1261 {
1262 vnet_sw_interface_t *si;
1263 u32 this_addr = clib_net_to_host_u32
1264 (arp0->ip4_over_ethernet[1].ip4.as_u32);
1265 u32 fib_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001267 si = vnet_get_sw_interface (vnm, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001269 if (!(si->flags & VNET_SW_INTERFACE_FLAG_PROXY_ARP))
1270 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001272 fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1273 sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001275 vec_foreach (pa, am->proxy_arps)
1276 {
1277 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr);
1278 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001280 /* an ARP request hit in the proxy-arp table? */
1281 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1282 (fib_index0 == pa->fib_index))
1283 {
1284 eth0 = ethernet_buffer_get_header (p0);
1285 proxy_src.as_u32 =
1286 arp0->ip4_over_ethernet[1].ip4.data_u32;
1287
Damjan Marion607de1a2016-08-16 22:53:54 +02001288 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001289 * Rewind buffer, direct code above not to
Damjan Marion607de1a2016-08-16 22:53:54 +02001290 * think too hard about it.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001291 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001292 if_addr0 = &proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001293 is_unnum0 = 0;
David Hotham62f88d82016-09-20 13:34:00 +00001294 i32 ethernet_start =
1295 vnet_buffer (p0)->ethernet.start_of_ethernet_header;
1296 i32 rewind = p0->current_data - ethernet_start;
1297 vlib_buffer_advance (p0, -rewind);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001298 n_proxy_arp_replies_sent++;
1299 goto send_reply;
1300 }
1301 }
1302 }
1303
1304 drop2:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305
1306 next0 = ARP_INPUT_NEXT_DROP;
1307 p0->error = node->errors[error0];
1308
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001309 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1310 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311 }
1312
1313 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1314 }
1315
1316 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001317 ETHERNET_ARP_ERROR_replies_sent,
1318 n_replies_sent - n_proxy_arp_replies_sent);
1319
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001321 ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1322 n_proxy_arp_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323 return frame->n_vectors;
1324}
1325
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001326static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327#define _(sym,string) string,
1328 foreach_ethernet_arp_error
1329#undef _
1330};
1331
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001332/* *INDENT-OFF* */
1333VLIB_REGISTER_NODE (arp_input_node, static) =
1334{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335 .function = arp_input,
1336 .name = "arp-input",
1337 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001338 .n_errors = ETHERNET_ARP_N_ERROR,
1339 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340 .n_next_nodes = ARP_INPUT_N_NEXT,
1341 .next_nodes = {
1342 [ARP_INPUT_NEXT_DROP] = "error-drop",
John Lod1f5d042016-04-12 18:20:39 -04001343 [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001344 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345 .format_buffer = format_ethernet_arp_header,
1346 .format_trace = format_ethernet_arp_input_trace,
1347};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001348/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001349
Ed Warnickecb9cada2015-12-08 15:45:58 -07001350static int
1351ip4_arp_entry_sort (void *a1, void *a2)
1352{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001353 ethernet_arp_ip4_entry_t *e1 = a1;
1354 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355
1356 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001357 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001359 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001360 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001361 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001362 return cmp;
1363}
1364
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001365ethernet_arp_ip4_entry_t *
1366ip4_neighbor_entries (u32 sw_if_index)
1367{
1368 ethernet_arp_main_t *am = &ethernet_arp_main;
1369 ethernet_arp_ip4_entry_t *n, *ns = 0;
1370
1371 /* *INDENT-OFF* */
1372 pool_foreach (n, am->ip4_entry_pool, ({
1373 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1374 continue;
1375 vec_add1 (ns, n[0]);
1376 }));
1377 /* *INDENT-ON* */
1378
1379 if (ns)
1380 vec_sort_with_function (ns, ip4_arp_entry_sort);
1381 return ns;
1382}
1383
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384static clib_error_t *
1385show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001386 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001387{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001388 vnet_main_t *vnm = vnet_get_main ();
1389 ethernet_arp_main_t *am = &ethernet_arp_main;
1390 ethernet_arp_ip4_entry_t *e, *es;
1391 ethernet_proxy_arp_t *pa;
1392 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001393 u32 sw_if_index;
1394
1395 /* Filter entries by interface if given. */
1396 sw_if_index = ~0;
1397 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1398
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001399 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001400 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001401 {
Keith Wilescb466842016-02-11 19:21:10 -06001402 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001403 vec_foreach (e, es)
1404 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001405 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001406 }
1407 vec_free (es);
1408 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409
1410 if (vec_len (am->proxy_arps))
1411 {
1412 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001413 vec_foreach (pa, am->proxy_arps)
1414 {
1415 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1416 pa->fib_index,
1417 format_ip4_address, &pa->lo_addr,
1418 format_ip4_address, &pa->hi_addr);
1419 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001420 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001421
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422 return error;
1423}
1424
Billy McFall2d085d92016-09-13 21:47:55 -04001425/*?
1426 * Display all the IPv4 ARP entries.
1427 *
1428 * @cliexpar
1429 * Example of how to display the IPv4 ARP table:
1430 * @cliexstart{show ip arp}
1431 * Time FIB IP4 Flags Ethernet Interface
1432 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1433 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1434 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1435 * Proxy arps enabled for:
1436 * Fib_index 0 6.0.0.1 - 6.0.0.11
1437 * @cliexend
1438 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001439/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1441 .path = "show ip arp",
1442 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001443 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001445/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001446
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001447typedef struct
1448{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449 pg_edit_t l2_type, l3_type;
1450 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1451 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001452 struct
1453 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001454 pg_edit_t ethernet;
1455 pg_edit_t ip4;
1456 } ip4_over_ethernet[2];
1457} pg_ethernet_arp_header_t;
1458
1459static inline void
1460pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1461{
1462 /* Initialize fields that are not bit fields in the IP header. */
1463#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001464 _(l2_type);
1465 _(l3_type);
1466 _(n_l2_address_bytes);
1467 _(n_l3_address_bytes);
1468 _(opcode);
1469 _(ip4_over_ethernet[0].ethernet);
1470 _(ip4_over_ethernet[0].ip4);
1471 _(ip4_over_ethernet[1].ethernet);
1472 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001473#undef _
1474}
1475
1476uword
1477unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1478{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001479 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1480 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001481 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001482
Ed Warnickecb9cada2015-12-08 15:45:58 -07001483 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1484 &group_index);
1485 pg_ethernet_arp_header_init (p);
1486
1487 /* Defaults. */
1488 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1489 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1490 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1491 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1492
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001493 if (!unformat (input, "%U: %U/%U -> %U/%U",
1494 unformat_pg_edit,
1495 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1496 unformat_pg_edit,
1497 unformat_ethernet_address, &p->ip4_over_ethernet[0].ethernet,
1498 unformat_pg_edit,
1499 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1500 unformat_pg_edit,
1501 unformat_ethernet_address, &p->ip4_over_ethernet[1].ethernet,
1502 unformat_pg_edit,
1503 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504 {
1505 /* Free up any edits we may have added. */
1506 pg_free_edit_group (s);
1507 return 0;
1508 }
1509 return 1;
1510}
1511
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001512clib_error_t *
1513ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001514{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001515 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001516
1517 am->limit_arp_cache_size = arp_limit;
1518 return 0;
1519}
1520
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001521/**
1522 * @brief Control Plane hook to remove an ARP entry
1523 */
1524int
1525vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
1526 u32 sw_if_index, void *a_arg)
Damjan Marion102ec522016-03-29 13:18:17 +02001527{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001528 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1529 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
Damjan Marion102ec522016-03-29 13:18:17 +02001530
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001531 args.sw_if_index = sw_if_index;
1532 args.flags = ETHERNET_ARP_ARGS_REMOVE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001533 clib_memcpy (&args.a, a, sizeof (*a));
1534
1535 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1536 (u8 *) & args, sizeof (args));
1537 return 0;
1538}
1539
1540/**
1541 * @brief Internally generated event to flush the ARP cache on an
1542 * interface state change event.
1543 * A flush will remove dynamic ARP entries, and for statics remove the MAC
1544 * address from the corresponding adjacencies.
1545 */
1546static int
1547vnet_arp_flush_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001548 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001549{
1550 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1551 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1552
1553 args.sw_if_index = sw_if_index;
1554 args.flags = ETHERNET_ARP_ARGS_FLUSH;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001555 clib_memcpy (&args.a, a, sizeof (*a));
1556
1557 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1558 (u8 *) & args, sizeof (args));
1559 return 0;
1560}
1561
1562/**
1563 * @brief Internally generated event to populate the ARP cache on an
1564 * interface state change event.
1565 * For static entries this will re-source the adjacencies.
1566 *
1567 * @param sw_if_index The interface on which the ARP entires are acted
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001568 */
1569static int
1570vnet_arp_populate_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001571 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001572{
1573 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1574 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1575
1576 args.sw_if_index = sw_if_index;
1577 args.flags = ETHERNET_ARP_ARGS_POPULATE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001578 clib_memcpy (&args.a, a, sizeof (*a));
1579
1580 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1581 (u8 *) & args, sizeof (args));
1582 return 0;
1583}
1584
1585/*
1586 * arp_add_del_interface_address
1587 *
1588 * callback when an interface address is added or deleted
1589 */
1590static void
1591arp_add_del_interface_address (ip4_main_t * im,
1592 uword opaque,
1593 u32 sw_if_index,
1594 ip4_address_t * address,
1595 u32 address_length,
1596 u32 if_address_index, u32 is_del)
1597{
1598 /*
1599 * Flush the ARP cache of all entries covered by the address
1600 * that is being removed.
1601 */
1602 ethernet_arp_main_t *am = &ethernet_arp_main;
1603 ethernet_arp_ip4_entry_t *e;
1604
Neale Ranns177bbdc2016-11-15 09:46:51 +00001605 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001606 return;
1607
1608 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02001609 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001610 ethernet_arp_interface_t *eai;
1611 u32 i, *to_delete = 0;
1612 hash_pair_t *pair;
1613
1614 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1615
Neale Rannsb80c5362016-10-08 13:03:40 +01001616 /* *INDENT-OFF* */
1617 hash_foreach_pair (pair, eai->arp_entries,
1618 ({
1619 e = pool_elt_at_index(am->ip4_entry_pool,
1620 pair->value[0]);
1621 if (ip4_destination_matches_route (im, &e->ip4_address,
1622 address, address_length))
1623 {
1624 vec_add1 (to_delete, e - am->ip4_entry_pool);
1625 }
1626 }));
1627 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001628
1629 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001630 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001631 ethernet_arp_ip4_over_ethernet_address_t delme;
1632 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1633
1634 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1635 delme.ip4.as_u32 = e->ip4_address.as_u32;
1636
1637 vnet_arp_flush_ip4_over_ethernet (vnet_get_main (),
Neale Rannsb80c5362016-10-08 13:03:40 +01001638 e->sw_if_index, &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001639 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001640
1641 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02001642 }
1643}
1644
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001645static clib_error_t *
1646ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001647{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001648 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001649 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001650 clib_error_t *error;
1651 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05001652
1653 if ((error = vlib_call_init_function (vm, ethernet_init)))
1654 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001655
1656 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1657
1658 pn = pg_get_node (arp_input_node.index);
1659 pn->unformat_edit = unformat_pg_arp_header;
1660
1661 am->opcode_by_name = hash_create_string (0, sizeof (uword));
1662#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1663 foreach_ethernet_arp_opcode;
1664#undef _
1665
Ed Warnickecb9cada2015-12-08 15:45:58 -07001666 /* $$$ configurable */
1667 am->limit_arp_cache_size = 50000;
1668
1669 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1670 am->mac_changes_by_address = hash_create (0, sizeof (uword));
1671
1672 /* don't trace ARP error packets */
1673 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001674 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001675 vlib_node_get_runtime (vm, arp_input_node.index);
1676
1677#define _(a,b) \
1678 vnet_pcap_drop_trace_filter_add_del \
1679 (rt->errors[ETHERNET_ARP_ERROR_##a], \
1680 1 /* is_add */);
1681 foreach_ethernet_arp_error
1682#undef _
1683 }
Damjan Marion102ec522016-03-29 13:18:17 +02001684
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001685 ip4_add_del_interface_address_callback_t cb;
1686 cb.function = arp_add_del_interface_address;
1687 cb.function_opaque = 0;
1688 vec_add1 (im->add_del_interface_address_callbacks, cb);
1689
Ed Warnickecb9cada2015-12-08 15:45:58 -07001690 return 0;
1691}
1692
1693VLIB_INIT_FUNCTION (ethernet_arp_init);
1694
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001695static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001696arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
1697{
1698 ethernet_arp_main_t *am = &ethernet_arp_main;
1699
Neale Rannsb3b2de72017-03-08 05:17:22 -08001700 /* it's safe to delete the ADJ source on the FIB entry, even if it
1701 * was added */
Neale Rannsb80c5362016-10-08 13:03:40 +01001702 fib_table_entry_delete_index (e->fib_entry_index, FIB_SOURCE_ADJ);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001703 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
1704 pool_put (am->ip4_entry_pool, e);
1705}
1706
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001707static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07001708vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001709 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1710 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001711{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001712 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001713 ethernet_arp_ip4_entry_t *e;
1714 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001715
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001716 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001717
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001718 e = arp_entry_find (eai, &args->a.ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001719
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001720 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001721 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001722 arp_entry_free (eai, e);
Neale Ranns19c68d22016-12-07 15:38:14 +00001723
1724 adj_nbr_walk_nh4 (e->sw_if_index,
1725 &e->ip4_address, arp_mk_incomplete_walk, NULL);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001726 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001727
Ed Warnickecb9cada2015-12-08 15:45:58 -07001728 return 0;
1729}
1730
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001731static int
1732vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1733 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1734 * args)
1735{
1736 ethernet_arp_main_t *am = &ethernet_arp_main;
1737 ethernet_arp_ip4_entry_t *e;
1738 ethernet_arp_interface_t *eai;
1739
1740 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1741
1742 e = arp_entry_find (eai, &args->a.ip4);
1743
1744 if (NULL != e)
1745 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001746 adj_nbr_walk_nh4 (e->sw_if_index,
1747 &e->ip4_address, arp_mk_incomplete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001748
1749 /*
1750 * The difference between flush and unset, is that an unset
1751 * means delete for static and dynamic entries. A flush
1752 * means delete only for dynamic. Flushing is what the DP
1753 * does in response to interface events. unset is only done
1754 * by the control plane.
1755 */
Neale Rannsb80c5362016-10-08 13:03:40 +01001756 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001757 {
1758 arp_entry_free (eai, e);
1759 }
1760 }
1761 return (0);
1762}
1763
1764static int
1765vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
1766 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1767 * args)
1768{
1769 ethernet_arp_main_t *am = &ethernet_arp_main;
1770 ethernet_arp_ip4_entry_t *e;
1771 ethernet_arp_interface_t *eai;
1772
1773 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1774
1775 e = arp_entry_find (eai, &args->a.ip4);
1776
1777 if (NULL != e)
1778 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001779 adj_nbr_walk_nh4 (e->sw_if_index,
1780 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001781 }
1782 return (0);
1783}
1784
1785static void
1786set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
1787 * a)
1788{
1789 vnet_main_t *vm = vnet_get_main ();
1790 ASSERT (os_get_cpu_number () == 0);
1791
1792 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
1793 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
1794 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1795 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
1796 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1797 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
1798 else
1799 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
1800}
1801
1802/**
1803 * @brief Invoked when the interface's admin state changes
1804 */
1805static clib_error_t *
1806ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
1807 u32 sw_if_index, u32 flags)
1808{
1809 ethernet_arp_main_t *am = &ethernet_arp_main;
1810 ethernet_arp_ip4_entry_t *e;
1811 u32 i, *to_delete = 0;
1812
1813 /* *INDENT-OFF* */
1814 pool_foreach (e, am->ip4_entry_pool,
1815 ({
1816 if (e->sw_if_index == sw_if_index)
Neale Rannsb80c5362016-10-08 13:03:40 +01001817 vec_add1 (to_delete,
1818 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001819 }));
1820 /* *INDENT-ON* */
1821
1822 for (i = 0; i < vec_len (to_delete); i++)
1823 {
1824 ethernet_arp_ip4_over_ethernet_address_t delme;
1825 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1826
1827 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1828 delme.ip4.as_u32 = e->ip4_address.as_u32;
1829
1830 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1831 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001832 vnet_arp_populate_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001833 }
1834 else
1835 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001836 vnet_arp_flush_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001837 }
1838
1839 }
1840 vec_free (to_delete);
1841
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001842 return 0;
1843}
1844
1845VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
1846
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001847static void
1848increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001849{
1850 u8 old;
1851 int i;
1852
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001853 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854 {
1855 old = a->ip4.as_u8[i];
1856 a->ip4.as_u8[i] += 1;
1857 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001858 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001859 }
1860
1861 for (i = 5; i >= 0; i--)
1862 {
1863 old = a->ethernet[i];
1864 a->ethernet[i] += 1;
1865 if (old < a->ethernet[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001866 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001867 }
1868}
1869
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001870int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001871vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb3b2de72017-03-08 05:17:22 -08001872 u32 sw_if_index, void *a_arg,
1873 int is_static, int is_no_fib_entry)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001874{
1875 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1876 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1877
1878 args.sw_if_index = sw_if_index;
1879 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001880 args.is_no_fib_entry = is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001881 args.flags = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001882 clib_memcpy (&args.a, a, sizeof (*a));
1883
1884 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1885 (u8 *) & args, sizeof (args));
1886 return 0;
1887}
1888
1889int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001890vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
1891 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001892{
1893 ethernet_arp_main_t *am = &ethernet_arp_main;
1894 ethernet_proxy_arp_t *pa;
1895 u32 found_at_index = ~0;
1896
1897 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001898 {
1899 if (pa->lo_addr == lo_addr->as_u32
1900 && pa->hi_addr == hi_addr->as_u32 && pa->fib_index == fib_index)
1901 {
1902 found_at_index = pa - am->proxy_arps;
1903 break;
1904 }
1905 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001906
1907 if (found_at_index != ~0)
1908 {
1909 /* Delete, otherwise it's already in the table */
1910 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001911 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001912 return 0;
1913 }
1914 /* delete, no such entry */
1915 if (is_del)
1916 return VNET_API_ERROR_NO_SUCH_ENTRY;
1917
1918 /* add, not in table */
1919 vec_add2 (am->proxy_arps, pa, 1);
1920 pa->lo_addr = lo_addr->as_u32;
1921 pa->hi_addr = hi_addr->as_u32;
1922 pa->fib_index = fib_index;
1923 return 0;
1924}
1925
1926/*
Damjan Marion607de1a2016-08-16 22:53:54 +02001927 * Remove any proxy arp entries asdociated with the
Ed Warnickecb9cada2015-12-08 15:45:58 -07001928 * specificed fib.
1929 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001930int
1931vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001932{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001933 ip4_main_t *im = &ip4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001934 ethernet_arp_main_t *am = &ethernet_arp_main;
1935 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001936 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001937 u32 fib_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001938 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001939 int i;
1940
1941 p = hash_get (im->fib_index_by_table_id, fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001942 if (!p)
1943 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001944 fib_index = p[0];
1945
1946 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001947 {
1948 if (pa->fib_index == fib_index)
1949 {
1950 vec_add1 (entries_to_delete, pa - am->proxy_arps);
1951 }
1952 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001954 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001955 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001956 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
1957 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001958
1959 vec_free (entries_to_delete);
1960
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001961 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001962}
1963
1964static clib_error_t *
1965ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001966 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001967{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001968 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001969 u32 sw_if_index;
1970 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
1971 int addr_valid = 0;
1972 int is_del = 0;
1973 int count = 1;
1974 u32 fib_index = 0;
1975 u32 fib_id;
1976 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001977 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001978 int is_proxy = 0;
1979
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001980 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001981 {
1982 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
1983 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001984 unformat_vnet_sw_interface, vnm, &sw_if_index,
1985 unformat_ip4_address, &addr.ip4,
1986 unformat_ethernet_address, &addr.ethernet))
1987 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001988
1989 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001990 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001991
1992 else if (unformat (input, "static"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001993 is_static = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001994
Neale Rannsb3b2de72017-03-08 05:17:22 -08001995 else if (unformat (input, "no-fib-entry"))
1996 is_no_fib_entry = 1;
1997
Ed Warnickecb9cada2015-12-08 15:45:58 -07001998 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001999 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002000
2001 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002002 {
2003 ip4_main_t *im = &ip4_main;
2004 uword *p = hash_get (im->fib_index_by_table_id, fib_id);
2005 if (!p)
2006 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
2007 fib_index = p[0];
2008 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002009
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002010 else if (unformat (input, "proxy %U - %U",
2011 unformat_ip4_address, &lo_addr.ip4,
2012 unformat_ip4_address, &hi_addr.ip4))
2013 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002014 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002015 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002016 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002017
Ed Warnickecb9cada2015-12-08 15:45:58 -07002018 if (is_proxy)
2019 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002020 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2021 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002022 return 0;
2023 }
2024
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002025 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002026 {
2027 int i;
2028
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002029 for (i = 0; i < count; i++)
2030 {
2031 if (is_del == 0)
2032 {
2033 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002034
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002035 /* Park the debug CLI until the arp entry is installed */
2036 vnet_register_ip4_arp_resolution_event
2037 (vnm, &addr.ip4, vlib_current_process (vm),
2038 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002039
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002040 vnet_arp_set_ip4_over_ethernet
Neale Rannsb3b2de72017-03-08 05:17:22 -08002041 (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002042
2043 vlib_process_wait_for_event (vm);
2044 event_type = vlib_process_get_events (vm, &event_data);
2045 vec_reset_length (event_data);
2046 if (event_type != 1)
2047 clib_warning ("event type %d unexpected", event_type);
2048 }
2049 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002050 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002051
2052 increment_ip4_and_mac_address (&addr);
2053 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002054 }
2055 else
2056 {
2057 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002058 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002059 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002060
Ed Warnickecb9cada2015-12-08 15:45:58 -07002061 return 0;
2062}
2063
Neale Rannsb80c5362016-10-08 13:03:40 +01002064/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002065/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002066 * Add or delete IPv4 ARP cache entries.
2067 *
2068 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2069 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2070 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002071 *
2072 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002073 * @parblock
2074 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2075 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2076 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2077 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2078 *
2079 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2080 * table:
2081 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2082 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2083 *
2084 * Add or delete IPv4 static ARP cache entries as follows:
2085 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2086 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2087 *
2088 * For testing / debugging purposes, the 'set ip arp' command can add or
2089 * delete multiple entries. Supply the 'count N' parameter:
2090 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2091 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002092 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002093VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002094 .path = "set ip arp",
2095 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002096 "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 -07002097 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002098};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002099/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002100
2101static clib_error_t *
2102set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002103 unformat_input_t *
2104 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002105{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002106 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002107 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002108 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109 int enable = 0;
2110 int intfc_set = 0;
2111
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002112 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002113 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002114 if (unformat (input, "%U", unformat_vnet_sw_interface,
2115 vnm, &sw_if_index))
2116 intfc_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002117 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002118 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002119 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002120 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002121 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002122 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002123 }
2124
2125 if (intfc_set == 0)
2126 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002127 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002128
2129 si = vnet_get_sw_interface (vnm, sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002130 ASSERT (si);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002131 if (enable)
2132 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002133 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07002134 si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002135
Ed Warnickecb9cada2015-12-08 15:45:58 -07002136 return 0;
2137}
2138
Neale Rannsb80c5362016-10-08 13:03:40 +01002139/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002140/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002141 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2142 * requests for the indicated address range. Multiple proxy-arp
2143 * ranges may be provisioned.
2144 *
2145 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2146 * Also, the underlying implementation has not been performance-tuned.
2147 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002148 *
2149 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002150 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002151 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2152 * Append 'del' to delete a range of proxy ARP addresses:
2153 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2154 * You must then specifically enable proxy arp on individual interfaces:
2155 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2156 * To disable proxy arp on an individual interface:
2157 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002158 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002159VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002160 .path = "set interface proxy-arp",
2161 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002162 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002163 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002164};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002165/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002166
2167
2168/*
John Lo1edfba92016-08-27 01:11:57 -04002169 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2170 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002171 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002172typedef enum
2173{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002174 ARP_TERM_NEXT_L2_OUTPUT,
2175 ARP_TERM_NEXT_DROP,
2176 ARP_TERM_N_NEXT,
2177} arp_term_next_t;
2178
2179u32 arp_term_next_node_index[32];
2180
2181static uword
2182arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002183 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002184{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002185 l2input_main_t *l2im = &l2input_main;
2186 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002187 u32 n_replies_sent = 0;
2188 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002189 l2_bridge_domain_t *last_bd_config = 0;
2190 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002191
2192 from = vlib_frame_vector_args (frame);
2193 n_left_from = frame->n_vectors;
2194 next_index = node->cached_next_index;
2195
2196 while (n_left_from > 0)
2197 {
2198 u32 n_left_to_next;
2199
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002200 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002201
2202 while (n_left_from > 0 && n_left_to_next > 0)
2203 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002204 vlib_buffer_t *p0;
2205 ethernet_header_t *eth0;
2206 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002207 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002208 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002209 u32 pi0, error0, next0, sw_if_index0;
2210 u16 ethertype0;
2211 u16 bd_index0;
2212 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002213 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002214
2215 pi0 = from[0];
2216 to_next[0] = pi0;
2217 from += 1;
2218 to_next += 1;
2219 n_left_from -= 1;
2220 n_left_to_next -= 1;
2221
2222 p0 = vlib_get_buffer (vm, pi0);
2223 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002224 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2225 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002226 arp0 = (ethernet_arp_header_t *) l3h0;
2227
John Lo1edfba92016-08-27 01:11:57 -04002228 if (PREDICT_FALSE ((ethertype0 != ETHERNET_TYPE_ARP) ||
2229 (arp0->opcode !=
2230 clib_host_to_net_u16
2231 (ETHERNET_ARP_OPCODE_request))))
2232 goto check_ip6_nd;
2233
2234 /* Must be ARP request packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002235 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2236 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2237 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002238 u8 *t0 = vlib_add_trace (vm, node, p0,
2239 sizeof (ethernet_arp_input_trace_t));
2240 clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002241 }
2242
Ed Warnickecb9cada2015-12-08 15:45:58 -07002243 error0 = ETHERNET_ARP_ERROR_replies_sent;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002244 error0 =
2245 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002246 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2247 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002248 error0 =
2249 (arp0->l3_type !=
2250 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2251 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002252
2253 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2254
2255 if (error0)
2256 goto drop;
2257
John Lo1edfba92016-08-27 01:11:57 -04002258 /* Trash ARP packets whose ARP-level source addresses do not
2259 match their L2-frame-level source addresses */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002260 if (PREDICT_FALSE
2261 (memcmp
2262 (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
2263 sizeof (eth0->src_address))))
2264 {
2265 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2266 goto drop;
2267 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002268
John Lo1edfba92016-08-27 01:11:57 -04002269 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002270 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002271 pending_resolution_t *mc;
2272 ethernet_arp_main_t *am = &ethernet_arp_main;
2273 uword *p = hash_get (am->mac_changes_by_address, 0);
2274 if (p && (vnet_buffer (p0)->l2.shg == 0))
2275 { // Only SHG 0 interface which is more likely local
2276 u32 next_index = p[0];
2277 while (next_index != (u32) ~ 0)
2278 {
2279 int (*fp) (u32, u8 *, u32, u32);
2280 int rv = 1;
2281 mc = pool_elt_at_index (am->mac_changes, next_index);
2282 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -04002283 /* Call the callback, return 1 to suppress dup events */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002284 if (fp)
2285 rv = (*fp) (mc->data,
2286 arp0->ip4_over_ethernet[0].ethernet,
2287 sw_if_index0,
2288 arp0->ip4_over_ethernet[0].ip4.as_u32);
John Lo1edfba92016-08-27 01:11:57 -04002289 /* Signal the resolver process */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002290 if (rv == 0)
2291 vlib_process_signal_event (vm, mc->node_index,
2292 mc->type_opaque, mc->data);
2293 next_index = mc->next_index;
2294 }
2295 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002296 }
2297
John Lo1edfba92016-08-27 01:11:57 -04002298 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002299 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002300 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2301 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2302 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002303 {
2304 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002305 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002306 }
2307 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2308
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002309 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002310 goto next_l2_feature; /* MAC not found */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002311
John Lo1edfba92016-08-27 01:11:57 -04002312 /* MAC found, send ARP reply -
2313 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002314 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2315 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2316 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Damjan Marionf1213b82016-03-13 02:22:06 +01002317 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2318 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2319 clib_memcpy (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002320 n_replies_sent += 1;
2321
John Lo1edfba92016-08-27 01:11:57 -04002322 output_response:
2323 /* For BVI, need to use l2-fwd node to send ARP reply as
2324 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002325 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002326 if (PREDICT_FALSE (cfg0->bvi))
2327 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002328 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002329 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2330 goto next_l2_feature;
2331 }
2332
John Lo1edfba92016-08-27 01:11:57 -04002333 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002334 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2335 next0 = ARP_TERM_NEXT_L2_OUTPUT;
John Lo1edfba92016-08-27 01:11:57 -04002336 /* Note that output to VXLAN tunnel will fail due to SHG which
2337 is probably desireable since ARP termination is not intended
2338 for ARP requests from other hosts. If output to VXLAN tunnel is
2339 required, however, can just clear the SHG in packet as follows:
2340 vnet_buffer(p0)->l2.shg = 0; */
Neale Rannsb80c5362016-10-08 13:03:40 +01002341 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2342 to_next, n_left_to_next, pi0,
2343 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002344 continue;
2345
John Lo1edfba92016-08-27 01:11:57 -04002346 check_ip6_nd:
2347 /* IP6 ND event notification or solicitation handling to generate
2348 local response instead of flooding */
2349 iph0 = (ip6_header_t *) l3h0;
2350 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2351 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002352 !ip6_address_is_unspecified
2353 (&iph0->src_address)))
2354 {
2355 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002356 if (vnet_ip6_nd_term
2357 (vm, node, p0, eth0, iph0, sw_if_index0,
2358 vnet_buffer (p0)->l2.bd_index, vnet_buffer (p0)->l2.shg))
John Lo1edfba92016-08-27 01:11:57 -04002359 goto output_response;
2360 }
2361
Ed Warnickecb9cada2015-12-08 15:45:58 -07002362 next_l2_feature:
2363 {
2364 u32 feature_bitmap0 =
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002365 vnet_buffer (p0)->l2.feature_bitmap & ~L2INPUT_FEAT_ARP_TERM;
2366 vnet_buffer (p0)->l2.feature_bitmap = feature_bitmap0;
Neale Rannsb80c5362016-10-08 13:03:40 +01002367 next0 =
2368 feat_bitmap_get_next_node_index (arp_term_next_node_index,
2369 feature_bitmap0);
2370 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2371 to_next, n_left_to_next,
2372 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002373 continue;
2374 }
2375
2376 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002377 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2378 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2379 arp0->ip4_over_ethernet[1].ip4.as_u32))
2380 {
2381 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2382 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002383 next0 = ARP_TERM_NEXT_DROP;
2384 p0->error = node->errors[error0];
2385
Neale Rannsb80c5362016-10-08 13:03:40 +01002386 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2387 to_next, n_left_to_next, pi0,
2388 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002389 }
2390
2391 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2392 }
2393
2394 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002395 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002396 return frame->n_vectors;
2397}
2398
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002399/* *INDENT-OFF* */
2400VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002401 .function = arp_term_l2bd,
2402 .name = "arp-term-l2bd",
2403 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002404 .n_errors = ETHERNET_ARP_N_ERROR,
2405 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002406 .n_next_nodes = ARP_TERM_N_NEXT,
2407 .next_nodes = {
2408 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2409 [ARP_TERM_NEXT_DROP] = "error-drop",
2410 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002411 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002412 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002413};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002414/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002415
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002416clib_error_t *
2417arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002418{
2419 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002420 feat_bitmap_init_next_nodes (vm,
2421 arp_term_l2bd_node.index,
2422 L2INPUT_N_FEAT,
2423 l2input_get_feat_names (),
2424 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002425 return 0;
2426}
2427
2428VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002429
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002430void
2431change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2432{
2433 if (e->sw_if_index == sw_if_index)
2434 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002435 adj_nbr_walk_nh4 (e->sw_if_index,
2436 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002437 }
2438}
2439
2440void
Neale Ranns3be6b282016-12-20 14:24:01 +00002441ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002442{
2443 ethernet_arp_main_t *am = &ethernet_arp_main;
2444 ethernet_arp_ip4_entry_t *e;
2445
2446 /* *INDENT-OFF* */
2447 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002448 ({
2449 change_arp_mac (sw_if_index, e);
2450 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002451 /* *INDENT-ON* */
2452}
2453
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002454/*
2455 * fd.io coding-style-patch-verification: ON
2456 *
2457 * Local Variables:
2458 * eval: (c-set-style "gnu")
2459 * End:
2460 */