blob: a6227fc413addeae0761825cfa7d398175224e40 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ip/ip6_neighbor.c: IP6 neighbor handling
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>
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010019#include <vnet/ip/ip6_neighbor.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vnet/ethernet/ethernet.h>
21#include <vppinfra/mhash.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/adj/adj.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000023#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/fib/fib_table.h>
25#include <vnet/fib/ip6_fib.h>
Neale Ranns4008ac92017-02-13 23:20:04 -080026#include <vnet/mfib/ip6_mfib.h>
Neale Ranns53da2212018-02-24 02:11:19 -080027#include <vnet/ip/ip6_ll_table.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Billy McFall0683c9c2016-10-13 08:27:31 -040029/**
30 * @file
31 * @brief IPv6 Neighbor Adjacency and Neighbor Discovery.
32 *
33 * The files contains the API and CLI code for managing IPv6 neighbor
34 * adjacency tables and neighbor discovery logic.
35 */
36
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010037/* can't use sizeof link_layer_address, that's 8 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070038#define ETHER_MAC_ADDR_LEN 6
39
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010040/* advertised prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050041typedef struct
42{
Ed Warnickecb9cada2015-12-08 15:45:58 -070043 /* basic advertised information */
44 ip6_address_t prefix;
45 u8 prefix_len;
46 int adv_on_link_flag;
47 int adv_autonomous_flag;
48 u32 adv_valid_lifetime_in_secs;
49 u32 adv_pref_lifetime_in_secs;
50
51 /* advertised values are computed from these times if decrementing */
52 f64 valid_lifetime_expires;
Dave Barachd7cb1b52016-12-09 09:52:16 -050053 f64 pref_lifetime_expires;
54
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 /* local information */
56 int enabled;
57 int deprecated_prefix_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050058 int decrement_lifetime_flag;
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
60#define MIN_ADV_VALID_LIFETIME 7203 /* seconds */
61#define DEF_ADV_VALID_LIFETIME 2592000
62#define DEF_ADV_PREF_LIFETIME 604800
63
64 /* extensions are added here, mobile, DNS etc.. */
65} ip6_radv_prefix_t;
66
67
Dave Barachd7cb1b52016-12-09 09:52:16 -050068typedef struct
69{
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 /* group information */
71 u8 type;
72 ip6_address_t mcast_address;
73 u16 num_sources;
74 ip6_address_t *mcast_source_address_pool;
75} ip6_mldp_group_t;
76
77/* configured router advertisement information per ipv6 interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -050078typedef struct
79{
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
81 /* advertised config information, zero means unspecified */
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 u8 curr_hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 int adv_managed_flag;
84 int adv_other_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050085 u16 adv_router_lifetime_in_sec;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 u32 adv_neighbor_reachable_time_in_msec;
87 u32 adv_time_in_msec_between_retransmitted_neighbor_solicitations;
88
89 /* mtu option */
90 u32 adv_link_mtu;
Dave Barachd7cb1b52016-12-09 09:52:16 -050091
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 /* source link layer option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050093 u8 link_layer_address[8];
94 u8 link_layer_addr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
96 /* prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050097 ip6_radv_prefix_t *adv_prefixes_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 /* Hash table mapping address to index in interface advertised prefix pool. */
100 mhash_t address_to_prefix_index;
101
102 /* MLDP group information */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 ip6_mldp_group_t *mldp_group_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
105 /* Hash table mapping address to index in mldp address pool. */
106 mhash_t address_to_mldp_index;
107
108 /* local information */
109 u32 sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 int send_radv; /* radv on/off on this interface - set by config */
111 int cease_radv; /* we are ceasing to send - set byf config */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 int send_unicast;
113 int adv_link_layer_address;
114 int prefix_option;
115 int failed_device_check;
116 int all_routers_mcast;
117 u32 seed;
118 u64 randomizer;
119 int ref_count;
Neale Ranns32e1c012016-11-22 17:07:28 +0000120 adj_index_t mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500121
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 /* timing information */
123#define DEF_MAX_RADV_INTERVAL 200
124#define DEF_MIN_RADV_INTERVAL .75 * DEF_MAX_RADV_INTERVAL
125#define DEF_CURR_HOP_LIMIT 64
126#define DEF_DEF_RTR_LIFETIME 3 * DEF_MAX_RADV_INTERVAL
127#define MAX_DEF_RTR_LIFETIME 9000
128
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129#define MAX_INITIAL_RTR_ADVERT_INTERVAL 16 /* seconds */
130#define MAX_INITIAL_RTR_ADVERTISEMENTS 3 /*transmissions */
131#define MIN_DELAY_BETWEEN_RAS 3 /* seconds */
132#define MAX_DELAY_BETWEEN_RAS 1800 /* seconds */
133#define MAX_RA_DELAY_TIME .5 /* seconds */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134
135 f64 max_radv_interval;
136 f64 min_radv_interval;
137 f64 min_delay_between_radv;
138 f64 max_delay_between_radv;
139 f64 max_rtr_default_lifetime;
140
141 f64 last_radv_time;
142 f64 last_multicast_time;
143 f64 next_multicast_time;
144
145
146 u32 initial_adverts_count;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147 f64 initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 u32 initial_adverts_sent;
149
150 /* stats */
151 u32 n_advertisements_sent;
152 u32 n_solicitations_rcvd;
153 u32 n_solicitations_dropped;
154
155 /* Link local address to use (defaults to underlying physical for logical interfaces */
156 ip6_address_t link_local_address;
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100157
158 /* router solicitations sending state */
159 u8 keep_sending_rs; /* when true then next fields are valid */
160 icmp6_send_router_solicitation_params_t params;
161 f64 sleep_interval;
162 f64 due_time;
163 u32 n_left;
164 f64 start_time;
165 vlib_buffer_t *buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166} ip6_radv_t;
167
Dave Barachd7cb1b52016-12-09 09:52:16 -0500168typedef struct
169{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 u32 next_index;
171 uword node_index;
172 uword type_opaque;
173 uword data;
John Lo1edfba92016-08-27 01:11:57 -0400174 /* Used for nd event notification only */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500175 void *data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400176 u32 pid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177} pending_resolution_t;
178
179
Dave Barachd7cb1b52016-12-09 09:52:16 -0500180typedef struct
181{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182 /* Hash tables mapping name to opcode. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500183 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
185 /* lite beer "glean" adjacency handling */
186 mhash_t pending_resolutions_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500187 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
John Lo1edfba92016-08-27 01:11:57 -0400189 /* Mac address change notification */
190 mhash_t mac_changes_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191 pending_resolution_t *mac_changes;
John Lo1edfba92016-08-27 01:11:57 -0400192
Dave Barachd7cb1b52016-12-09 09:52:16 -0500193 u32 *neighbor_input_next_index_by_hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194
Dave Barachd7cb1b52016-12-09 09:52:16 -0500195 ip6_neighbor_t *neighbor_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
197 mhash_t neighbor_index_by_key;
198
Dave Barachd7cb1b52016-12-09 09:52:16 -0500199 u32 *if_radv_pool_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Dave Barachd7cb1b52016-12-09 09:52:16 -0500201 ip6_radv_t *if_radv_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
203 /* Neighbor attack mitigation */
204 u32 limit_neighbor_cache_size;
205 u32 neighbor_delete_rotor;
206
Eyal Baric125ecc2017-09-20 11:29:17 +0300207 /* Wildcard nd report publisher */
208 uword wc_ip6_nd_publisher_node;
209 uword wc_ip6_nd_publisher_et;
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100210
211 /* Router advertisement report publisher */
212 uword ip6_ra_publisher_node;
213 uword ip6_ra_publisher_et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214} ip6_neighbor_main_t;
215
Neale Ranns3f844d02017-02-18 00:03:54 -0800216/* ipv6 neighbor discovery - timer/event types */
217typedef enum
218{
219 ICMP6_ND_EVENT_INIT,
220} ip6_icmp_neighbor_discovery_event_type_t;
221
222typedef union
223{
224 u32 add_del_swindex;
225 struct
226 {
227 u32 up_down_swindex;
228 u32 fib_index;
229 } up_down_event;
230} ip6_icmp_neighbor_discovery_event_data_t;
231
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232static ip6_neighbor_main_t ip6_neighbor_main;
Juraj Sloboda52574522018-05-03 10:03:50 +0200233ip6_neighbor_public_main_t ip6_neighbor_public_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234static ip6_address_t ip6a_zero; /* ip6 address 0 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
Eyal Baric125ecc2017-09-20 11:29:17 +0300236static void wc_nd_signal_report (wc_nd_report_t * r);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100237static void ra_signal_report (ra_report_t * r);
Eyal Baric125ecc2017-09-20 11:29:17 +0300238
Juraj Sloboda81119e82018-05-25 14:02:20 +0200239ip6_address_t
240ip6_neighbor_get_link_local_address (u32 sw_if_index)
241{
242 static ip6_address_t empty_address = { {0} };
243 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
244 ip6_radv_t *radv_info;
245 u32 ri;
246
247 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
248 if (ri == ~0)
249 {
250 clib_warning ("IPv6 is not enabled for sw_if_index %d", sw_if_index);
251 return empty_address;
252 }
253 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
254 if (radv_info == NULL)
255 {
256 clib_warning ("Internal error");
257 return empty_address;
258 }
259 return radv_info->link_local_address;
260}
261
Eyal Baric125ecc2017-09-20 11:29:17 +0300262/**
263 * @brief publish wildcard arp event
264 * @param sw_if_index The interface on which the ARP entires are acted
265 */
266static int
267vnet_nd_wc_publish (u32 sw_if_index, u8 * mac, ip6_address_t * ip6)
268{
269 wc_nd_report_t r = {
270 .sw_if_index = sw_if_index,
271 .ip6 = *ip6,
272 };
273 memcpy (r.mac, mac, sizeof r.mac);
274
275 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
276 vl_api_rpc_call_main_thread (wc_nd_signal_report, (u8 *) & r, sizeof r);
277 return 0;
278}
279
280static void
281wc_nd_signal_report (wc_nd_report_t * r)
282{
283 vlib_main_t *vm = vlib_get_main ();
284 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
285 uword ni = nm->wc_ip6_nd_publisher_node;
286 uword et = nm->wc_ip6_nd_publisher_et;
287
288 if (ni == (uword) ~ 0)
289 return;
290 wc_nd_report_t *q =
291 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
292
293 *q = *r;
294}
295
296void
297wc_nd_set_publisher_node (uword node_index, uword event_type)
298{
299 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
300 nm->wc_ip6_nd_publisher_node = node_index;
301 nm->wc_ip6_nd_publisher_et = event_type;
302}
303
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100304static int
305ra_publish (ra_report_t * r)
306{
307 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
308 vl_api_rpc_call_main_thread (ra_signal_report, (u8 *) r, sizeof *r);
309 return 0;
310}
311
312static void
313ra_signal_report (ra_report_t * r)
314{
315 vlib_main_t *vm = vlib_get_main ();
316 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
317 uword ni = nm->ip6_ra_publisher_node;
318 uword et = nm->ip6_ra_publisher_et;
319
320 if (ni == (uword) ~ 0)
321 return;
322 ra_report_t *q = vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
323
324 *q = *r;
325}
326
327void
328ra_set_publisher_node (uword node_index, uword event_type)
329{
330 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
331 nm->ip6_ra_publisher_node = node_index;
332 nm->ip6_ra_publisher_et = event_type;
333}
334
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335static u8 *
336format_ip6_neighbor_ip6_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
339 ip6_neighbor_t *n = va_arg (*va, ip6_neighbor_t *);
340 vnet_main_t *vnm = vnet_get_main ();
341 vnet_sw_interface_t *si;
342 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344 if (!n)
Neale Ranns53da2212018-02-24 02:11:19 -0800345 return format (s, "%=12s%=25s%=6s%=20s%=40s", "Time", "Address", "Flags",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 "Link layer", "Interface");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100347
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348 if (n->flags & IP6_NEIGHBOR_FLAG_DYNAMIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 flags = format (flags, "D");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100350
351 if (n->flags & IP6_NEIGHBOR_FLAG_STATIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 flags = format (flags, "S");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
Neale Rannsb3b2de72017-03-08 05:17:22 -0800354 if (n->flags & IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY)
355 flags = format (flags, "N");
356
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357 si = vnet_get_sw_interface (vnm, n->key.sw_if_index);
Neale Ranns53da2212018-02-24 02:11:19 -0800358 s = format (s, "%=12U%=25U%=6s%=20U%=40U",
John Lo7f358b32018-04-28 01:19:24 -0400359 format_vlib_time, vm, n->time_last_updated,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 format_ip6_address, &n->key.ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 format_ethernet_address, n->link_layer_address,
363 format_vnet_sw_interface_name, vnm, si);
364
Dave Barachd7cb1b52016-12-09 09:52:16 -0500365 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 return s;
367}
368
Neale Ranns15002542017-09-10 04:39:11 -0700369static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700370ip6_neighbor_adj_fib_remove (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700371{
372 if (FIB_NODE_INDEX_INVALID != n->fib_entry_index)
373 {
Neale Ranns53da2212018-02-24 02:11:19 -0800374 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
375 {
376 ip6_ll_prefix_t pfx = {
377 .ilp_addr = n->key.ip6_address,
378 .ilp_sw_if_index = n->key.sw_if_index,
379 };
380 ip6_ll_table_entry_delete (&pfx);
381 }
382 else
383 {
384 fib_prefix_t pfx = {
385 .fp_len = 128,
386 .fp_proto = FIB_PROTOCOL_IP6,
387 .fp_addr.ip6 = n->key.ip6_address,
388 };
389 fib_table_entry_path_remove (fib_index,
390 &pfx,
391 FIB_SOURCE_ADJ,
392 DPO_PROTO_IP6,
393 &pfx.fp_addr,
394 n->key.sw_if_index, ~0,
395 1, FIB_ROUTE_PATH_FLAG_NONE);
396 }
Neale Ranns15002542017-09-10 04:39:11 -0700397 }
398}
399
Dave Barachd7cb1b52016-12-09 09:52:16 -0500400typedef struct
401{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 u8 is_add;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100403 u8 is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800404 u8 is_no_fib_entry;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 u8 link_layer_address[6];
406 u32 sw_if_index;
407 ip6_address_t addr;
408} ip6_neighbor_set_unset_rpc_args_t;
409
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410static void ip6_neighbor_set_unset_rpc_callback
411 (ip6_neighbor_set_unset_rpc_args_t * a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413static void set_unset_ip6_neighbor_rpc
414 (vlib_main_t * vm,
415 u32 sw_if_index,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800416 ip6_address_t * a, u8 * link_layer_address, int is_add, int is_static,
417 int is_no_fib_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418{
419 ip6_neighbor_set_unset_rpc_args_t args;
Dave Barachf9bd6202015-12-14 13:22:11 -0500420 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500421
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 args.sw_if_index = sw_if_index;
423 args.is_add = is_add;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100424 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800425 args.is_no_fib_entry = is_no_fib_entry;
Damjan Marionf1213b82016-03-13 02:22:06 +0100426 clib_memcpy (&args.addr, a, sizeof (*a));
Neale Ranns3f844d02017-02-18 00:03:54 -0800427 if (NULL != link_layer_address)
428 clib_memcpy (args.link_layer_address, link_layer_address, 6);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500429
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 vl_api_rpc_call_main_thread (ip6_neighbor_set_unset_rpc_callback,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500431 (u8 *) & args, sizeof (args));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100434static void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500435ip6_nbr_probe (ip_adjacency_t * adj)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100436{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500437 icmp6_neighbor_solicitation_header_t *h;
438 vnet_main_t *vnm = vnet_get_main ();
439 ip6_main_t *im = &ip6_main;
440 ip_interface_address_t *ia;
441 ip6_address_t *dst, *src;
442 vnet_hw_interface_t *hi;
443 vnet_sw_interface_t *si;
444 vlib_buffer_t *b;
Neale Rannsb80c5362016-10-08 13:03:40 +0100445 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500446 vlib_main_t *vm;
Neale Rannsb80c5362016-10-08 13:03:40 +0100447 u32 bi = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100448
Dave Barachd7cb1b52016-12-09 09:52:16 -0500449 vm = vlib_get_main ();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100450
Dave Barachd7cb1b52016-12-09 09:52:16 -0500451 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100452 dst = &adj->sub_type.nbr.next_hop.ip6;
453
454 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100455 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100456 return;
457 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500458 src = ip6_interface_address_matching_destination (im, dst,
459 adj->rewrite_header.
460 sw_if_index, &ia);
461 if (!src)
Neale Rannsb80c5362016-10-08 13:03:40 +0100462 {
463 return;
464 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100465
Dave Barachd7cb1b52016-12-09 09:52:16 -0500466 h = vlib_packet_template_get_packet (vm,
467 &im->discover_neighbor_packet_template,
468 &bi);
John Lo084606b2018-06-19 15:27:48 -0400469 if (!h)
470 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100471
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100473
474 h->ip.dst_address.as_u8[13] = dst->as_u8[13];
475 h->ip.dst_address.as_u8[14] = dst->as_u8[14];
476 h->ip.dst_address.as_u8[15] = dst->as_u8[15];
477 h->ip.src_address = src[0];
478 h->neighbor.target_address = dst[0];
479
480 clib_memcpy (h->link_layer_option.ethernet_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500481 hi->hw_address, vec_len (hi->hw_address));
Neale Rannsb80c5362016-10-08 13:03:40 +0100482
483 h->neighbor.icmp.checksum =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500484 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
485 ASSERT (bogus_length == 0);
Neale Rannsb80c5362016-10-08 13:03:40 +0100486
487 b = vlib_get_buffer (vm, bi);
488 vnet_buffer (b)->sw_if_index[VLIB_RX] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100490
491 /* Add encapsulation string for software interface (e.g. ethernet header). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
493 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
Neale Rannsb80c5362016-10-08 13:03:40 +0100494
495 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500496 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
497 u32 *to_next = vlib_frame_vector_args (f);
498 to_next[0] = bi;
499 f->n_vectors = 1;
500 vlib_put_frame_to_node (vm, hi->output_node_index, f);
Neale Rannsb80c5362016-10-08 13:03:40 +0100501 }
502}
503
504static void
505ip6_nd_mk_complete (adj_index_t ai, ip6_neighbor_t * nbr)
506{
507 adj_nbr_update_rewrite (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
508 ethernet_build_rewrite (vnet_get_main (),
509 nbr->key.sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500510 adj_get_link_type (ai),
Neale Rannsb80c5362016-10-08 13:03:40 +0100511 nbr->link_layer_address));
512}
513
514static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000515ip6_nd_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100516{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500517 ip_adjacency_t *adj = adj_get (ai);
Neale Ranns19c68d22016-12-07 15:38:14 +0000518
Dave Barachd7cb1b52016-12-09 09:52:16 -0500519 adj_nbr_update_rewrite (ai,
520 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
521 ethernet_build_rewrite (vnet_get_main (),
522 adj->rewrite_header.
523 sw_if_index,
524 adj_get_link_type (ai),
525 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
Neale Rannsb80c5362016-10-08 13:03:40 +0100526}
527
528#define IP6_NBR_MK_KEY(k, sw_if_index, addr) \
529{ \
530 k.sw_if_index = sw_if_index; \
531 k.ip6_address = *addr; \
532 k.pad = 0; \
533}
534
535static ip6_neighbor_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500536ip6_nd_find (u32 sw_if_index, const ip6_address_t * addr)
Neale Rannsb80c5362016-10-08 13:03:40 +0100537{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500538 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
539 ip6_neighbor_t *n = NULL;
Neale Rannsb80c5362016-10-08 13:03:40 +0100540 ip6_neighbor_key_t k;
541 uword *p;
542
Dave Barachd7cb1b52016-12-09 09:52:16 -0500543 IP6_NBR_MK_KEY (k, sw_if_index, addr);
Neale Rannsb80c5362016-10-08 13:03:40 +0100544
545 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500546 if (p)
547 {
548 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
549 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100550
551 return (n);
552}
553
554static adj_walk_rc_t
555ip6_nd_mk_complete_walk (adj_index_t ai, void *ctx)
556{
557 ip6_neighbor_t *nbr = ctx;
558
559 ip6_nd_mk_complete (ai, nbr);
560
561 return (ADJ_WALK_RC_CONTINUE);
562}
563
564static adj_walk_rc_t
565ip6_nd_mk_incomplete_walk (adj_index_t ai, void *ctx)
566{
Neale Ranns19c68d22016-12-07 15:38:14 +0000567 ip6_nd_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100568
569 return (ADJ_WALK_RC_CONTINUE);
570}
571
John Lo4fed5b12018-05-22 03:35:06 -0400572static clib_error_t *
573ip6_neighbor_sw_interface_up_down (vnet_main_t * vnm,
574 u32 sw_if_index, u32 flags)
575{
576 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
577 ip6_neighbor_t *n;
578 u32 i, *to_delete = 0;
579
580 /* *INDENT-OFF* */
581 pool_foreach (n, nm->neighbor_pool,
582 ({
583 if (n->key.sw_if_index == sw_if_index)
584 vec_add1 (to_delete, n - nm->neighbor_pool);
585 }));
586 /* *INDENT-ON* */
587
588 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
589 {
590 for (i = 0; i < vec_len (to_delete); i++)
591 {
592 n = pool_elt_at_index (nm->neighbor_pool, to_delete[i]);
593 adj_nbr_walk_nh6 (n->key.sw_if_index, &n->key.ip6_address,
594 ip6_nd_mk_complete_walk, n);
595 }
596 }
597 else
598 {
599 for (i = 0; i < vec_len (to_delete); i++)
600 {
601 n = pool_elt_at_index (nm->neighbor_pool, to_delete[i]);
602 adj_nbr_walk_nh6 (n->key.sw_if_index, &n->key.ip6_address,
603 ip6_nd_mk_incomplete_walk, NULL);
604 if (n->flags & IP6_NEIGHBOR_FLAG_STATIC)
605 continue;
606 ip6_neighbor_adj_fib_remove (n,
607 ip6_fib_table_get_index_for_sw_if_index
608 (n->key.sw_if_index));
609 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
610 pool_put (nm->neighbor_pool, n);
611 }
612 }
613
614 vec_free (to_delete);
615 return 0;
616}
617
618VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_neighbor_sw_interface_up_down);
619
Neale Rannsb80c5362016-10-08 13:03:40 +0100620void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500621ip6_ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100622{
623 ip6_neighbor_t *nbr;
624 ip_adjacency_t *adj;
625
626 adj = adj_get (ai);
627
628 nbr = ip6_nd_find (sw_if_index, &adj->sub_type.nbr.next_hop.ip6);
629
Neale Ranns32e1c012016-11-22 17:07:28 +0000630 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100631 {
Ole Trøan438f6302018-02-15 21:56:06 +0000632 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800633 adj_glean_update_rewrite (ai);
634 break;
635 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000636 if (NULL != nbr)
637 {
638 adj_nbr_walk_nh6 (sw_if_index, &nbr->key.ip6_address,
639 ip6_nd_mk_complete_walk, nbr);
640 }
641 else
642 {
643 /*
644 * no matching ND entry.
645 * construct the rewrite required to for an ND packet, and stick
646 * that in the adj's pipe to smoke.
647 */
648 adj_nbr_update_rewrite (ai,
649 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
650 ethernet_build_rewrite (vnm,
651 sw_if_index,
652 VNET_LINK_IP6,
653 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
654
655 /*
656 * since the FIB has added this adj for a route, it makes sense it may
657 * want to forward traffic sometime soon. Let's send a speculative ND.
658 * just one. If we were to do periodically that wouldn't be bad either,
659 * but that's more code than i'm prepared to write at this time for
660 * relatively little reward.
661 */
662 ip6_nbr_probe (adj);
663 }
664 break;
665 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700666 {
667 /*
668 * Construct a partial rewrite from the known ethernet mcast dest MAC
669 */
670 u8 *rewrite;
671 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100672
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700673 rewrite = ethernet_build_rewrite (vnm,
674 sw_if_index,
675 adj->ia_link,
676 ethernet_ip6_mcast_dst_addr ());
Neale Ranns32e1c012016-11-22 17:07:28 +0000677
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700678 /*
679 * Complete the remaining fields of the adj's rewrite to direct the
680 * complete of the rewrite at switch time by copying in the IP
681 * dst address's bytes.
Neale Ranns889fe942017-06-01 05:43:19 -0400682 * Ofset is 2 bytes into the desintation address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700683 */
684 offset = vec_len (rewrite) - 2;
Neale Ranns889fe942017-06-01 05:43:19 -0400685 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000686
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700687 break;
688 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000689 case IP_LOOKUP_NEXT_DROP:
690 case IP_LOOKUP_NEXT_PUNT:
691 case IP_LOOKUP_NEXT_LOCAL:
692 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800693 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000694 case IP_LOOKUP_NEXT_MIDCHAIN:
695 case IP_LOOKUP_NEXT_ICMP_ERROR:
696 case IP_LOOKUP_N_NEXT:
697 ASSERT (0);
698 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100699 }
700}
701
Neale Ranns15002542017-09-10 04:39:11 -0700702
703static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700704ip6_neighbor_adj_fib_add (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700705{
Neale Ranns53da2212018-02-24 02:11:19 -0800706 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
707 {
708 ip6_ll_prefix_t pfx = {
709 .ilp_addr = n->key.ip6_address,
710 .ilp_sw_if_index = n->key.sw_if_index,
711 };
712 n->fib_entry_index =
713 ip6_ll_table_entry_update (&pfx, FIB_ROUTE_PATH_FLAG_NONE);
714 }
715 else
716 {
717 fib_prefix_t pfx = {
718 .fp_len = 128,
719 .fp_proto = FIB_PROTOCOL_IP6,
720 .fp_addr.ip6 = n->key.ip6_address,
721 };
Neale Ranns15002542017-09-10 04:39:11 -0700722
Neale Ranns53da2212018-02-24 02:11:19 -0800723 n->fib_entry_index =
724 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
725 FIB_ENTRY_FLAG_ATTACHED,
726 DPO_PROTO_IP6, &pfx.fp_addr,
727 n->key.sw_if_index, ~0, 1, NULL,
728 FIB_ROUTE_PATH_FLAG_NONE);
729 }
Neale Ranns15002542017-09-10 04:39:11 -0700730}
731
John Lo4fed5b12018-05-22 03:35:06 -0400732static ip6_neighbor_t *
733force_reuse_neighbor_entry (void)
734{
735 ip6_neighbor_t *n;
736 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
737 u32 count = 0;
738 u32 index = pool_next_index (nm->neighbor_pool, nm->neighbor_delete_rotor);
739 if (index == ~0) /* Try again from elt 0 */
740 index = pool_next_index (nm->neighbor_pool, index);
741
742 /* Find a non-static random entry to free up for reuse */
743 do
744 {
745 if ((count++ == 100) || (index == ~0))
746 return NULL; /* give up after 100 entries */
747 n = pool_elt_at_index (nm->neighbor_pool, index);
748 nm->neighbor_delete_rotor = index;
749 index = pool_next_index (nm->neighbor_pool, index);
750 }
751 while (n->flags & IP6_NEIGHBOR_FLAG_STATIC);
752
753 /* Remove ARP entry from its interface and update fib */
754 adj_nbr_walk_nh6 (n->key.sw_if_index,
755 &n->key.ip6_address, ip6_nd_mk_incomplete_walk, NULL);
756 ip6_neighbor_adj_fib_remove
757 (n, ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index));
758 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
759
760 return n;
761}
762
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763int
764vnet_set_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500765 u32 sw_if_index,
766 ip6_address_t * a,
767 u8 * link_layer_address,
768 uword n_bytes_link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800769 int is_static, int is_no_fib_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500771 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500773 ip6_neighbor_t *n = 0;
774 int make_new_nd_cache_entry = 1;
775 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776 u32 next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500777 pending_resolution_t *pr, *mc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778
Damjan Marion586afd72017-04-05 19:18:20 +0200779 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 {
781 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800782 1 /* set new neighbor */ , is_static,
783 is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784 return 0;
785 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
787 k.sw_if_index = sw_if_index;
788 k.ip6_address = a[0];
789 k.pad = 0;
790
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500792 if (p)
793 {
794 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
795 /* Refuse to over-write static neighbor entry. */
796 if (!is_static && (n->flags & IP6_NEIGHBOR_FLAG_STATIC))
John Lo0e6f4d62018-07-13 17:29:58 -0400797 {
798 /* if MAC address match, still check to send event */
799 if (0 == memcmp (n->link_layer_address,
800 link_layer_address, n_bytes_link_layer_address))
801 goto check_customers;
802 return -2;
803 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500804 make_new_nd_cache_entry = 0;
805 }
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100806
Dave Barachd7cb1b52016-12-09 09:52:16 -0500807 if (make_new_nd_cache_entry)
808 {
John Lo4fed5b12018-05-22 03:35:06 -0400809 if (nm->limit_neighbor_cache_size &&
810 pool_elts (nm->neighbor_pool) >= nm->limit_neighbor_cache_size)
811 {
812 n = force_reuse_neighbor_entry ();
813 if (NULL == n)
814 return -2;
815 }
816 else
817 pool_get (nm->neighbor_pool, n);
818
Dave Barachd7cb1b52016-12-09 09:52:16 -0500819 mhash_set (&nm->neighbor_index_by_key, &k, n - nm->neighbor_pool,
820 /* old value */ 0);
821 n->key = k;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700822 n->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100823
Dave Barachd7cb1b52016-12-09 09:52:16 -0500824 clib_memcpy (n->link_layer_address,
825 link_layer_address, n_bytes_link_layer_address);
Neale Rannsb80c5362016-10-08 13:03:40 +0100826
Dave Barachd7cb1b52016-12-09 09:52:16 -0500827 /*
828 * create the adj-fib. the entry in the FIB table for and to the peer.
829 */
Neale Rannsb3b2de72017-03-08 05:17:22 -0800830 if (!is_no_fib_entry)
831 {
Neale Ranns53da2212018-02-24 02:11:19 -0800832 ip6_neighbor_adj_fib_add
833 (n, ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700834 }
835 else
836 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800837 n->flags |= IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY;
838 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500839 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100840 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500841 {
842 /*
843 * prevent a DoS attack from the data-plane that
844 * spams us with no-op updates to the MAC address
845 */
846 if (0 == memcmp (n->link_layer_address,
847 link_layer_address, n_bytes_link_layer_address))
John Lo7f358b32018-04-28 01:19:24 -0400848 {
849 n->time_last_updated = vlib_time_now (vm);
850 goto check_customers;
851 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100852
Dave Barachd7cb1b52016-12-09 09:52:16 -0500853 clib_memcpy (n->link_layer_address,
854 link_layer_address, n_bytes_link_layer_address);
855 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856
Neale Rannsb80c5362016-10-08 13:03:40 +0100857 /* Update time stamp and flags. */
John Lo7f358b32018-04-28 01:19:24 -0400858 n->time_last_updated = vlib_time_now (vm);
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100859 if (is_static)
John Lo4fed5b12018-05-22 03:35:06 -0400860 {
861 n->flags |= IP6_NEIGHBOR_FLAG_STATIC;
862 n->flags &= ~IP6_NEIGHBOR_FLAG_DYNAMIC;
863 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100864 else
John Lo4fed5b12018-05-22 03:35:06 -0400865 {
866 n->flags |= IP6_NEIGHBOR_FLAG_DYNAMIC;
867 n->flags &= ~IP6_NEIGHBOR_FLAG_STATIC;
868 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100869
Neale Rannsb80c5362016-10-08 13:03:40 +0100870 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500871 &n->key.ip6_address, ip6_nd_mk_complete_walk, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872
Dave Barach59b25652017-09-10 15:04:27 -0400873check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874 /* Customer(s) waiting for this address to be resolved? */
875 p = mhash_get (&nm->pending_resolutions_by_address, a);
John Lo1edfba92016-08-27 01:11:57 -0400876 if (p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877 {
John Lo1edfba92016-08-27 01:11:57 -0400878 next_index = p[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500879
880 while (next_index != (u32) ~ 0)
881 {
John Lo1edfba92016-08-27 01:11:57 -0400882 pr = pool_elt_at_index (nm->pending_resolutions, next_index);
883 vlib_process_signal_event (vm, pr->node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500884 pr->type_opaque, pr->data);
John Lo1edfba92016-08-27 01:11:57 -0400885 next_index = pr->next_index;
886 pool_put (nm->pending_resolutions, pr);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500887 }
John Lo1edfba92016-08-27 01:11:57 -0400888
889 mhash_unset (&nm->pending_resolutions_by_address, a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890 }
891
John Lo1edfba92016-08-27 01:11:57 -0400892 /* Customer(s) requesting ND event for this address? */
893 p = mhash_get (&nm->mac_changes_by_address, a);
894 if (p)
895 {
896 next_index = p[0];
897
Dave Barachd7cb1b52016-12-09 09:52:16 -0500898 while (next_index != (u32) ~ 0)
899 {
900 int (*fp) (u32, u8 *, u32, ip6_address_t *);
901 int rv = 1;
902 mc = pool_elt_at_index (nm->mac_changes, next_index);
903 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400904
Dave Barachd7cb1b52016-12-09 09:52:16 -0500905 /* Call the user's data callback, return 1 to suppress dup events */
906 if (fp)
907 rv =
908 (*fp) (mc->data, link_layer_address, sw_if_index, &ip6a_zero);
909 /*
910 * Signal the resolver process, as long as the user
911 * says they want to be notified
912 */
913 if (rv == 0)
914 vlib_process_signal_event (vm, mc->node_index,
915 mc->type_opaque, mc->data);
916 next_index = mc->next_index;
917 }
John Lo1edfba92016-08-27 01:11:57 -0400918 }
919
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920 return 0;
921}
922
923int
924vnet_unset_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500925 u32 sw_if_index,
926 ip6_address_t * a,
927 u8 * link_layer_address,
928 uword n_bytes_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500930 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500932 ip6_neighbor_t *n;
933 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934 int rv = 0;
935
Damjan Marion586afd72017-04-05 19:18:20 +0200936 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937 {
938 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800939 0 /* unset */ , 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700940 return 0;
941 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942
943 k.sw_if_index = sw_if_index;
944 k.ip6_address = a[0];
945 k.pad = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500946
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947 p = mhash_get (&nm->neighbor_index_by_key, &k);
948 if (p == 0)
949 {
950 rv = -1;
951 goto out;
952 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500953
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100955
Neale Rannsb80c5362016-10-08 13:03:40 +0100956 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500957 &n->key.ip6_address, ip6_nd_mk_incomplete_walk, NULL);
John Lo4fed5b12018-05-22 03:35:06 -0400958 ip6_neighbor_adj_fib_remove
959 (n, ip6_fib_table_get_index_for_sw_if_index (sw_if_index));
Neale Rannsb80c5362016-10-08 13:03:40 +0100960
John Lo4fed5b12018-05-22 03:35:06 -0400961 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962 pool_put (nm->neighbor_pool, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500963
964out:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 return rv;
966}
967
Dave Barachd7cb1b52016-12-09 09:52:16 -0500968static void ip6_neighbor_set_unset_rpc_callback
969 (ip6_neighbor_set_unset_rpc_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500971 vlib_main_t *vm = vlib_get_main ();
972 if (a->is_add)
973 vnet_set_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800974 a->link_layer_address, 6, a->is_static,
975 a->is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700976 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500977 vnet_unset_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
978 a->link_layer_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980
981static int
982ip6_neighbor_sort (void *a1, void *a2)
983{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500984 vnet_main_t *vnm = vnet_get_main ();
985 ip6_neighbor_t *n1 = a1, *n2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986 int cmp;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500987 cmp = vnet_sw_interface_compare (vnm, n1->key.sw_if_index,
988 n2->key.sw_if_index);
989 if (!cmp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990 cmp = ip6_address_compare (&n1->key.ip6_address, &n2->key.ip6_address);
991 return cmp;
992}
993
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100994ip6_neighbor_t *
John Lo7f358b32018-04-28 01:19:24 -0400995ip6_neighbors_pool (void)
996{
997 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
998 return nm->neighbor_pool;
999}
1000
1001ip6_neighbor_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001002ip6_neighbors_entries (u32 sw_if_index)
1003{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001004 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001005 ip6_neighbor_t *n, *ns = 0;
1006
1007 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001008 pool_foreach (n, nm->neighbor_pool,
1009 ({
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001010 if (sw_if_index != ~0 && n->key.sw_if_index != sw_if_index)
1011 continue;
1012 vec_add1 (ns, n[0]);
1013 }));
1014 /* *INDENT-ON* */
1015
1016 if (ns)
1017 vec_sort_with_function (ns, ip6_neighbor_sort);
1018 return ns;
1019}
1020
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021static clib_error_t *
1022show_ip6_neighbors (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001023 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001025 vnet_main_t *vnm = vnet_get_main ();
1026 ip6_neighbor_t *n, *ns;
1027 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028 u32 sw_if_index;
1029
1030 /* Filter entries by interface if given. */
1031 sw_if_index = ~0;
1032 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1033
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001034 ns = ip6_neighbors_entries (sw_if_index);
Billy McFall46529cd2016-10-14 10:45:49 -04001035 if (ns)
1036 {
Billy McFall46529cd2016-10-14 10:45:49 -04001037 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001038 vec_foreach (n, ns)
1039 {
1040 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, n);
Billy McFall46529cd2016-10-14 10:45:49 -04001041 }
1042 vec_free (ns);
1043 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001044
1045 return error;
1046}
1047
Billy McFall0683c9c2016-10-13 08:27:31 -04001048/*?
1049 * This command is used to display the adjacent IPv6 hosts found via
1050 * neighbor discovery. Optionally, limit the output to the specified
1051 * interface.
1052 *
1053 * @cliexpar
1054 * Example of how to display the IPv6 neighbor adjacency table:
1055 * @cliexstart{show ip6 neighbors}
1056 * Time Address Flags Link layer Interface
1057 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
1058 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
1059 * 886.6654 ::1:1:c:0:9 S 02:fe:e4:45:27:5b GigabitEthernet3/0/0
1060 * @cliexend
1061 * Example of how to display the IPv6 neighbor adjacency table for given interface:
1062 * @cliexstart{show ip6 neighbors GigabitEthernet2/0/0}
1063 * Time Address Flags Link layer Interface
1064 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
1065 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
1066 * @cliexend
1067?*/
1068/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069VLIB_CLI_COMMAND (show_ip6_neighbors_command, static) = {
1070 .path = "show ip6 neighbors",
1071 .function = show_ip6_neighbors,
Billy McFall0683c9c2016-10-13 08:27:31 -04001072 .short_help = "show ip6 neighbors [<interface>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073};
Billy McFall0683c9c2016-10-13 08:27:31 -04001074/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075
1076static clib_error_t *
1077set_ip6_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001078 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001080 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 ip6_address_t addr;
1082 u8 mac_address[6];
1083 int addr_valid = 0;
1084 int is_del = 0;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +01001085 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001086 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 u32 sw_if_index;
1088
Dave Barachd7cb1b52016-12-09 09:52:16 -05001089 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 {
1091 /* intfc, ip6-address, mac-address */
1092 if (unformat (input, "%U %U %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001093 unformat_vnet_sw_interface, vnm, &sw_if_index,
1094 unformat_ip6_address, &addr,
1095 unformat_ethernet_address, mac_address))
1096 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097
1098 else if (unformat (input, "delete") || unformat (input, "del"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001099 is_del = 1;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +01001100 else if (unformat (input, "static"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001101 is_static = 1;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001102 else if (unformat (input, "no-fib-entry"))
1103 is_no_fib_entry = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001105 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106 }
1107
1108 if (!addr_valid)
1109 return clib_error_return (0, "Missing interface, ip6 or hw address");
Dave Barachd7cb1b52016-12-09 09:52:16 -05001110
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111 if (!is_del)
1112 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index, &addr,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001113 mac_address, sizeof (mac_address),
Neale Rannsb3b2de72017-03-08 05:17:22 -08001114 is_static, is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 else
1116 vnet_unset_ip6_ethernet_neighbor (vm, sw_if_index, &addr,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001117 mac_address, sizeof (mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 return 0;
1119}
1120
Billy McFall0683c9c2016-10-13 08:27:31 -04001121/*?
1122 * This command is used to manually add an entry to the IPv6 neighbor
1123 * adjacency table. Optionally, the entry can be added as static. It is
1124 * also used to remove an entry from the table. Use the '<em>show ip6
1125 * neighbors</em>' command to display all learned and manually entered entries.
1126 *
1127 * @cliexpar
1128 * Example of how to add a static entry to the IPv6 neighbor adjacency table:
1129 * @cliexcmd{set ip6 neighbor GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b static}
1130 * Example of how to delete an entry from the IPv6 neighbor adjacency table:
1131 * @cliexcmd{set ip6 neighbor del GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b}
1132?*/
1133/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001134VLIB_CLI_COMMAND (set_ip6_neighbor_command, static) =
1135{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 .path = "set ip6 neighbor",
1137 .function = set_ip6_neighbor,
Billy McFall0683c9c2016-10-13 08:27:31 -04001138 .short_help = "set ip6 neighbor [del] <interface> <ip6-address> <mac-address> [static]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139};
Billy McFall0683c9c2016-10-13 08:27:31 -04001140/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141
Dave Barachd7cb1b52016-12-09 09:52:16 -05001142typedef enum
1143{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144 ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP,
1145 ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY,
1146 ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
1147} icmp6_neighbor_solicitation_or_advertisement_next_t;
1148
1149static_always_inline uword
1150icmp6_neighbor_solicitation_or_advertisement (vlib_main_t * vm,
1151 vlib_node_runtime_t * node,
1152 vlib_frame_t * frame,
1153 uword is_solicitation)
1154{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001155 vnet_main_t *vnm = vnet_get_main ();
1156 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001157 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001158 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159 u32 n_left_from, n_left_to_next, next_index, n_advertisements_sent;
1160 icmp6_neighbor_discovery_option_type_t option_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001161 vlib_node_runtime_t *error_node =
1162 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 int bogus_length;
1164
1165 from = vlib_frame_vector_args (frame);
1166 n_left_from = n_packets;
1167 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001168
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169 if (node->flags & VLIB_NODE_FLAG_TRACE)
1170 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1171 /* stride */ 1,
1172 sizeof (icmp6_input_trace_t));
1173
Dave Barachd7cb1b52016-12-09 09:52:16 -05001174 option_type =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175 (is_solicitation
1176 ? ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address
1177 : ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address);
1178 n_advertisements_sent = 0;
1179
1180 while (n_left_from > 0)
1181 {
1182 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1183
1184 while (n_left_from > 0 && n_left_to_next > 0)
1185 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001186 vlib_buffer_t *p0;
1187 ip6_header_t *ip0;
1188 icmp6_neighbor_solicitation_or_advertisement_header_t *h0;
1189 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001191 u32 ip6_sadd_link_local, ip6_sadd_unspecified;
1192 int is_rewrite0;
1193 u32 ni0;
1194
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195 bi0 = to_next[0] = from[0];
1196
1197 from += 1;
1198 to_next += 1;
1199 n_left_from -= 1;
1200 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001201
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202 p0 = vlib_get_buffer (vm, bi0);
1203 ip0 = vlib_buffer_get_current (p0);
1204 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001205 options_len0 =
1206 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207
1208 error0 = ICMP6_ERROR_NONE;
1209 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001210 ip6_sadd_link_local =
1211 ip6_address_is_link_local_unicast (&ip0->src_address);
1212 ip6_sadd_unspecified =
1213 ip6_address_is_unspecified (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214
1215 /* Check that source address is unspecified, link-local or else on-link. */
1216 if (!ip6_sadd_unspecified && !ip6_sadd_link_local)
1217 {
1218 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219
Dave Barachd7cb1b52016-12-09 09:52:16 -05001220 if (ADJ_INDEX_INVALID != src_adj_index0)
1221 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001222 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001223
Dave Barachd7cb1b52016-12-09 09:52:16 -05001224 /* Allow all realistic-looking rewrite adjacencies to pass */
1225 ni0 = adj0->lookup_next_index;
1226 is_rewrite0 = (ni0 >= IP_LOOKUP_NEXT_ARP) &&
1227 (ni0 < IP6_LOOKUP_N_NEXT);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001228
Dave Barachd7cb1b52016-12-09 09:52:16 -05001229 error0 = ((adj0->rewrite_header.sw_if_index != sw_if_index0
1230 || !is_rewrite0)
1231 ?
1232 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK
1233 : error0);
1234 }
1235 else
1236 {
1237 error0 =
1238 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK;
1239 }
1240 }
1241
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 o0 = (void *) (h0 + 1);
1243 o0 = ((options_len0 == 8 && o0->header.type == option_type
1244 && o0->header.n_data_u64s == 1) ? o0 : 0);
1245
1246 /* If src address unspecified or link local, donot learn neighbor MAC */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001247 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
Neale Ranns2a3ea492017-04-19 05:24:40 -07001248 !ip6_sadd_unspecified))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001249 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001250 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1251 is_solicitation ?
1252 &ip0->src_address :
1253 &h0->target_address,
1254 o0->ethernet_address,
1255 sizeof (o0->ethernet_address),
Neale Ranns53da2212018-02-24 02:11:19 -08001256 0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001257 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001258
1259 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1260 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001261 /* Check that target address is local to this router. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001262 fib_node_index_t fei;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001263 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264
Dave Barachd7cb1b52016-12-09 09:52:16 -05001265 fib_index =
1266 ip6_fib_table_get_index_for_sw_if_index (sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001268 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001269 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001270 error0 = ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1271 }
1272 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001273 {
Neale Ranns53da2212018-02-24 02:11:19 -08001274 if (ip6_address_is_link_local_unicast (&h0->target_address))
1275 {
1276 fei = ip6_fib_table_lookup_exact_match
1277 (ip6_ll_fib_get (sw_if_index0),
1278 &h0->target_address, 128);
1279 }
1280 else
1281 {
1282 fei = ip6_fib_table_lookup_exact_match (fib_index,
1283 &h0->target_address,
1284 128);
1285 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001286
Neale Ranns3f844d02017-02-18 00:03:54 -08001287 if (FIB_NODE_INDEX_INVALID == fei)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001288 {
Neale Ranns3f844d02017-02-18 00:03:54 -08001289 /* The target address is not in the FIB */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001290 error0 =
1291 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001292 }
Neale Ranns3f844d02017-02-18 00:03:54 -08001293 else
1294 {
1295 if (FIB_ENTRY_FLAG_LOCAL &
1296 fib_entry_get_flags_for_source (fei,
1297 FIB_SOURCE_INTERFACE))
1298 {
1299 /* It's an address that belongs to one of our interfaces
1300 * that's good. */
1301 }
1302 else
1303 if (fib_entry_is_sourced
Neale Ranns53da2212018-02-24 02:11:19 -08001304 (fei, FIB_SOURCE_IP6_ND_PROXY) ||
1305 fib_entry_is_sourced (fei, FIB_SOURCE_IP6_ND))
Neale Ranns3f844d02017-02-18 00:03:54 -08001306 {
1307 /* The address was added by IPv6 Proxy ND config.
1308 * We should only respond to these if the NS arrived on
1309 * the link that has a matching covering prefix */
1310 }
1311 else
1312 {
1313 error0 =
1314 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1315 }
1316 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001317 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001318 }
1319
1320 if (is_solicitation)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001321 next0 = (error0 != ICMP6_ERROR_NONE
1322 ? ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP
1323 : ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001324 else
1325 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001326 next0 = 0;
1327 error0 = error0 == ICMP6_ERROR_NONE ?
1328 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_RX : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329 }
1330
1331 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1332 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001333 vnet_sw_interface_t *sw_if0;
1334 ethernet_interface_t *eth_if0;
1335 ethernet_header_t *eth0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001336
Dave Barachd7cb1b52016-12-09 09:52:16 -05001337 /* dst address is either source address or the all-nodes mcast addr */
1338 if (!ip6_sadd_unspecified)
1339 ip0->dst_address = ip0->src_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001341 ip6_set_reserved_multicast_address (&ip0->dst_address,
1342 IP6_MULTICAST_SCOPE_link_local,
1343 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001344
1345 ip0->src_address = h0->target_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001346 ip0->hop_limit = 255;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347 h0->icmp.type = ICMP6_neighbor_advertisement;
1348
1349 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1350 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001351 eth_if0 =
1352 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353 if (eth_if0 && o0)
1354 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001355 clib_memcpy (o0->ethernet_address, eth_if0->address, 6);
1356 o0->header.type =
1357 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 }
1359
1360 h0->advertisement_flags = clib_host_to_net_u32
1361 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED
1362 | ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
1363
1364 h0->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001365 h0->icmp.checksum =
1366 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1367 &bogus_length);
1368 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369
Dave Barachd7cb1b52016-12-09 09:52:16 -05001370 /* Reuse current MAC header, copy SMAC to DMAC and
1371 * interface MAC to SMAC */
1372 vlib_buffer_advance (p0, -ethernet_buffer_header_size (p0));
1373 eth0 = vlib_buffer_get_current (p0);
1374 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
1375 if (eth_if0)
1376 clib_memcpy (eth0->src_address, eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001377
Dave Barachd7cb1b52016-12-09 09:52:16 -05001378 /* Setup input and output sw_if_index for packet */
1379 ASSERT (vnet_buffer (p0)->sw_if_index[VLIB_RX] == sw_if_index0);
1380 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1381 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
1382 vnet_main.local_interface_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001383
1384 n_advertisements_sent++;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001385 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001386
1387 p0->error = error_node->errors[error0];
1388
1389 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1390 to_next, n_left_to_next,
1391 bi0, next0);
1392 }
1393
1394 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1395 }
1396
1397 /* Account for advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001398 vlib_error_count (vm, error_node->node_index,
1399 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX,
1400 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001401
1402 return frame->n_vectors;
1403}
1404
1405/* for "syslogging" - use elog for now */
1406#define foreach_log_level \
1407 _ (DEBUG, "DEBUG") \
1408 _ (INFO, "INFORMATION") \
1409 _ (NOTICE, "NOTICE") \
1410 _ (WARNING, "WARNING") \
1411 _ (ERR, "ERROR") \
1412 _ (CRIT, "CRITICAL") \
1413 _ (ALERT, "ALERT") \
1414 _ (EMERG, "EMERGENCY")
1415
Dave Barachd7cb1b52016-12-09 09:52:16 -05001416typedef enum
1417{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418#define _(f,s) LOG_##f,
1419 foreach_log_level
1420#undef _
1421} log_level_t;
1422
Dave Barachd7cb1b52016-12-09 09:52:16 -05001423static char *log_level_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424#define _(f,s) s,
1425 foreach_log_level
1426#undef _
1427};
1428
Dave Barachd7cb1b52016-12-09 09:52:16 -05001429static int logmask = 1 << LOG_DEBUG;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001430
1431static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05001432ip6_neighbor_syslog (vlib_main_t * vm, int priority, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433{
1434 /* just use elog for now */
1435 u8 *what;
1436 va_list va;
1437
Dave Barachd7cb1b52016-12-09 09:52:16 -05001438 if ((priority > LOG_EMERG) || !(logmask & (1 << priority)))
1439 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440
1441 va_start (va, fmt);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001442 if (fmt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443 {
1444 what = va_format (0, fmt, &va);
1445
Dave Barachd7cb1b52016-12-09 09:52:16 -05001446 ELOG_TYPE_DECLARE (e) =
1447 {
1448 .format = "ip6 nd: (%s): %s",.format_args = "T4T4",};
1449 struct
1450 {
1451 u32 s[2];
1452 } *ed;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001453 ed = ELOG_DATA (&vm->elog_main, e);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001454 ed->s[0] = elog_string (&vm->elog_main, log_level_strings[priority]);
1455 ed->s[1] = elog_string (&vm->elog_main, (char *) what);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001456 }
1457 va_end (va);
1458 return;
1459}
1460
Juraj Sloboda52574522018-05-03 10:03:50 +02001461clib_error_t *
1462call_ip6_neighbor_callbacks (void *data,
1463 _vnet_ip6_neighbor_function_list_elt_t * elt)
1464{
1465 clib_error_t *error = 0;
1466
1467 while (elt)
1468 {
1469 error = elt->fp (data);
1470 if (error)
1471 return error;
1472 elt = elt->next_ip6_neighbor_function;
1473 }
1474
1475 return error;
1476}
1477
Ed Warnickecb9cada2015-12-08 15:45:58 -07001478/* ipv6 neighbor discovery - router advertisements */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001479typedef enum
1480{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001481 ICMP6_ROUTER_SOLICITATION_NEXT_DROP,
1482 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW,
1483 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX,
1484 ICMP6_ROUTER_SOLICITATION_N_NEXT,
1485} icmp6_router_solicitation_or_advertisement_next_t;
1486
1487static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001488icmp6_router_solicitation (vlib_main_t * vm,
1489 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001491 vnet_main_t *vnm = vnet_get_main ();
1492 ip6_main_t *im = &ip6_main;
1493 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001494 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001495 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001496 u32 n_left_from, n_left_to_next, next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001497 u32 n_advertisements_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001498 int bogus_length;
1499
1500 icmp6_neighbor_discovery_option_type_t option_type;
1501
Dave Barachd7cb1b52016-12-09 09:52:16 -05001502 vlib_node_runtime_t *error_node =
1503 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504
1505 from = vlib_frame_vector_args (frame);
1506 n_left_from = n_packets;
1507 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001508
Ed Warnickecb9cada2015-12-08 15:45:58 -07001509 if (node->flags & VLIB_NODE_FLAG_TRACE)
1510 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1511 /* stride */ 1,
1512 sizeof (icmp6_input_trace_t));
1513
1514 /* source may append his LL address */
1515 option_type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
1516
1517 while (n_left_from > 0)
1518 {
1519 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001520
Ed Warnickecb9cada2015-12-08 15:45:58 -07001521 while (n_left_from > 0 && n_left_to_next > 0)
1522 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001523 vlib_buffer_t *p0;
1524 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001525 ip6_radv_t *radv_info = 0;
1526
Dave Barachd7cb1b52016-12-09 09:52:16 -05001527 icmp6_neighbor_discovery_header_t *h0;
1528 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
1529
Ed Warnickecb9cada2015-12-08 15:45:58 -07001530 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001531 u32 is_solicitation = 1, is_dropped = 0;
1532 u32 is_unspecified, is_link_local;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533
1534 bi0 = to_next[0] = from[0];
1535
1536 from += 1;
1537 to_next += 1;
1538 n_left_from -= 1;
1539 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001540
Ed Warnickecb9cada2015-12-08 15:45:58 -07001541 p0 = vlib_get_buffer (vm, bi0);
1542 ip0 = vlib_buffer_get_current (p0);
1543 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001544 options_len0 =
1545 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
1546 is_unspecified = ip6_address_is_unspecified (&ip0->src_address);
1547 is_link_local =
1548 ip6_address_is_link_local_unicast (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001549
1550 error0 = ICMP6_ERROR_NONE;
1551 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001552
Ed Warnickecb9cada2015-12-08 15:45:58 -07001553 /* check if solicitation (not from nd_timer node) */
1554 if (ip6_address_is_unspecified (&ip0->dst_address))
1555 is_solicitation = 0;
1556
1557 /* Check that source address is unspecified, link-local or else on-link. */
1558 if (!is_unspecified && !is_link_local)
1559 {
1560 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001561
Dave Barachd7cb1b52016-12-09 09:52:16 -05001562 if (ADJ_INDEX_INVALID != src_adj_index0)
1563 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001564 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001565
Dave Barachd7cb1b52016-12-09 09:52:16 -05001566 error0 = (adj0->rewrite_header.sw_if_index != sw_if_index0
1567 ?
1568 ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK
1569 : error0);
1570 }
1571 else
1572 {
1573 error0 = ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK;
1574 }
1575 }
1576
Ed Warnickecb9cada2015-12-08 15:45:58 -07001577 /* check for source LL option and process */
1578 o0 = (void *) (h0 + 1);
1579 o0 = ((options_len0 == 8
1580 && o0->header.type == option_type
Dave Barachd7cb1b52016-12-09 09:52:16 -05001581 && o0->header.n_data_u64s == 1) ? o0 : 0);
1582
Ed Warnickecb9cada2015-12-08 15:45:58 -07001583 /* if src address unspecified IGNORE any options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001584 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
1585 !is_unspecified && !is_link_local))
1586 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001587 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1588 &ip0->src_address,
1589 o0->ethernet_address,
1590 sizeof (o0->ethernet_address),
Neale Rannsb3b2de72017-03-08 05:17:22 -08001591 0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001592 }
1593
Ed Warnickecb9cada2015-12-08 15:45:58 -07001594 /* default is to drop */
1595 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001596
Ed Warnickecb9cada2015-12-08 15:45:58 -07001597 if (error0 == ICMP6_ERROR_NONE)
1598 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001599 vnet_sw_interface_t *sw_if0;
1600 ethernet_interface_t *eth_if0;
1601 u32 adj_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001602
1603 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1604 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001605 eth_if0 =
1606 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001607
1608 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001609 error0 =
1610 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1611 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612
1613 if (error0 == ICMP6_ERROR_NONE)
1614 {
1615 u32 ri;
1616
1617 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001618 p0->current_length -=
1619 (options_len0 +
1620 sizeof (icmp6_neighbor_discovery_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001621
1622 /* look up the radv_t information for this interface */
Neale Ranns8e254952018-04-25 05:40:48 -07001623 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) >
1624 sw_if_index0)
1625 {
1626 ri =
1627 nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001628
Neale Ranns8e254952018-04-25 05:40:48 -07001629 if (ri != ~0)
1630 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1631 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001632
1633 error0 =
1634 ((!radv_info) ?
1635 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1636 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001637
1638 if (error0 == ICMP6_ERROR_NONE)
1639 {
1640 f64 now = vlib_time_now (vm);
1641
1642 /* for solicited adverts - need to rate limit */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001643 if (is_solicitation)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644 {
Neale Ranns75152282017-01-09 01:00:45 -08001645 if (0 != radv_info->last_radv_time &&
1646 (now - radv_info->last_radv_time) <
Dave Barachd7cb1b52016-12-09 09:52:16 -05001647 MIN_DELAY_BETWEEN_RAS)
1648 is_dropped = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001649 else
1650 radv_info->last_radv_time = now;
1651 }
1652
1653 /* send now */
1654 icmp6_router_advertisement_header_t rh;
1655
1656 rh.icmp.type = ICMP6_router_advertisement;
1657 rh.icmp.code = 0;
1658 rh.icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001659
Ed Warnickecb9cada2015-12-08 15:45:58 -07001660 rh.current_hop_limit = radv_info->curr_hop_limit;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001661 rh.router_lifetime_in_sec =
1662 clib_host_to_net_u16
1663 (radv_info->adv_router_lifetime_in_sec);
1664 rh.
1665 time_in_msec_between_retransmitted_neighbor_solicitations
1666 =
1667 clib_host_to_net_u32 (radv_info->
1668 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
1669 rh.neighbor_reachable_time_in_msec =
1670 clib_host_to_net_u32 (radv_info->
1671 adv_neighbor_reachable_time_in_msec);
1672
1673 rh.flags =
1674 (radv_info->adv_managed_flag) ?
1675 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP :
1676 0;
1677 rh.flags |=
1678 ((radv_info->adv_other_flag) ?
1679 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP :
1680 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001681
1682
Dave Barachd7cb1b52016-12-09 09:52:16 -05001683 u16 payload_length =
1684 sizeof (icmp6_router_advertisement_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001685
1686 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001687 vlib_buffer_get_free_list_index
1688 (p0), bi0, (void *) &rh,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001689 sizeof
1690 (icmp6_router_advertisement_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001691
Dave Barachd7cb1b52016-12-09 09:52:16 -05001692 if (radv_info->adv_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001693 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001694 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
1695 h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001696
Dave Barachd7cb1b52016-12-09 09:52:16 -05001697 h.header.type =
1698 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001699 h.header.n_data_u64s = 1;
1700
1701 /* copy ll address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001702 clib_memcpy (&h.ethernet_address[0],
1703 eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001704
1705 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001706 vlib_buffer_get_free_list_index
1707 (p0), bi0, (void *) &h,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001708 sizeof
1709 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001710
Dave Barachd7cb1b52016-12-09 09:52:16 -05001711 payload_length +=
1712 sizeof
1713 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001714 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001715
Ed Warnickecb9cada2015-12-08 15:45:58 -07001716 /* add MTU option */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001717 if (radv_info->adv_link_mtu)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001718 {
1719 icmp6_neighbor_discovery_mtu_option_t h;
1720
1721 h.unused = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001722 h.mtu =
1723 clib_host_to_net_u32 (radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001724 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu;
1725 h.header.n_data_u64s = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001726
1727 payload_length +=
1728 sizeof (icmp6_neighbor_discovery_mtu_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001729
1730 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001731 vlib_buffer_get_free_list_index
1732 (p0), bi0, (void *) &h,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001733 sizeof
1734 (icmp6_neighbor_discovery_mtu_option_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001735 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001736
Ed Warnickecb9cada2015-12-08 15:45:58 -07001737 /* add advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001738 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001739
Dave Barachd7cb1b52016-12-09 09:52:16 -05001740 /* *INDENT-OFF* */
1741 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
1742 ({
1743 if(pr_info->enabled &&
1744 (!pr_info->decrement_lifetime_flag
1745 || (pr_info->pref_lifetime_expires >0)))
1746 {
1747 /* advertise this prefix */
1748 icmp6_neighbor_discovery_prefix_information_option_t h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001749
Dave Barachd7cb1b52016-12-09 09:52:16 -05001750 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information;
1751 h.header.n_data_u64s = (sizeof(icmp6_neighbor_discovery_prefix_information_option_t) >> 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001752
Dave Barachd7cb1b52016-12-09 09:52:16 -05001753 h.dst_address_length = pr_info->prefix_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001754
Dave Barachd7cb1b52016-12-09 09:52:16 -05001755 h.flags = (pr_info->adv_on_link_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_FLAG_ON_LINK : 0;
1756 h.flags |= (pr_info->adv_autonomous_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_AUTO : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001757
Dave Barachd7cb1b52016-12-09 09:52:16 -05001758 if(radv_info->cease_radv && pr_info->deprecated_prefix_flag)
1759 {
1760 h.valid_time = clib_host_to_net_u32(MIN_ADV_VALID_LIFETIME);
1761 h.preferred_time = 0;
1762 }
1763 else
1764 {
1765 if(pr_info->decrement_lifetime_flag)
1766 {
1767 pr_info->adv_valid_lifetime_in_secs = ((pr_info->valid_lifetime_expires > now)) ?
1768 (pr_info->valid_lifetime_expires - now) : 0;
1769
1770 pr_info->adv_pref_lifetime_in_secs = ((pr_info->pref_lifetime_expires > now)) ?
1771 (pr_info->pref_lifetime_expires - now) : 0;
1772 }
1773
1774 h.valid_time = clib_host_to_net_u32(pr_info->adv_valid_lifetime_in_secs);
1775 h.preferred_time = clib_host_to_net_u32(pr_info->adv_pref_lifetime_in_secs) ;
1776 }
1777 h.unused = 0;
1778
1779 clib_memcpy(&h.dst_address, &pr_info->prefix, sizeof(ip6_address_t));
1780
1781 payload_length += sizeof( icmp6_neighbor_discovery_prefix_information_option_t);
1782
1783 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001784 vlib_buffer_get_free_list_index (p0),
Dave Barachd7cb1b52016-12-09 09:52:16 -05001785 bi0,
1786 (void *)&h, sizeof(icmp6_neighbor_discovery_prefix_information_option_t));
1787
1788 }
1789 }));
1790 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001791
1792 /* add additional options before here */
1793
1794 /* finish building the router advertisement... */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001795 if (!is_unspecified && radv_info->send_unicast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001796 {
1797 ip0->dst_address = ip0->src_address;
1798 }
1799 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001800 {
1801 /* target address is all-nodes mcast addr */
1802 ip6_set_reserved_multicast_address
1803 (&ip0->dst_address,
1804 IP6_MULTICAST_SCOPE_link_local,
1805 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001806 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001807
Ed Warnickecb9cada2015-12-08 15:45:58 -07001808 /* source address MUST be the link-local address */
1809 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001810
Dave Barachd7cb1b52016-12-09 09:52:16 -05001811 ip0->hop_limit = 255;
1812 ip0->payload_length =
1813 clib_host_to_net_u16 (payload_length);
1814
1815 icmp6_router_advertisement_header_t *rh0 =
1816 (icmp6_router_advertisement_header_t *) (ip0 + 1);
1817 rh0->icmp.checksum =
1818 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1819 &bogus_length);
1820 ASSERT (bogus_length == 0);
1821
Ed Warnickecb9cada2015-12-08 15:45:58 -07001822 /* setup output if and adjacency */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001823 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001824 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001825
1826 if (is_solicitation)
1827 {
1828 ethernet_header_t *eth0;
1829 /* Reuse current MAC header, copy SMAC to DMAC and
1830 * interface MAC to SMAC */
1831 vlib_buffer_reset (p0);
1832 eth0 = vlib_buffer_get_current (p0);
1833 clib_memcpy (eth0->dst_address, eth0->src_address,
1834 6);
1835 clib_memcpy (eth0->src_address, eth_if0->address,
1836 6);
1837 next0 =
1838 is_dropped ? next0 :
1839 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX;
1840 vnet_buffer (p0)->sw_if_index[VLIB_TX] =
1841 sw_if_index0;
1842 }
1843 else
1844 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001845 adj_index0 = radv_info->mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001846 if (adj_index0 == 0)
1847 error0 = ICMP6_ERROR_DST_LOOKUP_MISS;
1848 else
1849 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001850 next0 =
1851 is_dropped ? next0 :
1852 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW;
1853 vnet_buffer (p0)->ip.adj_index[VLIB_TX] =
1854 adj_index0;
1855 }
1856 }
Damjan Marion213b5aa2017-07-13 21:19:27 +02001857 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001858
1859 radv_info->n_solicitations_dropped += is_dropped;
1860 radv_info->n_solicitations_rcvd += is_solicitation;
1861
1862 if ((error0 == ICMP6_ERROR_NONE) && !is_dropped)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001863 {
1864 radv_info->n_advertisements_sent++;
1865 n_advertisements_sent++;
1866 }
1867 }
1868 }
1869 }
1870
1871 p0->error = error_node->errors[error0];
1872
Dave Barachd7cb1b52016-12-09 09:52:16 -05001873 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001874 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001875
Ed Warnickecb9cada2015-12-08 15:45:58 -07001876 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1877 to_next, n_left_to_next,
1878 bi0, next0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001879
Ed Warnickecb9cada2015-12-08 15:45:58 -07001880 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001881
Ed Warnickecb9cada2015-12-08 15:45:58 -07001882 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1883 }
1884
1885 /* Account for router advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001886 vlib_error_count (vm, error_node->node_index,
1887 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_TX,
1888 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001889
1890 return frame->n_vectors;
1891}
1892
1893 /* validate advertised info for consistancy (see RFC-4861 section 6.2.7) - log any inconsistencies, packet will always be dropped */
1894static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001895icmp6_router_advertisement (vlib_main_t * vm,
1896 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001897{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001898 vnet_main_t *vnm = vnet_get_main ();
1899 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001900 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001901 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001902 u32 n_left_from, n_left_to_next, next_index;
1903 u32 n_advertisements_rcvd = 0;
1904
Dave Barachd7cb1b52016-12-09 09:52:16 -05001905 vlib_node_runtime_t *error_node =
1906 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001907
1908 from = vlib_frame_vector_args (frame);
1909 n_left_from = n_packets;
1910 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001911
Ed Warnickecb9cada2015-12-08 15:45:58 -07001912 if (node->flags & VLIB_NODE_FLAG_TRACE)
1913 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1914 /* stride */ 1,
1915 sizeof (icmp6_input_trace_t));
1916
1917 while (n_left_from > 0)
1918 {
1919 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001920
Ed Warnickecb9cada2015-12-08 15:45:58 -07001921 while (n_left_from > 0 && n_left_to_next > 0)
1922 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001923 vlib_buffer_t *p0;
1924 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001925 ip6_radv_t *radv_info = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001926 icmp6_router_advertisement_header_t *h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001927 u32 bi0, options_len0, sw_if_index0, next0, error0;
1928
1929 bi0 = to_next[0] = from[0];
1930
1931 from += 1;
1932 to_next += 1;
1933 n_left_from -= 1;
1934 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001935
Ed Warnickecb9cada2015-12-08 15:45:58 -07001936 p0 = vlib_get_buffer (vm, bi0);
1937 ip0 = vlib_buffer_get_current (p0);
1938 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001939 options_len0 =
1940 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001941
1942 error0 = ICMP6_ERROR_NONE;
1943 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1944
Dave Barachd7cb1b52016-12-09 09:52:16 -05001945 /* Check that source address is link-local */
1946 error0 = (!ip6_address_is_link_local_unicast (&ip0->src_address)) ?
Ed Warnickecb9cada2015-12-08 15:45:58 -07001947 ICMP6_ERROR_ROUTER_ADVERTISEMENT_SOURCE_NOT_LINK_LOCAL : error0;
1948
1949 /* default is to drop */
1950 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001951
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952 n_advertisements_rcvd++;
1953
1954 if (error0 == ICMP6_ERROR_NONE)
1955 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001956 vnet_sw_interface_t *sw_if0;
1957 ethernet_interface_t *eth_if0;
1958
Ed Warnickecb9cada2015-12-08 15:45:58 -07001959 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1960 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001961 eth_if0 =
1962 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001963
1964 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001965 error0 =
1966 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1967 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001968
1969 if (error0 == ICMP6_ERROR_NONE)
1970 {
1971 u32 ri;
1972
1973 /* look up the radv_t information for this interface */
Neale Ranns8e254952018-04-25 05:40:48 -07001974 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) >
1975 sw_if_index0)
1976 {
1977 ri =
1978 nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001979
Neale Ranns8e254952018-04-25 05:40:48 -07001980 if (ri != ~0)
1981 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1982 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001983
1984 error0 =
1985 ((!radv_info) ?
1986 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1987 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001988
1989 if (error0 == ICMP6_ERROR_NONE)
1990 {
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001991 radv_info->keep_sending_rs = 0;
1992
1993 ra_report_t r;
1994
1995 r.sw_if_index = sw_if_index0;
1996 memcpy (r.router_address, &ip0->src_address, 16);
1997 r.current_hop_limit = h0->current_hop_limit;
1998 r.flags = h0->flags;
1999 r.router_lifetime_in_sec =
2000 clib_net_to_host_u16 (h0->router_lifetime_in_sec);
2001 r.neighbor_reachable_time_in_msec =
2002 clib_net_to_host_u32
2003 (h0->neighbor_reachable_time_in_msec);
2004 r.time_in_msec_between_retransmitted_neighbor_solicitations = clib_net_to_host_u32 (h0->time_in_msec_between_retransmitted_neighbor_solicitations);
2005 r.prefixes = 0;
2006
Ed Warnickecb9cada2015-12-08 15:45:58 -07002007 /* validate advertised information */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002008 if ((h0->current_hop_limit && radv_info->curr_hop_limit)
2009 && (h0->current_hop_limit !=
2010 radv_info->curr_hop_limit))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002011 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002012 ip6_neighbor_syslog (vm, LOG_WARNING,
2013 "our AdvCurHopLimit on %U doesn't agree with %U",
2014 format_vnet_sw_if_index_name,
2015 vnm, sw_if_index0,
2016 format_ip6_address,
2017 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002018 }
2019
Dave Barachd7cb1b52016-12-09 09:52:16 -05002020 if ((h0->flags &
2021 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP)
2022 != radv_info->adv_managed_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002023 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002024 ip6_neighbor_syslog (vm, LOG_WARNING,
2025 "our AdvManagedFlag on %U doesn't agree with %U",
2026 format_vnet_sw_if_index_name,
2027 vnm, sw_if_index0,
2028 format_ip6_address,
2029 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002030 }
2031
Dave Barachd7cb1b52016-12-09 09:52:16 -05002032 if ((h0->flags &
2033 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP)
2034 != radv_info->adv_other_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002035 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002036 ip6_neighbor_syslog (vm, LOG_WARNING,
2037 "our AdvOtherConfigFlag on %U doesn't agree with %U",
2038 format_vnet_sw_if_index_name,
2039 vnm, sw_if_index0,
2040 format_ip6_address,
2041 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002042 }
2043
Dave Barachd7cb1b52016-12-09 09:52:16 -05002044 if ((h0->
2045 time_in_msec_between_retransmitted_neighbor_solicitations
2046 && radv_info->
2047 adv_time_in_msec_between_retransmitted_neighbor_solicitations)
2048 && (h0->
2049 time_in_msec_between_retransmitted_neighbor_solicitations
2050 !=
2051 clib_host_to_net_u32 (radv_info->
2052 adv_time_in_msec_between_retransmitted_neighbor_solicitations)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002053 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002054 ip6_neighbor_syslog (vm, LOG_WARNING,
2055 "our AdvRetransTimer on %U doesn't agree with %U",
2056 format_vnet_sw_if_index_name,
2057 vnm, sw_if_index0,
2058 format_ip6_address,
2059 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002060 }
2061
Dave Barachd7cb1b52016-12-09 09:52:16 -05002062 if ((h0->neighbor_reachable_time_in_msec &&
2063 radv_info->adv_neighbor_reachable_time_in_msec) &&
2064 (h0->neighbor_reachable_time_in_msec !=
2065 clib_host_to_net_u32
2066 (radv_info->adv_neighbor_reachable_time_in_msec)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002067 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002068 ip6_neighbor_syslog (vm, LOG_WARNING,
2069 "our AdvReachableTime on %U doesn't agree with %U",
2070 format_vnet_sw_if_index_name,
2071 vnm, sw_if_index0,
2072 format_ip6_address,
2073 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002074 }
2075
2076 /* check for MTU or prefix options or .. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002077 u8 *opt_hdr = (u8 *) (h0 + 1);
2078 while (options_len0 > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002079 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002080 icmp6_neighbor_discovery_option_header_t *o0 =
2081 (icmp6_neighbor_discovery_option_header_t *)
2082 opt_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002083 int opt_len = o0->n_data_u64s << 3;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002084 icmp6_neighbor_discovery_option_type_t option_type =
2085 o0->type;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002086
Dave Barachd7cb1b52016-12-09 09:52:16 -05002087 if (options_len0 < 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002088 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002089 ip6_neighbor_syslog (vm, LOG_ERR,
2090 "malformed RA packet on %U from %U",
2091 format_vnet_sw_if_index_name,
2092 vnm, sw_if_index0,
2093 format_ip6_address,
2094 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002095 break;
2096 }
2097
Dave Barachd7cb1b52016-12-09 09:52:16 -05002098 if (opt_len == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002099 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002100 ip6_neighbor_syslog (vm, LOG_ERR,
2101 " zero length option in RA on %U from %U",
2102 format_vnet_sw_if_index_name,
2103 vnm, sw_if_index0,
2104 format_ip6_address,
2105 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002106 break;
2107 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002108 else if (opt_len > options_len0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002110 ip6_neighbor_syslog (vm, LOG_ERR,
2111 "option length in RA packet greater than total length on %U from %U",
2112 format_vnet_sw_if_index_name,
2113 vnm, sw_if_index0,
2114 format_ip6_address,
2115 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002116 break;
2117 }
2118
2119 options_len0 -= opt_len;
2120 opt_hdr += opt_len;
2121
Dave Barachd7cb1b52016-12-09 09:52:16 -05002122 switch (option_type)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002123 {
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002124 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address:
2125 {
2126 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
2127 * h =
2128 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
2129 *) (o0);
2130
2131 if (opt_len < sizeof (*h))
2132 break;
2133
2134 memcpy (r.slla, h->ethernet_address, 6);
2135 }
2136 break;
2137
Ed Warnickecb9cada2015-12-08 15:45:58 -07002138 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu:
Dave Barachd7cb1b52016-12-09 09:52:16 -05002139 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002140 icmp6_neighbor_discovery_mtu_option_t *h =
Dave Barachd7cb1b52016-12-09 09:52:16 -05002141 (icmp6_neighbor_discovery_mtu_option_t
2142 *) (o0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002143
Dave Barachd7cb1b52016-12-09 09:52:16 -05002144 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002145 break;
2146
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002147 r.mtu = clib_net_to_host_u32 (h->mtu);
2148
Dave Barachd7cb1b52016-12-09 09:52:16 -05002149 if ((h->mtu && radv_info->adv_link_mtu) &&
2150 (h->mtu !=
2151 clib_host_to_net_u32
2152 (radv_info->adv_link_mtu)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002153 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002154 ip6_neighbor_syslog (vm, LOG_WARNING,
2155 "our AdvLinkMTU on %U doesn't agree with %U",
2156 format_vnet_sw_if_index_name,
2157 vnm, sw_if_index0,
2158 format_ip6_address,
2159 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002160 }
2161 }
2162 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002163
Ed Warnickecb9cada2015-12-08 15:45:58 -07002164 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information:
2165 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002166 icmp6_neighbor_discovery_prefix_information_option_t
2167 * h =
2168 (icmp6_neighbor_discovery_prefix_information_option_t
2169 *) (o0);
2170
Ed Warnickecb9cada2015-12-08 15:45:58 -07002171 /* validate advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002172 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002173 u32 preferred, valid;
2174
Dave Barachd7cb1b52016-12-09 09:52:16 -05002175 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002176 break;
2177
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002178 vec_validate (r.prefixes,
2179 vec_len (r.prefixes));
2180 ra_report_prefix_info_t *prefix =
2181 vec_elt_at_index (r.prefixes,
2182 vec_len (r.prefixes) - 1);
2183
Dave Barachd7cb1b52016-12-09 09:52:16 -05002184 preferred =
2185 clib_net_to_host_u32 (h->preferred_time);
2186 valid = clib_net_to_host_u32 (h->valid_time);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002187
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002188 prefix->preferred_time = preferred;
2189 prefix->valid_time = valid;
2190 prefix->flags = h->flags & 0xc0;
2191 prefix->dst_address_length =
2192 h->dst_address_length;
2193 prefix->dst_address = h->dst_address;
2194
Ed Warnickecb9cada2015-12-08 15:45:58 -07002195 /* look for matching prefix - if we our advertising it, it better be consistant */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002196 /* *INDENT-OFF* */
2197 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
2198 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002199
Dave Barachd7cb1b52016-12-09 09:52:16 -05002200 ip6_address_t mask;
2201 ip6_address_mask_from_width(&mask, pr_info->prefix_len);
2202
2203 if(pr_info->enabled &&
2204 (pr_info->prefix_len == h->dst_address_length) &&
2205 ip6_address_is_equal_masked (&pr_info->prefix, &h->dst_address, &mask))
2206 {
2207 /* found it */
2208 if(!pr_info->decrement_lifetime_flag &&
2209 valid != pr_info->adv_valid_lifetime_in_secs)
2210 {
2211 ip6_neighbor_syslog(vm, LOG_WARNING,
2212 "our ADV validlifetime on %U for %U does not agree with %U",
2213 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2214 format_ip6_address, &h->dst_address);
2215 }
2216 if(!pr_info->decrement_lifetime_flag &&
2217 preferred != pr_info->adv_pref_lifetime_in_secs)
2218 {
2219 ip6_neighbor_syslog(vm, LOG_WARNING,
2220 "our ADV preferredlifetime on %U for %U does not agree with %U",
2221 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2222 format_ip6_address, &h->dst_address);
2223 }
2224 }
2225 break;
2226 }));
2227 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002228 break;
2229 }
2230 default:
2231 /* skip this one */
2232 break;
2233 }
2234 }
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002235 ra_publish (&r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002236 }
2237 }
2238 }
2239
2240 p0->error = error_node->errors[error0];
2241
Dave Barachd7cb1b52016-12-09 09:52:16 -05002242 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002243 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002244
Ed Warnickecb9cada2015-12-08 15:45:58 -07002245 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2246 to_next, n_left_to_next,
2247 bi0, next0);
2248 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002249
Ed Warnickecb9cada2015-12-08 15:45:58 -07002250 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2251 }
2252
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002253 /* Account for router advertisements received. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002254 vlib_error_count (vm, error_node->node_index,
2255 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_RX,
2256 n_advertisements_rcvd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002257
2258 return frame->n_vectors;
2259}
2260
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002261static inline f64
2262random_f64_from_to (f64 from, f64 to)
2263{
2264 static u32 seed = 0;
2265 static u8 seed_set = 0;
2266 if (!seed_set)
2267 {
2268 seed = random_default_seed ();
2269 seed_set = 1;
2270 }
2271 return random_f64 (&seed) * (to - from) + from;
2272}
2273
2274static inline u8
2275get_mac_address (u32 sw_if_index, u8 * address)
2276{
2277 vnet_main_t *vnm = vnet_get_main ();
2278 vnet_hw_interface_t *hw_if = vnet_get_sup_hw_interface (vnm, sw_if_index);
2279 if (!hw_if->hw_address)
2280 return 1;
2281 clib_memcpy (address, hw_if->hw_address, 6);
2282 return 0;
2283}
2284
2285static inline vlib_buffer_t *
2286create_buffer_for_rs (vlib_main_t * vm, ip6_radv_t * radv_info)
2287{
2288 u32 bi0;
2289 vlib_buffer_t *p0;
2290 vlib_buffer_free_list_t *fl;
2291 icmp6_router_solicitation_header_t *rh;
2292 u16 payload_length;
2293 int bogus_length;
2294 u32 sw_if_index;
2295
2296 sw_if_index = radv_info->sw_if_index;
2297
2298 if (vlib_buffer_alloc (vm, &bi0, 1) != 1)
2299 {
2300 clib_warning ("buffer allocation failure");
2301 return 0;
2302 }
2303
2304 p0 = vlib_get_buffer (vm, bi0);
2305 fl = vlib_buffer_get_free_list (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
2306 vlib_buffer_init_for_free_list (p0, fl);
2307 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (p0);
2308 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
2309
2310 vnet_buffer (p0)->sw_if_index[VLIB_RX] = sw_if_index;
2311 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index;
2312
2313 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = radv_info->mcast_adj_index;
2314
2315 rh = vlib_buffer_get_current (p0);
2316 p0->current_length = sizeof (*rh);
2317
2318 rh->neighbor.icmp.type = ICMP6_router_solicitation;
2319 rh->neighbor.icmp.code = 0;
2320 rh->neighbor.icmp.checksum = 0;
2321 rh->neighbor.reserved_must_be_zero = 0;
2322
2323 rh->link_layer_option.header.type =
2324 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
2325 if (0 != get_mac_address (sw_if_index,
2326 rh->link_layer_option.ethernet_address))
2327 {
2328 clib_warning ("interface with sw_if_index %u has no mac address",
2329 sw_if_index);
2330 vlib_buffer_free (vm, &bi0, 1);
2331 return 0;
2332 }
2333 rh->link_layer_option.header.n_data_u64s = 1;
2334
2335 payload_length = sizeof (rh->neighbor) + sizeof (u64);
2336
2337 rh->ip.ip_version_traffic_class_and_flow_label =
2338 clib_host_to_net_u32 (0x6 << 28);
2339 rh->ip.payload_length = clib_host_to_net_u16 (payload_length);
2340 rh->ip.protocol = IP_PROTOCOL_ICMP6;
2341 rh->ip.hop_limit = 255;
2342 rh->ip.src_address = radv_info->link_local_address;
2343 /* set address ff02::2 */
2344 rh->ip.dst_address.as_u64[0] = clib_host_to_net_u64 (0xff02L << 48);
2345 rh->ip.dst_address.as_u64[1] = clib_host_to_net_u64 (2);
2346
2347 rh->neighbor.icmp.checksum = ip6_tcp_udp_icmp_compute_checksum (vm, p0,
2348 &rh->ip,
2349 &bogus_length);
2350
2351 return p0;
2352}
2353
2354static inline void
2355stop_sending_rs (vlib_main_t * vm, ip6_radv_t * ra)
2356{
2357 u32 bi0;
2358
2359 ra->keep_sending_rs = 0;
2360 if (ra->buffer)
2361 {
2362 bi0 = vlib_get_buffer_index (vm, ra->buffer);
2363 vlib_buffer_free (vm, &bi0, 1);
2364 ra->buffer = 0;
2365 }
2366}
2367
2368static inline bool
2369check_send_rs (vlib_main_t * vm, ip6_radv_t * radv_info, f64 current_time,
2370 f64 * due_time)
2371{
2372 vlib_buffer_t *p0;
2373 vlib_frame_t *f;
2374 u32 *to_next;
2375 u32 next_index;
2376 vlib_buffer_t *c0;
2377 u32 ci0;
2378
2379 icmp6_send_router_solicitation_params_t *params;
2380
2381 if (!radv_info->keep_sending_rs)
2382 return false;
2383
2384 params = &radv_info->params;
2385
2386 if (radv_info->due_time > current_time)
2387 {
2388 *due_time = radv_info->due_time;
2389 return true;
2390 }
2391
2392 p0 = radv_info->buffer;
2393
2394 next_index = ip6_rewrite_mcast_node.index;
2395
2396 c0 = vlib_buffer_copy (vm, p0);
2397 ci0 = vlib_get_buffer_index (vm, c0);
2398
2399 f = vlib_get_frame_to_node (vm, next_index);
2400 to_next = vlib_frame_vector_args (f);
2401 to_next[0] = ci0;
2402 f->n_vectors = 1;
2403 vlib_put_frame_to_node (vm, next_index, f);
2404
2405 if (params->mrc != 0 && --radv_info->n_left == 0)
2406 stop_sending_rs (vm, radv_info);
2407 else
2408 {
2409 radv_info->sleep_interval =
2410 (2 + random_f64_from_to (-0.1, 0.1)) * radv_info->sleep_interval;
2411 if (radv_info->sleep_interval > params->mrt)
2412 radv_info->sleep_interval =
2413 (1 + random_f64_from_to (-0.1, 0.1)) * params->mrt;
2414
2415 radv_info->due_time = current_time + radv_info->sleep_interval;
2416
2417 if (params->mrd != 0
2418 && current_time > radv_info->start_time + params->mrd)
2419 stop_sending_rs (vm, radv_info);
2420 else
2421 *due_time = radv_info->due_time;
2422 }
2423
2424 return radv_info->keep_sending_rs;
2425}
2426
2427static uword
2428send_rs_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
2429 vlib_frame_t * f0)
2430{
2431 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2432 ip6_radv_t *radv_info;
2433 uword *event_data = 0;
2434 f64 sleep_time = 1e9;
2435 f64 current_time;
2436 f64 due_time;
2437 f64 dt = 0;
2438
2439 while (true)
2440 {
2441 vlib_process_wait_for_event_or_clock (vm, sleep_time);
2442 vlib_process_get_events (vm, &event_data);
2443 vec_reset_length (event_data);
2444
2445 current_time = vlib_time_now (vm);
2446 do
2447 {
2448 due_time = current_time + 1e9;
2449 /* *INDENT-OFF* */
2450 pool_foreach (radv_info, nm->if_radv_pool,
2451 ({
2452 if (check_send_rs (vm, radv_info, current_time, &dt)
2453 && (dt < due_time))
2454 due_time = dt;
2455 }));
2456 /* *INDENT-ON* */
2457 current_time = vlib_time_now (vm);
2458 }
2459 while (due_time < current_time);
2460
2461 sleep_time = due_time - current_time;
2462 }
2463
2464 return 0;
2465}
2466
2467/* *INDENT-OFF* */
2468VLIB_REGISTER_NODE (send_rs_process_node) = {
2469 .function = send_rs_process,
2470 .type = VLIB_NODE_TYPE_PROCESS,
2471 .name = "send-rs-process",
2472};
2473/* *INDENT-ON* */
2474
2475void
2476icmp6_send_router_solicitation (vlib_main_t * vm, u32 sw_if_index, u8 stop,
2477 icmp6_send_router_solicitation_params_t *
2478 params)
2479{
2480 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2481 u32 rai;
2482 ip6_radv_t *ra = 0;
2483
2484 ASSERT (~0 != sw_if_index);
2485
2486 rai = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2487 ra = pool_elt_at_index (nm->if_radv_pool, rai);
2488
Juraj Sloboda52574522018-05-03 10:03:50 +02002489 stop_sending_rs (vm, ra);
2490
2491 if (!stop)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002492 {
2493 ra->keep_sending_rs = 1;
2494 ra->params = *params;
2495 ra->n_left = params->mrc;
2496 ra->start_time = vlib_time_now (vm);
2497 ra->sleep_interval = (1 + random_f64_from_to (-0.1, 0.1)) * params->irt;
2498 ra->due_time = 0; /* send first packet ASAP */
2499 ra->buffer = create_buffer_for_rs (vm, ra);
2500 if (!ra->buffer)
2501 ra->keep_sending_rs = 0;
2502 else
2503 vlib_process_signal_event (vm, send_rs_process_node.index, 1, 0);
2504 }
2505}
2506
Neale Ranns87df12d2017-02-18 08:16:41 -08002507/**
2508 * @brief Add a multicast Address to the advertised MLD set
2509 */
2510static void
2511ip6_neighbor_add_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2512{
2513 ip6_mldp_group_t *mcast_group_info;
2514 uword *p;
2515
2516 /* lookup mldp info for this interface */
Neale Rannse0a35442018-02-25 10:39:02 -08002517 p = mhash_get (&radv_info->address_to_mldp_index, addr);
Neale Ranns87df12d2017-02-18 08:16:41 -08002518 mcast_group_info =
2519 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2520
2521 /* add address */
2522 if (!mcast_group_info)
2523 {
2524 /* add */
2525 u32 mi;
2526 pool_get (radv_info->mldp_group_pool, mcast_group_info);
2527
2528 mi = mcast_group_info - radv_info->mldp_group_pool;
Neale Rannse0a35442018-02-25 10:39:02 -08002529 mhash_set (&radv_info->address_to_mldp_index, addr, mi, /* old_value */
Neale Ranns87df12d2017-02-18 08:16:41 -08002530 0);
2531
2532 mcast_group_info->type = 4;
2533 mcast_group_info->mcast_source_address_pool = 0;
2534 mcast_group_info->num_sources = 0;
Neale Rannse0a35442018-02-25 10:39:02 -08002535 clib_memcpy (&mcast_group_info->mcast_address, addr,
Neale Ranns87df12d2017-02-18 08:16:41 -08002536 sizeof (ip6_address_t));
2537 }
2538}
2539
2540/**
2541 * @brief Delete a multicast Address from the advertised MLD set
2542 */
2543static void
2544ip6_neighbor_del_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2545{
2546 ip6_mldp_group_t *mcast_group_info;
2547 uword *p;
2548
2549 p = mhash_get (&radv_info->address_to_mldp_index, &addr);
2550 mcast_group_info =
2551 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2552
2553 if (mcast_group_info)
2554 {
2555 mhash_unset (&radv_info->address_to_mldp_index, &addr,
2556 /* old_value */ 0);
2557 pool_put (radv_info->mldp_group_pool, mcast_group_info);
2558 }
2559}
2560
2561/**
2562 * @brief Add a multicast Address to the advertised MLD set
2563 */
2564static void
2565ip6_neighbor_add_mld_grp (ip6_radv_t * a,
2566 ip6_multicast_address_scope_t scope,
2567 ip6_multicast_link_local_group_id_t group)
2568{
2569 ip6_address_t addr;
2570
2571 ip6_set_reserved_multicast_address (&addr, scope, group);
2572
2573 ip6_neighbor_add_mld_prefix (a, &addr);
2574}
2575
2576/**
2577 * @brief create and initialize router advertisement parameters with default
2578 * values for this intfc
2579 */
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +02002580u32
Ed Warnickecb9cada2015-12-08 15:45:58 -07002581ip6_neighbor_sw_interface_add_del (vnet_main_t * vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002582 u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002583{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002584 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2585 ip6_radv_t *a = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002586 u32 ri = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002587 vnet_sw_interface_t *sw_if0;
2588 ethernet_interface_t *eth_if0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002589
2590 /* lookup radv container - ethernet interfaces only */
2591 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002592 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002593 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2594
Dave Barachd7cb1b52016-12-09 09:52:16 -05002595 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002596 return ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002597
2598 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2599 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002600 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2601
Dave Barachd7cb1b52016-12-09 09:52:16 -05002602 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002603 {
2604 a = pool_elt_at_index (nm->if_radv_pool, ri);
2605
Dave Barachd7cb1b52016-12-09 09:52:16 -05002606 if (!is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002607 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002608 ip6_radv_prefix_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002609 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002610
Neale Ranns32e1c012016-11-22 17:07:28 +00002611 /* release the lock on the interface's mcast adj */
2612 adj_unlock (a->mcast_adj_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002613
Neale Ranns87df12d2017-02-18 08:16:41 -08002614 /* clean up prefix and MDP pools */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002615 /* *INDENT-OFF* */
Neale Ranns87df12d2017-02-18 08:16:41 -08002616 pool_flush(p, a->adv_prefixes_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002617 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002618 mhash_unset (&a->address_to_prefix_index, &p->prefix, 0);
Neale Ranns87df12d2017-02-18 08:16:41 -08002619 }));
2620 pool_flush (m, a->mldp_group_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002621 ({
Neale Ranns87df12d2017-02-18 08:16:41 -08002622 mhash_unset (&a->address_to_mldp_index, &m->mcast_address, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002623 }));
2624 /* *INDENT-ON* */
2625
Neale Ranns87df12d2017-02-18 08:16:41 -08002626 pool_free (a->mldp_group_pool);
2627 pool_free (a->adv_prefixes_pool);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002628
Neale Ranns87df12d2017-02-18 08:16:41 -08002629 mhash_free (&a->address_to_prefix_index);
2630 mhash_free (&a->address_to_mldp_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002631
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002632 if (a->keep_sending_rs)
2633 a->keep_sending_rs = 0;
2634
Dave Barachd7cb1b52016-12-09 09:52:16 -05002635 pool_put (nm->if_radv_pool, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002636 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ~0;
2637 ri = ~0;
2638 }
2639 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002640 else
2641 {
2642 if (is_add)
2643 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002644 pool_get (nm->if_radv_pool, a);
2645
2646 ri = a - nm->if_radv_pool;
2647 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ri;
2648
2649 /* initialize default values (most of which are zero) */
2650 memset (a, 0, sizeof (a[0]));
2651
2652 a->sw_if_index = sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002653 a->max_radv_interval = DEF_MAX_RADV_INTERVAL;
2654 a->min_radv_interval = DEF_MIN_RADV_INTERVAL;
2655 a->curr_hop_limit = DEF_CURR_HOP_LIMIT;
2656 a->adv_router_lifetime_in_sec = DEF_DEF_RTR_LIFETIME;
2657
Neale Ranns87df12d2017-02-18 08:16:41 -08002658 /* send ll address source address option */
2659 a->adv_link_layer_address = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002660
2661 a->min_delay_between_radv = MIN_DELAY_BETWEEN_RAS;
2662 a->max_delay_between_radv = MAX_DELAY_BETWEEN_RAS;
2663 a->max_rtr_default_lifetime = MAX_DEF_RTR_LIFETIME;
2664 a->seed = (u32) clib_cpu_time_now ();
2665 (void) random_u32 (&a->seed);
2666 a->randomizer = clib_cpu_time_now ();
2667 (void) random_u64 (&a->randomizer);
2668
2669 a->initial_adverts_count = MAX_INITIAL_RTR_ADVERTISEMENTS;
2670 a->initial_adverts_sent = a->initial_adverts_count - 1;
2671 a->initial_adverts_interval = MAX_INITIAL_RTR_ADVERT_INTERVAL;
2672
2673 /* deafult is to send */
2674 a->send_radv = 1;
2675
2676 /* fill in radv_info for this interface that will be needed later */
Ole Troand7231612018-06-07 10:17:57 +02002677 a->adv_link_mtu =
2678 vnet_sw_interface_get_mtu (vnm, sw_if_index, VNET_MTU_IP6);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002679
2680 clib_memcpy (a->link_layer_address, eth_if0->address, 6);
2681
2682 /* fill in default link-local address (this may be overridden) */
2683 ip6_link_local_address_from_ethernet_address
2684 (&a->link_local_address, eth_if0->address);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002685
2686 mhash_init (&a->address_to_prefix_index, sizeof (uword),
2687 sizeof (ip6_address_t));
2688 mhash_init (&a->address_to_mldp_index, sizeof (uword),
2689 sizeof (ip6_address_t));
2690
Neale Ranns32e1c012016-11-22 17:07:28 +00002691 a->mcast_adj_index = adj_mcast_add_or_lock (FIB_PROTOCOL_IP6,
2692 VNET_LINK_IP6,
2693 sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002694
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002695 a->keep_sending_rs = 0;
2696
Dave Barachd7cb1b52016-12-09 09:52:16 -05002697 /* add multicast groups we will always be reporting */
Neale Ranns87df12d2017-02-18 08:16:41 -08002698 ip6_neighbor_add_mld_grp (a,
2699 IP6_MULTICAST_SCOPE_link_local,
2700 IP6_MULTICAST_GROUP_ID_all_hosts);
2701 ip6_neighbor_add_mld_grp (a,
2702 IP6_MULTICAST_SCOPE_link_local,
2703 IP6_MULTICAST_GROUP_ID_all_routers);
2704 ip6_neighbor_add_mld_grp (a,
2705 IP6_MULTICAST_SCOPE_link_local,
2706 IP6_MULTICAST_GROUP_ID_mldv2_routers);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002707 }
2708 }
2709 return ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002710}
2711
2712/* send an mldpv2 report */
2713static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05002714ip6_neighbor_send_mldpv2_report (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002715{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002716 vnet_main_t *vnm = vnet_get_main ();
2717 vlib_main_t *vm = vnm->vlib_main;
2718 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2719 vnet_sw_interface_t *sw_if0;
2720 ethernet_interface_t *eth_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002721 u32 ri;
2722 int bogus_length;
2723
Dave Barachd7cb1b52016-12-09 09:52:16 -05002724 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002725 u16 payload_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002726 vlib_buffer_t *b0;
2727 ip6_header_t *ip0;
2728 u32 *to_next;
2729 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002730 u32 bo0;
2731 u32 n_to_alloc = 1;
2732 u32 n_allocated;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002733
Ed Warnickecb9cada2015-12-08 15:45:58 -07002734 icmp6_multicast_listener_report_header_t *rh0;
2735 icmp6_multicast_listener_report_packet_t *rp0;
2736
2737 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
2738 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
2739 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2740
2741 if (!eth_if0 || !vnet_sw_interface_is_admin_up (vnm, sw_if_index))
2742 return;
2743
2744 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002745 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2746 ~0);
2747
Ed Warnickecb9cada2015-12-08 15:45:58 -07002748 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05002749
2750 if (ri == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002751 return;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002752
Ed Warnickecb9cada2015-12-08 15:45:58 -07002753 /* send report now - build a mldpv2 report packet */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002754 n_allocated = vlib_buffer_alloc_from_free_list (vm,
2755 &bo0,
2756 n_to_alloc,
2757 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
2758 if (PREDICT_FALSE (n_allocated == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002759 {
2760 clib_warning ("buffer allocation failure");
2761 return;
2762 }
2763
2764 b0 = vlib_get_buffer (vm, bo0);
2765
2766 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002767 b0->current_length = sizeof (icmp6_multicast_listener_report_packet_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002768
Dave Barachd7cb1b52016-12-09 09:52:16 -05002769 payload_length = sizeof (icmp6_multicast_listener_report_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002770
2771 b0->error = ICMP6_ERROR_NONE;
2772
2773 rp0 = vlib_buffer_get_current (b0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002774 ip0 = (ip6_header_t *) & rp0->ip;
2775 rh0 = (icmp6_multicast_listener_report_header_t *) & rp0->report_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002776
Dave Barachd7cb1b52016-12-09 09:52:16 -05002777 memset (rp0, 0x0, sizeof (icmp6_multicast_listener_report_packet_t));
2778
2779 ip0->ip_version_traffic_class_and_flow_label =
2780 clib_host_to_net_u32 (0x6 << 28);
2781
2782 ip0->protocol = IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002783 /* for DEBUG - vnet driver won't seem to emit router alerts */
2784 /* ip0->protocol = IP_PROTOCOL_ICMP6; */
2785 ip0->hop_limit = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002786
Ed Warnickecb9cada2015-12-08 15:45:58 -07002787 rh0->icmp.type = ICMP6_multicast_listener_report_v2;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002788
Ed Warnickecb9cada2015-12-08 15:45:58 -07002789 /* source address MUST be the link-local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002790 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
2791 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002792
2793 /* destination is all mldpv2 routers */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002794 ip6_set_reserved_multicast_address (&ip0->dst_address,
2795 IP6_MULTICAST_SCOPE_link_local,
2796 IP6_MULTICAST_GROUP_ID_mldv2_routers);
2797
Ed Warnickecb9cada2015-12-08 15:45:58 -07002798 /* add reports here */
2799 ip6_mldp_group_t *m;
2800 int num_addr_records = 0;
2801 icmp6_multicast_address_record_t rr;
2802
2803 /* fill in the hop-by-hop extension header (router alert) info */
2804 rh0->ext_hdr.next_hdr = IP_PROTOCOL_ICMP6;
2805 rh0->ext_hdr.n_data_u64s = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002806
Ed Warnickecb9cada2015-12-08 15:45:58 -07002807 rh0->alert.type = IP6_MLDP_ALERT_TYPE;
2808 rh0->alert.len = 2;
2809 rh0->alert.value = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002810
Ed Warnickecb9cada2015-12-08 15:45:58 -07002811 rh0->pad.type = 1;
2812 rh0->pad.len = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002813
Ed Warnickecb9cada2015-12-08 15:45:58 -07002814 rh0->icmp.checksum = 0;
2815
Dave Barachd7cb1b52016-12-09 09:52:16 -05002816 /* *INDENT-OFF* */
2817 pool_foreach (m, radv_info->mldp_group_pool,
2818 ({
2819 rr.type = m->type;
2820 rr.aux_data_len_u32s = 0;
2821 rr.num_sources = clib_host_to_net_u16 (m->num_sources);
2822 clib_memcpy(&rr.mcast_addr, &m->mcast_address, sizeof(ip6_address_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002823
Dave Barachd7cb1b52016-12-09 09:52:16 -05002824 num_addr_records++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002825
Dave Barachd7cb1b52016-12-09 09:52:16 -05002826 vlib_buffer_add_data
Damjan Marion072401e2017-07-13 18:53:27 +02002827 (vm, vlib_buffer_get_free_list_index (b0), bo0,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002828 (void *)&rr, sizeof(icmp6_multicast_address_record_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002829
Dave Barachd7cb1b52016-12-09 09:52:16 -05002830 payload_length += sizeof( icmp6_multicast_address_record_t);
2831 }));
2832 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002833
2834 rh0->rsvd = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002835 rh0->num_addr_records = clib_host_to_net_u16 (num_addr_records);
2836
Ed Warnickecb9cada2015-12-08 15:45:58 -07002837 /* update lengths */
2838 ip0->payload_length = clib_host_to_net_u16 (payload_length);
2839
Dave Barachd7cb1b52016-12-09 09:52:16 -05002840 rh0->icmp.checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0,
2841 &bogus_length);
2842 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002843
Dave Barachd7cb1b52016-12-09 09:52:16 -05002844 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002845 * OK to override w/ no regard for actual FIB, because
Neale Rannsf06aea52016-11-29 06:51:37 -08002846 * ip6-rewrite only looks at the adjacency.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002847 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002848 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002849 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002850
Neale Ranns32e1c012016-11-22 17:07:28 +00002851 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = radv_info->mcast_adj_index;
Damjan Marion213b5aa2017-07-13 21:19:27 +02002852 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002853
Neale Ranns32e1c012016-11-22 17:07:28 +00002854 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "ip6-rewrite-mcast");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002855
Ed Warnickecb9cada2015-12-08 15:45:58 -07002856 f = vlib_get_frame_to_node (vm, node->index);
2857 to_next = vlib_frame_vector_args (f);
2858 to_next[0] = bo0;
2859 f->n_vectors = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002860
Ed Warnickecb9cada2015-12-08 15:45:58 -07002861 vlib_put_frame_to_node (vm, node->index, f);
2862 return;
2863}
2864
Dave Barachd7cb1b52016-12-09 09:52:16 -05002865/* *INDENT-OFF* */
2866VLIB_REGISTER_NODE (ip6_icmp_router_solicitation_node,static) =
2867{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002868 .function = icmp6_router_solicitation,
2869 .name = "icmp6-router-solicitation",
2870
2871 .vector_size = sizeof (u32),
2872
2873 .format_trace = format_icmp6_input_trace,
2874
2875 .n_next_nodes = ICMP6_ROUTER_SOLICITATION_N_NEXT,
2876 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002877 [ICMP6_ROUTER_SOLICITATION_NEXT_DROP] = "ip6-drop",
Neale Ranns32e1c012016-11-22 17:07:28 +00002878 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW] = "ip6-rewrite-mcast",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002879 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX] = "interface-output",
2880 },
2881};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002882/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002883
2884/* send a RA or update the timer info etc.. */
2885static uword
2886ip6_neighbor_process_timer_event (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002887 vlib_node_runtime_t * node,
2888 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002889{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002890 vnet_main_t *vnm = vnet_get_main ();
2891 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2892 ip6_radv_t *radv_info;
2893 vlib_frame_t *f = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002894 u32 n_this_frame = 0;
Benoît Ganned5304452016-04-08 22:25:05 -07002895 u32 n_left_to_next = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002896 u32 *to_next = 0;
2897 u32 bo0;
2898 icmp6_router_solicitation_header_t *h0;
2899 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002900 f64 now = vlib_time_now (vm);
2901
2902 /* Interface ip6 radv info list */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002903 /* *INDENT-OFF* */
2904 pool_foreach (radv_info, nm->if_radv_pool,
2905 ({
2906 if( !vnet_sw_interface_is_admin_up (vnm, radv_info->sw_if_index))
2907 {
2908 radv_info->initial_adverts_sent = radv_info->initial_adverts_count-1;
2909 radv_info->next_multicast_time = now;
2910 radv_info->last_multicast_time = now;
2911 radv_info->last_radv_time = 0;
2912 radv_info->all_routers_mcast = 0;
2913 continue;
2914 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002915
Dave Barachd7cb1b52016-12-09 09:52:16 -05002916 /* Make sure that we've joined the all-routers multicast group */
2917 if(!radv_info->all_routers_mcast)
2918 {
2919 /* send MDLP_REPORT_EVENT message */
2920 ip6_neighbor_send_mldpv2_report(radv_info->sw_if_index);
2921 radv_info->all_routers_mcast = 1;
2922 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002923
Dave Barachd7cb1b52016-12-09 09:52:16 -05002924 /* is it time to send a multicast RA on this interface? */
2925 if(radv_info->send_radv && (now >= radv_info->next_multicast_time))
2926 {
2927 u32 n_to_alloc = 1;
2928 u32 n_allocated;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002929
Dave Barachd7cb1b52016-12-09 09:52:16 -05002930 f64 rfn = (radv_info->max_radv_interval - radv_info->min_radv_interval) *
2931 random_f64 (&radv_info->seed) + radv_info->min_radv_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002932
Dave Barachd7cb1b52016-12-09 09:52:16 -05002933 /* multicast send - compute next multicast send time */
2934 if( radv_info->initial_adverts_sent > 0)
2935 {
2936 radv_info->initial_adverts_sent--;
2937 if(rfn > radv_info-> initial_adverts_interval)
2938 rfn = radv_info-> initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002939
Dave Barachd7cb1b52016-12-09 09:52:16 -05002940 /* check to see if we are ceasing to send */
2941 if( radv_info->initial_adverts_sent == 0)
2942 if(radv_info->cease_radv)
2943 radv_info->send_radv = 0;
2944 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002945
Dave Barachd7cb1b52016-12-09 09:52:16 -05002946 radv_info->next_multicast_time = rfn + now;
2947 radv_info->last_multicast_time = now;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002948
Dave Barachd7cb1b52016-12-09 09:52:16 -05002949 /* send advert now - build a "solicted" router advert with unspecified source address */
2950 n_allocated = vlib_buffer_alloc_from_free_list
2951 (vm, &bo0, n_to_alloc, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002952
Dave Barachd7cb1b52016-12-09 09:52:16 -05002953 if (PREDICT_FALSE(n_allocated == 0))
2954 {
2955 clib_warning ("buffer allocation failure");
2956 continue;
2957 }
2958 b0 = vlib_get_buffer (vm, bo0);
2959 b0->current_length = sizeof( icmp6_router_solicitation_header_t);
2960 b0->error = ICMP6_ERROR_NONE;
2961 vnet_buffer (b0)->sw_if_index[VLIB_RX] = radv_info->sw_if_index;
2962
2963 h0 = vlib_buffer_get_current (b0);
2964
2965 memset (h0, 0, sizeof (icmp6_router_solicitation_header_t));
2966
2967 h0->ip.ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (0x6 << 28);
2968 h0->ip.payload_length = clib_host_to_net_u16 (sizeof (icmp6_router_solicitation_header_t)
2969 - STRUCT_OFFSET_OF (icmp6_router_solicitation_header_t, neighbor));
2970 h0->ip.protocol = IP_PROTOCOL_ICMP6;
2971 h0->ip.hop_limit = 255;
2972
2973 /* set src/dst address as "unspecified" this marks this packet as internally generated rather than recieved */
2974 h0->ip.src_address.as_u64[0] = 0;
2975 h0->ip.src_address.as_u64[1] = 0;
2976
2977 h0->ip.dst_address.as_u64[0] = 0;
2978 h0->ip.dst_address.as_u64[1] = 0;
2979
2980 h0->neighbor.icmp.type = ICMP6_router_solicitation;
2981
2982 if (PREDICT_FALSE(f == 0))
2983 {
2984 f = vlib_get_frame_to_node (vm, ip6_icmp_router_solicitation_node.index);
2985 to_next = vlib_frame_vector_args (f);
2986 n_left_to_next = VLIB_FRAME_SIZE;
2987 n_this_frame = 0;
2988 }
2989
2990 n_this_frame++;
2991 n_left_to_next--;
2992 to_next[0] = bo0;
2993 to_next += 1;
2994
2995 if (PREDICT_FALSE(n_left_to_next == 0))
2996 {
2997 f->n_vectors = n_this_frame;
2998 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
2999 f = 0;
3000 }
3001 }
3002 }));
3003 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003004
3005 if (f)
3006 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003007 ASSERT (n_this_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003008 f->n_vectors = n_this_frame;
3009 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
3010 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003011 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003012}
3013
3014static uword
3015ip6_icmp_neighbor_discovery_event_process (vlib_main_t * vm,
3016 vlib_node_runtime_t * node,
3017 vlib_frame_t * frame)
3018{
3019 uword event_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003020 ip6_icmp_neighbor_discovery_event_data_t *event_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003021
3022 /* init code here */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003023
Ed Warnickecb9cada2015-12-08 15:45:58 -07003024 while (1)
3025 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003026 vlib_process_wait_for_event_or_clock (vm, 1. /* seconds */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003027
Dave Barachd7cb1b52016-12-09 09:52:16 -05003028 event_data = vlib_process_get_event_data (vm, &event_type);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003029
Dave Barachd7cb1b52016-12-09 09:52:16 -05003030 if (!event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003031 {
3032 /* No events found: timer expired. */
3033 /* process interface list and send RAs as appropriate, update timer info */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003034 ip6_neighbor_process_timer_event (vm, node, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003035 }
3036 else
3037 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003038 switch (event_type)
3039 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07003040
Dave Barachd7cb1b52016-12-09 09:52:16 -05003041 case ICMP6_ND_EVENT_INIT:
3042 break;
3043
3044 case ~0:
3045 break;
3046
3047 default:
3048 ASSERT (0);
3049 }
3050
Ed Warnickecb9cada2015-12-08 15:45:58 -07003051 if (event_data)
3052 _vec_len (event_data) = 0;
3053 }
3054 }
3055 return frame->n_vectors;
3056}
3057
Dave Barachd7cb1b52016-12-09 09:52:16 -05003058/* *INDENT-OFF* */
3059VLIB_REGISTER_NODE (ip6_icmp_router_advertisement_node,static) =
3060{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003061 .function = icmp6_router_advertisement,
3062 .name = "icmp6-router-advertisement",
3063
3064 .vector_size = sizeof (u32),
3065
3066 .format_trace = format_icmp6_input_trace,
3067
3068 .n_next_nodes = 1,
3069 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003070 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003071 },
3072};
Dave Barachd7cb1b52016-12-09 09:52:16 -05003073/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003074
3075vlib_node_registration_t ip6_icmp_neighbor_discovery_event_node = {
3076
3077 .function = ip6_icmp_neighbor_discovery_event_process,
3078 .name = "ip6-icmp-neighbor-discovery-event-process",
3079 .type = VLIB_NODE_TYPE_PROCESS,
3080};
3081
3082static uword
3083icmp6_neighbor_solicitation (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003084 vlib_node_runtime_t * node, vlib_frame_t * frame)
3085{
3086 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
3087 /* is_solicitation */
3088 1);
3089}
Ed Warnickecb9cada2015-12-08 15:45:58 -07003090
3091static uword
3092icmp6_neighbor_advertisement (vlib_main_t * vm,
3093 vlib_node_runtime_t * node,
3094 vlib_frame_t * frame)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003095{
3096 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
3097 /* is_solicitation */
3098 0);
3099}
Ed Warnickecb9cada2015-12-08 15:45:58 -07003100
Dave Barachd7cb1b52016-12-09 09:52:16 -05003101/* *INDENT-OFF* */
3102VLIB_REGISTER_NODE (ip6_icmp_neighbor_solicitation_node,static) =
3103{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003104 .function = icmp6_neighbor_solicitation,
3105 .name = "icmp6-neighbor-solicitation",
3106
3107 .vector_size = sizeof (u32),
3108
3109 .format_trace = format_icmp6_input_trace,
3110
3111 .n_next_nodes = ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
3112 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003113 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003114 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY] = "interface-output",
3115 },
3116};
Dave Barachd7cb1b52016-12-09 09:52:16 -05003117/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003118
Dave Barachd7cb1b52016-12-09 09:52:16 -05003119/* *INDENT-OFF* */
3120VLIB_REGISTER_NODE (ip6_icmp_neighbor_advertisement_node,static) =
3121{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003122 .function = icmp6_neighbor_advertisement,
3123 .name = "icmp6-neighbor-advertisement",
3124
3125 .vector_size = sizeof (u32),
3126
3127 .format_trace = format_icmp6_input_trace,
3128
3129 .n_next_nodes = 1,
3130 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003131 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003132 },
3133};
Dave Barachd7cb1b52016-12-09 09:52:16 -05003134/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003135
Neale Rannsc7b8f202018-04-25 06:34:31 -07003136typedef enum
3137{
3138 IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
3139 IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX,
3140 IP6_DISCOVER_NEIGHBOR_N_NEXT,
3141} ip6_discover_neighbor_next_t;
3142
3143typedef enum
3144{
3145 IP6_DISCOVER_NEIGHBOR_ERROR_DROP,
3146 IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT,
3147 IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS,
3148} ip6_discover_neighbor_error_t;
3149
3150static uword
3151ip6_discover_neighbor_inline (vlib_main_t * vm,
3152 vlib_node_runtime_t * node,
3153 vlib_frame_t * frame, int is_glean)
3154{
3155 vnet_main_t *vnm = vnet_get_main ();
3156 ip6_main_t *im = &ip6_main;
3157 ip_lookup_main_t *lm = &im->lookup_main;
3158 u32 *from, *to_next_drop;
3159 uword n_left_from, n_left_to_next_drop;
3160 static f64 time_last_seed_change = -1e100;
3161 static u32 hash_seeds[3];
3162 static uword hash_bitmap[256 / BITS (uword)];
3163 f64 time_now;
3164 int bogus_length;
3165 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3166
3167 if (node->flags & VLIB_NODE_FLAG_TRACE)
3168 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
3169
3170 time_now = vlib_time_now (vm);
3171 if (time_now - time_last_seed_change > 1e-3)
3172 {
3173 uword i;
3174 u32 *r = clib_random_buffer_get_data (&vm->random_buffer,
3175 sizeof (hash_seeds));
3176 for (i = 0; i < ARRAY_LEN (hash_seeds); i++)
3177 hash_seeds[i] = r[i];
3178
3179 /* Mark all hash keys as been not-seen before. */
3180 for (i = 0; i < ARRAY_LEN (hash_bitmap); i++)
3181 hash_bitmap[i] = 0;
3182
3183 time_last_seed_change = time_now;
3184 }
3185
3186 from = vlib_frame_vector_args (frame);
3187 n_left_from = frame->n_vectors;
3188
3189 while (n_left_from > 0)
3190 {
3191 vlib_get_next_frame (vm, node, IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
3192 to_next_drop, n_left_to_next_drop);
3193
3194 while (n_left_from > 0 && n_left_to_next_drop > 0)
3195 {
3196 vlib_buffer_t *p0;
3197 ip6_header_t *ip0;
3198 u32 pi0, adj_index0, a0, b0, c0, m0, sw_if_index0, drop0;
3199 uword bm0;
3200 ip_adjacency_t *adj0;
3201 vnet_hw_interface_t *hw_if0;
3202 ip6_radv_t *radv_info;
3203 u32 next0;
3204
3205 pi0 = from[0];
3206
3207 p0 = vlib_get_buffer (vm, pi0);
3208
3209 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
3210
3211 ip0 = vlib_buffer_get_current (p0);
3212
3213 adj0 = adj_get (adj_index0);
3214
3215 if (!is_glean)
3216 {
3217 ip0->dst_address.as_u64[0] =
3218 adj0->sub_type.nbr.next_hop.ip6.as_u64[0];
3219 ip0->dst_address.as_u64[1] =
3220 adj0->sub_type.nbr.next_hop.ip6.as_u64[1];
3221 }
3222
3223 a0 = hash_seeds[0];
3224 b0 = hash_seeds[1];
3225 c0 = hash_seeds[2];
3226
3227 sw_if_index0 = adj0->rewrite_header.sw_if_index;
3228 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
3229
3230 a0 ^= sw_if_index0;
3231 b0 ^= ip0->dst_address.as_u32[0];
3232 c0 ^= ip0->dst_address.as_u32[1];
3233
3234 hash_v3_mix32 (a0, b0, c0);
3235
3236 b0 ^= ip0->dst_address.as_u32[2];
3237 c0 ^= ip0->dst_address.as_u32[3];
3238
3239 hash_v3_finalize32 (a0, b0, c0);
3240
3241 c0 &= BITS (hash_bitmap) - 1;
3242 c0 = c0 / BITS (uword);
3243 m0 = (uword) 1 << (c0 % BITS (uword));
3244
3245 bm0 = hash_bitmap[c0];
3246 drop0 = (bm0 & m0) != 0;
3247
3248 /* Mark it as seen. */
3249 hash_bitmap[c0] = bm0 | m0;
3250
3251 from += 1;
3252 n_left_from -= 1;
3253 to_next_drop[0] = pi0;
3254 to_next_drop += 1;
3255 n_left_to_next_drop -= 1;
3256
3257 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
3258
3259 /* If the interface is link-down, drop the pkt */
3260 if (!(hw_if0->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
3261 drop0 = 1;
3262
3263 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) > sw_if_index0)
3264 {
3265 u32 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
3266
3267 if (ri != ~0)
3268 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3269 else
3270 drop0 = 1;
3271 }
3272 else
3273 drop0 = 1;
3274
3275 /*
3276 * the adj has been updated to a rewrite but the node the DPO that got
3277 * us here hasn't - yet. no big deal. we'll drop while we wait.
3278 */
3279 if (IP_LOOKUP_NEXT_REWRITE == adj0->lookup_next_index)
3280 drop0 = 1;
3281
3282 p0->error =
3283 node->errors[drop0 ? IP6_DISCOVER_NEIGHBOR_ERROR_DROP
3284 : IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT];
3285
3286 if (drop0)
3287 continue;
3288
3289 {
3290 u32 bi0 = 0;
3291 icmp6_neighbor_solicitation_header_t *h0;
3292 vlib_buffer_t *b0;
3293
3294 h0 = vlib_packet_template_get_packet
3295 (vm, &im->discover_neighbor_packet_template, &bi0);
John Lo084606b2018-06-19 15:27:48 -04003296 if (!h0)
3297 continue;
Neale Rannsc7b8f202018-04-25 06:34:31 -07003298
3299 /*
3300 * Build ethernet header.
3301 * Choose source address based on destination lookup
3302 * adjacency.
3303 */
3304 if (!ip6_src_address_for_packet (lm,
3305 sw_if_index0,
3306 &ip0->dst_address,
3307 &h0->ip.src_address))
3308 {
3309 /* There is no address on the interface */
3310 p0->error =
3311 node->errors[IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS];
3312 vlib_buffer_free (vm, &bi0, 1);
3313 continue;
3314 }
3315
3316 /*
3317 * Destination address is a solicited node multicast address.
3318 * We need to fill in
3319 * the low 24 bits with low 24 bits of target's address.
3320 */
3321 h0->ip.dst_address.as_u8[13] = ip0->dst_address.as_u8[13];
3322 h0->ip.dst_address.as_u8[14] = ip0->dst_address.as_u8[14];
3323 h0->ip.dst_address.as_u8[15] = ip0->dst_address.as_u8[15];
3324
3325 h0->neighbor.target_address = ip0->dst_address;
3326
3327 clib_memcpy (h0->link_layer_option.ethernet_address,
3328 hw_if0->hw_address, vec_len (hw_if0->hw_address));
3329
3330 /* $$$$ appears we need this; why is the checksum non-zero? */
3331 h0->neighbor.icmp.checksum = 0;
3332 h0->neighbor.icmp.checksum =
3333 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h0->ip,
3334 &bogus_length);
3335
3336 ASSERT (bogus_length == 0);
3337
3338 vlib_buffer_copy_trace_flag (vm, p0, bi0);
3339 b0 = vlib_get_buffer (vm, bi0);
3340 vnet_buffer (b0)->sw_if_index[VLIB_TX]
3341 = vnet_buffer (p0)->sw_if_index[VLIB_TX];
3342
3343 vnet_buffer (b0)->ip.adj_index[VLIB_TX] =
3344 radv_info->mcast_adj_index;
3345
3346 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
3347 next0 = IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX;
3348
3349 vlib_set_next_frame_buffer (vm, node, next0, bi0);
3350 }
3351 }
3352
3353 vlib_put_next_frame (vm, node, IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
3354 n_left_to_next_drop);
3355 }
3356
3357 return frame->n_vectors;
3358}
3359
3360static uword
3361ip6_discover_neighbor (vlib_main_t * vm,
3362 vlib_node_runtime_t * node, vlib_frame_t * frame)
3363{
3364 return (ip6_discover_neighbor_inline (vm, node, frame, 0));
3365}
3366
3367static uword
3368ip6_glean (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
3369{
3370 return (ip6_discover_neighbor_inline (vm, node, frame, 1));
3371}
3372
3373static char *ip6_discover_neighbor_error_strings[] = {
3374 [IP6_DISCOVER_NEIGHBOR_ERROR_DROP] = "address overflow drops",
3375 [IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT] = "neighbor solicitations sent",
3376 [IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS]
3377 = "no source address for ND solicitation",
3378};
3379
3380/* *INDENT-OFF* */
3381VLIB_REGISTER_NODE (ip6_glean_node) =
3382{
3383 .function = ip6_glean,
3384 .name = "ip6-glean",
3385 .vector_size = sizeof (u32),
3386 .format_trace = format_ip6_forward_next_trace,
3387 .n_errors = ARRAY_LEN (ip6_discover_neighbor_error_strings),
3388 .error_strings = ip6_discover_neighbor_error_strings,
3389 .n_next_nodes = IP6_DISCOVER_NEIGHBOR_N_NEXT,
3390 .next_nodes =
3391 {
3392 [IP6_DISCOVER_NEIGHBOR_NEXT_DROP] = "ip6-drop",
3393 [IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX] = "ip6-rewrite-mcast",
3394 },
3395};
3396VLIB_REGISTER_NODE (ip6_discover_neighbor_node) =
3397{
3398 .function = ip6_discover_neighbor,
3399 .name = "ip6-discover-neighbor",
3400 .vector_size = sizeof (u32),
3401 .format_trace = format_ip6_forward_next_trace,
3402 .n_errors = ARRAY_LEN (ip6_discover_neighbor_error_strings),
3403 .error_strings = ip6_discover_neighbor_error_strings,
3404 .n_next_nodes = IP6_DISCOVER_NEIGHBOR_N_NEXT,
3405 .next_nodes =
3406 {
3407 [IP6_DISCOVER_NEIGHBOR_NEXT_DROP] = "ip6-drop",
3408 [IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX] = "ip6-rewrite-mcast",
3409 },
3410};
3411/* *INDENT-ON* */
3412
Dave Barachd7cb1b52016-12-09 09:52:16 -05003413/* API support functions */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003414int
Dave Barachd7cb1b52016-12-09 09:52:16 -05003415ip6_neighbor_ra_config (vlib_main_t * vm, u32 sw_if_index,
3416 u8 suppress, u8 managed, u8 other,
3417 u8 ll_option, u8 send_unicast, u8 cease,
3418 u8 use_lifetime, u32 lifetime,
3419 u32 initial_count, u32 initial_interval,
3420 u32 max_interval, u32 min_interval, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003421{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003422 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3423 int error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003424 u32 ri;
3425
3426 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003427 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3428 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003429 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003430 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003431
Dave Barachd7cb1b52016-12-09 09:52:16 -05003432 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003433 {
3434
Dave Barachd7cb1b52016-12-09 09:52:16 -05003435 ip6_radv_t *radv_info;
3436 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003437
Dave Barachd7cb1b52016-12-09 09:52:16 -05003438 if ((max_interval != 0) && (min_interval == 0))
3439 min_interval = .75 * max_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003440
Dave Barachd7cb1b52016-12-09 09:52:16 -05003441 max_interval =
3442 (max_interval !=
3443 0) ? ((is_no) ? DEF_MAX_RADV_INTERVAL : max_interval) :
3444 radv_info->max_radv_interval;
3445 min_interval =
3446 (min_interval !=
3447 0) ? ((is_no) ? DEF_MIN_RADV_INTERVAL : min_interval) :
3448 radv_info->min_radv_interval;
3449 lifetime =
3450 (use_lifetime !=
3451 0) ? ((is_no) ? DEF_DEF_RTR_LIFETIME : lifetime) :
3452 radv_info->adv_router_lifetime_in_sec;
3453
3454 if (lifetime)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003455 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003456 if (lifetime > MAX_DEF_RTR_LIFETIME)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003457 lifetime = MAX_DEF_RTR_LIFETIME;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003458
3459 if (lifetime <= max_interval)
3460 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003461 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003462
3463 if (min_interval != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003464 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003465 if ((min_interval > .75 * max_interval) || (min_interval < 3))
3466 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003467 }
3468
Dave Barachd7cb1b52016-12-09 09:52:16 -05003469 if ((initial_count > MAX_INITIAL_RTR_ADVERTISEMENTS) ||
3470 (initial_interval > MAX_INITIAL_RTR_ADVERT_INTERVAL))
3471 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003472
Dave Barachd7cb1b52016-12-09 09:52:16 -05003473 /*
3474 if "flag" is set and is_no is true then restore default value else set value corresponding to "flag"
3475 if "flag" is clear don't change corresponding value
3476 */
3477 radv_info->send_radv =
3478 (suppress != 0) ? ((is_no != 0) ? 1 : 0) : radv_info->send_radv;
3479 radv_info->adv_managed_flag =
3480 (managed != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_managed_flag;
3481 radv_info->adv_other_flag =
3482 (other != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_other_flag;
3483 radv_info->adv_link_layer_address =
3484 (ll_option !=
3485 0) ? ((is_no) ? 1 : 0) : radv_info->adv_link_layer_address;
3486 radv_info->send_unicast =
3487 (send_unicast != 0) ? ((is_no) ? 0 : 1) : radv_info->send_unicast;
3488 radv_info->cease_radv =
3489 (cease != 0) ? ((is_no) ? 0 : 1) : radv_info->cease_radv;
3490
3491 radv_info->min_radv_interval = min_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003492 radv_info->max_radv_interval = max_interval;
3493 radv_info->adv_router_lifetime_in_sec = lifetime;
3494
Dave Barachd7cb1b52016-12-09 09:52:16 -05003495 radv_info->initial_adverts_count =
3496 (initial_count !=
3497 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERTISEMENTS : initial_count) :
3498 radv_info->initial_adverts_count;
3499 radv_info->initial_adverts_interval =
3500 (initial_interval !=
3501 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERT_INTERVAL : initial_interval) :
3502 radv_info->initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003503
3504 /* restart */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003505 if ((cease != 0) && (is_no))
3506 radv_info->send_radv = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003507
Dave Barachd7cb1b52016-12-09 09:52:16 -05003508 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
3509 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003510 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003511 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003512 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003513 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003514}
3515
3516int
Dave Barachd7cb1b52016-12-09 09:52:16 -05003517ip6_neighbor_ra_prefix (vlib_main_t * vm, u32 sw_if_index,
3518 ip6_address_t * prefix_addr, u8 prefix_len,
3519 u8 use_default, u32 val_lifetime, u32 pref_lifetime,
3520 u8 no_advertise, u8 off_link, u8 no_autoconfig,
3521 u8 no_onlink, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003522{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003523 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003524 int error;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003525
Ed Warnickecb9cada2015-12-08 15:45:58 -07003526 u32 ri;
3527
3528 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003529 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3530 ~0);
3531
Ed Warnickecb9cada2015-12-08 15:45:58 -07003532 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3533
3534 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003535
3536 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003537 {
3538 f64 now = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003539 ip6_radv_t *radv_info;
3540 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003541
3542 /* prefix info add, delete or update */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003543 ip6_radv_prefix_t *prefix;
3544
Ed Warnickecb9cada2015-12-08 15:45:58 -07003545 /* lookup prefix info for this address on this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003546 uword *p = mhash_get (&radv_info->address_to_prefix_index, prefix_addr);
3547
Ed Warnickecb9cada2015-12-08 15:45:58 -07003548 prefix = p ? pool_elt_at_index (radv_info->adv_prefixes_pool, p[0]) : 0;
3549
Dave Barachd7cb1b52016-12-09 09:52:16 -05003550 if (is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003551 {
3552 /* delete */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003553 if (!prefix)
3554 return VNET_API_ERROR_INVALID_VALUE; /* invalid prefix */
3555
3556 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003557 return VNET_API_ERROR_INVALID_VALUE_2;
3558
Dave Barachd7cb1b52016-12-09 09:52:16 -05003559 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003560 /* do specific delete processing here before returning */
3561 /* try to remove from routing table */
3562
Dave Barachd7cb1b52016-12-09 09:52:16 -05003563 mhash_unset (&radv_info->address_to_prefix_index, prefix_addr,
3564 /* old_value */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003565 pool_put (radv_info->adv_prefixes_pool, prefix);
3566
Dave Barachd7cb1b52016-12-09 09:52:16 -05003567 radv_info->initial_adverts_sent =
3568 radv_info->initial_adverts_count - 1;
3569 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003570 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003571 radv_info->last_radv_time = 0;
3572 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003573 }
3574
3575 /* adding or changing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003576 if (!prefix)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003577 {
3578 /* add */
3579 u32 pi;
3580 pool_get (radv_info->adv_prefixes_pool, prefix);
3581 pi = prefix - radv_info->adv_prefixes_pool;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003582 mhash_set (&radv_info->address_to_prefix_index, prefix_addr, pi,
3583 /* old_value */ 0);
3584
3585 memset (prefix, 0x0, sizeof (ip6_radv_prefix_t));
3586
Ed Warnickecb9cada2015-12-08 15:45:58 -07003587 prefix->prefix_len = prefix_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003588 clib_memcpy (&prefix->prefix, prefix_addr, sizeof (ip6_address_t));
3589
Ed Warnickecb9cada2015-12-08 15:45:58 -07003590 /* initialize default values */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003591 prefix->adv_on_link_flag = 1; /* L bit set */
3592 prefix->adv_autonomous_flag = 1; /* A bit set */
3593 prefix->adv_valid_lifetime_in_secs = DEF_ADV_VALID_LIFETIME;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003594 prefix->adv_pref_lifetime_in_secs = DEF_ADV_PREF_LIFETIME;
3595 prefix->enabled = 1;
3596 prefix->decrement_lifetime_flag = 1;
3597 prefix->deprecated_prefix_flag = 1;
3598
Dave Barachd7cb1b52016-12-09 09:52:16 -05003599 if (off_link == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003600 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003601 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003602 /* insert prefix into routing table as a connected prefix */
3603 }
3604
Dave Barachd7cb1b52016-12-09 09:52:16 -05003605 if (use_default)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003606 goto restart;
3607 }
3608 else
3609 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003610
3611 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003612 return VNET_API_ERROR_INVALID_VALUE_2;
3613
Dave Barachd7cb1b52016-12-09 09:52:16 -05003614 if (off_link != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003615 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003616 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003617 /* remove from routing table if already there */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003618 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003619 }
3620
Dave Barachd7cb1b52016-12-09 09:52:16 -05003621 if ((val_lifetime == ~0) || (pref_lifetime == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003622 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003623 prefix->adv_valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003624 prefix->adv_pref_lifetime_in_secs = ~0;
3625 prefix->decrement_lifetime_flag = 0;
3626 }
3627 else
3628 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003629 prefix->adv_valid_lifetime_in_secs = val_lifetime;;
3630 prefix->adv_pref_lifetime_in_secs = pref_lifetime;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003631 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003632
Ed Warnickecb9cada2015-12-08 15:45:58 -07003633 /* copy remaining */
3634 prefix->enabled = !(no_advertise != 0);
3635 prefix->adv_on_link_flag = !((off_link != 0) || (no_onlink != 0));
3636 prefix->adv_autonomous_flag = !(no_autoconfig != 0);
3637
Dave Barachd7cb1b52016-12-09 09:52:16 -05003638 restart:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003639 /* restart */
3640 /* fill in the expiration times */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003641 prefix->valid_lifetime_expires =
3642 now + prefix->adv_valid_lifetime_in_secs;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003643 prefix->pref_lifetime_expires = now + prefix->adv_pref_lifetime_in_secs;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003644
3645 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
3646 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003647 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003648 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003649 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003650 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003651}
3652
3653clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05003654ip6_neighbor_cmd (vlib_main_t * vm, unformat_input_t * main_input,
3655 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003656{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003657 vnet_main_t *vnm = vnet_get_main ();
3658 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3659 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003660 u8 is_no = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003661 u8 suppress = 0, managed = 0, other = 0;
3662 u8 suppress_ll_option = 0, send_unicast = 0, cease = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003663 u8 use_lifetime = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003664 u32 sw_if_index, ra_lifetime = 0, ra_initial_count =
3665 0, ra_initial_interval = 0;
3666 u32 ra_max_interval = 0, ra_min_interval = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003667
Dave Barachd7cb1b52016-12-09 09:52:16 -05003668 unformat_input_t _line_input, *line_input = &_line_input;
3669 vnet_sw_interface_t *sw_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003670
3671 int add_radv_info = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003672 __attribute__ ((unused)) ip6_radv_t *radv_info = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003673 ip6_address_t ip6_addr;
3674 u32 addr_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003675
Ed Warnickecb9cada2015-12-08 15:45:58 -07003676
3677 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003678 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003679 return 0;
3680
3681 /* get basic radv info for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003682 if (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003683 {
3684
Dave Barachd7cb1b52016-12-09 09:52:16 -05003685 if (unformat_user (line_input,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003686 unformat_vnet_sw_interface, vnm, &sw_if_index))
3687 {
3688 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003689 ethernet_interface_t *eth_if0 = 0;
3690
Ed Warnickecb9cada2015-12-08 15:45:58 -07003691 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003692 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
3693 eth_if0 =
3694 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
3695
3696 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003697 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003698 error =
3699 clib_error_return (0, "Interface must be of ethernet type");
Ed Warnickecb9cada2015-12-08 15:45:58 -07003700 goto done;
3701 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003702
Ed Warnickecb9cada2015-12-08 15:45:58 -07003703 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003704 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3705 sw_if_index, ~0);
3706
Ed Warnickecb9cada2015-12-08 15:45:58 -07003707 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003708
3709 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003710 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003711 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003712 }
3713 else
3714 {
3715 error = clib_error_return (0, "unknown interface %U'",
3716 format_unformat_error, line_input);
3717 goto done;
3718 }
3719 }
3720 else
3721 {
3722 error = clib_error_return (0, "invalid interface name %U'",
3723 format_unformat_error, line_input);
3724 goto done;
3725 }
3726 }
3727
3728 /* get the rest of the command */
3729 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3730 {
3731 if (unformat (line_input, "no"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05003732 is_no = 1;
3733 else if (unformat (line_input, "prefix %U/%d",
3734 unformat_ip6_address, &ip6_addr, &addr_len))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003735 {
3736 add_radv_info = 0;
3737 break;
3738 }
3739 else if (unformat (line_input, "ra-managed-config-flag"))
3740 {
3741 managed = 1;
3742 break;
3743 }
3744 else if (unformat (line_input, "ra-other-config-flag"))
3745 {
3746 other = 1;
3747 break;
3748 }
Chris Luke33879c92016-06-28 19:54:21 -04003749 else if (unformat (line_input, "ra-suppress") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003750 unformat (line_input, "ra-surpress"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003751 {
Chris Luke33879c92016-06-28 19:54:21 -04003752 suppress = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003753 break;
3754 }
Chris Luke33879c92016-06-28 19:54:21 -04003755 else if (unformat (line_input, "ra-suppress-link-layer") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003756 unformat (line_input, "ra-surpress-link-layer"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003757 {
Chris Luke33879c92016-06-28 19:54:21 -04003758 suppress_ll_option = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003759 break;
3760 }
3761 else if (unformat (line_input, "ra-send-unicast"))
3762 {
3763 send_unicast = 1;
3764 break;
3765 }
3766 else if (unformat (line_input, "ra-lifetime"))
3767 {
3768 if (!unformat (line_input, "%d", &ra_lifetime))
Billy McFalla9a20e72017-02-15 11:39:12 -05003769 {
3770 error = unformat_parse_error (line_input);
3771 goto done;
3772 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003773 use_lifetime = 1;
3774 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003775 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003776 else if (unformat (line_input, "ra-initial"))
3777 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003778 if (!unformat
3779 (line_input, "%d %d", &ra_initial_count, &ra_initial_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003780 {
3781 error = unformat_parse_error (line_input);
3782 goto done;
3783 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003784 break;
3785 }
3786 else if (unformat (line_input, "ra-interval"))
3787 {
3788 if (!unformat (line_input, "%d", &ra_max_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003789 {
3790 error = unformat_parse_error (line_input);
3791 goto done;
3792 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003793
3794 if (!unformat (line_input, "%d", &ra_min_interval))
3795 ra_min_interval = 0;
3796 break;
3797 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003798 else if (unformat (line_input, "ra-cease"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003799 {
3800 cease = 1;
3801 break;
3802 }
3803 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003804 {
3805 error = unformat_parse_error (line_input);
3806 goto done;
3807 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003808 }
3809
Dave Barachd7cb1b52016-12-09 09:52:16 -05003810 if (add_radv_info)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003811 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003812 ip6_neighbor_ra_config (vm, sw_if_index,
3813 suppress, managed, other,
3814 suppress_ll_option, send_unicast, cease,
3815 use_lifetime, ra_lifetime,
3816 ra_initial_count, ra_initial_interval,
3817 ra_max_interval, ra_min_interval, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003818 }
3819 else
3820 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003821 u32 valid_lifetime_in_secs = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003822 u32 pref_lifetime_in_secs = 0;
3823 u8 use_prefix_default_values = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003824 u8 no_advertise = 0;
3825 u8 off_link = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003826 u8 no_autoconfig = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003827 u8 no_onlink = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003828
3829 /* get the rest of the command */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003830 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003831 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003832 if (unformat (line_input, "default"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003833 {
3834 use_prefix_default_values = 1;
3835 break;
3836 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003837 else if (unformat (line_input, "infinite"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003838 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003839 valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003840 pref_lifetime_in_secs = ~0;
3841 break;
3842 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003843 else if (unformat (line_input, "%d %d", &valid_lifetime_in_secs,
3844 &pref_lifetime_in_secs))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003845 break;
3846 else
3847 break;
3848 }
3849
3850
3851 /* get the rest of the command */
3852 while (!use_prefix_default_values &&
3853 unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3854 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003855 if (unformat (line_input, "no-advertise"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003856 no_advertise = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003857 else if (unformat (line_input, "off-link"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003858 off_link = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003859 else if (unformat (line_input, "no-autoconfig"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003860 no_autoconfig = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003861 else if (unformat (line_input, "no-onlink"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003862 no_onlink = 1;
3863 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003864 {
3865 error = unformat_parse_error (line_input);
3866 goto done;
3867 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003868 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003869
3870 ip6_neighbor_ra_prefix (vm, sw_if_index,
3871 &ip6_addr, addr_len,
3872 use_prefix_default_values,
3873 valid_lifetime_in_secs,
3874 pref_lifetime_in_secs,
3875 no_advertise,
3876 off_link, no_autoconfig, no_onlink, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003877 }
3878
Billy McFalla9a20e72017-02-15 11:39:12 -05003879done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003880 unformat_free (line_input);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003881
Ed Warnickecb9cada2015-12-08 15:45:58 -07003882 return error;
3883}
3884
Chris Lukebfd32fd2016-06-24 20:38:06 -04003885static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05003886ip6_print_addrs (vlib_main_t * vm, u32 * addrs)
Chris Lukebfd32fd2016-06-24 20:38:06 -04003887{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003888 ip_lookup_main_t *lm = &ip6_main.lookup_main;
Chris Lukebfd32fd2016-06-24 20:38:06 -04003889 u32 i;
3890
3891 for (i = 0; i < vec_len (addrs); i++)
3892 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003893 ip_interface_address_t *a =
3894 pool_elt_at_index (lm->if_address_pool, addrs[i]);
3895 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003896
3897 vlib_cli_output (vm, "\t\t%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05003898 format_ip6_address, address, a->address_length);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003899 }
3900}
3901
Ed Warnickecb9cada2015-12-08 15:45:58 -07003902static clib_error_t *
3903show_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003904 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003905{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003906 vnet_main_t *vnm = vnet_get_main ();
3907 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3908 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003909 u32 sw_if_index;
3910
3911 sw_if_index = ~0;
3912
Dave Barachd7cb1b52016-12-09 09:52:16 -05003913 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003914 {
3915 u32 ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003916
Dave Barachd7cb1b52016-12-09 09:52:16 -05003917 /* look up the radv_t information for this interface */
3918 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3919 sw_if_index, ~0);
3920
3921 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3922
3923 if (ri != ~0)
3924 {
3925 ip_lookup_main_t *lm = &ip6_main.lookup_main;
3926 ip6_radv_t *radv_info;
3927 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3928
3929 vlib_cli_output (vm, "%U is admin %s\n",
3930 format_vnet_sw_interface_name, vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003931 vnet_get_sw_interface (vnm, sw_if_index),
Dave Barachd7cb1b52016-12-09 09:52:16 -05003932 (vnet_sw_interface_is_admin_up (vnm, sw_if_index) ?
3933 "up" : "down"));
3934
Chris Lukebfd32fd2016-06-24 20:38:06 -04003935 u32 ai;
3936 u32 *link_scope = 0, *global_scope = 0;
3937 u32 *local_scope = 0, *unknown_scope = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003938 ip_interface_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003939
Dave Barachd7cb1b52016-12-09 09:52:16 -05003940 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
3941 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003942 ai = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
3943
Dave Barachd7cb1b52016-12-09 09:52:16 -05003944 while (ai != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003945 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003946 a = pool_elt_at_index (lm->if_address_pool, ai);
3947 ip6_address_t *address =
3948 ip_interface_address_get_address (lm, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003949
Chris Lukebfd32fd2016-06-24 20:38:06 -04003950 if (ip6_address_is_link_local_unicast (address))
3951 vec_add1 (link_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003952 else if (ip6_address_is_global_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003953 vec_add1 (global_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003954 else if (ip6_address_is_local_unicast (address))
Chris Lukebfd32fd2016-06-24 20:38:06 -04003955 vec_add1 (local_scope, ai);
3956 else
3957 vec_add1 (unknown_scope, ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003958
3959 ai = a->next_this_sw_interface;
3960 }
3961
Dave Barachd7cb1b52016-12-09 09:52:16 -05003962 if (vec_len (link_scope))
3963 {
3964 vlib_cli_output (vm, "\tLink-local address(es):\n");
3965 ip6_print_addrs (vm, link_scope);
3966 vec_free (link_scope);
3967 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003968
Dave Barachd7cb1b52016-12-09 09:52:16 -05003969 if (vec_len (local_scope))
3970 {
3971 vlib_cli_output (vm, "\tLocal unicast address(es):\n");
3972 ip6_print_addrs (vm, local_scope);
3973 vec_free (local_scope);
3974 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003975
Dave Barachd7cb1b52016-12-09 09:52:16 -05003976 if (vec_len (global_scope))
3977 {
3978 vlib_cli_output (vm, "\tGlobal unicast address(es):\n");
3979 ip6_print_addrs (vm, global_scope);
3980 vec_free (global_scope);
3981 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003982
Dave Barachd7cb1b52016-12-09 09:52:16 -05003983 if (vec_len (unknown_scope))
3984 {
3985 vlib_cli_output (vm, "\tOther-scope address(es):\n");
3986 ip6_print_addrs (vm, unknown_scope);
3987 vec_free (unknown_scope);
3988 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003989
Neale Ranns53da2212018-02-24 02:11:19 -08003990 vlib_cli_output (vm, "\tLink-local address(es):\n");
3991 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3992 &radv_info->link_local_address);
3993
Ed Warnickecb9cada2015-12-08 15:45:58 -07003994 vlib_cli_output (vm, "\tJoined group address(es):\n");
3995 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003996 /* *INDENT-OFF* */
3997 pool_foreach (m, radv_info->mldp_group_pool,
3998 ({
3999 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
4000 &m->mcast_address);
4001 }));
4002 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004003
4004 vlib_cli_output (vm, "\tAdvertised Prefixes:\n");
Dave Barachd7cb1b52016-12-09 09:52:16 -05004005 ip6_radv_prefix_t *p;
4006 /* *INDENT-OFF* */
4007 pool_foreach (p, radv_info->adv_prefixes_pool,
4008 ({
4009 vlib_cli_output (vm, "\t\tprefix %U, length %d\n",
4010 format_ip6_address, &p->prefix, p->prefix_len);
4011 }));
4012 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004013
Dave Barachd7cb1b52016-12-09 09:52:16 -05004014 vlib_cli_output (vm, "\tMTU is %d\n", radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004015 vlib_cli_output (vm, "\tICMP error messages are unlimited\n");
4016 vlib_cli_output (vm, "\tICMP redirects are disabled\n");
4017 vlib_cli_output (vm, "\tICMP unreachables are not sent\n");
4018 vlib_cli_output (vm, "\tND DAD is disabled\n");
4019 //vlib_cli_output (vm, "\tND reachable time is %d milliseconds\n",);
4020 vlib_cli_output (vm, "\tND advertised reachable time is %d\n",
4021 radv_info->adv_neighbor_reachable_time_in_msec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004022 vlib_cli_output (vm,
4023 "\tND advertised retransmit interval is %d (msec)\n",
4024 radv_info->
4025 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004026
4027 u32 ra_interval = radv_info->max_radv_interval;
4028 u32 ra_interval_min = radv_info->min_radv_interval;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004029 vlib_cli_output (vm,
4030 "\tND router advertisements are sent every %d seconds (min interval is %d)\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004031 ra_interval, ra_interval_min);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004032 vlib_cli_output (vm,
4033 "\tND router advertisements live for %d seconds\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004034 radv_info->adv_router_lifetime_in_sec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004035 vlib_cli_output (vm,
4036 "\tHosts %s stateless autoconfig for addresses\n",
4037 (radv_info->adv_managed_flag) ? "use" :
4038 " don't use");
4039 vlib_cli_output (vm, "\tND router advertisements sent %d\n",
4040 radv_info->n_advertisements_sent);
4041 vlib_cli_output (vm, "\tND router solicitations received %d\n",
4042 radv_info->n_solicitations_rcvd);
4043 vlib_cli_output (vm, "\tND router solicitations dropped %d\n",
4044 radv_info->n_solicitations_dropped);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004045 }
4046 else
4047 {
Chris Lukebfd32fd2016-06-24 20:38:06 -04004048 error = clib_error_return (0, "IPv6 not enabled on interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004049 format_unformat_error, input);
4050
4051 }
4052 }
4053 return error;
4054}
4055
Billy McFall0683c9c2016-10-13 08:27:31 -04004056/*?
4057 * This command is used to display various IPv6 attributes on a given
4058 * interface.
4059 *
4060 * @cliexpar
4061 * Example of how to display IPv6 settings:
4062 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
4063 * GigabitEthernet2/0/0 is admin up
4064 * Link-local address(es):
4065 * fe80::ab8/64
4066 * Joined group address(es):
4067 * ff02::1
4068 * ff02::2
4069 * ff02::16
4070 * ff02::1:ff00:ab8
4071 * Advertised Prefixes:
4072 * prefix fe80::fe:28ff:fe9c:75b3, length 64
4073 * MTU is 1500
4074 * ICMP error messages are unlimited
4075 * ICMP redirects are disabled
4076 * ICMP unreachables are not sent
4077 * ND DAD is disabled
4078 * ND advertised reachable time is 0
4079 * ND advertised retransmit interval is 0 (msec)
4080 * ND router advertisements are sent every 200 seconds (min interval is 150)
4081 * ND router advertisements live for 600 seconds
4082 * Hosts use stateless autoconfig for addresses
4083 * ND router advertisements sent 19336
4084 * ND router solicitations received 0
4085 * ND router solicitations dropped 0
4086 * @cliexend
4087 * Example of output if IPv6 is not enabled on the interface:
4088 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
4089 * show ip6 interface: IPv6 not enabled on interface
4090 * @cliexend
4091?*/
4092/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004093VLIB_CLI_COMMAND (show_ip6_interface_command, static) =
4094{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004095 .path = "show ip6 interface",
4096 .function = show_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04004097 .short_help = "show ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004098};
Billy McFall0683c9c2016-10-13 08:27:31 -04004099/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004100
4101clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05004102disable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004103{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004104 clib_error_t *error = 0;
4105 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004106 u32 ri;
4107
4108 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004109 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
4110 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004111 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004112
Ed Warnickecb9cada2015-12-08 15:45:58 -07004113 /* if not created - do nothing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004114 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004115 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004116 ip6_radv_t *radv_info;
4117
4118 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004119
4120 /* check radv_info ref count for other ip6 addresses on this interface */
Wojciech Dec7bc73102017-02-14 16:24:28 +01004121 /* This implicitly excludes the link local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004122 if (radv_info->ref_count == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004123 {
4124 /* essentially "disables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08004125 ip6_ll_prefix_t ilp = {
4126 .ilp_addr = radv_info->link_local_address,
4127 .ilp_sw_if_index = sw_if_index,
4128 };
4129 ip6_ll_table_entry_delete (&ilp);
4130 ip6_sw_interface_enable_disable (sw_if_index, 0);
Neale Ranns4008ac92017-02-13 23:20:04 -08004131 ip6_mfib_interface_enable_disable (sw_if_index, 0);
Neale Ranns53da2212018-02-24 02:11:19 -08004132 ip6_neighbor_sw_interface_add_del (vnet_get_main (), sw_if_index,
4133 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004134 }
4135 }
4136 return error;
4137}
4138
4139int
Dave Barachd7cb1b52016-12-09 09:52:16 -05004140ip6_interface_enabled (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004141{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004142 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4143 u32 ri = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004144
Dave Barachd7cb1b52016-12-09 09:52:16 -05004145 /* look up the radv_t information for this interface */
4146 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
4147 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004148
Dave Barachd7cb1b52016-12-09 09:52:16 -05004149 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07004150
Dave Barachd7cb1b52016-12-09 09:52:16 -05004151 return ri != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004152}
4153
Dave Barachd7cb1b52016-12-09 09:52:16 -05004154clib_error_t *
4155enable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004156{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004157 clib_error_t *error = 0;
4158 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004159 u32 ri;
4160 int is_add = 1;
4161
4162 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004163 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
4164 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004165
Dave Barachd7cb1b52016-12-09 09:52:16 -05004166 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
4167
4168 /* if not created yet */
4169 if (ri == ~0)
4170 {
4171 vnet_main_t *vnm = vnet_get_main ();
4172 vnet_sw_interface_t *sw_if0;
4173
4174 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
4175 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
4176 {
4177 ethernet_interface_t *eth_if0;
4178
4179 eth_if0 =
4180 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
4181 if (eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004182 {
4183 /* create radv_info. for this interface. This holds all the info needed for router adverts */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004184 ri =
4185 ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004186
Dave Barachd7cb1b52016-12-09 09:52:16 -05004187 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004188 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004189 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004190 ip6_address_t link_local_address;
4191
Dave Barachd7cb1b52016-12-09 09:52:16 -05004192 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004193
Dave Barachd7cb1b52016-12-09 09:52:16 -05004194 ip6_link_local_address_from_ethernet_mac_address
4195 (&link_local_address, eth_if0->address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004196
4197 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index);
Pavel Kotucek8dc80202017-08-15 13:52:22 +02004198 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_SUB ||
Neale Ranns17ff3c12018-07-04 10:24:24 -07004199 sw_if0->type == VNET_SW_INTERFACE_TYPE_PIPE ||
Pavel Kotucek8dc80202017-08-15 13:52:22 +02004200 sw_if0->type == VNET_SW_INTERFACE_TYPE_P2P)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004201 {
4202 /* make up an interface id */
Dave Barach611d9182018-03-12 15:56:41 -04004203 link_local_address.as_u64[1] =
4204 random_u64 (&radv_info->randomizer);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004205
4206 link_local_address.as_u64[0] =
4207 clib_host_to_net_u64 (0xFE80000000000000ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004208 /* clear u bit */
4209 link_local_address.as_u8[8] &= 0xfd;
4210 }
Neale Ranns53da2212018-02-24 02:11:19 -08004211 {
4212 ip6_ll_prefix_t ilp = {
4213 .ilp_addr = link_local_address,
4214 .ilp_sw_if_index = sw_if_index,
4215 };
Dave Barachd7cb1b52016-12-09 09:52:16 -05004216
Neale Ranns53da2212018-02-24 02:11:19 -08004217 ip6_ll_table_entry_update (&ilp, FIB_ROUTE_PATH_LOCAL);
4218 }
Neale Ranns4008ac92017-02-13 23:20:04 -08004219
Ed Warnickecb9cada2015-12-08 15:45:58 -07004220 /* essentially "enables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08004221 ip6_mfib_interface_enable_disable (sw_if_index, 1);
4222 ip6_sw_interface_enable_disable (sw_if_index, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004223
Neale Ranns53da2212018-02-24 02:11:19 -08004224 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004225 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004226 radv_info->link_local_address = link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004227 }
4228 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004229 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07004230 }
4231 }
4232 return error;
4233}
4234
Neale Ranns53da2212018-02-24 02:11:19 -08004235int
4236ip6_get_ll_address (u32 sw_if_index, ip6_address_t * addr)
4237{
4238 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4239 ip6_radv_t *radv_info;
4240 u32 ri;
4241
4242 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) < sw_if_index)
4243 return 0;
4244
4245 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
4246
4247 if (ri == ~0)
4248 return 0;
4249
4250 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4251 *addr = radv_info->link_local_address;
4252
4253 return (!0);
4254}
4255
Ed Warnickecb9cada2015-12-08 15:45:58 -07004256static clib_error_t *
4257enable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004258 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004259{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004260 vnet_main_t *vnm = vnet_get_main ();
4261 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004262 u32 sw_if_index;
4263
4264 sw_if_index = ~0;
4265
Dave Barachd7cb1b52016-12-09 09:52:16 -05004266 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004267 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004268 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004269 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004270 else
4271 {
4272 error = clib_error_return (0, "unknown interface\n'",
4273 format_unformat_error, input);
4274
4275 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07004276 return error;
4277}
4278
Billy McFall0683c9c2016-10-13 08:27:31 -04004279/*?
4280 * This command is used to enable IPv6 on a given interface.
4281 *
4282 * @cliexpar
4283 * Example of how enable IPv6 on a given interface:
4284 * @cliexcmd{enable ip6 interface GigabitEthernet2/0/0}
4285?*/
4286/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004287VLIB_CLI_COMMAND (enable_ip6_interface_command, static) =
4288{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004289 .path = "enable ip6 interface",
4290 .function = enable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04004291 .short_help = "enable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004292};
Billy McFall0683c9c2016-10-13 08:27:31 -04004293/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004294
4295static clib_error_t *
4296disable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004297 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004298{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004299 vnet_main_t *vnm = vnet_get_main ();
4300 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004301 u32 sw_if_index;
4302
4303 sw_if_index = ~0;
4304
Dave Barachd7cb1b52016-12-09 09:52:16 -05004305 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004306 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004307 error = disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004308 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004309 else
4310 {
4311 error = clib_error_return (0, "unknown interface\n'",
4312 format_unformat_error, input);
4313
4314 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07004315 return error;
4316}
4317
Billy McFall0683c9c2016-10-13 08:27:31 -04004318/*?
4319 * This command is used to disable IPv6 on a given interface.
4320 *
4321 * @cliexpar
4322 * Example of how disable IPv6 on a given interface:
4323 * @cliexcmd{disable ip6 interface GigabitEthernet2/0/0}
4324?*/
4325/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004326VLIB_CLI_COMMAND (disable_ip6_interface_command, static) =
4327{
Billy McFall0683c9c2016-10-13 08:27:31 -04004328 .path = "disable ip6 interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004329 .function = disable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04004330 .short_help = "disable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004331};
Billy McFall0683c9c2016-10-13 08:27:31 -04004332/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004333
Billy McFall0683c9c2016-10-13 08:27:31 -04004334/*?
4335 * This command is used to configure the neighbor discovery
4336 * parameters on a given interface. Use the '<em>show ip6 interface</em>'
4337 * command to display some of the current neighbor discovery parameters
4338 * on a given interface. This command has three formats:
4339 *
4340 *
4341 * <b>Format 1 - Router Advertisement Options:</b> (Only one can be entered in a single command)
4342 *
4343 * '<em><b>ip6 nd <interface> [no] [ra-managed-config-flag] | [ra-other-config-flag] | [ra-suppress] | [ra-suppress-link-layer] | [ra-send-unicast] | [ra-lifetime <lifetime>] | [ra-initial <cnt> <interval>] | [ra-interval <max-interval> [<min-interval>]] | [ra-cease]</b></em>'
4344 *
4345 * Where:
4346 *
4347 * <em>[no] ra-managed-config-flag</em> - Advertises in ICMPv6
4348 * router-advertisement messages to use stateful address
4349 * auto-configuration to obtain address information (sets the M-bit).
4350 * Default is the M-bit is not set and the '<em>no</em>' option
4351 * returns it to this default state.
4352 *
4353 * <em>[no] ra-other-config-flag</em> - Indicates in ICMPv6
4354 * router-advertisement messages that hosts use stateful auto
4355 * configuration to obtain nonaddress related information (sets
4356 * the O-bit). Default is the O-bit is not set and the '<em>no</em>'
4357 * option returns it to this default state.
4358 *
4359 * <em>[no] ra-suppress</em> - Disables sending ICMPv6 router-advertisement
4360 * messages. The '<em>no</em>' option implies to enable sending ICMPv6
4361 * router-advertisement messages.
4362 *
4363 * <em>[no] ra-suppress-link-layer</em> - Indicates not to include the
4364 * optional source link-layer address in the ICMPv6 router-advertisement
4365 * messages. Default is to include the optional source link-layer address
4366 * and the '<em>no</em>' option returns it to this default state.
4367 *
4368 * <em>[no] ra-send-unicast</em> - Use the source address of the
4369 * router-solicitation message if availiable. The default is to use
4370 * multicast address of all nodes, and the '<em>no</em>' option returns
4371 * it to this default state.
4372 *
4373 * <em>[no] ra-lifetime <lifetime></em> - Advertises the lifetime of a
4374 * default router in ICMPv6 router-advertisement messages. The range is
4375 * from 0 to 9000 seconds. '<em><lifetime></em>' must be greater than
4376 * '<em><max-interval></em>'. The default value is 600 seconds and the
4377 * '<em>no</em>' option returns it to this default value.
4378 *
4379 * <em>[no] ra-initial <cnt> <interval></em> - Number of initial ICMPv6
4380 * router-advertisement messages sent and the interval between each
4381 * message. Range for count is 1 - 3 and default is 3. Range for interval
4382 * is 1 to 16 seconds, and default is 16 seconds. The '<em>no</em>' option
4383 * returns both to their default value.
4384 *
4385 * <em>[no] ra-interval <max-interval> [<min-interval>]</em> - Configures the
4386 * interval between sending ICMPv6 router-advertisement messages. The
4387 * range for max-interval is from 4 to 200 seconds. min-interval can not
4388 * be more than 75% of max-interval. If not set, min-interval will be
4389 * set to 75% of max-interval. The range for min-interval is from 3 to
4390 * 150 seconds. The '<em>no</em>' option returns both to their default
4391 * value.
4392 *
4393 * <em>[no] ra-cease</em> - Cease sending ICMPv6 router-advertisement messages.
4394 * The '<em>no</em>' options implies to start (or restart) sending
4395 * ICMPv6 router-advertisement messages.
4396 *
4397 *
4398 * <b>Format 2 - Prefix Options:</b>
4399 *
4400 * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> [<valid-lifetime> <pref-lifetime> | infinite] [no-advertise] [off-link] [no-autoconfig] [no-onlink]</b></em>'
4401 *
4402 * Where:
4403 *
4404 * <em>no</em> - All additional flags are ignored and the prefix is deleted.
4405 *
4406 * <em><valid-lifetime> <pref-lifetime></em> - '<em><valid-lifetime></em>' is the
4407 * length of time in seconds during what the prefix is valid for the purpose of
4408 * on-link determination. Range is 7203 to 2592000 seconds and default is 2592000
4409 * seconds (30 days). '<em><pref-lifetime></em>' is the prefered-lifetime and is the
4410 * length of time in seconds during what addresses generated from the prefix remain
4411 * preferred. Range is 0 to 604800 seconds and default is 604800 seconds (7 days).
4412 *
4413 * <em>infinite</em> - Both '<em><valid-lifetime></em>' and '<em><<pref-lifetime></em>'
4414 * are inifinte, no timeout.
4415 *
4416 * <em>no-advertise</em> - Do not send full router address in prefix
4417 * advertisement. Default is to advertise (i.e. - This flag is off by default).
4418 *
4419 * <em>off-link</em> - Prefix is off-link, clear L-bit in packet. Default is on-link
4420 * (i.e. - This flag is off and L-bit in packet is set by default and this prefix can
4421 * be used for on-link determination). '<em>no-onlink</em>' also controls the L-bit.
4422 *
4423 * <em>no-autoconfig</em> - Do not use prefix for autoconfiguration, clear A-bit in packet.
4424 * Default is autoconfig (i.e. - This flag is off and A-bit in packet is set by default.
4425 *
4426 * <em>no-onlink</em> - Do not use prefix for onlink determination, clear L-bit in packet.
4427 * Default is on-link (i.e. - This flag is off and L-bit in packet is set by default and
4428 * this prefix can be used for on-link determination). '<em>off-link</em>' also controls
4429 * the L-bit.
4430 *
4431 *
4432 * <b>Format 3: - Default of Prefix:</b>
4433 *
4434 * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> default</b></em>'
4435 *
4436 * When a new prefix is added (or existing one is being overwritten) <em>default</em>
4437 * uses default values for the prefix. If <em>no</em> is used, the <em>default</em>
4438 * is ignored and the prefix is deleted.
4439 *
4440 *
4441 * @cliexpar
4442 * Example of how set a router advertisement option:
4443 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 ra-interval 100 20}
4444 * Example of how to add a prefix:
4445 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 prefix fe80::fe:28ff:fe9c:75b3/64 infinite no-advertise}
4446 * Example of how to delete a prefix:
4447 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 no prefix fe80::fe:28ff:fe9c:75b3/64}
4448?*/
4449/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004450VLIB_CLI_COMMAND (ip6_nd_command, static) =
4451{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004452 .path = "ip6 nd",
Billy McFall0683c9c2016-10-13 08:27:31 -04004453 .short_help = "ip6 nd <interface> ...",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004454 .function = ip6_neighbor_cmd,
4455};
Billy McFall0683c9c2016-10-13 08:27:31 -04004456/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004457
4458clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05004459set_ip6_link_local_address (vlib_main_t * vm,
Neale Ranns75152282017-01-09 01:00:45 -08004460 u32 sw_if_index, ip6_address_t * address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004461{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004462 clib_error_t *error = 0;
4463 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004464 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004465 ip6_radv_t *radv_info;
4466 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07004467
Dave Barachd7cb1b52016-12-09 09:52:16 -05004468 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004469 {
4470 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_LINK_LOCAL;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004471 return (error = clib_error_return (0, "address not link-local",
4472 format_unformat_error));
Ed Warnickecb9cada2015-12-08 15:45:58 -07004473 }
4474
4475 /* call enable ipv6 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004476 enable_ip6_interface (vm, sw_if_index);
4477
Ed Warnickecb9cada2015-12-08 15:45:58 -07004478 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004479
4480 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004481 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004482 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004483
4484 /* save if link local address (overwrite default) */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004485
Ed Warnickecb9cada2015-12-08 15:45:58 -07004486 /* delete the old one */
4487 error = ip6_add_del_interface_address (vm, sw_if_index,
4488 &radv_info->link_local_address,
Neale Ranns75152282017-01-09 01:00:45 -08004489 128, 1 /* is_del */ );
Dave Barachd7cb1b52016-12-09 09:52:16 -05004490
4491 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004492 {
4493 /* add the new one */
4494 error = ip6_add_del_interface_address (vm, sw_if_index,
Neale Ranns75152282017-01-09 01:00:45 -08004495 address, 128,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004496 0 /* is_del */ );
4497
4498 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004499 {
4500 radv_info->link_local_address = *address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004501 }
4502 }
4503 }
4504 else
4505 {
4506 vnm->api_errno = VNET_API_ERROR_IP6_NOT_ENABLED;
4507 error = clib_error_return (0, "ip6 not enabled for interface",
4508 format_unformat_error);
4509 }
4510 return error;
4511}
Dave Barachd7cb1b52016-12-09 09:52:16 -05004512
Ed Warnickecb9cada2015-12-08 15:45:58 -07004513clib_error_t *
4514set_ip6_link_local_address_cmd (vlib_main_t * vm,
4515 unformat_input_t * input,
4516 vlib_cli_command_t * cmd)
4517{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004518 vnet_main_t *vnm = vnet_get_main ();
4519 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004520 u32 sw_if_index;
4521 ip6_address_t ip6_addr;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004522
4523 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004524 {
4525 /* get the rest of the command */
4526 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
4527 {
Neale Ranns75152282017-01-09 01:00:45 -08004528 if (unformat (input, "%U", unformat_ip6_address, &ip6_addr))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004529 break;
4530 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05004531 return (unformat_parse_error (input));
Ed Warnickecb9cada2015-12-08 15:45:58 -07004532 }
4533 }
Neale Ranns75152282017-01-09 01:00:45 -08004534 error = set_ip6_link_local_address (vm, sw_if_index, &ip6_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004535 return error;
4536}
4537
Billy McFall0683c9c2016-10-13 08:27:31 -04004538/*?
4539 * This command is used to assign an IPv6 Link-local address to an
4540 * interface. This command will enable IPv6 on an interface if it
4541 * is not already enabled. Use the '<em>show ip6 interface</em>' command
4542 * to display the assigned Link-local address.
4543 *
4544 * @cliexpar
4545 * Example of how to assign an IPv6 Link-local address to an interface:
Neale Ranns75152282017-01-09 01:00:45 -08004546 * @cliexcmd{set ip6 link-local address GigabitEthernet2/0/0 FE80::AB8}
Billy McFall0683c9c2016-10-13 08:27:31 -04004547?*/
4548/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004549VLIB_CLI_COMMAND (set_ip6_link_local_address_command, static) =
4550{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004551 .path = "set ip6 link-local address",
Neale Ranns75152282017-01-09 01:00:45 -08004552 .short_help = "set ip6 link-local address <interface> <ip6-address>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004553 .function = set_ip6_link_local_address_cmd,
4554};
Billy McFall0683c9c2016-10-13 08:27:31 -04004555/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004556
Neale Ranns87df12d2017-02-18 08:16:41 -08004557/**
4558 * @brief callback when an interface address is added or deleted
4559 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004560static void
4561ip6_neighbor_add_del_interface_address (ip6_main_t * im,
4562 uword opaque,
4563 u32 sw_if_index,
4564 ip6_address_t * address,
4565 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004566 u32 if_address_index, u32 is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004567{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004568 vnet_main_t *vnm = vnet_get_main ();
4569 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004570 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004571 vlib_main_t *vm = vnm->vlib_main;
4572 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004573 ip6_address_t a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004574
4575 /* create solicited node multicast address for this interface adddress */
4576 ip6_set_solicited_node_multicast_address (&a, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004577
Ed Warnickecb9cada2015-12-08 15:45:58 -07004578 a.as_u8[0xd] = address->as_u8[0xd];
4579 a.as_u8[0xe] = address->as_u8[0xe];
4580 a.as_u8[0xf] = address->as_u8[0xf];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004581
4582 if (!is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004583 {
4584 /* try to create radv_info - does nothing if ipv6 already enabled */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004585 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004586
4587 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004588 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
4589 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004590 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004591 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004592 {
4593 /* get radv_info */
4594 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4595
4596 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004597 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004598 radv_info->ref_count++;
4599
Neale Ranns87df12d2017-02-18 08:16:41 -08004600 ip6_neighbor_add_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004601 }
4602 }
4603 else
4604 {
4605
4606 /* delete */
4607 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004608 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
4609 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004610 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Wojciech Dec7bc73102017-02-14 16:24:28 +01004611
Dave Barachd7cb1b52016-12-09 09:52:16 -05004612 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004613 {
4614 /* get radv_info */
4615 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4616
Neale Ranns87df12d2017-02-18 08:16:41 -08004617 ip6_neighbor_del_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004618
4619 /* if interface up send MLDP "report" */
4620 radv_info->all_routers_mcast = 0;
4621
4622 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004623 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004624 radv_info->ref_count--;
4625 }
Wojciech Dec7bc73102017-02-14 16:24:28 +01004626 /* Ensure that IPv6 is disabled, and LL removed after ref_count reaches 0 */
4627 disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004628 }
4629}
4630
Dave Barachd7cb1b52016-12-09 09:52:16 -05004631clib_error_t *
4632ip6_set_neighbor_limit (u32 neighbor_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004633{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004634 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004635
4636 nm->limit_neighbor_cache_size = neighbor_limit;
4637 return 0;
4638}
4639
Neale Ranns15002542017-09-10 04:39:11 -07004640static void
4641ip6_neighbor_table_bind (ip6_main_t * im,
4642 uword opaque,
4643 u32 sw_if_index,
4644 u32 new_fib_index, u32 old_fib_index)
4645{
4646 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4647 ip6_neighbor_t *n = NULL;
4648 u32 i, *to_re_add = 0;
4649
4650 /* *INDENT-OFF* */
4651 pool_foreach (n, nm->neighbor_pool,
4652 ({
4653 if (n->key.sw_if_index == sw_if_index)
4654 vec_add1 (to_re_add, n - nm->neighbor_pool);
4655 }));
4656 /* *INDENT-ON* */
4657
4658 for (i = 0; i < vec_len (to_re_add); i++)
4659 {
4660 n = pool_elt_at_index (nm->neighbor_pool, to_re_add[i]);
4661 ip6_neighbor_adj_fib_remove (n, old_fib_index);
4662 ip6_neighbor_adj_fib_add (n, new_fib_index);
4663 }
4664 vec_free (to_re_add);
4665}
4666
Dave Barachd7cb1b52016-12-09 09:52:16 -05004667static clib_error_t *
4668ip6_neighbor_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004669{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004670 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4671 ip6_main_t *im = &ip6_main;
4672
Ed Warnickecb9cada2015-12-08 15:45:58 -07004673 mhash_init (&nm->neighbor_index_by_key,
4674 /* value size */ sizeof (uword),
4675 /* key size */ sizeof (ip6_neighbor_key_t));
4676
Dave Barachd7cb1b52016-12-09 09:52:16 -05004677 icmp6_register_type (vm, ICMP6_neighbor_solicitation,
4678 ip6_icmp_neighbor_solicitation_node.index);
4679 icmp6_register_type (vm, ICMP6_neighbor_advertisement,
4680 ip6_icmp_neighbor_advertisement_node.index);
4681 icmp6_register_type (vm, ICMP6_router_solicitation,
4682 ip6_icmp_router_solicitation_node.index);
4683 icmp6_register_type (vm, ICMP6_router_advertisement,
4684 ip6_icmp_router_advertisement_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004685
4686 /* handler node for ip6 neighbor discovery events and timers */
4687 vlib_register_node (vm, &ip6_icmp_neighbor_discovery_event_node);
4688
4689 /* add call backs */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004690 ip6_add_del_interface_address_callback_t cb;
4691 memset (&cb, 0x0, sizeof (ip6_add_del_interface_address_callback_t));
4692
Ed Warnickecb9cada2015-12-08 15:45:58 -07004693 /* when an interface address changes... */
4694 cb.function = ip6_neighbor_add_del_interface_address;
4695 cb.function_opaque = 0;
4696 vec_add1 (im->add_del_interface_address_callbacks, cb);
4697
Neale Ranns15002542017-09-10 04:39:11 -07004698 ip6_table_bind_callback_t cbt;
4699 cbt.function = ip6_neighbor_table_bind;
4700 cbt.function_opaque = 0;
4701 vec_add1 (im->table_bind_callbacks, cbt);
4702
Ed Warnickecb9cada2015-12-08 15:45:58 -07004703 mhash_init (&nm->pending_resolutions_by_address,
4704 /* value size */ sizeof (uword),
4705 /* key size */ sizeof (ip6_address_t));
4706
John Lo1edfba92016-08-27 01:11:57 -04004707 mhash_init (&nm->mac_changes_by_address,
4708 /* value size */ sizeof (uword),
4709 /* key size */ sizeof (ip6_address_t));
4710
Ed Warnickecb9cada2015-12-08 15:45:58 -07004711 /* default, configurable */
4712 nm->limit_neighbor_cache_size = 50000;
4713
Eyal Baric125ecc2017-09-20 11:29:17 +03004714 nm->wc_ip6_nd_publisher_node = (uword) ~ 0;
4715
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01004716 nm->ip6_ra_publisher_node = (uword) ~ 0;
4717
Ed Warnickecb9cada2015-12-08 15:45:58 -07004718#if 0
4719 /* $$$$ Hack fix for today */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004720 vec_validate_init_empty
4721 (im->discover_neighbor_next_index_by_hw_if_index, 32, 0 /* drop */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004722#endif
4723
Ed Warnickecb9cada2015-12-08 15:45:58 -07004724 return 0;
4725}
4726
4727VLIB_INIT_FUNCTION (ip6_neighbor_init);
4728
4729
Dave Barachd7cb1b52016-12-09 09:52:16 -05004730void
4731vnet_register_ip6_neighbor_resolution_event (vnet_main_t * vnm,
4732 void *address_arg,
4733 uword node_index,
4734 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004735{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004736 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4737 ip6_address_t *address = address_arg;
4738 uword *p;
4739 pending_resolution_t *pr;
4740
Ed Warnickecb9cada2015-12-08 15:45:58 -07004741 pool_get (nm->pending_resolutions, pr);
4742
4743 pr->next_index = ~0;
4744 pr->node_index = node_index;
4745 pr->type_opaque = type_opaque;
4746 pr->data = data;
4747
4748 p = mhash_get (&nm->pending_resolutions_by_address, address);
4749 if (p)
4750 {
4751 /* Insert new resolution at the head of the list */
4752 pr->next_index = p[0];
4753 mhash_unset (&nm->pending_resolutions_by_address, address, 0);
4754 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004755
4756 mhash_set (&nm->pending_resolutions_by_address, address,
4757 pr - nm->pending_resolutions, 0 /* old value */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004758}
4759
Dave Barachd7cb1b52016-12-09 09:52:16 -05004760int
4761vnet_add_del_ip6_nd_change_event (vnet_main_t * vnm,
4762 void *data_callback,
4763 u32 pid,
4764 void *address_arg,
4765 uword node_index,
4766 uword type_opaque, uword data, int is_add)
John Lo1edfba92016-08-27 01:11:57 -04004767{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004768 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4769 ip6_address_t *address = address_arg;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004770
Eyal Barif9f40652017-04-01 03:55:08 +03004771 /* Try to find an existing entry */
4772 u32 *first = (u32 *) mhash_get (&nm->mac_changes_by_address, address);
4773 u32 *p = first;
4774 pending_resolution_t *mc;
4775 while (p && *p != ~0)
4776 {
4777 mc = pool_elt_at_index (nm->mac_changes, *p);
4778 if (mc->node_index == node_index && mc->type_opaque == type_opaque
4779 && mc->pid == pid)
4780 break;
4781 p = &mc->next_index;
4782 }
4783
4784 int found = p && *p != ~0;
John Lo1edfba92016-08-27 01:11:57 -04004785 if (is_add)
4786 {
Eyal Barif9f40652017-04-01 03:55:08 +03004787 if (found)
4788 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
4789
John Lo1edfba92016-08-27 01:11:57 -04004790 pool_get (nm->mac_changes, mc);
Neale Rannsf12dad62018-06-04 18:41:24 -07004791 /* *INDENT-OFF* */
Eyal Barif9f40652017-04-01 03:55:08 +03004792 *mc = (pending_resolution_t)
4793 {
Neale Rannsf12dad62018-06-04 18:41:24 -07004794 .next_index = ~0,
4795 .node_index = node_index,
4796 .type_opaque = type_opaque,
4797 .data = data,
4798 .data_callback = data_callback,
4799 .pid = pid,
4800 };
4801 /* *INDENT-ON* */
John Lo1edfba92016-08-27 01:11:57 -04004802
Eyal Barif9f40652017-04-01 03:55:08 +03004803 /* Insert new resolution at the end of the list */
4804 u32 new_idx = mc - nm->mac_changes;
John Lo1edfba92016-08-27 01:11:57 -04004805 if (p)
Eyal Barif9f40652017-04-01 03:55:08 +03004806 p[0] = new_idx;
4807 else
4808 mhash_set (&nm->mac_changes_by_address, address, new_idx, 0);
John Lo1edfba92016-08-27 01:11:57 -04004809 }
4810 else
4811 {
Eyal Barif9f40652017-04-01 03:55:08 +03004812 if (!found)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004813 return VNET_API_ERROR_NO_SUCH_ENTRY;
John Lo1edfba92016-08-27 01:11:57 -04004814
Eyal Barif9f40652017-04-01 03:55:08 +03004815 /* Clients may need to clean up pool entries, too */
4816 void (*fp) (u32, u8 *) = data_callback;
4817 if (fp)
4818 (*fp) (mc->data, 0 /* no new mac addrs */ );
John Lo1edfba92016-08-27 01:11:57 -04004819
Eyal Barif9f40652017-04-01 03:55:08 +03004820 /* Remove the entry from the list and delete the entry */
4821 *p = mc->next_index;
4822 pool_put (nm->mac_changes, mc);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004823
Eyal Barif9f40652017-04-01 03:55:08 +03004824 /* Remove from hash if we deleted the last entry */
4825 if (*p == ~0 && p == first)
4826 mhash_unset (&nm->mac_changes_by_address, address, 0);
John Lo1edfba92016-08-27 01:11:57 -04004827 }
Eyal Barif9f40652017-04-01 03:55:08 +03004828 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004829}
4830
Dave Barachd7cb1b52016-12-09 09:52:16 -05004831int
4832vnet_ip6_nd_term (vlib_main_t * vm,
4833 vlib_node_runtime_t * node,
4834 vlib_buffer_t * p0,
4835 ethernet_header_t * eth,
Eyal Baria0623f82017-03-30 03:05:06 +03004836 ip6_header_t * ip, u32 sw_if_index, u16 bd_index)
John Lo1edfba92016-08-27 01:11:57 -04004837{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004838 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4839 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
John Lo1edfba92016-08-27 01:11:57 -04004840
4841 ndh = ip6_next_header (ip);
4842 if (ndh->icmp.type != ICMP6_neighbor_solicitation &&
4843 ndh->icmp.type != ICMP6_neighbor_advertisement)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004844 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004845
4846 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
4847 (p0->flags & VLIB_BUFFER_IS_TRACED)))
4848 {
4849 u8 *t0 = vlib_add_trace (vm, node, p0,
4850 sizeof (icmp6_input_trace_t));
4851 clib_memcpy (t0, ip, sizeof (icmp6_input_trace_t));
4852 }
4853
4854 /* Check if anyone want ND events for L2 BDs */
Eyal Baric125ecc2017-09-20 11:29:17 +03004855 if (PREDICT_FALSE
4856 (nm->wc_ip6_nd_publisher_node != (uword) ~ 0
4857 && !ip6_address_is_link_local_unicast (&ip->src_address)))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004858 {
Eyal Baric125ecc2017-09-20 11:29:17 +03004859 vnet_nd_wc_publish (sw_if_index, eth->src_address, &ip->src_address);
John Lo1edfba92016-08-27 01:11:57 -04004860 }
4861
4862 /* Check if MAC entry exsist for solicited target IP */
4863 if (ndh->icmp.type == ICMP6_neighbor_solicitation)
4864 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004865 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
John Lo1edfba92016-08-27 01:11:57 -04004866 l2_bridge_domain_t *bd_config;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004867 u8 *macp;
John Lo1edfba92016-08-27 01:11:57 -04004868
4869 opt = (void *) (ndh + 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004870 if ((opt->header.type !=
John Lo1edfba92016-08-27 01:11:57 -04004871 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address) ||
4872 (opt->header.n_data_u64s != 1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004873 return 0; /* source link layer address option not present */
4874
John Lo1edfba92016-08-27 01:11:57 -04004875 bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004876 macp =
4877 (u8 *) hash_get_mem (bd_config->mac_by_ip6, &ndh->target_address);
John Lo1edfba92016-08-27 01:11:57 -04004878 if (macp)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004879 { /* found ip-mac entry, generate eighbor advertisement response */
John Lo1edfba92016-08-27 01:11:57 -04004880 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004881 vlib_node_runtime_t *error_node =
4882 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
John Lo1edfba92016-08-27 01:11:57 -04004883 ip->dst_address = ip->src_address;
4884 ip->src_address = ndh->target_address;
4885 ip->hop_limit = 255;
4886 opt->header.type =
Dave Barachd7cb1b52016-12-09 09:52:16 -05004887 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
John Lo1edfba92016-08-27 01:11:57 -04004888 clib_memcpy (opt->ethernet_address, macp, 6);
4889 ndh->icmp.type = ICMP6_neighbor_advertisement;
4890 ndh->advertisement_flags = clib_host_to_net_u32
Dave Barachd7cb1b52016-12-09 09:52:16 -05004891 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED |
4892 ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
John Lo1edfba92016-08-27 01:11:57 -04004893 ndh->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004894 ndh->icmp.checksum =
4895 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip, &bogus_length);
4896 clib_memcpy (eth->dst_address, eth->src_address, 6);
4897 clib_memcpy (eth->src_address, macp, 6);
4898 vlib_error_count (vm, error_node->node_index,
John Lo1edfba92016-08-27 01:11:57 -04004899 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004900 return 1;
4901 }
John Lo1edfba92016-08-27 01:11:57 -04004902 }
4903
4904 return 0;
4905
4906}
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004907
Neale Ranns3f844d02017-02-18 00:03:54 -08004908int
4909ip6_neighbor_proxy_add_del (u32 sw_if_index, ip6_address_t * addr, u8 is_del)
4910{
4911 u32 fib_index;
4912
4913 fib_prefix_t pfx = {
4914 .fp_len = 128,
4915 .fp_proto = FIB_PROTOCOL_IP6,
4916 .fp_addr = {
4917 .ip6 = *addr,
4918 },
4919 };
4920 ip46_address_t nh = {
4921 .ip6 = *addr,
4922 };
4923
4924 fib_index = ip6_fib_table_get_index_for_sw_if_index (sw_if_index);
4925
4926 if (~0 == fib_index)
4927 return VNET_API_ERROR_NO_SUCH_FIB;
4928
4929 if (is_del)
4930 {
4931 fib_table_entry_path_remove (fib_index,
4932 &pfx,
4933 FIB_SOURCE_IP6_ND_PROXY,
Neale Rannsda78f952017-05-24 09:15:43 -07004934 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004935 &nh,
4936 sw_if_index,
4937 ~0, 1, FIB_ROUTE_PATH_FLAG_NONE);
4938 /* flush the ND cache of this address if it's there */
4939 vnet_unset_ip6_ethernet_neighbor (vlib_get_main (),
4940 sw_if_index, addr, NULL, 0);
4941 }
4942 else
4943 {
4944 fib_table_entry_path_add (fib_index,
4945 &pfx,
4946 FIB_SOURCE_IP6_ND_PROXY,
4947 FIB_ENTRY_FLAG_NONE,
Neale Rannsda78f952017-05-24 09:15:43 -07004948 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004949 &nh,
4950 sw_if_index,
4951 ~0, 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
4952 }
4953 return (0);
4954}
4955
4956static clib_error_t *
4957set_ip6_nd_proxy_cmd (vlib_main_t * vm,
4958 unformat_input_t * input, vlib_cli_command_t * cmd)
4959{
4960 vnet_main_t *vnm = vnet_get_main ();
4961 clib_error_t *error = 0;
4962 ip6_address_t addr;
4963 u32 sw_if_index;
4964 u8 is_del = 0;
4965
4966 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
4967 {
4968 /* get the rest of the command */
4969 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
4970 {
4971 if (unformat (input, "%U", unformat_ip6_address, &addr))
4972 break;
4973 else if (unformat (input, "delete") || unformat (input, "del"))
4974 is_del = 1;
4975 else
4976 return (unformat_parse_error (input));
4977 }
4978 }
4979
4980 ip6_neighbor_proxy_add_del (sw_if_index, &addr, is_del);
4981
4982 return error;
4983}
4984
4985/* *INDENT-OFF* */
4986VLIB_CLI_COMMAND (set_ip6_nd_proxy_command, static) =
4987{
4988 .path = "set ip6 nd proxy",
4989 .short_help = "set ip6 nd proxy <HOST> <INTERFACE>",
4990 .function = set_ip6_nd_proxy_cmd,
4991};
4992/* *INDENT-ON* */
4993
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004994void
Neale Ranns3be6b282016-12-20 14:24:01 +00004995ethernet_ndp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004996{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004997 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4998 ip6_neighbor_t *n;
Neale Rannsc819fc62018-02-16 02:44:05 -08004999 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02005000
5001 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05005002 pool_foreach (n, nm->neighbor_pool,
5003 ({
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02005004 if (n->key.sw_if_index == sw_if_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05005005 {
Neale Rannsb80c5362016-10-08 13:03:40 +01005006 adj_nbr_walk_nh6 (sw_if_index,
5007 &n->key.ip6_address,
5008 ip6_nd_mk_complete_walk, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -05005009 }
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02005010 }));
5011 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08005012
5013 ai = adj_glean_get (FIB_PROTOCOL_IP6, sw_if_index);
5014
5015 if (ADJ_INDEX_INVALID != ai)
5016 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02005017}
Dave Barachd7cb1b52016-12-09 09:52:16 -05005018
John Lo8b81cb42017-06-26 01:40:20 -04005019void
Steven9f781d82018-06-05 11:09:32 -07005020send_ip6_na (vlib_main_t * vm, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04005021{
5022 ip6_main_t *i6m = &ip6_main;
John Lo8b81cb42017-06-26 01:40:20 -04005023 ip6_address_t *ip6_addr = ip6_interface_first_address (i6m, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07005024
Steven9f781d82018-06-05 11:09:32 -07005025 send_ip6_na_w_addr (vm, ip6_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07005026}
5027
5028void
5029send_ip6_na_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07005030 const ip6_address_t * ip6_addr, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07005031{
5032 ip6_main_t *i6m = &ip6_main;
Steven9f781d82018-06-05 11:09:32 -07005033 vnet_main_t *vnm = vnet_get_main ();
5034 u8 *rewrite, rewrite_len;
5035 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
5036 u8 dst_address[6];
Neale Ranns25b04942018-04-04 09:34:50 -07005037
John Lo8b81cb42017-06-26 01:40:20 -04005038 if (ip6_addr)
5039 {
5040 clib_warning
5041 ("Sending unsolicitated NA IP6 address %U on sw_if_idex %d",
5042 format_ip6_address, ip6_addr, sw_if_index);
5043
5044 /* Form unsolicited neighbor advertisement packet from NS pkt template */
5045 int bogus_length;
5046 u32 bi = 0;
5047 icmp6_neighbor_solicitation_header_t *h =
5048 vlib_packet_template_get_packet (vm,
5049 &i6m->discover_neighbor_packet_template,
5050 &bi);
John Lo084606b2018-06-19 15:27:48 -04005051 if (!h)
5052 return;
5053
John Lo8b81cb42017-06-26 01:40:20 -04005054 ip6_set_reserved_multicast_address (&h->ip.dst_address,
5055 IP6_MULTICAST_SCOPE_link_local,
5056 IP6_MULTICAST_GROUP_ID_all_hosts);
5057 h->ip.src_address = ip6_addr[0];
5058 h->neighbor.icmp.type = ICMP6_neighbor_advertisement;
5059 h->neighbor.target_address = ip6_addr[0];
5060 h->neighbor.advertisement_flags = clib_host_to_net_u32
5061 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
5062 clib_memcpy (h->link_layer_option.ethernet_address,
5063 hi->hw_address, vec_len (hi->hw_address));
5064 h->neighbor.icmp.checksum =
5065 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
5066 ASSERT (bogus_length == 0);
5067
5068 /* Setup MAC header with IP6 Etype and mcast DMAC */
5069 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07005070 ip6_multicast_ethernet_address (dst_address,
John Lo8b81cb42017-06-26 01:40:20 -04005071 IP6_MULTICAST_GROUP_ID_all_hosts);
Steven9f781d82018-06-05 11:09:32 -07005072 rewrite =
5073 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_IP6, dst_address);
5074 rewrite_len = vec_len (rewrite);
5075 vlib_buffer_advance (b, -rewrite_len);
5076 ethernet_header_t *e = vlib_buffer_get_current (b);
5077 clib_memcpy (e->dst_address, rewrite, rewrite_len);
5078 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04005079
5080 /* Send unsolicited ND advertisement packet out the specified interface */
5081 vnet_buffer (b)->sw_if_index[VLIB_RX] =
5082 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
5083 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
5084 u32 *to_next = vlib_frame_vector_args (f);
5085 to_next[0] = bi;
5086 f->n_vectors = 1;
5087 vlib_put_frame_to_node (vm, hi->output_node_index, f);
5088 }
5089}
5090
Dave Barachd7cb1b52016-12-09 09:52:16 -05005091/*
5092 * fd.io coding-style-patch-verification: ON
5093 *
5094 * Local Variables:
5095 * eval: (c-set-style "gnu")
5096 * End:
5097 */