blob: 31af4fbaa808291f3e01cdc05c7e1ffe294a41af [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 Ranns2e7fbcc2017-03-15 04:22:25 -0700482 {
483 /*
484 * Construct a partial rewrite from the known ethernet mcast dest MAC
485 */
486 u8 *rewrite;
487 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100488
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700489 rewrite = ethernet_build_rewrite (vnm,
490 sw_if_index,
491 adj->ia_link,
492 ethernet_ip4_mcast_dst_addr ());
493 offset = vec_len (rewrite) - 2;
Neale Ranns32e1c012016-11-22 17:07:28 +0000494
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700495 /*
496 * Complete the remaining fields of the adj's rewrite to direct the
497 * complete of the rewrite at switch time by copying in the IP
498 * dst address's bytes.
499 * Ofset is 2 bytes into the MAC desintation address. And we copy 23 bits
500 * from the address.
501 */
502 adj_mcast_update_rewrite (ai, rewrite, offset, 0x007fffff);
Neale Ranns32e1c012016-11-22 17:07:28 +0000503
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700504 break;
505 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000506 case IP_LOOKUP_NEXT_DROP:
507 case IP_LOOKUP_NEXT_PUNT:
508 case IP_LOOKUP_NEXT_LOCAL:
509 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800510 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000511 case IP_LOOKUP_NEXT_MIDCHAIN:
512 case IP_LOOKUP_NEXT_ICMP_ERROR:
513 case IP_LOOKUP_N_NEXT:
514 ASSERT (0);
515 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100516 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517}
518
519int
520vnet_arp_set_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100521 vnet_arp_set_ip4_over_ethernet_rpc_args_t
522 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700524 ethernet_arp_ip4_entry_t *e = 0;
525 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100526 ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700527 vlib_main_t *vm = vlib_get_main ();
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700528 int make_new_arp_cache_entry = 1;
529 uword *p;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700530 pending_resolution_t *pr, *mc;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100531 ethernet_arp_interface_t *arp_int;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100532 int is_static = args->is_static;
533 u32 sw_if_index = args->sw_if_index;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800534 int is_no_fib_entry = args->is_no_fib_entry;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700535
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100536 vec_validate (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 arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100540 if (NULL != arp_int->arp_entries)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100542 p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
543 if (p)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700544 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
546
547 /* Refuse to over-write static arp. */
548 if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
549 return -2;
550 make_new_arp_cache_entry = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700551 }
Damjan Marion102ec522016-03-29 13:18:17 +0200552 }
553
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 if (make_new_arp_cache_entry)
555 {
556 pool_get (am->ip4_entry_pool, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100557
558 if (NULL == arp_int->arp_entries)
559 {
560 arp_int->arp_entries = hash_create (0, sizeof (u32));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100561 }
562
563 hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
564
565 e->sw_if_index = sw_if_index;
566 e->ip4_address = a->ip4;
Neale Rannsb80c5362016-10-08 13:03:40 +0100567 clib_memcpy (e->ethernet_address,
568 a->ethernet, sizeof (e->ethernet_address));
569
Neale Rannsb3b2de72017-03-08 05:17:22 -0800570 if (!is_no_fib_entry)
571 {
572 fib_prefix_t pfx = {
573 .fp_len = 32,
574 .fp_proto = FIB_PROTOCOL_IP4,
575 .fp_addr.ip4 = a->ip4,
576 };
577 u32 fib_index;
578
579 fib_index =
580 ip4_fib_table_get_index_for_sw_if_index (e->sw_if_index);
581 e->fib_entry_index =
582 fib_table_entry_update_one_path (fib_index, &pfx, FIB_SOURCE_ADJ,
583 FIB_ENTRY_FLAG_ATTACHED,
584 FIB_PROTOCOL_IP4, &pfx.fp_addr,
585 e->sw_if_index, ~0, 1, NULL,
586 FIB_ROUTE_PATH_FLAG_NONE);
Neale Ranns2a3ea492017-04-19 05:24:40 -0700587 }
588 else
589 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800590 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_NO_FIB_ENTRY;
591 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100593 else
594 {
595 /*
596 * prevent a DoS attack from the data-plane that
597 * spams us with no-op updates to the MAC address
598 */
599 if (0 == memcmp (e->ethernet_address,
600 a->ethernet, sizeof (e->ethernet_address)))
601 return -1;
Neale Rannsb80c5362016-10-08 13:03:40 +0100602
603 /* Update time stamp and ethernet address. */
604 clib_memcpy (e->ethernet_address, a->ethernet,
605 sizeof (e->ethernet_address));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100606 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 e->cpu_time_last_updated = clib_cpu_time_now ();
609 if (is_static)
610 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100611 else
612 e->flags |= ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC;
613
Neale Rannsb80c5362016-10-08 13:03:40 +0100614 adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615
616 /* Customer(s) waiting for this address to be resolved? */
617 p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
618 if (p)
619 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100620 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 next_index = p[0];
622
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700623 while (next_index != (u32) ~ 0)
624 {
625 pr = pool_elt_at_index (am->pending_resolutions, next_index);
626 vlib_process_signal_event (vm, pr->node_index,
627 pr->type_opaque, pr->data);
628 next_index = pr->next_index;
629 pool_put (am->pending_resolutions, pr);
630 }
631
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
633 }
634
635 /* Customer(s) requesting ARP event for this address? */
636 p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
637 if (p)
638 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100639 u32 next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 next_index = p[0];
641
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700642 while (next_index != (u32) ~ 0)
643 {
644 int (*fp) (u32, u8 *, u32, u32);
645 int rv = 1;
646 mc = pool_elt_at_index (am->mac_changes, next_index);
647 fp = mc->data_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700649 /* Call the user's data callback, return 1 to suppress dup events */
650 if (fp)
651 rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
652
Damjan Marion607de1a2016-08-16 22:53:54 +0200653 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700654 * Signal the resolver process, as long as the user
655 * says they want to be notified
656 */
657 if (rv == 0)
658 vlib_process_signal_event (vm, mc->node_index,
659 mc->type_opaque, mc->data);
660 next_index = mc->next_index;
661 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662 }
663
664 return 0;
665}
666
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700667void
668vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
669 void *address_arg,
670 uword node_index,
671 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700673 ethernet_arp_main_t *am = &ethernet_arp_main;
674 ip4_address_t *address = address_arg;
675 uword *p;
676 pending_resolution_t *pr;
677
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678 pool_get (am->pending_resolutions, pr);
679
680 pr->next_index = ~0;
681 pr->node_index = node_index;
682 pr->type_opaque = type_opaque;
683 pr->data = data;
684 pr->data_callback = 0;
685
686 p = hash_get (am->pending_resolutions_by_address, address->as_u32);
687 if (p)
688 {
689 /* Insert new resolution at the head of the list */
690 pr->next_index = p[0];
691 hash_unset (am->pending_resolutions_by_address, address->as_u32);
692 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700693
694 hash_set (am->pending_resolutions_by_address, address->as_u32,
695 pr - am->pending_resolutions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696}
697
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700698int
699vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
700 void *data_callback,
701 u32 pid,
702 void *address_arg,
703 uword node_index,
704 uword type_opaque, uword data, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700706 ethernet_arp_main_t *am = &ethernet_arp_main;
707 ip4_address_t *address = address_arg;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700708
Eyal Bari8db1de82017-03-31 02:15:17 +0300709 /* Try to find an existing entry */
710 u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
711 u32 *p = first;
712 pending_resolution_t *mc;
713 while (p && *p != ~0)
714 {
715 mc = pool_elt_at_index (am->mac_changes, *p);
716 if (mc->node_index == node_index && mc->type_opaque == type_opaque
717 && mc->pid == pid)
718 break;
719 p = &mc->next_index;
720 }
721
722 int found = p && *p != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 if (is_add)
724 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300725 if (found)
726 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
727
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728 pool_get (am->mac_changes, mc);
Eyal Bari8db1de82017-03-31 02:15:17 +0300729 *mc = (pending_resolution_t)
730 {
731 .next_index = ~0,.node_index = node_index,.type_opaque =
732 type_opaque,.data = data,.data_callback = data_callback,.pid =
733 pid,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734
Eyal Bari8db1de82017-03-31 02:15:17 +0300735 /* Insert new resolution at the end of the list */
736 u32 new_idx = mc - am->mac_changes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737 if (p)
Eyal Bari8db1de82017-03-31 02:15:17 +0300738 p[0] = new_idx;
739 else
740 hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741 }
742 else
743 {
Eyal Bari8db1de82017-03-31 02:15:17 +0300744 if (!found)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700745 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746
Eyal Bari8db1de82017-03-31 02:15:17 +0300747 /* Clients may need to clean up pool entries, too */
748 void (*fp) (u32, u8 *) = data_callback;
749 if (fp)
750 (*fp) (mc->data, 0 /* no new mac addrs */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
Eyal Bari8db1de82017-03-31 02:15:17 +0300752 /* Remove the entry from the list and delete the entry */
753 *p = mc->next_index;
754 pool_put (am->mac_changes, mc);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700755
Eyal Bari8db1de82017-03-31 02:15:17 +0300756 /* Remove from hash if we deleted the last entry */
757 if (*p == ~0 && p == first)
758 hash_unset (am->mac_changes_by_address, address->as_u32);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759 }
Eyal Bari8db1de82017-03-31 02:15:17 +0300760 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761}
762
763/* Either we drop the packet or we send a reply to the sender. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700764typedef enum
765{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766 ARP_INPUT_NEXT_DROP,
John Lod1f5d042016-04-12 18:20:39 -0400767 ARP_INPUT_NEXT_REPLY_TX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768 ARP_INPUT_N_NEXT,
769} arp_input_next_t;
770
771#define foreach_ethernet_arp_error \
772 _ (replies_sent, "ARP replies sent") \
773 _ (l2_type_not_ethernet, "L2 type not ethernet") \
774 _ (l3_type_not_ip4, "L3 type not IP4") \
775 _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
776 _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
777 _ (l3_src_address_is_local, "IP4 source address matches local interface") \
778 _ (l3_src_address_learned, "ARP request IP4 source address learned") \
779 _ (replies_received, "ARP replies received") \
780 _ (opcode_not_request, "ARP opcode not request") \
781 _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
782 _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
783 _ (missing_interface_address, "ARP missing interface address") \
784 _ (gratuitous_arp, "ARP probe or announcement dropped") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100785 _ (interface_no_table, "Interface is not mapped to an IP table") \
Neale Rannsd96bad82017-03-08 01:12:54 -0800786 _ (interface_not_ip_enabled, "Interface is not IP enabled") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700788typedef enum
789{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790#define _(sym,string) ETHERNET_ARP_ERROR_##sym,
791 foreach_ethernet_arp_error
792#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700793 ETHERNET_ARP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794} ethernet_arp_input_error_t;
795
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700797static void
798unset_random_arp_entry (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700800 ethernet_arp_main_t *am = &ethernet_arp_main;
801 ethernet_arp_ip4_entry_t *e;
802 vnet_main_t *vnm = vnet_get_main ();
803 ethernet_arp_ip4_over_ethernet_address_t delme;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 u32 index;
805
806 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
807 am->arp_delete_rotor = index;
808
809 /* Try again from elt 0, could happen if an intfc goes down */
810 if (index == ~0)
811 {
812 index = pool_next_index (am->ip4_entry_pool, am->arp_delete_rotor);
813 am->arp_delete_rotor = index;
814 }
815
816 /* Nothing left in the pool */
817 if (index == ~0)
818 return;
819
820 e = pool_elt_at_index (am->ip4_entry_pool, index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700821
Damjan Marionf1213b82016-03-13 02:22:06 +0100822 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100823 delme.ip4.as_u32 = e->ip4_address.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700824
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100825 vnet_arp_unset_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700827
Neale Ranns436d06b2016-11-30 07:41:53 -0800828static int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700829arp_unnumbered (vlib_buffer_t * p0,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100830 u32 pi0, ethernet_header_t * eth0, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700832 vlib_main_t *vm = vlib_get_main ();
833 vnet_main_t *vnm = vnet_get_main ();
834 vnet_interface_main_t *vim = &vnm->interface_main;
835 vnet_sw_interface_t *si;
836 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 u32 unnum_src_sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700838 u32 *broadcast_swifs = 0;
839 u32 *buffers = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840 u32 n_alloc = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700841 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842 int i;
843 u8 dst_mac_address[6];
844 i16 header_size;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700845 ethernet_arp_header_t *arp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846
847 /* Save the dst mac address */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700848 clib_memcpy (dst_mac_address, eth0->dst_address, sizeof (dst_mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849
850 /* Figure out which sw_if_index supplied the address */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100851 unnum_src_sw_if_index = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852
853 /* Track down all users of the unnumbered source */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700854 /* *INDENT-OFF* */
855 pool_foreach (si, vim->sw_interfaces,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856 ({
857 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED &&
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700858 (si->unnumbered_sw_if_index == unnum_src_sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700860 vec_add1 (broadcast_swifs, si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861 }
862 }));
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700863 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
Neale Ranns436d06b2016-11-30 07:41:53 -0800865 /* If there are no interfaces un-unmbered to this interface,
866 we are done here. */
867 if (0 == vec_len (broadcast_swifs))
868 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869
870 /* Allocate buffering if we need it */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700871 if (vec_len (broadcast_swifs) > 1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700873 vec_validate (buffers, vec_len (broadcast_swifs) - 2);
874 n_alloc = vlib_buffer_alloc (vm, buffers, vec_len (buffers));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875 _vec_len (buffers) = n_alloc;
876 for (i = 0; i < n_alloc; i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700877 {
878 b0 = vlib_get_buffer (vm, buffers[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700880 /* xerox (partially built) ARP pkt */
881 clib_memcpy (b0->data, p0->data,
882 p0->current_length + p0->current_data);
883 b0->current_data = p0->current_data;
884 b0->current_length = p0->current_length;
885 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
886 vnet_buffer (p0)->sw_if_index[VLIB_RX];
887 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888 }
889
890 vec_insert (buffers, 1, 0);
891 buffers[0] = pi0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700892
893 for (i = 0; i < vec_len (buffers); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700895 b0 = vlib_get_buffer (vm, buffers[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700896 arp0 = vlib_buffer_get_current (b0);
897
898 hi = vnet_get_sup_hw_interface (vnm, broadcast_swifs[i]);
899 si = vnet_get_sw_interface (vnm, broadcast_swifs[i]);
900
901 /* For decoration, most likely */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700902 vnet_buffer (b0)->sw_if_index[VLIB_TX] = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903
904 /* Fix ARP pkt src address */
Damjan Marionf1213b82016-03-13 02:22:06 +0100905 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, hi->hw_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
907 /* Build L2 encaps for this swif */
908 header_size = sizeof (ethernet_header_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700909 if (si->sub.eth.flags.one_tag)
910 header_size += 4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911 else if (si->sub.eth.flags.two_tags)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700912 header_size += 8;
913
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914 vlib_buffer_advance (b0, -header_size);
915 eth0 = vlib_buffer_get_current (b0);
916
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700917 if (si->sub.eth.flags.one_tag)
918 {
919 ethernet_vlan_header_t *outer = (void *) (eth0 + 1);
920
921 eth0->type = si->sub.eth.flags.dot1ad ?
922 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
923 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
924 outer->priority_cfi_and_id =
925 clib_host_to_net_u16 (si->sub.eth.outer_vlan_id);
926 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
927
928 }
929 else if (si->sub.eth.flags.two_tags)
930 {
931 ethernet_vlan_header_t *outer = (void *) (eth0 + 1);
932 ethernet_vlan_header_t *inner = (void *) (outer + 1);
933
934 eth0->type = si->sub.eth.flags.dot1ad ?
935 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
936 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
937 outer->priority_cfi_and_id =
938 clib_host_to_net_u16 (si->sub.eth.outer_vlan_id);
939 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
940 inner->priority_cfi_and_id =
941 clib_host_to_net_u16 (si->sub.eth.inner_vlan_id);
942 inner->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
943
944 }
945 else
946 {
947 eth0->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
948 }
949
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950 /* Restore the original dst address, set src address */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700951 clib_memcpy (eth0->dst_address, dst_mac_address,
952 sizeof (eth0->dst_address));
953 clib_memcpy (eth0->src_address, hi->hw_address,
954 sizeof (eth0->src_address));
955
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 /* Transmit replicas */
957 if (i > 0)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700958 {
959 vlib_frame_t *f =
960 vlib_get_frame_to_node (vm, hi->output_node_index);
961 u32 *to_next = vlib_frame_vector_args (f);
962 to_next[0] = buffers[i];
963 f->n_vectors = 1;
964 vlib_put_frame_to_node (vm, hi->output_node_index, f);
965 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966 }
967
John Lod1f5d042016-04-12 18:20:39 -0400968 /* The regular path outputs the original pkt.. */
969 vnet_buffer (p0)->sw_if_index[VLIB_TX] = broadcast_swifs[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970
971 vec_free (broadcast_swifs);
972 vec_free (buffers);
Neale Ranns436d06b2016-11-30 07:41:53 -0800973
974 return !0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975}
976
977static uword
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700978arp_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700980 ethernet_arp_main_t *am = &ethernet_arp_main;
981 vnet_main_t *vnm = vnet_get_main ();
982 ip4_main_t *im4 = &ip4_main;
983 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984 u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
985
986 from = vlib_frame_vector_args (frame);
987 n_left_from = frame->n_vectors;
988 next_index = node->cached_next_index;
989
990 if (node->flags & VLIB_NODE_FLAG_TRACE)
991 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
992 /* stride */ 1,
993 sizeof (ethernet_arp_input_trace_t));
994
995 while (n_left_from > 0)
996 {
997 u32 n_left_to_next;
998
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700999 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000
1001 while (n_left_from > 0 && n_left_to_next > 0)
1002 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001003 vlib_buffer_t *p0;
1004 vnet_hw_interface_t *hw_if0;
1005 ethernet_arp_header_t *arp0;
1006 ethernet_header_t *eth0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001007 ip4_address_t *if_addr0, proxy_src;
1008 u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
1009 u8 is_request0, dst_is_local0, is_unnum0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001010 ethernet_proxy_arp_t *pa;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001011 fib_node_index_t dst_fei, src_fei;
1012 fib_prefix_t pfx0;
1013 fib_entry_flag_t src_flags, dst_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014
1015 pi0 = from[0];
1016 to_next[0] = pi0;
1017 from += 1;
1018 to_next += 1;
1019 n_left_from -= 1;
1020 n_left_to_next -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001021 pa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022
1023 p0 = vlib_get_buffer (vm, pi0);
1024 arp0 = vlib_buffer_get_current (p0);
1025
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001026 is_request0 = arp0->opcode
1027 == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028
1029 error0 = ETHERNET_ARP_ERROR_replies_sent;
1030
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001031 error0 =
1032 (arp0->l2_type !=
1033 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
1034 ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
1035 error0 =
1036 (arp0->l3_type !=
1037 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
1038 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039
1040 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1041
Neale Rannsd96bad82017-03-08 01:12:54 -08001042 /* not playing the ARP game if the interface is not IPv4 enabled */
1043 error0 =
1044 (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
1045 ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
1046
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047 if (error0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001048 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049
1050 /* Check that IP address is local and matches incoming interface. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001051 fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
1052 if (~0 == fib_index0)
1053 {
1054 error0 = ETHERNET_ARP_ERROR_interface_no_table;
1055 goto drop2;
1056
1057 }
1058 dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1059 &arp0->ip4_over_ethernet[1].ip4,
1060 32);
Matus Fabiandccbee32017-01-31 22:20:30 -08001061 dst_flags = fib_entry_get_flags (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001062
Neale Ranns4b919a52017-03-11 05:55:21 -08001063 src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1064 &arp0->ip4_over_ethernet[0].ip4,
1065 32);
1066 src_flags = fib_entry_get_flags (src_fei);
1067
Matus Fabiandccbee32017-01-31 22:20:30 -08001068 conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001069
1070 if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071 {
1072 error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1073 goto drop1;
1074 }
1075
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001076 /* Honor unnumbered interface, if any */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001077 is_unnum0 = sw_if_index0 != conn_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078
1079 /* Source must also be local to subnet of matching interface address. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001080 if (!((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
Neale Ranns797235a2017-01-09 14:33:38 +01001081 (FIB_ENTRY_FLAG_CONNECTED & src_flags)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001082 {
Neale Ranns797235a2017-01-09 14:33:38 +01001083 /*
1084 * The packet was sent from an address that is not connected nor attached
1085 * i.e. it is not from an address that is covered by a link's sub-net,
1086 * nor is it a already learned host resp.
1087 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001088 error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001089 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 }
Neale Ranns797235a2017-01-09 14:33:38 +01001091 if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1092 {
1093 /*
1094 * The interface the ARP was received on is not the interface
1095 * on which the covering prefix is configured. Maybe this is a case
1096 * for unnumbered.
1097 */
1098 is_unnum0 = 1;
1099 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100
1101 /* Reject requests/replies with our local interface address. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001102 if (FIB_ENTRY_FLAG_LOCAL & src_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001103 {
1104 error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001105 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106 }
1107
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001108 dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
1109 fib_entry_get_prefix (dst_fei, &pfx0);
1110 if_addr0 = &pfx0.fp_addr.ip4;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111
1112 /* Fill in ethernet header. */
1113 eth0 = ethernet_buffer_get_header (p0);
1114
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001115 /* Trash ARP packets whose ARP-level source addresses do not
1116 match their L2-frame-level source addresses */
1117 if (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
1118 sizeof (eth0->src_address)))
1119 {
1120 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1121 goto drop2;
1122 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123
1124 /* Learn or update sender's mapping only for requests or unicasts
1125 that don't match local interface address. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001126 if (ethernet_address_cast (eth0->dst_address) ==
1127 ETHERNET_ADDRESS_UNICAST || is_request0)
1128 {
1129 if (am->limit_arp_cache_size &&
1130 pool_elts (am->ip4_entry_pool) >= am->limit_arp_cache_size)
1131 unset_random_arp_entry ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001133 vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001134 &arp0->ip4_over_ethernet[0],
Neale Rannsb3b2de72017-03-08 05:17:22 -08001135 0 /* is_static */ , 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 error0 = ETHERNET_ARP_ERROR_l3_src_address_learned;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001137 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138
1139 /* Only send a reply for requests sent which match a local interface. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001140 if (!(is_request0 && dst_is_local0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001142 error0 =
1143 (arp0->opcode ==
1144 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply) ?
1145 ETHERNET_ARP_ERROR_replies_received : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 goto drop1;
1147 }
1148
1149 /* Send a reply. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001150 send_reply:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1152 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1153
John Lod1f5d042016-04-12 18:20:39 -04001154 /* Send reply back through input interface */
1155 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1156 next0 = ARP_INPUT_NEXT_REPLY_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001157
1158 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1159
1160 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1161
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001162 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1163 hw_if0->hw_address, 6);
1164 clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1165 if_addr0->data_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166
1167 /* Hardware must be ethernet-like. */
1168 ASSERT (vec_len (hw_if0->hw_address) == 6);
1169
Damjan Marionf1213b82016-03-13 02:22:06 +01001170 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
1171 clib_memcpy (eth0->src_address, hw_if0->hw_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001172
1173 /* Figure out how much to rewind current data from adjacency. */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001174 /* get the adj from the destination's covering connected */
1175 if (NULL == pa)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001176 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001177 if (is_unnum0)
Neale Ranns436d06b2016-11-30 07:41:53 -08001178 {
1179 if (!arp_unnumbered (p0, pi0, eth0, conn_sw_if_index0))
1180 goto drop2;
1181 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001182 else
Neale Ranns4b919a52017-03-11 05:55:21 -08001183 {
1184 ip_adjacency_t *adj0 = NULL;
1185 adj_index_t ai;
1186
1187 if (FIB_ENTRY_FLAG_ATTACHED & src_flags)
1188 {
1189 /*
1190 * If the source is attached use the adj from that source.
1191 */
1192 ai = fib_entry_get_adj (src_fei);
1193 if (ADJ_INDEX_INVALID != ai)
1194 {
1195 adj0 = adj_get (ai);
1196 }
1197 }
1198 else
1199 {
1200 /*
1201 * Get the glean adj from the cover. This is presumably interface
1202 * sourced, and therefre needs to be a glean adj.
1203 */
1204 ai = fib_entry_get_adj_for_source
1205 (ip4_fib_table_lookup
1206 (ip4_fib_get (fib_index0),
1207 &arp0->ip4_over_ethernet[1].ip4, 31),
1208 FIB_SOURCE_INTERFACE);
1209
1210 if (ADJ_INDEX_INVALID != ai)
1211 {
1212 adj0 = adj_get (ai);
1213
1214 if (adj0->lookup_next_index == IP_LOOKUP_NEXT_GLEAN)
1215 {
1216 adj0 = NULL;
1217 }
1218 }
1219 }
1220 if (NULL != adj0)
1221 {
1222 vlib_buffer_advance (p0,
1223 -adj0->rewrite_header.data_bytes);
1224 }
1225 else
1226 {
1227 error0 = ETHERNET_ARP_ERROR_missing_interface_address;
1228 goto drop2;
1229 }
1230 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001231 }
Neale Ranns4b919a52017-03-11 05:55:21 -08001232
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001233 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1234 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235
1236 n_replies_sent += 1;
1237 continue;
1238
1239 drop1:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001240 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
1241 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1242 arp0->ip4_over_ethernet[1].ip4.as_u32))
1243 {
1244 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1245 goto drop2;
1246 }
1247 /* See if proxy arp is configured for the address */
1248 if (is_request0)
1249 {
1250 vnet_sw_interface_t *si;
1251 u32 this_addr = clib_net_to_host_u32
1252 (arp0->ip4_over_ethernet[1].ip4.as_u32);
1253 u32 fib_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001254
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001255 si = vnet_get_sw_interface (vnm, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001256
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001257 if (!(si->flags & VNET_SW_INTERFACE_FLAG_PROXY_ARP))
1258 goto drop2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001260 fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1261 sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001262
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001263 vec_foreach (pa, am->proxy_arps)
1264 {
1265 u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr);
1266 u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001268 /* an ARP request hit in the proxy-arp table? */
1269 if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1270 (fib_index0 == pa->fib_index))
1271 {
1272 eth0 = ethernet_buffer_get_header (p0);
1273 proxy_src.as_u32 =
1274 arp0->ip4_over_ethernet[1].ip4.data_u32;
1275
Damjan Marion607de1a2016-08-16 22:53:54 +02001276 /*
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001277 * Rewind buffer, direct code above not to
Damjan Marion607de1a2016-08-16 22:53:54 +02001278 * think too hard about it.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001279 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001280 if_addr0 = &proxy_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001281 is_unnum0 = 0;
David Hotham62f88d82016-09-20 13:34:00 +00001282 i32 ethernet_start =
1283 vnet_buffer (p0)->ethernet.start_of_ethernet_header;
1284 i32 rewind = p0->current_data - ethernet_start;
1285 vlib_buffer_advance (p0, -rewind);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001286 n_proxy_arp_replies_sent++;
1287 goto send_reply;
1288 }
1289 }
1290 }
1291
1292 drop2:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293
1294 next0 = ARP_INPUT_NEXT_DROP;
1295 p0->error = node->errors[error0];
1296
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001297 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1298 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299 }
1300
1301 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1302 }
1303
1304 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001305 ETHERNET_ARP_ERROR_replies_sent,
1306 n_replies_sent - n_proxy_arp_replies_sent);
1307
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001309 ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1310 n_proxy_arp_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311 return frame->n_vectors;
1312}
1313
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001314static char *ethernet_arp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001315#define _(sym,string) string,
1316 foreach_ethernet_arp_error
1317#undef _
1318};
1319
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001320/* *INDENT-OFF* */
1321VLIB_REGISTER_NODE (arp_input_node, static) =
1322{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323 .function = arp_input,
1324 .name = "arp-input",
1325 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326 .n_errors = ETHERNET_ARP_N_ERROR,
1327 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328 .n_next_nodes = ARP_INPUT_N_NEXT,
1329 .next_nodes = {
1330 [ARP_INPUT_NEXT_DROP] = "error-drop",
John Lod1f5d042016-04-12 18:20:39 -04001331 [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001333 .format_buffer = format_ethernet_arp_header,
1334 .format_trace = format_ethernet_arp_input_trace,
1335};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001336/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337
Ed Warnickecb9cada2015-12-08 15:45:58 -07001338static int
1339ip4_arp_entry_sort (void *a1, void *a2)
1340{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001341 ethernet_arp_ip4_entry_t *e1 = a1;
1342 ethernet_arp_ip4_entry_t *e2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001343
1344 int cmp;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001345 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001346
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001347 cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001348 if (!cmp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001349 cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001350 return cmp;
1351}
1352
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001353ethernet_arp_ip4_entry_t *
1354ip4_neighbor_entries (u32 sw_if_index)
1355{
1356 ethernet_arp_main_t *am = &ethernet_arp_main;
1357 ethernet_arp_ip4_entry_t *n, *ns = 0;
1358
1359 /* *INDENT-OFF* */
1360 pool_foreach (n, am->ip4_entry_pool, ({
1361 if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1362 continue;
1363 vec_add1 (ns, n[0]);
1364 }));
1365 /* *INDENT-ON* */
1366
1367 if (ns)
1368 vec_sort_with_function (ns, ip4_arp_entry_sort);
1369 return ns;
1370}
1371
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372static clib_error_t *
1373show_ip4_arp (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001374 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001375{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001376 vnet_main_t *vnm = vnet_get_main ();
1377 ethernet_arp_main_t *am = &ethernet_arp_main;
1378 ethernet_arp_ip4_entry_t *e, *es;
1379 ethernet_proxy_arp_t *pa;
1380 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001381 u32 sw_if_index;
1382
1383 /* Filter entries by interface if given. */
1384 sw_if_index = ~0;
1385 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1386
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001387 es = ip4_neighbor_entries (sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001388 if (es)
Keith Wilescb466842016-02-11 19:21:10 -06001389 {
Keith Wilescb466842016-02-11 19:21:10 -06001390 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001391 vec_foreach (e, es)
1392 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001393 vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
Keith Wilescb466842016-02-11 19:21:10 -06001394 }
1395 vec_free (es);
1396 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001397
1398 if (vec_len (am->proxy_arps))
1399 {
1400 vlib_cli_output (vm, "Proxy arps enabled for:");
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001401 vec_foreach (pa, am->proxy_arps)
1402 {
1403 vlib_cli_output (vm, "Fib_index %d %U - %U ",
1404 pa->fib_index,
1405 format_ip4_address, &pa->lo_addr,
1406 format_ip4_address, &pa->hi_addr);
1407 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001409
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410 return error;
1411}
1412
Billy McFall2d085d92016-09-13 21:47:55 -04001413/*?
1414 * Display all the IPv4 ARP entries.
1415 *
1416 * @cliexpar
1417 * Example of how to display the IPv4 ARP table:
1418 * @cliexstart{show ip arp}
1419 * Time FIB IP4 Flags Ethernet Interface
1420 * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1421 * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1422 * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1423 * Proxy arps enabled for:
1424 * Fib_index 0 6.0.0.1 - 6.0.0.11
1425 * @cliexend
1426 ?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001427/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1429 .path = "show ip arp",
1430 .function = show_ip4_arp,
Billy McFall2d085d92016-09-13 21:47:55 -04001431 .short_help = "show ip arp",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001433/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001434
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001435typedef struct
1436{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437 pg_edit_t l2_type, l3_type;
1438 pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1439 pg_edit_t opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001440 struct
1441 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001442 pg_edit_t ethernet;
1443 pg_edit_t ip4;
1444 } ip4_over_ethernet[2];
1445} pg_ethernet_arp_header_t;
1446
1447static inline void
1448pg_ethernet_arp_header_init (pg_ethernet_arp_header_t * p)
1449{
1450 /* Initialize fields that are not bit fields in the IP header. */
1451#define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001452 _(l2_type);
1453 _(l3_type);
1454 _(n_l2_address_bytes);
1455 _(n_l3_address_bytes);
1456 _(opcode);
1457 _(ip4_over_ethernet[0].ethernet);
1458 _(ip4_over_ethernet[0].ip4);
1459 _(ip4_over_ethernet[1].ethernet);
1460 _(ip4_over_ethernet[1].ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001461#undef _
1462}
1463
1464uword
1465unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1466{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001467 pg_stream_t *s = va_arg (*args, pg_stream_t *);
1468 pg_ethernet_arp_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001469 u32 group_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001470
Ed Warnickecb9cada2015-12-08 15:45:58 -07001471 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1472 &group_index);
1473 pg_ethernet_arp_header_init (p);
1474
1475 /* Defaults. */
1476 pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1477 pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1478 pg_edit_set_fixed (&p->n_l2_address_bytes, 6);
1479 pg_edit_set_fixed (&p->n_l3_address_bytes, 4);
1480
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001481 if (!unformat (input, "%U: %U/%U -> %U/%U",
1482 unformat_pg_edit,
1483 unformat_ethernet_arp_opcode_net_byte_order, &p->opcode,
1484 unformat_pg_edit,
1485 unformat_ethernet_address, &p->ip4_over_ethernet[0].ethernet,
1486 unformat_pg_edit,
1487 unformat_ip4_address, &p->ip4_over_ethernet[0].ip4,
1488 unformat_pg_edit,
1489 unformat_ethernet_address, &p->ip4_over_ethernet[1].ethernet,
1490 unformat_pg_edit,
1491 unformat_ip4_address, &p->ip4_over_ethernet[1].ip4))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001492 {
1493 /* Free up any edits we may have added. */
1494 pg_free_edit_group (s);
1495 return 0;
1496 }
1497 return 1;
1498}
1499
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001500clib_error_t *
1501ip4_set_arp_limit (u32 arp_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001502{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001503 ethernet_arp_main_t *am = &ethernet_arp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504
1505 am->limit_arp_cache_size = arp_limit;
1506 return 0;
1507}
1508
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001509/**
1510 * @brief Control Plane hook to remove an ARP entry
1511 */
1512int
1513vnet_arp_unset_ip4_over_ethernet (vnet_main_t * vnm,
1514 u32 sw_if_index, void *a_arg)
Damjan Marion102ec522016-03-29 13:18:17 +02001515{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001516 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1517 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
Damjan Marion102ec522016-03-29 13:18:17 +02001518
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001519 args.sw_if_index = sw_if_index;
1520 args.flags = ETHERNET_ARP_ARGS_REMOVE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001521 clib_memcpy (&args.a, a, sizeof (*a));
1522
1523 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1524 (u8 *) & args, sizeof (args));
1525 return 0;
1526}
1527
1528/**
1529 * @brief Internally generated event to flush the ARP cache on an
1530 * interface state change event.
1531 * A flush will remove dynamic ARP entries, and for statics remove the MAC
1532 * address from the corresponding adjacencies.
1533 */
1534static int
1535vnet_arp_flush_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001536 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001537{
1538 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1539 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1540
1541 args.sw_if_index = sw_if_index;
1542 args.flags = ETHERNET_ARP_ARGS_FLUSH;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001543 clib_memcpy (&args.a, a, sizeof (*a));
1544
1545 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1546 (u8 *) & args, sizeof (args));
1547 return 0;
1548}
1549
1550/**
1551 * @brief Internally generated event to populate the ARP cache on an
1552 * interface state change event.
1553 * For static entries this will re-source the adjacencies.
1554 *
1555 * @param sw_if_index The interface on which the ARP entires are acted
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001556 */
1557static int
1558vnet_arp_populate_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +01001559 u32 sw_if_index, void *a_arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001560{
1561 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1562 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1563
1564 args.sw_if_index = sw_if_index;
1565 args.flags = ETHERNET_ARP_ARGS_POPULATE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001566 clib_memcpy (&args.a, a, sizeof (*a));
1567
1568 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1569 (u8 *) & args, sizeof (args));
1570 return 0;
1571}
1572
1573/*
1574 * arp_add_del_interface_address
1575 *
1576 * callback when an interface address is added or deleted
1577 */
1578static void
1579arp_add_del_interface_address (ip4_main_t * im,
1580 uword opaque,
1581 u32 sw_if_index,
1582 ip4_address_t * address,
1583 u32 address_length,
1584 u32 if_address_index, u32 is_del)
1585{
1586 /*
1587 * Flush the ARP cache of all entries covered by the address
1588 * that is being removed.
1589 */
1590 ethernet_arp_main_t *am = &ethernet_arp_main;
1591 ethernet_arp_ip4_entry_t *e;
1592
Neale Ranns177bbdc2016-11-15 09:46:51 +00001593 if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001594 return;
1595
1596 if (is_del)
Damjan Marion102ec522016-03-29 13:18:17 +02001597 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001598 ethernet_arp_interface_t *eai;
1599 u32 i, *to_delete = 0;
1600 hash_pair_t *pair;
1601
1602 eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1603
Neale Rannsb80c5362016-10-08 13:03:40 +01001604 /* *INDENT-OFF* */
1605 hash_foreach_pair (pair, eai->arp_entries,
1606 ({
1607 e = pool_elt_at_index(am->ip4_entry_pool,
1608 pair->value[0]);
1609 if (ip4_destination_matches_route (im, &e->ip4_address,
1610 address, address_length))
1611 {
1612 vec_add1 (to_delete, e - am->ip4_entry_pool);
1613 }
1614 }));
1615 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001616
1617 for (i = 0; i < vec_len (to_delete); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001618 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001619 ethernet_arp_ip4_over_ethernet_address_t delme;
1620 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1621
1622 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1623 delme.ip4.as_u32 = e->ip4_address.as_u32;
1624
1625 vnet_arp_flush_ip4_over_ethernet (vnet_get_main (),
Neale Rannsb80c5362016-10-08 13:03:40 +01001626 e->sw_if_index, &delme);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001627 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001628
1629 vec_free (to_delete);
Damjan Marion102ec522016-03-29 13:18:17 +02001630 }
1631}
1632
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001633static clib_error_t *
1634ethernet_arp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001635{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001636 ethernet_arp_main_t *am = &ethernet_arp_main;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001637 ip4_main_t *im = &ip4_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001638 clib_error_t *error;
1639 pg_node_t *pn;
Dave Barach1f49ed62016-02-24 11:29:06 -05001640
1641 if ((error = vlib_call_init_function (vm, ethernet_init)))
1642 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001643
1644 ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1645
1646 pn = pg_get_node (arp_input_node.index);
1647 pn->unformat_edit = unformat_pg_arp_header;
1648
1649 am->opcode_by_name = hash_create_string (0, sizeof (uword));
1650#define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1651 foreach_ethernet_arp_opcode;
1652#undef _
1653
Ed Warnickecb9cada2015-12-08 15:45:58 -07001654 /* $$$ configurable */
1655 am->limit_arp_cache_size = 50000;
1656
1657 am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1658 am->mac_changes_by_address = hash_create (0, sizeof (uword));
1659
1660 /* don't trace ARP error packets */
1661 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001662 vlib_node_runtime_t *rt =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001663 vlib_node_get_runtime (vm, arp_input_node.index);
1664
1665#define _(a,b) \
1666 vnet_pcap_drop_trace_filter_add_del \
1667 (rt->errors[ETHERNET_ARP_ERROR_##a], \
1668 1 /* is_add */);
1669 foreach_ethernet_arp_error
1670#undef _
1671 }
Damjan Marion102ec522016-03-29 13:18:17 +02001672
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001673 ip4_add_del_interface_address_callback_t cb;
1674 cb.function = arp_add_del_interface_address;
1675 cb.function_opaque = 0;
1676 vec_add1 (im->add_del_interface_address_callbacks, cb);
1677
Ed Warnickecb9cada2015-12-08 15:45:58 -07001678 return 0;
1679}
1680
1681VLIB_INIT_FUNCTION (ethernet_arp_init);
1682
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001683static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001684arp_entry_free (ethernet_arp_interface_t * eai, ethernet_arp_ip4_entry_t * e)
1685{
1686 ethernet_arp_main_t *am = &ethernet_arp_main;
1687
Neale Rannsb3b2de72017-03-08 05:17:22 -08001688 /* it's safe to delete the ADJ source on the FIB entry, even if it
1689 * was added */
Neale Rannsb80c5362016-10-08 13:03:40 +01001690 fib_table_entry_delete_index (e->fib_entry_index, FIB_SOURCE_ADJ);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001691 hash_unset (eai->arp_entries, e->ip4_address.as_u32);
1692 pool_put (am->ip4_entry_pool, e);
1693}
1694
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001695static inline int
Ed Warnickecb9cada2015-12-08 15:45:58 -07001696vnet_arp_unset_ip4_over_ethernet_internal (vnet_main_t * vnm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001697 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1698 * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001699{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001700 ethernet_arp_main_t *am = &ethernet_arp_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001701 ethernet_arp_ip4_entry_t *e;
1702 ethernet_arp_interface_t *eai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001703
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001704 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001705
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001706 e = arp_entry_find (eai, &args->a.ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001707
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001708 if (NULL != e)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001709 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001710 arp_entry_free (eai, e);
Neale Ranns19c68d22016-12-07 15:38:14 +00001711
1712 adj_nbr_walk_nh4 (e->sw_if_index,
1713 &e->ip4_address, arp_mk_incomplete_walk, NULL);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001714 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001715
Ed Warnickecb9cada2015-12-08 15:45:58 -07001716 return 0;
1717}
1718
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001719static int
1720vnet_arp_flush_ip4_over_ethernet_internal (vnet_main_t * vnm,
1721 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1722 * args)
1723{
1724 ethernet_arp_main_t *am = &ethernet_arp_main;
1725 ethernet_arp_ip4_entry_t *e;
1726 ethernet_arp_interface_t *eai;
1727
1728 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1729
1730 e = arp_entry_find (eai, &args->a.ip4);
1731
1732 if (NULL != e)
1733 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001734 adj_nbr_walk_nh4 (e->sw_if_index,
1735 &e->ip4_address, arp_mk_incomplete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001736
1737 /*
1738 * The difference between flush and unset, is that an unset
1739 * means delete for static and dynamic entries. A flush
1740 * means delete only for dynamic. Flushing is what the DP
1741 * does in response to interface events. unset is only done
1742 * by the control plane.
1743 */
Neale Rannsb80c5362016-10-08 13:03:40 +01001744 if (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001745 {
1746 arp_entry_free (eai, e);
1747 }
1748 }
1749 return (0);
1750}
1751
1752static int
1753vnet_arp_populate_ip4_over_ethernet_internal (vnet_main_t * vnm,
1754 vnet_arp_set_ip4_over_ethernet_rpc_args_t
1755 * args)
1756{
1757 ethernet_arp_main_t *am = &ethernet_arp_main;
1758 ethernet_arp_ip4_entry_t *e;
1759 ethernet_arp_interface_t *eai;
1760
1761 eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1762
1763 e = arp_entry_find (eai, &args->a.ip4);
1764
1765 if (NULL != e)
1766 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001767 adj_nbr_walk_nh4 (e->sw_if_index,
1768 &e->ip4_address, arp_mk_complete_walk, e);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001769 }
1770 return (0);
1771}
1772
1773static void
1774set_ip4_over_ethernet_rpc_callback (vnet_arp_set_ip4_over_ethernet_rpc_args_t
1775 * a)
1776{
1777 vnet_main_t *vm = vnet_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001778 ASSERT (vlib_get_thread_index () == 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001779
1780 if (a->flags & ETHERNET_ARP_ARGS_REMOVE)
1781 vnet_arp_unset_ip4_over_ethernet_internal (vm, a);
1782 else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1783 vnet_arp_flush_ip4_over_ethernet_internal (vm, a);
1784 else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1785 vnet_arp_populate_ip4_over_ethernet_internal (vm, a);
1786 else
1787 vnet_arp_set_ip4_over_ethernet_internal (vm, a);
1788}
1789
1790/**
1791 * @brief Invoked when the interface's admin state changes
1792 */
1793static clib_error_t *
1794ethernet_arp_sw_interface_up_down (vnet_main_t * vnm,
1795 u32 sw_if_index, u32 flags)
1796{
1797 ethernet_arp_main_t *am = &ethernet_arp_main;
1798 ethernet_arp_ip4_entry_t *e;
1799 u32 i, *to_delete = 0;
1800
1801 /* *INDENT-OFF* */
1802 pool_foreach (e, am->ip4_entry_pool,
1803 ({
1804 if (e->sw_if_index == sw_if_index)
Neale Rannsb80c5362016-10-08 13:03:40 +01001805 vec_add1 (to_delete,
1806 e - am->ip4_entry_pool);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001807 }));
1808 /* *INDENT-ON* */
1809
1810 for (i = 0; i < vec_len (to_delete); i++)
1811 {
1812 ethernet_arp_ip4_over_ethernet_address_t delme;
1813 e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1814
1815 clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1816 delme.ip4.as_u32 = e->ip4_address.as_u32;
1817
1818 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1819 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001820 vnet_arp_populate_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001821 }
1822 else
1823 {
Neale Rannsb80c5362016-10-08 13:03:40 +01001824 vnet_arp_flush_ip4_over_ethernet (vnm, e->sw_if_index, &delme);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001825 }
1826
1827 }
1828 vec_free (to_delete);
1829
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001830 return 0;
1831}
1832
1833VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_arp_sw_interface_up_down);
1834
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001835static void
1836increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001837{
1838 u8 old;
1839 int i;
1840
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001841 for (i = 3; i >= 0; i--)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001842 {
1843 old = a->ip4.as_u8[i];
1844 a->ip4.as_u8[i] += 1;
1845 if (old < a->ip4.as_u8[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001846 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001847 }
1848
1849 for (i = 5; i >= 0; i--)
1850 {
1851 old = a->ethernet[i];
1852 a->ethernet[i] += 1;
1853 if (old < a->ethernet[i])
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001854 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001855 }
1856}
1857
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001858int
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001859vnet_arp_set_ip4_over_ethernet (vnet_main_t * vnm,
Neale Rannsb3b2de72017-03-08 05:17:22 -08001860 u32 sw_if_index, void *a_arg,
1861 int is_static, int is_no_fib_entry)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001862{
1863 ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1864 vnet_arp_set_ip4_over_ethernet_rpc_args_t args;
1865
1866 args.sw_if_index = sw_if_index;
1867 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001868 args.is_no_fib_entry = is_no_fib_entry;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001869 args.flags = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001870 clib_memcpy (&args.a, a, sizeof (*a));
1871
1872 vl_api_rpc_call_main_thread (set_ip4_over_ethernet_rpc_callback,
1873 (u8 *) & args, sizeof (args));
1874 return 0;
1875}
1876
1877int
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001878vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
1879 ip4_address_t * hi_addr, u32 fib_index, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001880{
1881 ethernet_arp_main_t *am = &ethernet_arp_main;
1882 ethernet_proxy_arp_t *pa;
1883 u32 found_at_index = ~0;
1884
1885 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001886 {
1887 if (pa->lo_addr == lo_addr->as_u32
1888 && pa->hi_addr == hi_addr->as_u32 && pa->fib_index == fib_index)
1889 {
1890 found_at_index = pa - am->proxy_arps;
1891 break;
1892 }
1893 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001894
1895 if (found_at_index != ~0)
1896 {
1897 /* Delete, otherwise it's already in the table */
1898 if (is_del)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001899 vec_delete (am->proxy_arps, 1, found_at_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001900 return 0;
1901 }
1902 /* delete, no such entry */
1903 if (is_del)
1904 return VNET_API_ERROR_NO_SUCH_ENTRY;
1905
1906 /* add, not in table */
1907 vec_add2 (am->proxy_arps, pa, 1);
1908 pa->lo_addr = lo_addr->as_u32;
1909 pa->hi_addr = hi_addr->as_u32;
1910 pa->fib_index = fib_index;
1911 return 0;
1912}
1913
1914/*
Damjan Marion607de1a2016-08-16 22:53:54 +02001915 * Remove any proxy arp entries asdociated with the
Ed Warnickecb9cada2015-12-08 15:45:58 -07001916 * specificed fib.
1917 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001918int
1919vnet_proxy_arp_fib_reset (u32 fib_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001920{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001921 ethernet_arp_main_t *am = &ethernet_arp_main;
1922 ethernet_proxy_arp_t *pa;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001923 u32 *entries_to_delete = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001924 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001925 int i;
1926
Neale Ranns107e7d42017-04-11 09:55:19 -07001927 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
1928 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001929 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001930
1931 vec_foreach (pa, am->proxy_arps)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001932 {
1933 if (pa->fib_index == fib_index)
1934 {
1935 vec_add1 (entries_to_delete, pa - am->proxy_arps);
1936 }
1937 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001938
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001939 for (i = 0; i < vec_len (entries_to_delete); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001940 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001941 vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
1942 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001943
1944 vec_free (entries_to_delete);
1945
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001946 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001947}
1948
1949static clib_error_t *
1950ip_arp_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001951 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001953 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001954 u32 sw_if_index;
1955 ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
1956 int addr_valid = 0;
1957 int is_del = 0;
1958 int count = 1;
1959 u32 fib_index = 0;
1960 u32 fib_id;
1961 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001962 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001963 int is_proxy = 0;
1964
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001965 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001966 {
1967 /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
1968 if (unformat (input, "%U %U %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001969 unformat_vnet_sw_interface, vnm, &sw_if_index,
1970 unformat_ip4_address, &addr.ip4,
1971 unformat_ethernet_address, &addr.ethernet))
1972 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001973
1974 else if (unformat (input, "delete") || unformat (input, "del"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001975 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001976
1977 else if (unformat (input, "static"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001978 is_static = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001979
Neale Rannsb3b2de72017-03-08 05:17:22 -08001980 else if (unformat (input, "no-fib-entry"))
1981 is_no_fib_entry = 1;
1982
Ed Warnickecb9cada2015-12-08 15:45:58 -07001983 else if (unformat (input, "count %d", &count))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001984 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001985
1986 else if (unformat (input, "fib-id %d", &fib_id))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001987 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001988 fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
1989
1990 if (~0 == fib_index)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001991 return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001992 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001993
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001994 else if (unformat (input, "proxy %U - %U",
1995 unformat_ip4_address, &lo_addr.ip4,
1996 unformat_ip4_address, &hi_addr.ip4))
1997 is_proxy = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001998 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001999 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002000 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002001
Ed Warnickecb9cada2015-12-08 15:45:58 -07002002 if (is_proxy)
2003 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002004 (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2005 fib_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002006 return 0;
2007 }
2008
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002009 if (addr_valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002010 {
2011 int i;
2012
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002013 for (i = 0; i < count; i++)
2014 {
2015 if (is_del == 0)
2016 {
2017 uword event_type, *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002018
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002019 /* Park the debug CLI until the arp entry is installed */
2020 vnet_register_ip4_arp_resolution_event
2021 (vnm, &addr.ip4, vlib_current_process (vm),
2022 1 /* type */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002023
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002024 vnet_arp_set_ip4_over_ethernet
Neale Rannsb3b2de72017-03-08 05:17:22 -08002025 (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002026
2027 vlib_process_wait_for_event (vm);
2028 event_type = vlib_process_get_events (vm, &event_data);
2029 vec_reset_length (event_data);
2030 if (event_type != 1)
2031 clib_warning ("event type %d unexpected", event_type);
2032 }
2033 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002034 vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002035
2036 increment_ip4_and_mac_address (&addr);
2037 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002038 }
2039 else
2040 {
2041 return clib_error_return (0, "unknown input `%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002042 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002043 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002044
Ed Warnickecb9cada2015-12-08 15:45:58 -07002045 return 0;
2046}
2047
Neale Rannsb80c5362016-10-08 13:03:40 +01002048/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002049/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002050 * Add or delete IPv4 ARP cache entries.
2051 *
2052 * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2053 * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2054 * any order and combination.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002055 *
2056 * @cliexpar
Billy McFall2d085d92016-09-13 21:47:55 -04002057 * @parblock
2058 * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2059 * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2060 * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2061 * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2062 *
2063 * To add or delete an IPv4 ARP cache entry to or from a specific fib
2064 * table:
2065 * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2066 * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2067 *
2068 * Add or delete IPv4 static ARP cache entries as follows:
2069 * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2070 * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2071 *
2072 * For testing / debugging purposes, the 'set ip arp' command can add or
2073 * delete multiple entries. Supply the 'count N' parameter:
2074 * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2075 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002076 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002077VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002078 .path = "set ip arp",
2079 .short_help =
Neale Rannsb3b2de72017-03-08 05:17:22 -08002080 "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 -07002081 .function = ip_arp_add_del_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002082};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002083/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002084
2085static clib_error_t *
2086set_int_proxy_arp_command_fn (vlib_main_t * vm,
Neale Rannsb80c5362016-10-08 13:03:40 +01002087 unformat_input_t *
2088 input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002090 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002091 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002092 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002093 int enable = 0;
2094 int intfc_set = 0;
2095
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002096 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002097 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002098 if (unformat (input, "%U", unformat_vnet_sw_interface,
2099 vnm, &sw_if_index))
2100 intfc_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002101 else if (unformat (input, "enable") || unformat (input, "on"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002102 enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002103 else if (unformat (input, "disable") || unformat (input, "off"))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002104 enable = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002105 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002106 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002107 }
2108
2109 if (intfc_set == 0)
2110 return clib_error_return (0, "unknown input '%U'",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002111 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002112
2113 si = vnet_get_sw_interface (vnm, sw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002114 ASSERT (si);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002115 if (enable)
2116 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002117 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07002118 si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002119
Ed Warnickecb9cada2015-12-08 15:45:58 -07002120 return 0;
2121}
2122
Neale Rannsb80c5362016-10-08 13:03:40 +01002123/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002124/*?
Billy McFall2d085d92016-09-13 21:47:55 -04002125 * Enable proxy-arp on an interface. The vpp stack will answer ARP
2126 * requests for the indicated address range. Multiple proxy-arp
2127 * ranges may be provisioned.
2128 *
2129 * @note Proxy ARP as a technology is infamous for blackholing traffic.
2130 * Also, the underlying implementation has not been performance-tuned.
2131 * Avoid creating an unnecessarily large set of ranges.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002132 *
2133 * @cliexpar
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002134 * To enable proxy arp on a range of addresses, use:
Billy McFall2d085d92016-09-13 21:47:55 -04002135 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2136 * Append 'del' to delete a range of proxy ARP addresses:
2137 * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2138 * You must then specifically enable proxy arp on individual interfaces:
2139 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2140 * To disable proxy arp on an individual interface:
2141 * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07002142 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002143VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002144 .path = "set interface proxy-arp",
2145 .short_help =
Neale Rannsb80c5362016-10-08 13:03:40 +01002146 "set interface proxy-arp <intfc> [enable|disable]",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002147 .function = set_int_proxy_arp_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002148};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002149/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002150
2151
2152/*
John Lo1edfba92016-08-27 01:11:57 -04002153 * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2154 * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002155 */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002156typedef enum
2157{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002158 ARP_TERM_NEXT_L2_OUTPUT,
2159 ARP_TERM_NEXT_DROP,
2160 ARP_TERM_N_NEXT,
2161} arp_term_next_t;
2162
2163u32 arp_term_next_node_index[32];
2164
2165static uword
2166arp_term_l2bd (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002167 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002168{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002169 l2input_main_t *l2im = &l2input_main;
2170 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002171 u32 n_replies_sent = 0;
2172 u16 last_bd_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002173 l2_bridge_domain_t *last_bd_config = 0;
2174 l2_input_config_t *cfg0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002175
2176 from = vlib_frame_vector_args (frame);
2177 n_left_from = frame->n_vectors;
2178 next_index = node->cached_next_index;
2179
2180 while (n_left_from > 0)
2181 {
2182 u32 n_left_to_next;
2183
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002184 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002185
2186 while (n_left_from > 0 && n_left_to_next > 0)
2187 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002188 vlib_buffer_t *p0;
2189 ethernet_header_t *eth0;
2190 ethernet_arp_header_t *arp0;
John Lo1edfba92016-08-27 01:11:57 -04002191 ip6_header_t *iph0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002192 u8 *l3h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002193 u32 pi0, error0, next0, sw_if_index0;
2194 u16 ethertype0;
2195 u16 bd_index0;
2196 u32 ip0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002197 u8 *macp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002198
2199 pi0 = from[0];
2200 to_next[0] = pi0;
2201 from += 1;
2202 to_next += 1;
2203 n_left_from -= 1;
2204 n_left_to_next -= 1;
2205
2206 p0 = vlib_get_buffer (vm, pi0);
Eyal Baria0623f82017-03-30 03:05:06 +03002207 // Terminate only local (SHG == 0) ARP
2208 if (vnet_buffer (p0)->l2.shg != 0)
2209 goto next_l2_feature;
2210
Ed Warnickecb9cada2015-12-08 15:45:58 -07002211 eth0 = vlib_buffer_get_current (p0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002212 l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2213 ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002214 arp0 = (ethernet_arp_header_t *) l3h0;
2215
John Lo1edfba92016-08-27 01:11:57 -04002216 if (PREDICT_FALSE ((ethertype0 != ETHERNET_TYPE_ARP) ||
2217 (arp0->opcode !=
2218 clib_host_to_net_u16
2219 (ETHERNET_ARP_OPCODE_request))))
2220 goto check_ip6_nd;
2221
2222 /* Must be ARP request packet here */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2224 (p0->flags & VLIB_BUFFER_IS_TRACED)))
2225 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002226 u8 *t0 = vlib_add_trace (vm, node, p0,
2227 sizeof (ethernet_arp_input_trace_t));
2228 clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002229 }
2230
Ed Warnickecb9cada2015-12-08 15:45:58 -07002231 error0 = ETHERNET_ARP_ERROR_replies_sent;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002232 error0 =
2233 (arp0->l2_type !=
Neale Rannsb80c5362016-10-08 13:03:40 +01002234 clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2235 ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002236 error0 =
2237 (arp0->l3_type !=
2238 clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2239 ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002240
2241 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2242
2243 if (error0)
2244 goto drop;
2245
John Lo1edfba92016-08-27 01:11:57 -04002246 /* Trash ARP packets whose ARP-level source addresses do not
2247 match their L2-frame-level source addresses */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002248 if (PREDICT_FALSE
2249 (memcmp
2250 (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
2251 sizeof (eth0->src_address))))
2252 {
2253 error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2254 goto drop;
2255 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002256
John Lo1edfba92016-08-27 01:11:57 -04002257 /* Check if anyone want ARP request events for L2 BDs */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002258 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002259 pending_resolution_t *mc;
2260 ethernet_arp_main_t *am = &ethernet_arp_main;
2261 uword *p = hash_get (am->mac_changes_by_address, 0);
Eyal Baria0623f82017-03-30 03:05:06 +03002262 if (p)
2263 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002264 u32 next_index = p[0];
2265 while (next_index != (u32) ~ 0)
2266 {
2267 int (*fp) (u32, u8 *, u32, u32);
2268 int rv = 1;
2269 mc = pool_elt_at_index (am->mac_changes, next_index);
2270 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -04002271 /* Call the callback, return 1 to suppress dup events */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002272 if (fp)
2273 rv = (*fp) (mc->data,
2274 arp0->ip4_over_ethernet[0].ethernet,
2275 sw_if_index0,
2276 arp0->ip4_over_ethernet[0].ip4.as_u32);
John Lo1edfba92016-08-27 01:11:57 -04002277 /* Signal the resolver process */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002278 if (rv == 0)
2279 vlib_process_signal_event (vm, mc->node_index,
2280 mc->type_opaque, mc->data);
2281 next_index = mc->next_index;
2282 }
2283 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002284 }
2285
John Lo1edfba92016-08-27 01:11:57 -04002286 /* lookup BD mac_by_ip4 hash table for MAC entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002287 ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002288 bd_index0 = vnet_buffer (p0)->l2.bd_index;
2289 if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2290 || (last_bd_index == (u16) ~ 0)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002291 {
2292 last_bd_index = bd_index0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002293 last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002294 }
2295 macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2296
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002297 if (PREDICT_FALSE (!macp0))
John Lo1edfba92016-08-27 01:11:57 -04002298 goto next_l2_feature; /* MAC not found */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002299
John Lo1edfba92016-08-27 01:11:57 -04002300 /* MAC found, send ARP reply -
2301 Convert ARP request packet to ARP reply */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002302 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2303 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2304 arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
Damjan Marionf1213b82016-03-13 02:22:06 +01002305 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2306 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2307 clib_memcpy (eth0->src_address, macp0, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002308 n_replies_sent += 1;
2309
John Lo1edfba92016-08-27 01:11:57 -04002310 output_response:
2311 /* For BVI, need to use l2-fwd node to send ARP reply as
2312 l2-output node cannot output packet to BVI properly */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002313 cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002314 if (PREDICT_FALSE (cfg0->bvi))
2315 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002316 vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002317 vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2318 goto next_l2_feature;
2319 }
2320
John Lo1edfba92016-08-27 01:11:57 -04002321 /* Send ARP/ND reply back out input interface through l2-output */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002322 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2323 next0 = ARP_TERM_NEXT_L2_OUTPUT;
Neale Rannsb80c5362016-10-08 13:03:40 +01002324 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2325 to_next, n_left_to_next, pi0,
2326 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002327 continue;
2328
John Lo1edfba92016-08-27 01:11:57 -04002329 check_ip6_nd:
2330 /* IP6 ND event notification or solicitation handling to generate
2331 local response instead of flooding */
2332 iph0 = (ip6_header_t *) l3h0;
2333 if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2334 iph0->protocol == IP_PROTOCOL_ICMP6 &&
John Lo1edfba92016-08-27 01:11:57 -04002335 !ip6_address_is_unspecified
2336 (&iph0->src_address)))
2337 {
2338 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Rannsb80c5362016-10-08 13:03:40 +01002339 if (vnet_ip6_nd_term
2340 (vm, node, p0, eth0, iph0, sw_if_index0,
Eyal Baria0623f82017-03-30 03:05:06 +03002341 vnet_buffer (p0)->l2.bd_index))
John Lo1edfba92016-08-27 01:11:57 -04002342 goto output_response;
2343 }
2344
Ed Warnickecb9cada2015-12-08 15:45:58 -07002345 next_l2_feature:
2346 {
2347 u32 feature_bitmap0 =
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002348 vnet_buffer (p0)->l2.feature_bitmap & ~L2INPUT_FEAT_ARP_TERM;
2349 vnet_buffer (p0)->l2.feature_bitmap = feature_bitmap0;
Neale Rannsb80c5362016-10-08 13:03:40 +01002350 next0 =
2351 feat_bitmap_get_next_node_index (arp_term_next_node_index,
2352 feature_bitmap0);
2353 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2354 to_next, n_left_to_next,
2355 pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002356 continue;
2357 }
2358
2359 drop:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002360 if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2361 (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2362 arp0->ip4_over_ethernet[1].ip4.as_u32))
2363 {
2364 error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2365 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002366 next0 = ARP_TERM_NEXT_DROP;
2367 p0->error = node->errors[error0];
2368
Neale Rannsb80c5362016-10-08 13:03:40 +01002369 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2370 to_next, n_left_to_next, pi0,
2371 next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002372 }
2373
2374 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2375 }
2376
2377 vlib_error_count (vm, node->node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002378 ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002379 return frame->n_vectors;
2380}
2381
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002382/* *INDENT-OFF* */
2383VLIB_REGISTER_NODE (arp_term_l2bd_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002384 .function = arp_term_l2bd,
2385 .name = "arp-term-l2bd",
2386 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002387 .n_errors = ETHERNET_ARP_N_ERROR,
2388 .error_strings = ethernet_arp_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002389 .n_next_nodes = ARP_TERM_N_NEXT,
2390 .next_nodes = {
2391 [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2392 [ARP_TERM_NEXT_DROP] = "error-drop",
2393 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07002394 .format_buffer = format_ethernet_arp_header,
John Lo1edfba92016-08-27 01:11:57 -04002395 .format_trace = format_arp_term_input_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002396};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002397/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002398
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002399clib_error_t *
2400arp_term_init (vlib_main_t * vm)
Neale Rannsb80c5362016-10-08 13:03:40 +01002401{
2402 // Initialize the feature next-node indexes
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002403 feat_bitmap_init_next_nodes (vm,
2404 arp_term_l2bd_node.index,
2405 L2INPUT_N_FEAT,
2406 l2input_get_feat_names (),
2407 arp_term_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002408 return 0;
2409}
2410
2411VLIB_INIT_FUNCTION (arp_term_init);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002412
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002413void
2414change_arp_mac (u32 sw_if_index, ethernet_arp_ip4_entry_t * e)
2415{
2416 if (e->sw_if_index == sw_if_index)
2417 {
Neale Rannsb80c5362016-10-08 13:03:40 +01002418 adj_nbr_walk_nh4 (e->sw_if_index,
2419 &e->ip4_address, arp_mk_complete_walk, e);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002420 }
2421}
2422
2423void
Neale Ranns3be6b282016-12-20 14:24:01 +00002424ethernet_arp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002425{
2426 ethernet_arp_main_t *am = &ethernet_arp_main;
2427 ethernet_arp_ip4_entry_t *e;
2428
2429 /* *INDENT-OFF* */
2430 pool_foreach (e, am->ip4_entry_pool,
Neale Rannsb80c5362016-10-08 13:03:40 +01002431 ({
2432 change_arp_mac (sw_if_index, e);
2433 }));
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02002434 /* *INDENT-ON* */
2435}
2436
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07002437/*
2438 * fd.io coding-style-patch-verification: ON
2439 *
2440 * Local Variables:
2441 * eval: (c-set-style "gnu")
2442 * End:
2443 */