blob: 4f9e0820999aaabbf0f17d2c414912ac81bb9a82 [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>
Neale Ranns3b81a1e2018-09-06 09:50:26 -070028#include <vnet/l2/l2_input.h>
Neale Ranns37029302018-08-10 05:30:06 -070029#include <vlibmemory/api.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
Billy McFall0683c9c2016-10-13 08:27:31 -040031/**
32 * @file
33 * @brief IPv6 Neighbor Adjacency and Neighbor Discovery.
34 *
35 * The files contains the API and CLI code for managing IPv6 neighbor
36 * adjacency tables and neighbor discovery logic.
37 */
38
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010039/* can't use sizeof link_layer_address, that's 8 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070040#define ETHER_MAC_ADDR_LEN 6
41
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010042/* advertised prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050043typedef struct
44{
Ed Warnickecb9cada2015-12-08 15:45:58 -070045 /* basic advertised information */
46 ip6_address_t prefix;
47 u8 prefix_len;
48 int adv_on_link_flag;
49 int adv_autonomous_flag;
50 u32 adv_valid_lifetime_in_secs;
51 u32 adv_pref_lifetime_in_secs;
52
53 /* advertised values are computed from these times if decrementing */
54 f64 valid_lifetime_expires;
Dave Barachd7cb1b52016-12-09 09:52:16 -050055 f64 pref_lifetime_expires;
56
Ed Warnickecb9cada2015-12-08 15:45:58 -070057 /* local information */
58 int enabled;
59 int deprecated_prefix_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050060 int decrement_lifetime_flag;
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
62#define MIN_ADV_VALID_LIFETIME 7203 /* seconds */
63#define DEF_ADV_VALID_LIFETIME 2592000
64#define DEF_ADV_PREF_LIFETIME 604800
65
66 /* extensions are added here, mobile, DNS etc.. */
67} ip6_radv_prefix_t;
68
69
Dave Barachd7cb1b52016-12-09 09:52:16 -050070typedef struct
71{
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 /* group information */
73 u8 type;
74 ip6_address_t mcast_address;
75 u16 num_sources;
76 ip6_address_t *mcast_source_address_pool;
77} ip6_mldp_group_t;
78
79/* configured router advertisement information per ipv6 interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -050080typedef struct
81{
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
83 /* advertised config information, zero means unspecified */
Dave Barachd7cb1b52016-12-09 09:52:16 -050084 u8 curr_hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 int adv_managed_flag;
86 int adv_other_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050087 u16 adv_router_lifetime_in_sec;
Ed Warnickecb9cada2015-12-08 15:45:58 -070088 u32 adv_neighbor_reachable_time_in_msec;
89 u32 adv_time_in_msec_between_retransmitted_neighbor_solicitations;
90
91 /* mtu option */
92 u32 adv_link_mtu;
Dave Barachd7cb1b52016-12-09 09:52:16 -050093
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 /* source link layer option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050095 u8 link_layer_address[8];
96 u8 link_layer_addr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
98 /* prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050099 ip6_radv_prefix_t *adv_prefixes_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
101 /* Hash table mapping address to index in interface advertised prefix pool. */
102 mhash_t address_to_prefix_index;
103
104 /* MLDP group information */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500105 ip6_mldp_group_t *mldp_group_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106
107 /* Hash table mapping address to index in mldp address pool. */
108 mhash_t address_to_mldp_index;
109
110 /* local information */
111 u32 sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500112 int send_radv; /* radv on/off on this interface - set by config */
113 int cease_radv; /* we are ceasing to send - set byf config */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 int send_unicast;
115 int adv_link_layer_address;
116 int prefix_option;
117 int failed_device_check;
118 int all_routers_mcast;
119 u32 seed;
120 u64 randomizer;
121 int ref_count;
Neale Ranns32e1c012016-11-22 17:07:28 +0000122 adj_index_t mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500123
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 /* timing information */
125#define DEF_MAX_RADV_INTERVAL 200
126#define DEF_MIN_RADV_INTERVAL .75 * DEF_MAX_RADV_INTERVAL
127#define DEF_CURR_HOP_LIMIT 64
128#define DEF_DEF_RTR_LIFETIME 3 * DEF_MAX_RADV_INTERVAL
129#define MAX_DEF_RTR_LIFETIME 9000
130
Dave Barachd7cb1b52016-12-09 09:52:16 -0500131#define MAX_INITIAL_RTR_ADVERT_INTERVAL 16 /* seconds */
132#define MAX_INITIAL_RTR_ADVERTISEMENTS 3 /*transmissions */
133#define MIN_DELAY_BETWEEN_RAS 3 /* seconds */
134#define MAX_DELAY_BETWEEN_RAS 1800 /* seconds */
135#define MAX_RA_DELAY_TIME .5 /* seconds */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
137 f64 max_radv_interval;
138 f64 min_radv_interval;
139 f64 min_delay_between_radv;
140 f64 max_delay_between_radv;
141 f64 max_rtr_default_lifetime;
142
143 f64 last_radv_time;
144 f64 last_multicast_time;
145 f64 next_multicast_time;
146
147
148 u32 initial_adverts_count;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500149 f64 initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 u32 initial_adverts_sent;
151
152 /* stats */
153 u32 n_advertisements_sent;
154 u32 n_solicitations_rcvd;
155 u32 n_solicitations_dropped;
156
157 /* Link local address to use (defaults to underlying physical for logical interfaces */
158 ip6_address_t link_local_address;
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100159
160 /* router solicitations sending state */
161 u8 keep_sending_rs; /* when true then next fields are valid */
162 icmp6_send_router_solicitation_params_t params;
163 f64 sleep_interval;
164 f64 due_time;
165 u32 n_left;
166 f64 start_time;
167 vlib_buffer_t *buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168} ip6_radv_t;
169
Dave Barachd7cb1b52016-12-09 09:52:16 -0500170typedef struct
171{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 u32 next_index;
173 uword node_index;
174 uword type_opaque;
175 uword data;
John Lo1edfba92016-08-27 01:11:57 -0400176 /* Used for nd event notification only */
Neale Ranns37029302018-08-10 05:30:06 -0700177 ip6_nd_change_event_cb_t data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400178 u32 pid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179} pending_resolution_t;
180
181
Dave Barachd7cb1b52016-12-09 09:52:16 -0500182typedef struct
183{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 /* Hash tables mapping name to opcode. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500185 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
187 /* lite beer "glean" adjacency handling */
188 mhash_t pending_resolutions_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500189 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190
John Lo1edfba92016-08-27 01:11:57 -0400191 /* Mac address change notification */
192 mhash_t mac_changes_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500193 pending_resolution_t *mac_changes;
John Lo1edfba92016-08-27 01:11:57 -0400194
Dave Barachd7cb1b52016-12-09 09:52:16 -0500195 u32 *neighbor_input_next_index_by_hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
Dave Barachd7cb1b52016-12-09 09:52:16 -0500197 ip6_neighbor_t *neighbor_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
199 mhash_t neighbor_index_by_key;
200
Dave Barachd7cb1b52016-12-09 09:52:16 -0500201 u32 *if_radv_pool_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Dave Barachd7cb1b52016-12-09 09:52:16 -0500203 ip6_radv_t *if_radv_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
205 /* Neighbor attack mitigation */
206 u32 limit_neighbor_cache_size;
207 u32 neighbor_delete_rotor;
208
Eyal Baric125ecc2017-09-20 11:29:17 +0300209 /* Wildcard nd report publisher */
210 uword wc_ip6_nd_publisher_node;
211 uword wc_ip6_nd_publisher_et;
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100212
213 /* Router advertisement report publisher */
214 uword ip6_ra_publisher_node;
215 uword ip6_ra_publisher_et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216} ip6_neighbor_main_t;
217
Neale Ranns3f844d02017-02-18 00:03:54 -0800218/* ipv6 neighbor discovery - timer/event types */
219typedef enum
220{
221 ICMP6_ND_EVENT_INIT,
222} ip6_icmp_neighbor_discovery_event_type_t;
223
224typedef union
225{
226 u32 add_del_swindex;
227 struct
228 {
229 u32 up_down_swindex;
230 u32 fib_index;
231 } up_down_event;
232} ip6_icmp_neighbor_discovery_event_data_t;
233
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234static ip6_neighbor_main_t ip6_neighbor_main;
Juraj Sloboda52574522018-05-03 10:03:50 +0200235ip6_neighbor_public_main_t ip6_neighbor_public_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500236static ip6_address_t ip6a_zero; /* ip6 address 0 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
Eyal Baric125ecc2017-09-20 11:29:17 +0300238static void wc_nd_signal_report (wc_nd_report_t * r);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100239static void ra_signal_report (ra_report_t * r);
Eyal Baric125ecc2017-09-20 11:29:17 +0300240
Juraj Sloboda81119e82018-05-25 14:02:20 +0200241ip6_address_t
242ip6_neighbor_get_link_local_address (u32 sw_if_index)
243{
244 static ip6_address_t empty_address = { {0} };
245 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
246 ip6_radv_t *radv_info;
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200247 u32 ri = ~0;
Juraj Sloboda81119e82018-05-25 14:02:20 +0200248
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200249 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) > sw_if_index)
250 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Juraj Sloboda81119e82018-05-25 14:02:20 +0200251 if (ri == ~0)
252 {
253 clib_warning ("IPv6 is not enabled for sw_if_index %d", sw_if_index);
254 return empty_address;
255 }
256 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
257 if (radv_info == NULL)
258 {
259 clib_warning ("Internal error");
260 return empty_address;
261 }
262 return radv_info->link_local_address;
263}
264
Eyal Baric125ecc2017-09-20 11:29:17 +0300265/**
266 * @brief publish wildcard arp event
Jim Thompsonf324dec2019-04-08 03:22:21 -0500267 * @param sw_if_index The interface on which the ARP entries are acted
Eyal Baric125ecc2017-09-20 11:29:17 +0300268 */
269static int
Neale Ranns37029302018-08-10 05:30:06 -0700270vnet_nd_wc_publish (u32 sw_if_index,
271 const mac_address_t * mac, const ip6_address_t * ip6)
Eyal Baric125ecc2017-09-20 11:29:17 +0300272{
273 wc_nd_report_t r = {
274 .sw_if_index = sw_if_index,
275 .ip6 = *ip6,
Neale Ranns37029302018-08-10 05:30:06 -0700276 .mac = *mac,
Eyal Baric125ecc2017-09-20 11:29:17 +0300277 };
Eyal Baric125ecc2017-09-20 11:29:17 +0300278
Eyal Baric125ecc2017-09-20 11:29:17 +0300279 vl_api_rpc_call_main_thread (wc_nd_signal_report, (u8 *) & r, sizeof r);
280 return 0;
281}
282
283static void
284wc_nd_signal_report (wc_nd_report_t * r)
285{
286 vlib_main_t *vm = vlib_get_main ();
287 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
288 uword ni = nm->wc_ip6_nd_publisher_node;
289 uword et = nm->wc_ip6_nd_publisher_et;
290
291 if (ni == (uword) ~ 0)
292 return;
293 wc_nd_report_t *q =
294 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
295
296 *q = *r;
297}
298
299void
300wc_nd_set_publisher_node (uword node_index, uword event_type)
301{
302 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
303 nm->wc_ip6_nd_publisher_node = node_index;
304 nm->wc_ip6_nd_publisher_et = event_type;
305}
306
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100307static int
308ra_publish (ra_report_t * r)
309{
310 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
311 vl_api_rpc_call_main_thread (ra_signal_report, (u8 *) r, sizeof *r);
312 return 0;
313}
314
315static void
316ra_signal_report (ra_report_t * r)
317{
318 vlib_main_t *vm = vlib_get_main ();
319 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
320 uword ni = nm->ip6_ra_publisher_node;
321 uword et = nm->ip6_ra_publisher_et;
322
323 if (ni == (uword) ~ 0)
324 return;
325 ra_report_t *q = vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
326
327 *q = *r;
328}
329
330void
331ra_set_publisher_node (uword node_index, uword event_type)
332{
333 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
334 nm->ip6_ra_publisher_node = node_index;
335 nm->ip6_ra_publisher_et = event_type;
336}
337
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338static u8 *
339format_ip6_neighbor_ip6_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500341 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
342 ip6_neighbor_t *n = va_arg (*va, ip6_neighbor_t *);
343 vnet_main_t *vnm = vnet_get_main ();
344 vnet_sw_interface_t *si;
345 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347 if (!n)
shubing guo30746292018-08-10 15:51:44 +0800348 return format (s, "%=12s%=45s%=6s%=20s%=40s", "Time", "Address", "Flags",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 "Link layer", "Interface");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100350
Neale Ranns37029302018-08-10 05:30:06 -0700351 if (n->flags & IP_NEIGHBOR_FLAG_DYNAMIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 flags = format (flags, "D");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100353
Neale Ranns37029302018-08-10 05:30:06 -0700354 if (n->flags & IP_NEIGHBOR_FLAG_STATIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 flags = format (flags, "S");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356
Neale Ranns37029302018-08-10 05:30:06 -0700357 if (n->flags & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY)
Neale Rannsb3b2de72017-03-08 05:17:22 -0800358 flags = format (flags, "N");
359
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 si = vnet_get_sw_interface (vnm, n->key.sw_if_index);
shubing guo30746292018-08-10 15:51:44 +0800361 s = format (s, "%=12U%=45U%=6s%=20U%=40U",
John Lo7f358b32018-04-28 01:19:24 -0400362 format_vlib_time, vm, n->time_last_updated,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 format_ip6_address, &n->key.ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 flags ? (char *) flags : "",
Neale Ranns37029302018-08-10 05:30:06 -0700365 format_mac_address_t, &n->mac,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 format_vnet_sw_interface_name, vnm, si);
367
Dave Barachd7cb1b52016-12-09 09:52:16 -0500368 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 return s;
370}
371
Neale Ranns15002542017-09-10 04:39:11 -0700372static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700373ip6_neighbor_adj_fib_remove (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700374{
375 if (FIB_NODE_INDEX_INVALID != n->fib_entry_index)
376 {
Neale Ranns53da2212018-02-24 02:11:19 -0800377 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
378 {
379 ip6_ll_prefix_t pfx = {
380 .ilp_addr = n->key.ip6_address,
381 .ilp_sw_if_index = n->key.sw_if_index,
382 };
383 ip6_ll_table_entry_delete (&pfx);
384 }
385 else
386 {
387 fib_prefix_t pfx = {
388 .fp_len = 128,
389 .fp_proto = FIB_PROTOCOL_IP6,
390 .fp_addr.ip6 = n->key.ip6_address,
391 };
392 fib_table_entry_path_remove (fib_index,
393 &pfx,
394 FIB_SOURCE_ADJ,
395 DPO_PROTO_IP6,
396 &pfx.fp_addr,
397 n->key.sw_if_index, ~0,
398 1, FIB_ROUTE_PATH_FLAG_NONE);
399 }
Neale Ranns15002542017-09-10 04:39:11 -0700400 }
401}
402
Dave Barachd7cb1b52016-12-09 09:52:16 -0500403typedef struct
404{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 u8 is_add;
Neale Ranns37029302018-08-10 05:30:06 -0700406 ip_neighbor_flags_t flags;
407 mac_address_t mac;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 u32 sw_if_index;
409 ip6_address_t addr;
410} ip6_neighbor_set_unset_rpc_args_t;
411
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412static void ip6_neighbor_set_unset_rpc_callback
413 (ip6_neighbor_set_unset_rpc_args_t * a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415static void set_unset_ip6_neighbor_rpc
416 (vlib_main_t * vm,
417 u32 sw_if_index,
Neale Ranns0bdd3192018-09-07 11:04:52 -0700418 const ip6_address_t * a,
Neale Ranns37029302018-08-10 05:30:06 -0700419 const mac_address_t * mac, int is_add, ip_neighbor_flags_t flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420{
421 ip6_neighbor_set_unset_rpc_args_t args;
Dave Barachf9bd6202015-12-14 13:22:11 -0500422 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 args.sw_if_index = sw_if_index;
425 args.is_add = is_add;
Neale Ranns37029302018-08-10 05:30:06 -0700426 args.flags = flags;
427 ip6_address_copy (&args.addr, a);
428 mac_address_copy (&args.mac, mac);
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 Ranns37029302018-08-10 05:30:06 -0700511 nbr->mac.bytes));
Neale Rannsb80c5362016-10-08 13:03:40 +0100512}
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);
Neale Ranns37029302018-08-10 05:30:06 -0700604 if (n->flags & IP_NEIGHBOR_FLAG_STATIC)
John Lo4fed5b12018-05-22 03:35:06 -0400605 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;
Neale Ranns1855b8e2018-07-11 10:31:26 -0700665 case IP_LOOKUP_NEXT_BCAST:
666 adj_nbr_update_rewrite (ai,
667 ADJ_NBR_REWRITE_FLAG_COMPLETE,
668 ethernet_build_rewrite (vnm,
669 sw_if_index,
670 VNET_LINK_IP6,
671 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
672 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000673 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700674 {
675 /*
676 * Construct a partial rewrite from the known ethernet mcast dest MAC
677 */
678 u8 *rewrite;
679 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100680
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700681 rewrite = ethernet_build_rewrite (vnm,
682 sw_if_index,
683 adj->ia_link,
684 ethernet_ip6_mcast_dst_addr ());
Neale Ranns32e1c012016-11-22 17:07:28 +0000685
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700686 /*
687 * Complete the remaining fields of the adj's rewrite to direct the
688 * complete of the rewrite at switch time by copying in the IP
689 * dst address's bytes.
Jim Thompsonf324dec2019-04-08 03:22:21 -0500690 * Ofset is 2 bytes into the destintation address.
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700691 */
692 offset = vec_len (rewrite) - 2;
Neale Ranns889fe942017-06-01 05:43:19 -0400693 adj_mcast_update_rewrite (ai, rewrite, offset);
Neale Ranns32e1c012016-11-22 17:07:28 +0000694
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700695 break;
696 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000697 case IP_LOOKUP_NEXT_DROP:
698 case IP_LOOKUP_NEXT_PUNT:
699 case IP_LOOKUP_NEXT_LOCAL:
700 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800701 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000702 case IP_LOOKUP_NEXT_MIDCHAIN:
703 case IP_LOOKUP_NEXT_ICMP_ERROR:
704 case IP_LOOKUP_N_NEXT:
705 ASSERT (0);
706 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100707 }
708}
709
Neale Ranns15002542017-09-10 04:39:11 -0700710
711static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700712ip6_neighbor_adj_fib_add (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700713{
Neale Ranns53da2212018-02-24 02:11:19 -0800714 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
715 {
716 ip6_ll_prefix_t pfx = {
717 .ilp_addr = n->key.ip6_address,
718 .ilp_sw_if_index = n->key.sw_if_index,
719 };
720 n->fib_entry_index =
721 ip6_ll_table_entry_update (&pfx, FIB_ROUTE_PATH_FLAG_NONE);
722 }
723 else
724 {
725 fib_prefix_t pfx = {
726 .fp_len = 128,
727 .fp_proto = FIB_PROTOCOL_IP6,
728 .fp_addr.ip6 = n->key.ip6_address,
729 };
Neale Ranns15002542017-09-10 04:39:11 -0700730
Neale Ranns53da2212018-02-24 02:11:19 -0800731 n->fib_entry_index =
732 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
733 FIB_ENTRY_FLAG_ATTACHED,
734 DPO_PROTO_IP6, &pfx.fp_addr,
735 n->key.sw_if_index, ~0, 1, NULL,
736 FIB_ROUTE_PATH_FLAG_NONE);
737 }
Neale Ranns15002542017-09-10 04:39:11 -0700738}
739
John Lo4fed5b12018-05-22 03:35:06 -0400740static ip6_neighbor_t *
741force_reuse_neighbor_entry (void)
742{
743 ip6_neighbor_t *n;
744 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
745 u32 count = 0;
746 u32 index = pool_next_index (nm->neighbor_pool, nm->neighbor_delete_rotor);
747 if (index == ~0) /* Try again from elt 0 */
748 index = pool_next_index (nm->neighbor_pool, index);
749
750 /* Find a non-static random entry to free up for reuse */
751 do
752 {
753 if ((count++ == 100) || (index == ~0))
754 return NULL; /* give up after 100 entries */
755 n = pool_elt_at_index (nm->neighbor_pool, index);
756 nm->neighbor_delete_rotor = index;
757 index = pool_next_index (nm->neighbor_pool, index);
758 }
Neale Ranns37029302018-08-10 05:30:06 -0700759 while (n->flags & IP_NEIGHBOR_FLAG_STATIC);
John Lo4fed5b12018-05-22 03:35:06 -0400760
761 /* Remove ARP entry from its interface and update fib */
762 adj_nbr_walk_nh6 (n->key.sw_if_index,
763 &n->key.ip6_address, ip6_nd_mk_incomplete_walk, NULL);
764 ip6_neighbor_adj_fib_remove
765 (n, ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index));
766 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
767
768 return n;
769}
770
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771int
772vnet_set_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500773 u32 sw_if_index,
Neale Ranns0bdd3192018-09-07 11:04:52 -0700774 const ip6_address_t * a,
Neale Ranns37029302018-08-10 05:30:06 -0700775 const mac_address_t * mac,
776 ip_neighbor_flags_t flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500778 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500780 ip6_neighbor_t *n = 0;
781 int make_new_nd_cache_entry = 1;
782 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783 u32 next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500784 pending_resolution_t *pr, *mc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785
Damjan Marion586afd72017-04-05 19:18:20 +0200786 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787 {
Neale Ranns37029302018-08-10 05:30:06 -0700788 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, mac, 1, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 return 0;
790 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791
792 k.sw_if_index = sw_if_index;
793 k.ip6_address = a[0];
794 k.pad = 0;
795
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500797 if (p)
798 {
799 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
800 /* Refuse to over-write static neighbor entry. */
Neale Ranns37029302018-08-10 05:30:06 -0700801 if (!(flags & IP_NEIGHBOR_FLAG_STATIC) &&
802 (n->flags & IP_NEIGHBOR_FLAG_STATIC))
John Lo0e6f4d62018-07-13 17:29:58 -0400803 {
804 /* if MAC address match, still check to send event */
Neale Ranns37029302018-08-10 05:30:06 -0700805 if (0 == mac_address_cmp (&n->mac, mac))
John Lo0e6f4d62018-07-13 17:29:58 -0400806 goto check_customers;
807 return -2;
808 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500809 make_new_nd_cache_entry = 0;
810 }
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100811
Dave Barachd7cb1b52016-12-09 09:52:16 -0500812 if (make_new_nd_cache_entry)
813 {
John Lo4fed5b12018-05-22 03:35:06 -0400814 if (nm->limit_neighbor_cache_size &&
815 pool_elts (nm->neighbor_pool) >= nm->limit_neighbor_cache_size)
816 {
817 n = force_reuse_neighbor_entry ();
818 if (NULL == n)
819 return -2;
820 }
821 else
822 pool_get (nm->neighbor_pool, n);
823
Dave Barachd7cb1b52016-12-09 09:52:16 -0500824 mhash_set (&nm->neighbor_index_by_key, &k, n - nm->neighbor_pool,
825 /* old value */ 0);
826 n->key = k;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700827 n->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100828
Neale Ranns37029302018-08-10 05:30:06 -0700829 mac_address_copy (&n->mac, mac);
Neale Rannsb80c5362016-10-08 13:03:40 +0100830
Dave Barachd7cb1b52016-12-09 09:52:16 -0500831 /*
832 * create the adj-fib. the entry in the FIB table for and to the peer.
833 */
Neale Ranns37029302018-08-10 05:30:06 -0700834 if (!(flags & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800835 {
Neale Ranns53da2212018-02-24 02:11:19 -0800836 ip6_neighbor_adj_fib_add
837 (n, ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700838 }
839 else
840 {
Neale Ranns37029302018-08-10 05:30:06 -0700841 n->flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800842 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500843 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100844 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500845 {
846 /*
847 * prevent a DoS attack from the data-plane that
848 * spams us with no-op updates to the MAC address
849 */
Neale Ranns37029302018-08-10 05:30:06 -0700850 if (0 == mac_address_cmp (&n->mac, mac))
John Lo7f358b32018-04-28 01:19:24 -0400851 {
852 n->time_last_updated = vlib_time_now (vm);
853 goto check_customers;
854 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100855
Neale Ranns37029302018-08-10 05:30:06 -0700856 mac_address_copy (&n->mac, mac);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500857 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858
Neale Rannsb80c5362016-10-08 13:03:40 +0100859 /* Update time stamp and flags. */
John Lo7f358b32018-04-28 01:19:24 -0400860 n->time_last_updated = vlib_time_now (vm);
Neale Ranns37029302018-08-10 05:30:06 -0700861 if (flags & IP_NEIGHBOR_FLAG_STATIC)
John Lo4fed5b12018-05-22 03:35:06 -0400862 {
Neale Ranns37029302018-08-10 05:30:06 -0700863 n->flags |= IP_NEIGHBOR_FLAG_STATIC;
864 n->flags &= ~IP_NEIGHBOR_FLAG_DYNAMIC;
John Lo4fed5b12018-05-22 03:35:06 -0400865 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100866 else
John Lo4fed5b12018-05-22 03:35:06 -0400867 {
Neale Ranns37029302018-08-10 05:30:06 -0700868 n->flags |= IP_NEIGHBOR_FLAG_DYNAMIC;
869 n->flags &= ~IP_NEIGHBOR_FLAG_STATIC;
John Lo4fed5b12018-05-22 03:35:06 -0400870 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100871
Neale Rannsb80c5362016-10-08 13:03:40 +0100872 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500873 &n->key.ip6_address, ip6_nd_mk_complete_walk, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874
Dave Barach59b25652017-09-10 15:04:27 -0400875check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 /* Customer(s) waiting for this address to be resolved? */
877 p = mhash_get (&nm->pending_resolutions_by_address, a);
John Lo1edfba92016-08-27 01:11:57 -0400878 if (p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879 {
John Lo1edfba92016-08-27 01:11:57 -0400880 next_index = p[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500881
882 while (next_index != (u32) ~ 0)
883 {
John Lo1edfba92016-08-27 01:11:57 -0400884 pr = pool_elt_at_index (nm->pending_resolutions, next_index);
885 vlib_process_signal_event (vm, pr->node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500886 pr->type_opaque, pr->data);
John Lo1edfba92016-08-27 01:11:57 -0400887 next_index = pr->next_index;
888 pool_put (nm->pending_resolutions, pr);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500889 }
John Lo1edfba92016-08-27 01:11:57 -0400890
Neale Ranns0bdd3192018-09-07 11:04:52 -0700891 mhash_unset (&nm->pending_resolutions_by_address, (void *) a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 }
893
John Lo1edfba92016-08-27 01:11:57 -0400894 /* Customer(s) requesting ND event for this address? */
895 p = mhash_get (&nm->mac_changes_by_address, a);
896 if (p)
897 {
898 next_index = p[0];
899
Dave Barachd7cb1b52016-12-09 09:52:16 -0500900 while (next_index != (u32) ~ 0)
901 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500902 int rv = 1;
Neale Ranns37029302018-08-10 05:30:06 -0700903
Dave Barachd7cb1b52016-12-09 09:52:16 -0500904 mc = pool_elt_at_index (nm->mac_changes, next_index);
John Lo1edfba92016-08-27 01:11:57 -0400905
Dave Barachd7cb1b52016-12-09 09:52:16 -0500906 /* Call the user's data callback, return 1 to suppress dup events */
Neale Ranns37029302018-08-10 05:30:06 -0700907 if (mc->data_callback)
908 rv = (mc->data_callback) (mc->data, mac, sw_if_index, &ip6a_zero);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500909 /*
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,
Neale Ranns0bdd3192018-09-07 11:04:52 -0700925 u32 sw_if_index, const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500927 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500929 ip6_neighbor_t *n;
930 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 int rv = 0;
932
Damjan Marion586afd72017-04-05 19:18:20 +0200933 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934 {
Neale Ranns37029302018-08-10 05:30:06 -0700935 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, NULL, 0,
936 IP_NEIGHBOR_FLAG_NONE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937 return 0;
938 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939
940 k.sw_if_index = sw_if_index;
941 k.ip6_address = a[0];
942 k.pad = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500943
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944 p = mhash_get (&nm->neighbor_index_by_key, &k);
945 if (p == 0)
946 {
947 rv = -1;
948 goto out;
949 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500950
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100952
Neale Rannsb80c5362016-10-08 13:03:40 +0100953 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500954 &n->key.ip6_address, ip6_nd_mk_incomplete_walk, NULL);
John Lo4fed5b12018-05-22 03:35:06 -0400955 ip6_neighbor_adj_fib_remove
956 (n, ip6_fib_table_get_index_for_sw_if_index (sw_if_index));
Neale Rannsb80c5362016-10-08 13:03:40 +0100957
John Lo4fed5b12018-05-22 03:35:06 -0400958 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 pool_put (nm->neighbor_pool, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500960
961out:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962 return rv;
963}
964
Dave Barachd7cb1b52016-12-09 09:52:16 -0500965static void ip6_neighbor_set_unset_rpc_callback
966 (ip6_neighbor_set_unset_rpc_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500968 vlib_main_t *vm = vlib_get_main ();
969 if (a->is_add)
970 vnet_set_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
Neale Ranns37029302018-08-10 05:30:06 -0700971 &a->mac, a->flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972 else
Neale Ranns0bdd3192018-09-07 11:04:52 -0700973 vnet_unset_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975
976static int
977ip6_neighbor_sort (void *a1, void *a2)
978{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500979 vnet_main_t *vnm = vnet_get_main ();
980 ip6_neighbor_t *n1 = a1, *n2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981 int cmp;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500982 cmp = vnet_sw_interface_compare (vnm, n1->key.sw_if_index,
983 n2->key.sw_if_index);
984 if (!cmp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985 cmp = ip6_address_compare (&n1->key.ip6_address, &n2->key.ip6_address);
986 return cmp;
987}
988
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100989ip6_neighbor_t *
John Lo7f358b32018-04-28 01:19:24 -0400990ip6_neighbors_pool (void)
991{
992 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
993 return nm->neighbor_pool;
994}
995
996ip6_neighbor_t *
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100997ip6_neighbors_entries (u32 sw_if_index)
998{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500999 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Neale Ranns37029302018-08-10 05:30:06 -07001000 ip6_neighbor_t *n, *ns = NULL;
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001001
1002 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001003 pool_foreach (n, nm->neighbor_pool,
1004 ({
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001005 if (sw_if_index != ~0 && n->key.sw_if_index != sw_if_index)
1006 continue;
1007 vec_add1 (ns, n[0]);
1008 }));
1009 /* *INDENT-ON* */
1010
1011 if (ns)
1012 vec_sort_with_function (ns, ip6_neighbor_sort);
1013 return ns;
1014}
1015
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016static clib_error_t *
1017show_ip6_neighbors (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001018 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001020 vnet_main_t *vnm = vnet_get_main ();
1021 ip6_neighbor_t *n, *ns;
1022 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 u32 sw_if_index;
Dave Barach1bb981d2019-02-26 17:04:40 -05001024 int verbose = 0;
1025
1026 if (unformat (input, "verbose"))
1027 verbose = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028
1029 /* Filter entries by interface if given. */
1030 sw_if_index = ~0;
1031 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1032
Pavel Kotucek3e046ea2016-12-05 08:27:37 +01001033 ns = ip6_neighbors_entries (sw_if_index);
Billy McFall46529cd2016-10-14 10:45:49 -04001034 if (ns)
1035 {
Dave Barach1bb981d2019-02-26 17:04:40 -05001036 /*
1037 * Show the entire table if it's not too big, otherwise just
1038 * show the size of the table.
1039 */
1040 if (vec_len (ns) < 50)
1041 verbose = 1;
1042 if (verbose)
1043 {
1044 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, 0);
1045 vec_foreach (n, ns)
1046 {
1047 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, n);
1048 }
1049 }
1050 else
1051 vlib_cli_output
1052 (vm, "There are %u ip6 neighbors, "
1053 "'show ip6 neighbors verbose' to display the entire table...",
1054 vec_len (ns));
Billy McFall46529cd2016-10-14 10:45:49 -04001055 vec_free (ns);
1056 }
Dave Barach1bb981d2019-02-26 17:04:40 -05001057 else
1058 vlib_cli_output (vm, "No ip6 neighbors");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059
1060 return error;
1061}
1062
Billy McFall0683c9c2016-10-13 08:27:31 -04001063/*?
1064 * This command is used to display the adjacent IPv6 hosts found via
1065 * neighbor discovery. Optionally, limit the output to the specified
1066 * interface.
1067 *
1068 * @cliexpar
1069 * Example of how to display the IPv6 neighbor adjacency table:
1070 * @cliexstart{show ip6 neighbors}
1071 * Time Address Flags Link layer Interface
1072 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
1073 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
1074 * 886.6654 ::1:1:c:0:9 S 02:fe:e4:45:27:5b GigabitEthernet3/0/0
1075 * @cliexend
1076 * Example of how to display the IPv6 neighbor adjacency table for given interface:
1077 * @cliexstart{show ip6 neighbors GigabitEthernet2/0/0}
1078 * Time Address Flags Link layer Interface
1079 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
1080 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
1081 * @cliexend
1082?*/
1083/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084VLIB_CLI_COMMAND (show_ip6_neighbors_command, static) = {
1085 .path = "show ip6 neighbors",
1086 .function = show_ip6_neighbors,
Billy McFall0683c9c2016-10-13 08:27:31 -04001087 .short_help = "show ip6 neighbors [<interface>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001088};
Billy McFall0683c9c2016-10-13 08:27:31 -04001089/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090
1091static clib_error_t *
1092set_ip6_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001093 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094{
Neale Ranns37029302018-08-10 05:30:06 -07001095 ip_neighbor_flags_t flags = IP_NEIGHBOR_FLAG_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001096 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097 ip6_address_t addr;
Neale Ranns37029302018-08-10 05:30:06 -07001098 mac_address_t mac;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099 int addr_valid = 0;
1100 int is_del = 0;
1101 u32 sw_if_index;
1102
Dave Barachd7cb1b52016-12-09 09:52:16 -05001103 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 {
1105 /* intfc, ip6-address, mac-address */
1106 if (unformat (input, "%U %U %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001107 unformat_vnet_sw_interface, vnm, &sw_if_index,
1108 unformat_ip6_address, &addr,
Neale Ranns37029302018-08-10 05:30:06 -07001109 unformat_mac_address_t, &mac))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001110 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111
1112 else if (unformat (input, "delete") || unformat (input, "del"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001113 is_del = 1;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +01001114 else if (unformat (input, "static"))
Neale Ranns37029302018-08-10 05:30:06 -07001115 flags |= IP_NEIGHBOR_FLAG_STATIC;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001116 else if (unformat (input, "no-fib-entry"))
Neale Ranns37029302018-08-10 05:30:06 -07001117 flags |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001119 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120 }
1121
1122 if (!addr_valid)
1123 return clib_error_return (0, "Missing interface, ip6 or hw address");
Dave Barachd7cb1b52016-12-09 09:52:16 -05001124
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125 if (!is_del)
Neale Ranns37029302018-08-10 05:30:06 -07001126 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index, &addr, &mac, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127 else
Neale Ranns0bdd3192018-09-07 11:04:52 -07001128 vnet_unset_ip6_ethernet_neighbor (vm, sw_if_index, &addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001129 return 0;
1130}
1131
Billy McFall0683c9c2016-10-13 08:27:31 -04001132/*?
1133 * This command is used to manually add an entry to the IPv6 neighbor
1134 * adjacency table. Optionally, the entry can be added as static. It is
1135 * also used to remove an entry from the table. Use the '<em>show ip6
1136 * neighbors</em>' command to display all learned and manually entered entries.
1137 *
1138 * @cliexpar
1139 * Example of how to add a static entry to the IPv6 neighbor adjacency table:
1140 * @cliexcmd{set ip6 neighbor GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b static}
1141 * Example of how to delete an entry from the IPv6 neighbor adjacency table:
1142 * @cliexcmd{set ip6 neighbor del GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b}
1143?*/
1144/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001145VLIB_CLI_COMMAND (set_ip6_neighbor_command, static) =
1146{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147 .path = "set ip6 neighbor",
1148 .function = set_ip6_neighbor,
Billy McFall0683c9c2016-10-13 08:27:31 -04001149 .short_help = "set ip6 neighbor [del] <interface> <ip6-address> <mac-address> [static]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150};
Billy McFall0683c9c2016-10-13 08:27:31 -04001151/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152
Dave Barachd7cb1b52016-12-09 09:52:16 -05001153typedef enum
1154{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001155 ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP,
1156 ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY,
1157 ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
1158} icmp6_neighbor_solicitation_or_advertisement_next_t;
1159
1160static_always_inline uword
1161icmp6_neighbor_solicitation_or_advertisement (vlib_main_t * vm,
1162 vlib_node_runtime_t * node,
1163 vlib_frame_t * frame,
1164 uword is_solicitation)
1165{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001166 vnet_main_t *vnm = vnet_get_main ();
1167 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001168 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001169 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170 u32 n_left_from, n_left_to_next, next_index, n_advertisements_sent;
1171 icmp6_neighbor_discovery_option_type_t option_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001172 vlib_node_runtime_t *error_node =
1173 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 int bogus_length;
1175
1176 from = vlib_frame_vector_args (frame);
1177 n_left_from = n_packets;
1178 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001179
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180 if (node->flags & VLIB_NODE_FLAG_TRACE)
1181 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1182 /* stride */ 1,
1183 sizeof (icmp6_input_trace_t));
1184
Dave Barachd7cb1b52016-12-09 09:52:16 -05001185 option_type =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186 (is_solicitation
1187 ? ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address
1188 : ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address);
1189 n_advertisements_sent = 0;
1190
1191 while (n_left_from > 0)
1192 {
1193 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1194
1195 while (n_left_from > 0 && n_left_to_next > 0)
1196 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001197 vlib_buffer_t *p0;
1198 ip6_header_t *ip0;
1199 icmp6_neighbor_solicitation_or_advertisement_header_t *h0;
1200 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001202 u32 ip6_sadd_link_local, ip6_sadd_unspecified;
1203 int is_rewrite0;
1204 u32 ni0;
1205
Ed Warnickecb9cada2015-12-08 15:45:58 -07001206 bi0 = to_next[0] = from[0];
1207
1208 from += 1;
1209 to_next += 1;
1210 n_left_from -= 1;
1211 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001212
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213 p0 = vlib_get_buffer (vm, bi0);
1214 ip0 = vlib_buffer_get_current (p0);
1215 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001216 options_len0 =
1217 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218
1219 error0 = ICMP6_ERROR_NONE;
1220 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001221 ip6_sadd_link_local =
1222 ip6_address_is_link_local_unicast (&ip0->src_address);
1223 ip6_sadd_unspecified =
1224 ip6_address_is_unspecified (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225
1226 /* Check that source address is unspecified, link-local or else on-link. */
1227 if (!ip6_sadd_unspecified && !ip6_sadd_link_local)
1228 {
1229 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230
Dave Barachd7cb1b52016-12-09 09:52:16 -05001231 if (ADJ_INDEX_INVALID != src_adj_index0)
1232 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001233 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234
Dave Barachd7cb1b52016-12-09 09:52:16 -05001235 /* Allow all realistic-looking rewrite adjacencies to pass */
1236 ni0 = adj0->lookup_next_index;
1237 is_rewrite0 = (ni0 >= IP_LOOKUP_NEXT_ARP) &&
1238 (ni0 < IP6_LOOKUP_N_NEXT);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001239
Dave Barachd7cb1b52016-12-09 09:52:16 -05001240 error0 = ((adj0->rewrite_header.sw_if_index != sw_if_index0
1241 || !is_rewrite0)
1242 ?
1243 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK
1244 : error0);
1245 }
1246 else
1247 {
1248 error0 =
1249 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK;
1250 }
1251 }
1252
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 o0 = (void *) (h0 + 1);
1254 o0 = ((options_len0 == 8 && o0->header.type == option_type
1255 && o0->header.n_data_u64s == 1) ? o0 : 0);
1256
1257 /* If src address unspecified or link local, donot learn neighbor MAC */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001258 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
Neale Ranns2a3ea492017-04-19 05:24:40 -07001259 !ip6_sadd_unspecified))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001260 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001261 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1262 is_solicitation ?
1263 &ip0->src_address :
1264 &h0->target_address,
Neale Ranns37029302018-08-10 05:30:06 -07001265 (mac_address_t *)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001266 o0->ethernet_address,
Neale Ranns37029302018-08-10 05:30:06 -07001267 IP_NEIGHBOR_FLAG_NONE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001268 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269
1270 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1271 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001272 /* Check that target address is local to this router. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001273 fib_node_index_t fei;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001274 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275
Dave Barachd7cb1b52016-12-09 09:52:16 -05001276 fib_index =
1277 ip6_fib_table_get_index_for_sw_if_index (sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001279 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001280 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001281 error0 = ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1282 }
1283 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001284 {
Neale Ranns53da2212018-02-24 02:11:19 -08001285 if (ip6_address_is_link_local_unicast (&h0->target_address))
1286 {
1287 fei = ip6_fib_table_lookup_exact_match
1288 (ip6_ll_fib_get (sw_if_index0),
1289 &h0->target_address, 128);
1290 }
1291 else
1292 {
1293 fei = ip6_fib_table_lookup_exact_match (fib_index,
1294 &h0->target_address,
1295 128);
1296 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001297
Neale Ranns3f844d02017-02-18 00:03:54 -08001298 if (FIB_NODE_INDEX_INVALID == fei)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001299 {
Neale Ranns3f844d02017-02-18 00:03:54 -08001300 /* The target address is not in the FIB */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001301 error0 =
1302 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001303 }
Neale Ranns3f844d02017-02-18 00:03:54 -08001304 else
1305 {
1306 if (FIB_ENTRY_FLAG_LOCAL &
1307 fib_entry_get_flags_for_source (fei,
1308 FIB_SOURCE_INTERFACE))
1309 {
1310 /* It's an address that belongs to one of our interfaces
1311 * that's good. */
1312 }
1313 else
1314 if (fib_entry_is_sourced
Neale Ranns53da2212018-02-24 02:11:19 -08001315 (fei, FIB_SOURCE_IP6_ND_PROXY) ||
1316 fib_entry_is_sourced (fei, FIB_SOURCE_IP6_ND))
Neale Ranns3f844d02017-02-18 00:03:54 -08001317 {
1318 /* The address was added by IPv6 Proxy ND config.
1319 * We should only respond to these if the NS arrived on
1320 * the link that has a matching covering prefix */
1321 }
1322 else
1323 {
1324 error0 =
1325 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1326 }
1327 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001328 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329 }
1330
1331 if (is_solicitation)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001332 next0 = (error0 != ICMP6_ERROR_NONE
1333 ? ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP
1334 : ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335 else
1336 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001337 next0 = 0;
1338 error0 = error0 == ICMP6_ERROR_NONE ?
1339 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_RX : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340 }
1341
1342 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1343 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001344 vnet_sw_interface_t *sw_if0;
1345 ethernet_interface_t *eth_if0;
1346 ethernet_header_t *eth0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347
Dave Barachd7cb1b52016-12-09 09:52:16 -05001348 /* dst address is either source address or the all-nodes mcast addr */
1349 if (!ip6_sadd_unspecified)
1350 ip0->dst_address = ip0->src_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001351 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001352 ip6_set_reserved_multicast_address (&ip0->dst_address,
1353 IP6_MULTICAST_SCOPE_link_local,
1354 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355
1356 ip0->src_address = h0->target_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001357 ip0->hop_limit = 255;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 h0->icmp.type = ICMP6_neighbor_advertisement;
1359
1360 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1361 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001362 eth_if0 =
1363 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001364 if (eth_if0 && o0)
1365 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001366 clib_memcpy (o0->ethernet_address, eth_if0->address, 6);
1367 o0->header.type =
1368 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369 }
1370
1371 h0->advertisement_flags = clib_host_to_net_u32
1372 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED
1373 | ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
1374
1375 h0->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001376 h0->icmp.checksum =
1377 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1378 &bogus_length);
1379 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380
Dave Barachd7cb1b52016-12-09 09:52:16 -05001381 /* Reuse current MAC header, copy SMAC to DMAC and
1382 * interface MAC to SMAC */
1383 vlib_buffer_advance (p0, -ethernet_buffer_header_size (p0));
1384 eth0 = vlib_buffer_get_current (p0);
1385 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
1386 if (eth_if0)
1387 clib_memcpy (eth0->src_address, eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001388
Dave Barachd7cb1b52016-12-09 09:52:16 -05001389 /* Setup input and output sw_if_index for packet */
1390 ASSERT (vnet_buffer (p0)->sw_if_index[VLIB_RX] == sw_if_index0);
1391 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1392 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
1393 vnet_main.local_interface_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394
1395 n_advertisements_sent++;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001396 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001397
1398 p0->error = error_node->errors[error0];
1399
1400 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1401 to_next, n_left_to_next,
1402 bi0, next0);
1403 }
1404
1405 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1406 }
1407
1408 /* Account for advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001409 vlib_error_count (vm, error_node->node_index,
1410 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX,
1411 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412
1413 return frame->n_vectors;
1414}
1415
1416/* for "syslogging" - use elog for now */
1417#define foreach_log_level \
1418 _ (DEBUG, "DEBUG") \
1419 _ (INFO, "INFORMATION") \
1420 _ (NOTICE, "NOTICE") \
1421 _ (WARNING, "WARNING") \
1422 _ (ERR, "ERROR") \
1423 _ (CRIT, "CRITICAL") \
1424 _ (ALERT, "ALERT") \
1425 _ (EMERG, "EMERGENCY")
1426
Dave Barachd7cb1b52016-12-09 09:52:16 -05001427typedef enum
1428{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001429#define _(f,s) LOG_##f,
1430 foreach_log_level
1431#undef _
1432} log_level_t;
1433
Dave Barachd7cb1b52016-12-09 09:52:16 -05001434static char *log_level_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001435#define _(f,s) s,
1436 foreach_log_level
1437#undef _
1438};
1439
Dave Barachd7cb1b52016-12-09 09:52:16 -05001440static int logmask = 1 << LOG_DEBUG;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001441
1442static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05001443ip6_neighbor_syslog (vlib_main_t * vm, int priority, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444{
1445 /* just use elog for now */
1446 u8 *what;
1447 va_list va;
1448
Dave Barachd7cb1b52016-12-09 09:52:16 -05001449 if ((priority > LOG_EMERG) || !(logmask & (1 << priority)))
1450 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001451
1452 va_start (va, fmt);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001453 if (fmt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001454 {
1455 what = va_format (0, fmt, &va);
1456
Dave Barachd7cb1b52016-12-09 09:52:16 -05001457 ELOG_TYPE_DECLARE (e) =
1458 {
1459 .format = "ip6 nd: (%s): %s",.format_args = "T4T4",};
1460 struct
1461 {
1462 u32 s[2];
1463 } *ed;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001464 ed = ELOG_DATA (&vm->elog_main, e);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001465 ed->s[0] = elog_string (&vm->elog_main, log_level_strings[priority]);
1466 ed->s[1] = elog_string (&vm->elog_main, (char *) what);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467 }
1468 va_end (va);
1469 return;
1470}
1471
Juraj Sloboda52574522018-05-03 10:03:50 +02001472clib_error_t *
1473call_ip6_neighbor_callbacks (void *data,
1474 _vnet_ip6_neighbor_function_list_elt_t * elt)
1475{
1476 clib_error_t *error = 0;
1477
1478 while (elt)
1479 {
1480 error = elt->fp (data);
1481 if (error)
1482 return error;
1483 elt = elt->next_ip6_neighbor_function;
1484 }
1485
1486 return error;
1487}
1488
Ed Warnickecb9cada2015-12-08 15:45:58 -07001489/* ipv6 neighbor discovery - router advertisements */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001490typedef enum
1491{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001492 ICMP6_ROUTER_SOLICITATION_NEXT_DROP,
1493 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW,
1494 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX,
1495 ICMP6_ROUTER_SOLICITATION_N_NEXT,
1496} icmp6_router_solicitation_or_advertisement_next_t;
1497
1498static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001499icmp6_router_solicitation (vlib_main_t * vm,
1500 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001501{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001502 vnet_main_t *vnm = vnet_get_main ();
1503 ip6_main_t *im = &ip6_main;
1504 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001505 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001506 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001507 u32 n_left_from, n_left_to_next, next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001508 u32 n_advertisements_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001509 int bogus_length;
1510
1511 icmp6_neighbor_discovery_option_type_t option_type;
1512
Dave Barachd7cb1b52016-12-09 09:52:16 -05001513 vlib_node_runtime_t *error_node =
1514 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001515
1516 from = vlib_frame_vector_args (frame);
1517 n_left_from = n_packets;
1518 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001519
Ed Warnickecb9cada2015-12-08 15:45:58 -07001520 if (node->flags & VLIB_NODE_FLAG_TRACE)
1521 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1522 /* stride */ 1,
1523 sizeof (icmp6_input_trace_t));
1524
1525 /* source may append his LL address */
1526 option_type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
1527
1528 while (n_left_from > 0)
1529 {
1530 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001531
Ed Warnickecb9cada2015-12-08 15:45:58 -07001532 while (n_left_from > 0 && n_left_to_next > 0)
1533 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001534 vlib_buffer_t *p0;
1535 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001536 ip6_radv_t *radv_info = 0;
1537
Dave Barachd7cb1b52016-12-09 09:52:16 -05001538 icmp6_neighbor_discovery_header_t *h0;
1539 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
1540
Ed Warnickecb9cada2015-12-08 15:45:58 -07001541 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001542 u32 is_solicitation = 1, is_dropped = 0;
1543 u32 is_unspecified, is_link_local;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001544
1545 bi0 = to_next[0] = from[0];
1546
1547 from += 1;
1548 to_next += 1;
1549 n_left_from -= 1;
1550 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001551
Ed Warnickecb9cada2015-12-08 15:45:58 -07001552 p0 = vlib_get_buffer (vm, bi0);
1553 ip0 = vlib_buffer_get_current (p0);
1554 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001555 options_len0 =
1556 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
1557 is_unspecified = ip6_address_is_unspecified (&ip0->src_address);
1558 is_link_local =
1559 ip6_address_is_link_local_unicast (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001560
1561 error0 = ICMP6_ERROR_NONE;
1562 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001563
Ed Warnickecb9cada2015-12-08 15:45:58 -07001564 /* check if solicitation (not from nd_timer node) */
1565 if (ip6_address_is_unspecified (&ip0->dst_address))
1566 is_solicitation = 0;
1567
1568 /* Check that source address is unspecified, link-local or else on-link. */
1569 if (!is_unspecified && !is_link_local)
1570 {
1571 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001572
Dave Barachd7cb1b52016-12-09 09:52:16 -05001573 if (ADJ_INDEX_INVALID != src_adj_index0)
1574 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001575 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001576
Dave Barachd7cb1b52016-12-09 09:52:16 -05001577 error0 = (adj0->rewrite_header.sw_if_index != sw_if_index0
1578 ?
1579 ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK
1580 : error0);
1581 }
1582 else
1583 {
1584 error0 = ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK;
1585 }
1586 }
1587
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588 /* check for source LL option and process */
1589 o0 = (void *) (h0 + 1);
1590 o0 = ((options_len0 == 8
1591 && o0->header.type == option_type
Dave Barachd7cb1b52016-12-09 09:52:16 -05001592 && o0->header.n_data_u64s == 1) ? o0 : 0);
1593
Ed Warnickecb9cada2015-12-08 15:45:58 -07001594 /* if src address unspecified IGNORE any options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001595 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
1596 !is_unspecified && !is_link_local))
1597 {
Neale Ranns37029302018-08-10 05:30:06 -07001598 vnet_set_ip6_ethernet_neighbor
1599 (vm, sw_if_index0,
1600 &ip0->src_address,
1601 (mac_address_t *) o0->ethernet_address,
1602 IP_NEIGHBOR_FLAG_NONE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001603 }
1604
Ed Warnickecb9cada2015-12-08 15:45:58 -07001605 /* default is to drop */
1606 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001607
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608 if (error0 == ICMP6_ERROR_NONE)
1609 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001610 vnet_sw_interface_t *sw_if0;
1611 ethernet_interface_t *eth_if0;
1612 u32 adj_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001613
1614 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1615 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001616 eth_if0 =
1617 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001618
1619 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001620 error0 =
1621 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1622 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001623
1624 if (error0 == ICMP6_ERROR_NONE)
1625 {
1626 u32 ri;
1627
1628 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001629 p0->current_length -=
1630 (options_len0 +
1631 sizeof (icmp6_neighbor_discovery_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001632
1633 /* look up the radv_t information for this interface */
Neale Ranns8e254952018-04-25 05:40:48 -07001634 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) >
1635 sw_if_index0)
1636 {
1637 ri =
1638 nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001639
Neale Ranns8e254952018-04-25 05:40:48 -07001640 if (ri != ~0)
1641 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1642 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001643
1644 error0 =
1645 ((!radv_info) ?
1646 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1647 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001648
1649 if (error0 == ICMP6_ERROR_NONE)
1650 {
1651 f64 now = vlib_time_now (vm);
1652
1653 /* for solicited adverts - need to rate limit */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001654 if (is_solicitation)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001655 {
Neale Ranns75152282017-01-09 01:00:45 -08001656 if (0 != radv_info->last_radv_time &&
1657 (now - radv_info->last_radv_time) <
Dave Barachd7cb1b52016-12-09 09:52:16 -05001658 MIN_DELAY_BETWEEN_RAS)
1659 is_dropped = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001660 else
1661 radv_info->last_radv_time = now;
1662 }
1663
1664 /* send now */
1665 icmp6_router_advertisement_header_t rh;
1666
1667 rh.icmp.type = ICMP6_router_advertisement;
1668 rh.icmp.code = 0;
1669 rh.icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001670
Ed Warnickecb9cada2015-12-08 15:45:58 -07001671 rh.current_hop_limit = radv_info->curr_hop_limit;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001672 rh.router_lifetime_in_sec =
1673 clib_host_to_net_u16
1674 (radv_info->adv_router_lifetime_in_sec);
1675 rh.
1676 time_in_msec_between_retransmitted_neighbor_solicitations
1677 =
1678 clib_host_to_net_u32 (radv_info->
1679 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
1680 rh.neighbor_reachable_time_in_msec =
1681 clib_host_to_net_u32 (radv_info->
1682 adv_neighbor_reachable_time_in_msec);
1683
1684 rh.flags =
1685 (radv_info->adv_managed_flag) ?
1686 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP :
1687 0;
1688 rh.flags |=
1689 ((radv_info->adv_other_flag) ?
1690 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP :
1691 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001692
1693
Dave Barachd7cb1b52016-12-09 09:52:16 -05001694 u16 payload_length =
1695 sizeof (icmp6_router_advertisement_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001696
Dave Barach3a63fc52019-01-07 09:15:47 -05001697 if (vlib_buffer_add_data
Damjan Marionab9b7ec2019-01-18 20:24:44 +01001698 (vm, &bi0, (void *) &rh,
Dave Barach3a63fc52019-01-07 09:15:47 -05001699 sizeof (icmp6_router_advertisement_header_t)))
1700 {
1701 /* buffer allocation failed, drop the pkt */
1702 error0 = ICMP6_ERROR_ALLOC_FAILURE;
1703 goto drop0;
1704 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001705
Dave Barachd7cb1b52016-12-09 09:52:16 -05001706 if (radv_info->adv_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001707 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001708 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
1709 h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001710
Dave Barachd7cb1b52016-12-09 09:52:16 -05001711 h.header.type =
1712 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001713 h.header.n_data_u64s = 1;
1714
1715 /* copy ll address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001716 clib_memcpy (&h.ethernet_address[0],
1717 eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001718
Dave Barach3a63fc52019-01-07 09:15:47 -05001719 if (vlib_buffer_add_data
Damjan Marionab9b7ec2019-01-18 20:24:44 +01001720 (vm, &bi0, (void *) &h,
Dave Barach3a63fc52019-01-07 09:15:47 -05001721 sizeof
1722 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t)))
1723 {
1724 error0 = ICMP6_ERROR_ALLOC_FAILURE;
1725 goto drop0;
1726 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001727
Dave Barachd7cb1b52016-12-09 09:52:16 -05001728 payload_length +=
1729 sizeof
1730 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001731 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001732
Ed Warnickecb9cada2015-12-08 15:45:58 -07001733 /* add MTU option */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001734 if (radv_info->adv_link_mtu)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001735 {
1736 icmp6_neighbor_discovery_mtu_option_t h;
1737
1738 h.unused = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001739 h.mtu =
1740 clib_host_to_net_u32 (radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001741 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu;
1742 h.header.n_data_u64s = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001743
1744 payload_length +=
1745 sizeof (icmp6_neighbor_discovery_mtu_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001746
Dave Barach3a63fc52019-01-07 09:15:47 -05001747 if (vlib_buffer_add_data
Damjan Marionab9b7ec2019-01-18 20:24:44 +01001748 (vm, &bi0, (void *) &h,
Dave Barach3a63fc52019-01-07 09:15:47 -05001749 sizeof
1750 (icmp6_neighbor_discovery_mtu_option_t)))
1751 {
1752 error0 = ICMP6_ERROR_ALLOC_FAILURE;
1753 goto drop0;
1754 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001755 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001756
Ed Warnickecb9cada2015-12-08 15:45:58 -07001757 /* add advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001758 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001759
Dave Barachd7cb1b52016-12-09 09:52:16 -05001760 /* *INDENT-OFF* */
1761 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
1762 ({
1763 if(pr_info->enabled &&
1764 (!pr_info->decrement_lifetime_flag
1765 || (pr_info->pref_lifetime_expires >0)))
1766 {
1767 /* advertise this prefix */
1768 icmp6_neighbor_discovery_prefix_information_option_t h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001769
Dave Barachd7cb1b52016-12-09 09:52:16 -05001770 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information;
1771 h.header.n_data_u64s = (sizeof(icmp6_neighbor_discovery_prefix_information_option_t) >> 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001772
Dave Barachd7cb1b52016-12-09 09:52:16 -05001773 h.dst_address_length = pr_info->prefix_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001774
Dave Barachd7cb1b52016-12-09 09:52:16 -05001775 h.flags = (pr_info->adv_on_link_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_FLAG_ON_LINK : 0;
1776 h.flags |= (pr_info->adv_autonomous_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_AUTO : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001777
Dave Barachd7cb1b52016-12-09 09:52:16 -05001778 if(radv_info->cease_radv && pr_info->deprecated_prefix_flag)
1779 {
1780 h.valid_time = clib_host_to_net_u32(MIN_ADV_VALID_LIFETIME);
1781 h.preferred_time = 0;
1782 }
1783 else
1784 {
1785 if(pr_info->decrement_lifetime_flag)
1786 {
1787 pr_info->adv_valid_lifetime_in_secs = ((pr_info->valid_lifetime_expires > now)) ?
1788 (pr_info->valid_lifetime_expires - now) : 0;
1789
1790 pr_info->adv_pref_lifetime_in_secs = ((pr_info->pref_lifetime_expires > now)) ?
1791 (pr_info->pref_lifetime_expires - now) : 0;
1792 }
1793
1794 h.valid_time = clib_host_to_net_u32(pr_info->adv_valid_lifetime_in_secs);
1795 h.preferred_time = clib_host_to_net_u32(pr_info->adv_pref_lifetime_in_secs) ;
1796 }
1797 h.unused = 0;
1798
1799 clib_memcpy(&h.dst_address, &pr_info->prefix, sizeof(ip6_address_t));
1800
1801 payload_length += sizeof( icmp6_neighbor_discovery_prefix_information_option_t);
1802
Dave Barach3a63fc52019-01-07 09:15:47 -05001803 if (vlib_buffer_add_data
Damjan Marionab9b7ec2019-01-18 20:24:44 +01001804 (vm, &bi0, (void *)&h,
1805 sizeof(icmp6_neighbor_discovery_prefix_information_option_t)))
Dave Barach3a63fc52019-01-07 09:15:47 -05001806 {
1807 error0 = ICMP6_ERROR_ALLOC_FAILURE;
1808 goto drop0;
1809 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001810
1811 }
1812 }));
1813 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001814
1815 /* add additional options before here */
1816
1817 /* finish building the router advertisement... */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001818 if (!is_unspecified && radv_info->send_unicast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001819 {
1820 ip0->dst_address = ip0->src_address;
1821 }
1822 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001823 {
1824 /* target address is all-nodes mcast addr */
1825 ip6_set_reserved_multicast_address
1826 (&ip0->dst_address,
1827 IP6_MULTICAST_SCOPE_link_local,
1828 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001829 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001830
Ed Warnickecb9cada2015-12-08 15:45:58 -07001831 /* source address MUST be the link-local address */
1832 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001833
Dave Barachd7cb1b52016-12-09 09:52:16 -05001834 ip0->hop_limit = 255;
1835 ip0->payload_length =
1836 clib_host_to_net_u16 (payload_length);
1837
1838 icmp6_router_advertisement_header_t *rh0 =
1839 (icmp6_router_advertisement_header_t *) (ip0 + 1);
1840 rh0->icmp.checksum =
1841 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1842 &bogus_length);
1843 ASSERT (bogus_length == 0);
1844
Ed Warnickecb9cada2015-12-08 15:45:58 -07001845 /* setup output if and adjacency */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001846 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001847 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001848
1849 if (is_solicitation)
1850 {
1851 ethernet_header_t *eth0;
1852 /* Reuse current MAC header, copy SMAC to DMAC and
1853 * interface MAC to SMAC */
1854 vlib_buffer_reset (p0);
1855 eth0 = vlib_buffer_get_current (p0);
1856 clib_memcpy (eth0->dst_address, eth0->src_address,
1857 6);
1858 clib_memcpy (eth0->src_address, eth_if0->address,
1859 6);
1860 next0 =
1861 is_dropped ? next0 :
1862 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX;
1863 vnet_buffer (p0)->sw_if_index[VLIB_TX] =
1864 sw_if_index0;
1865 }
1866 else
1867 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001868 adj_index0 = radv_info->mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001869 if (adj_index0 == 0)
1870 error0 = ICMP6_ERROR_DST_LOOKUP_MISS;
1871 else
1872 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001873 next0 =
1874 is_dropped ? next0 :
1875 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW;
1876 vnet_buffer (p0)->ip.adj_index[VLIB_TX] =
1877 adj_index0;
1878 }
1879 }
Damjan Marion213b5aa2017-07-13 21:19:27 +02001880 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001881
1882 radv_info->n_solicitations_dropped += is_dropped;
1883 radv_info->n_solicitations_rcvd += is_solicitation;
1884
1885 if ((error0 == ICMP6_ERROR_NONE) && !is_dropped)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001886 {
1887 radv_info->n_advertisements_sent++;
1888 n_advertisements_sent++;
1889 }
1890 }
1891 }
1892 }
1893
Dave Barach3a63fc52019-01-07 09:15:47 -05001894 drop0:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001895 p0->error = error_node->errors[error0];
1896
Dave Barachd7cb1b52016-12-09 09:52:16 -05001897 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001898 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001899
Ed Warnickecb9cada2015-12-08 15:45:58 -07001900 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1901 to_next, n_left_to_next,
1902 bi0, next0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001903
Ed Warnickecb9cada2015-12-08 15:45:58 -07001904 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001905
Ed Warnickecb9cada2015-12-08 15:45:58 -07001906 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1907 }
1908
1909 /* Account for router advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001910 vlib_error_count (vm, error_node->node_index,
1911 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_TX,
1912 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001913
1914 return frame->n_vectors;
1915}
1916
1917 /* validate advertised info for consistancy (see RFC-4861 section 6.2.7) - log any inconsistencies, packet will always be dropped */
1918static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001919icmp6_router_advertisement (vlib_main_t * vm,
1920 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001921{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001922 vnet_main_t *vnm = vnet_get_main ();
1923 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001924 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001925 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001926 u32 n_left_from, n_left_to_next, next_index;
1927 u32 n_advertisements_rcvd = 0;
1928
Dave Barachd7cb1b52016-12-09 09:52:16 -05001929 vlib_node_runtime_t *error_node =
1930 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001931
1932 from = vlib_frame_vector_args (frame);
1933 n_left_from = n_packets;
1934 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001935
Ed Warnickecb9cada2015-12-08 15:45:58 -07001936 if (node->flags & VLIB_NODE_FLAG_TRACE)
1937 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1938 /* stride */ 1,
1939 sizeof (icmp6_input_trace_t));
1940
1941 while (n_left_from > 0)
1942 {
1943 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001944
Ed Warnickecb9cada2015-12-08 15:45:58 -07001945 while (n_left_from > 0 && n_left_to_next > 0)
1946 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001947 vlib_buffer_t *p0;
1948 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001949 ip6_radv_t *radv_info = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001950 icmp6_router_advertisement_header_t *h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001951 u32 bi0, options_len0, sw_if_index0, next0, error0;
1952
1953 bi0 = to_next[0] = from[0];
1954
1955 from += 1;
1956 to_next += 1;
1957 n_left_from -= 1;
1958 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001959
Ed Warnickecb9cada2015-12-08 15:45:58 -07001960 p0 = vlib_get_buffer (vm, bi0);
1961 ip0 = vlib_buffer_get_current (p0);
1962 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001963 options_len0 =
1964 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001965
1966 error0 = ICMP6_ERROR_NONE;
1967 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1968
Dave Barachd7cb1b52016-12-09 09:52:16 -05001969 /* Check that source address is link-local */
1970 error0 = (!ip6_address_is_link_local_unicast (&ip0->src_address)) ?
Ed Warnickecb9cada2015-12-08 15:45:58 -07001971 ICMP6_ERROR_ROUTER_ADVERTISEMENT_SOURCE_NOT_LINK_LOCAL : error0;
1972
1973 /* default is to drop */
1974 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001975
Ed Warnickecb9cada2015-12-08 15:45:58 -07001976 n_advertisements_rcvd++;
1977
1978 if (error0 == ICMP6_ERROR_NONE)
1979 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001980 vnet_sw_interface_t *sw_if0;
1981 ethernet_interface_t *eth_if0;
1982
Ed Warnickecb9cada2015-12-08 15:45:58 -07001983 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1984 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001985 eth_if0 =
1986 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001987
1988 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001989 error0 =
1990 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1991 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001992
1993 if (error0 == ICMP6_ERROR_NONE)
1994 {
1995 u32 ri;
1996
1997 /* look up the radv_t information for this interface */
Neale Ranns8e254952018-04-25 05:40:48 -07001998 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) >
1999 sw_if_index0)
2000 {
2001 ri =
2002 nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002003
Neale Ranns8e254952018-04-25 05:40:48 -07002004 if (ri != ~0)
2005 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
2006 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002007
2008 error0 =
2009 ((!radv_info) ?
2010 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
2011 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002012
2013 if (error0 == ICMP6_ERROR_NONE)
2014 {
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002015 radv_info->keep_sending_rs = 0;
2016
2017 ra_report_t r;
2018
2019 r.sw_if_index = sw_if_index0;
Neale Ranns37029302018-08-10 05:30:06 -07002020 memcpy (&r.router_address, &ip0->src_address, 16);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002021 r.current_hop_limit = h0->current_hop_limit;
2022 r.flags = h0->flags;
2023 r.router_lifetime_in_sec =
2024 clib_net_to_host_u16 (h0->router_lifetime_in_sec);
2025 r.neighbor_reachable_time_in_msec =
2026 clib_net_to_host_u32
2027 (h0->neighbor_reachable_time_in_msec);
2028 r.time_in_msec_between_retransmitted_neighbor_solicitations = clib_net_to_host_u32 (h0->time_in_msec_between_retransmitted_neighbor_solicitations);
2029 r.prefixes = 0;
2030
Ed Warnickecb9cada2015-12-08 15:45:58 -07002031 /* validate advertised information */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002032 if ((h0->current_hop_limit && radv_info->curr_hop_limit)
2033 && (h0->current_hop_limit !=
2034 radv_info->curr_hop_limit))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002035 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002036 ip6_neighbor_syslog (vm, LOG_WARNING,
2037 "our AdvCurHopLimit 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->flags &
2045 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP)
2046 != radv_info->adv_managed_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002047 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002048 ip6_neighbor_syslog (vm, LOG_WARNING,
2049 "our AdvManagedFlag on %U doesn't agree with %U",
2050 format_vnet_sw_if_index_name,
2051 vnm, sw_if_index0,
2052 format_ip6_address,
2053 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002054 }
2055
Dave Barachd7cb1b52016-12-09 09:52:16 -05002056 if ((h0->flags &
2057 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP)
2058 != radv_info->adv_other_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002059 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002060 ip6_neighbor_syslog (vm, LOG_WARNING,
2061 "our AdvOtherConfigFlag on %U doesn't agree with %U",
2062 format_vnet_sw_if_index_name,
2063 vnm, sw_if_index0,
2064 format_ip6_address,
2065 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002066 }
2067
Dave Barachd7cb1b52016-12-09 09:52:16 -05002068 if ((h0->
2069 time_in_msec_between_retransmitted_neighbor_solicitations
2070 && radv_info->
2071 adv_time_in_msec_between_retransmitted_neighbor_solicitations)
2072 && (h0->
2073 time_in_msec_between_retransmitted_neighbor_solicitations
2074 !=
2075 clib_host_to_net_u32 (radv_info->
2076 adv_time_in_msec_between_retransmitted_neighbor_solicitations)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002077 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002078 ip6_neighbor_syslog (vm, LOG_WARNING,
2079 "our AdvRetransTimer on %U doesn't agree with %U",
2080 format_vnet_sw_if_index_name,
2081 vnm, sw_if_index0,
2082 format_ip6_address,
2083 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002084 }
2085
Dave Barachd7cb1b52016-12-09 09:52:16 -05002086 if ((h0->neighbor_reachable_time_in_msec &&
2087 radv_info->adv_neighbor_reachable_time_in_msec) &&
2088 (h0->neighbor_reachable_time_in_msec !=
2089 clib_host_to_net_u32
2090 (radv_info->adv_neighbor_reachable_time_in_msec)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002091 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002092 ip6_neighbor_syslog (vm, LOG_WARNING,
2093 "our AdvReachableTime on %U doesn't agree with %U",
2094 format_vnet_sw_if_index_name,
2095 vnm, sw_if_index0,
2096 format_ip6_address,
2097 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002098 }
2099
2100 /* check for MTU or prefix options or .. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002101 u8 *opt_hdr = (u8 *) (h0 + 1);
2102 while (options_len0 > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002103 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002104 icmp6_neighbor_discovery_option_header_t *o0 =
2105 (icmp6_neighbor_discovery_option_header_t *)
2106 opt_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002107 int opt_len = o0->n_data_u64s << 3;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002108 icmp6_neighbor_discovery_option_type_t option_type =
2109 o0->type;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002110
Dave Barachd7cb1b52016-12-09 09:52:16 -05002111 if (options_len0 < 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002112 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002113 ip6_neighbor_syslog (vm, LOG_ERR,
2114 "malformed RA packet on %U from %U",
2115 format_vnet_sw_if_index_name,
2116 vnm, sw_if_index0,
2117 format_ip6_address,
2118 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002119 break;
2120 }
2121
Dave Barachd7cb1b52016-12-09 09:52:16 -05002122 if (opt_len == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002123 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002124 ip6_neighbor_syslog (vm, LOG_ERR,
2125 " zero length option in RA on %U from %U",
2126 format_vnet_sw_if_index_name,
2127 vnm, sw_if_index0,
2128 format_ip6_address,
2129 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002130 break;
2131 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002132 else if (opt_len > options_len0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002133 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002134 ip6_neighbor_syslog (vm, LOG_ERR,
2135 "option length in RA packet greater than total length on %U from %U",
2136 format_vnet_sw_if_index_name,
2137 vnm, sw_if_index0,
2138 format_ip6_address,
2139 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002140 break;
2141 }
2142
2143 options_len0 -= opt_len;
2144 opt_hdr += opt_len;
2145
Dave Barachd7cb1b52016-12-09 09:52:16 -05002146 switch (option_type)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002147 {
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002148 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address:
2149 {
2150 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
2151 * h =
2152 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
2153 *) (o0);
2154
2155 if (opt_len < sizeof (*h))
2156 break;
2157
2158 memcpy (r.slla, h->ethernet_address, 6);
2159 }
2160 break;
2161
Ed Warnickecb9cada2015-12-08 15:45:58 -07002162 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu:
Dave Barachd7cb1b52016-12-09 09:52:16 -05002163 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002164 icmp6_neighbor_discovery_mtu_option_t *h =
Dave Barachd7cb1b52016-12-09 09:52:16 -05002165 (icmp6_neighbor_discovery_mtu_option_t
2166 *) (o0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002167
Dave Barachd7cb1b52016-12-09 09:52:16 -05002168 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002169 break;
2170
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002171 r.mtu = clib_net_to_host_u32 (h->mtu);
2172
Dave Barachd7cb1b52016-12-09 09:52:16 -05002173 if ((h->mtu && radv_info->adv_link_mtu) &&
2174 (h->mtu !=
2175 clib_host_to_net_u32
2176 (radv_info->adv_link_mtu)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002177 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002178 ip6_neighbor_syslog (vm, LOG_WARNING,
2179 "our AdvLinkMTU on %U doesn't agree with %U",
2180 format_vnet_sw_if_index_name,
2181 vnm, sw_if_index0,
2182 format_ip6_address,
2183 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002184 }
2185 }
2186 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002187
Ed Warnickecb9cada2015-12-08 15:45:58 -07002188 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information:
2189 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002190 icmp6_neighbor_discovery_prefix_information_option_t
2191 * h =
2192 (icmp6_neighbor_discovery_prefix_information_option_t
2193 *) (o0);
2194
Ed Warnickecb9cada2015-12-08 15:45:58 -07002195 /* validate advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002196 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002197 u32 preferred, valid;
2198
Dave Barachd7cb1b52016-12-09 09:52:16 -05002199 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002200 break;
2201
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002202 vec_validate (r.prefixes,
2203 vec_len (r.prefixes));
2204 ra_report_prefix_info_t *prefix =
2205 vec_elt_at_index (r.prefixes,
2206 vec_len (r.prefixes) - 1);
2207
Dave Barachd7cb1b52016-12-09 09:52:16 -05002208 preferred =
2209 clib_net_to_host_u32 (h->preferred_time);
2210 valid = clib_net_to_host_u32 (h->valid_time);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002211
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002212 prefix->preferred_time = preferred;
2213 prefix->valid_time = valid;
2214 prefix->flags = h->flags & 0xc0;
Neale Ranns37029302018-08-10 05:30:06 -07002215 prefix->prefix.fp_len = h->dst_address_length;
2216 prefix->prefix.fp_addr.ip6 = h->dst_address;
2217 prefix->prefix.fp_proto = FIB_PROTOCOL_IP6;
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002218
Ed Warnickecb9cada2015-12-08 15:45:58 -07002219 /* look for matching prefix - if we our advertising it, it better be consistant */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002220 /* *INDENT-OFF* */
2221 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
2222 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223
Dave Barachd7cb1b52016-12-09 09:52:16 -05002224 ip6_address_t mask;
2225 ip6_address_mask_from_width(&mask, pr_info->prefix_len);
2226
2227 if(pr_info->enabled &&
2228 (pr_info->prefix_len == h->dst_address_length) &&
2229 ip6_address_is_equal_masked (&pr_info->prefix, &h->dst_address, &mask))
2230 {
2231 /* found it */
2232 if(!pr_info->decrement_lifetime_flag &&
2233 valid != pr_info->adv_valid_lifetime_in_secs)
2234 {
2235 ip6_neighbor_syslog(vm, LOG_WARNING,
2236 "our ADV validlifetime on %U for %U does not agree with %U",
2237 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2238 format_ip6_address, &h->dst_address);
2239 }
2240 if(!pr_info->decrement_lifetime_flag &&
2241 preferred != pr_info->adv_pref_lifetime_in_secs)
2242 {
2243 ip6_neighbor_syslog(vm, LOG_WARNING,
2244 "our ADV preferredlifetime on %U for %U does not agree with %U",
2245 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2246 format_ip6_address, &h->dst_address);
2247 }
2248 }
2249 break;
2250 }));
2251 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002252 break;
2253 }
2254 default:
2255 /* skip this one */
2256 break;
2257 }
2258 }
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002259 ra_publish (&r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002260 }
2261 }
2262 }
2263
2264 p0->error = error_node->errors[error0];
2265
Dave Barachd7cb1b52016-12-09 09:52:16 -05002266 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002267 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002268
Ed Warnickecb9cada2015-12-08 15:45:58 -07002269 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2270 to_next, n_left_to_next,
2271 bi0, next0);
2272 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002273
Ed Warnickecb9cada2015-12-08 15:45:58 -07002274 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2275 }
2276
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002277 /* Account for router advertisements received. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002278 vlib_error_count (vm, error_node->node_index,
2279 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_RX,
2280 n_advertisements_rcvd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002281
2282 return frame->n_vectors;
2283}
2284
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002285static inline f64
2286random_f64_from_to (f64 from, f64 to)
2287{
2288 static u32 seed = 0;
2289 static u8 seed_set = 0;
2290 if (!seed_set)
2291 {
2292 seed = random_default_seed ();
2293 seed_set = 1;
2294 }
2295 return random_f64 (&seed) * (to - from) + from;
2296}
2297
2298static inline u8
2299get_mac_address (u32 sw_if_index, u8 * address)
2300{
2301 vnet_main_t *vnm = vnet_get_main ();
2302 vnet_hw_interface_t *hw_if = vnet_get_sup_hw_interface (vnm, sw_if_index);
2303 if (!hw_if->hw_address)
2304 return 1;
2305 clib_memcpy (address, hw_if->hw_address, 6);
2306 return 0;
2307}
2308
2309static inline vlib_buffer_t *
2310create_buffer_for_rs (vlib_main_t * vm, ip6_radv_t * radv_info)
2311{
2312 u32 bi0;
2313 vlib_buffer_t *p0;
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002314 icmp6_router_solicitation_header_t *rh;
2315 u16 payload_length;
2316 int bogus_length;
2317 u32 sw_if_index;
2318
2319 sw_if_index = radv_info->sw_if_index;
2320
2321 if (vlib_buffer_alloc (vm, &bi0, 1) != 1)
2322 {
2323 clib_warning ("buffer allocation failure");
2324 return 0;
2325 }
2326
2327 p0 = vlib_get_buffer (vm, bi0);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002328 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (p0);
2329 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
2330
2331 vnet_buffer (p0)->sw_if_index[VLIB_RX] = sw_if_index;
2332 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index;
2333
2334 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = radv_info->mcast_adj_index;
2335
2336 rh = vlib_buffer_get_current (p0);
2337 p0->current_length = sizeof (*rh);
2338
2339 rh->neighbor.icmp.type = ICMP6_router_solicitation;
2340 rh->neighbor.icmp.code = 0;
2341 rh->neighbor.icmp.checksum = 0;
2342 rh->neighbor.reserved_must_be_zero = 0;
2343
2344 rh->link_layer_option.header.type =
2345 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
2346 if (0 != get_mac_address (sw_if_index,
2347 rh->link_layer_option.ethernet_address))
2348 {
2349 clib_warning ("interface with sw_if_index %u has no mac address",
2350 sw_if_index);
2351 vlib_buffer_free (vm, &bi0, 1);
2352 return 0;
2353 }
2354 rh->link_layer_option.header.n_data_u64s = 1;
2355
2356 payload_length = sizeof (rh->neighbor) + sizeof (u64);
2357
2358 rh->ip.ip_version_traffic_class_and_flow_label =
2359 clib_host_to_net_u32 (0x6 << 28);
2360 rh->ip.payload_length = clib_host_to_net_u16 (payload_length);
2361 rh->ip.protocol = IP_PROTOCOL_ICMP6;
2362 rh->ip.hop_limit = 255;
2363 rh->ip.src_address = radv_info->link_local_address;
2364 /* set address ff02::2 */
David Johnsond9818dd2018-12-14 14:53:41 -05002365 rh->ip.dst_address.as_u64[0] = clib_host_to_net_u64 (0xff02ULL << 48);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002366 rh->ip.dst_address.as_u64[1] = clib_host_to_net_u64 (2);
2367
2368 rh->neighbor.icmp.checksum = ip6_tcp_udp_icmp_compute_checksum (vm, p0,
2369 &rh->ip,
2370 &bogus_length);
2371
2372 return p0;
2373}
2374
2375static inline void
2376stop_sending_rs (vlib_main_t * vm, ip6_radv_t * ra)
2377{
2378 u32 bi0;
2379
2380 ra->keep_sending_rs = 0;
2381 if (ra->buffer)
2382 {
2383 bi0 = vlib_get_buffer_index (vm, ra->buffer);
2384 vlib_buffer_free (vm, &bi0, 1);
2385 ra->buffer = 0;
2386 }
2387}
2388
2389static inline bool
2390check_send_rs (vlib_main_t * vm, ip6_radv_t * radv_info, f64 current_time,
2391 f64 * due_time)
2392{
2393 vlib_buffer_t *p0;
2394 vlib_frame_t *f;
2395 u32 *to_next;
2396 u32 next_index;
2397 vlib_buffer_t *c0;
2398 u32 ci0;
2399
2400 icmp6_send_router_solicitation_params_t *params;
2401
2402 if (!radv_info->keep_sending_rs)
2403 return false;
2404
2405 params = &radv_info->params;
2406
2407 if (radv_info->due_time > current_time)
2408 {
2409 *due_time = radv_info->due_time;
2410 return true;
2411 }
2412
2413 p0 = radv_info->buffer;
2414
2415 next_index = ip6_rewrite_mcast_node.index;
2416
2417 c0 = vlib_buffer_copy (vm, p0);
2418 ci0 = vlib_get_buffer_index (vm, c0);
2419
2420 f = vlib_get_frame_to_node (vm, next_index);
2421 to_next = vlib_frame_vector_args (f);
2422 to_next[0] = ci0;
2423 f->n_vectors = 1;
2424 vlib_put_frame_to_node (vm, next_index, f);
2425
2426 if (params->mrc != 0 && --radv_info->n_left == 0)
2427 stop_sending_rs (vm, radv_info);
2428 else
2429 {
2430 radv_info->sleep_interval =
2431 (2 + random_f64_from_to (-0.1, 0.1)) * radv_info->sleep_interval;
2432 if (radv_info->sleep_interval > params->mrt)
2433 radv_info->sleep_interval =
2434 (1 + random_f64_from_to (-0.1, 0.1)) * params->mrt;
2435
2436 radv_info->due_time = current_time + radv_info->sleep_interval;
2437
2438 if (params->mrd != 0
2439 && current_time > radv_info->start_time + params->mrd)
2440 stop_sending_rs (vm, radv_info);
2441 else
2442 *due_time = radv_info->due_time;
2443 }
2444
2445 return radv_info->keep_sending_rs;
2446}
2447
2448static uword
2449send_rs_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
2450 vlib_frame_t * f0)
2451{
2452 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2453 ip6_radv_t *radv_info;
2454 uword *event_data = 0;
2455 f64 sleep_time = 1e9;
2456 f64 current_time;
2457 f64 due_time;
2458 f64 dt = 0;
2459
2460 while (true)
2461 {
2462 vlib_process_wait_for_event_or_clock (vm, sleep_time);
2463 vlib_process_get_events (vm, &event_data);
2464 vec_reset_length (event_data);
2465
2466 current_time = vlib_time_now (vm);
2467 do
2468 {
2469 due_time = current_time + 1e9;
2470 /* *INDENT-OFF* */
2471 pool_foreach (radv_info, nm->if_radv_pool,
2472 ({
2473 if (check_send_rs (vm, radv_info, current_time, &dt)
2474 && (dt < due_time))
2475 due_time = dt;
2476 }));
2477 /* *INDENT-ON* */
2478 current_time = vlib_time_now (vm);
2479 }
2480 while (due_time < current_time);
2481
2482 sleep_time = due_time - current_time;
2483 }
2484
2485 return 0;
2486}
2487
2488/* *INDENT-OFF* */
2489VLIB_REGISTER_NODE (send_rs_process_node) = {
2490 .function = send_rs_process,
2491 .type = VLIB_NODE_TYPE_PROCESS,
2492 .name = "send-rs-process",
2493};
2494/* *INDENT-ON* */
2495
2496void
2497icmp6_send_router_solicitation (vlib_main_t * vm, u32 sw_if_index, u8 stop,
2498 icmp6_send_router_solicitation_params_t *
2499 params)
2500{
2501 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2502 u32 rai;
2503 ip6_radv_t *ra = 0;
2504
2505 ASSERT (~0 != sw_if_index);
2506
2507 rai = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2508 ra = pool_elt_at_index (nm->if_radv_pool, rai);
2509
Juraj Sloboda52574522018-05-03 10:03:50 +02002510 stop_sending_rs (vm, ra);
2511
2512 if (!stop)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002513 {
2514 ra->keep_sending_rs = 1;
2515 ra->params = *params;
2516 ra->n_left = params->mrc;
2517 ra->start_time = vlib_time_now (vm);
2518 ra->sleep_interval = (1 + random_f64_from_to (-0.1, 0.1)) * params->irt;
2519 ra->due_time = 0; /* send first packet ASAP */
2520 ra->buffer = create_buffer_for_rs (vm, ra);
2521 if (!ra->buffer)
2522 ra->keep_sending_rs = 0;
2523 else
2524 vlib_process_signal_event (vm, send_rs_process_node.index, 1, 0);
2525 }
2526}
2527
Neale Ranns87df12d2017-02-18 08:16:41 -08002528/**
2529 * @brief Add a multicast Address to the advertised MLD set
2530 */
2531static void
2532ip6_neighbor_add_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2533{
2534 ip6_mldp_group_t *mcast_group_info;
2535 uword *p;
2536
2537 /* lookup mldp info for this interface */
Neale Rannse0a35442018-02-25 10:39:02 -08002538 p = mhash_get (&radv_info->address_to_mldp_index, addr);
Neale Ranns87df12d2017-02-18 08:16:41 -08002539 mcast_group_info =
2540 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2541
2542 /* add address */
2543 if (!mcast_group_info)
2544 {
2545 /* add */
2546 u32 mi;
2547 pool_get (radv_info->mldp_group_pool, mcast_group_info);
2548
2549 mi = mcast_group_info - radv_info->mldp_group_pool;
Neale Rannse0a35442018-02-25 10:39:02 -08002550 mhash_set (&radv_info->address_to_mldp_index, addr, mi, /* old_value */
Neale Ranns87df12d2017-02-18 08:16:41 -08002551 0);
2552
2553 mcast_group_info->type = 4;
2554 mcast_group_info->mcast_source_address_pool = 0;
2555 mcast_group_info->num_sources = 0;
Neale Rannse0a35442018-02-25 10:39:02 -08002556 clib_memcpy (&mcast_group_info->mcast_address, addr,
Neale Ranns87df12d2017-02-18 08:16:41 -08002557 sizeof (ip6_address_t));
2558 }
2559}
2560
2561/**
2562 * @brief Delete a multicast Address from the advertised MLD set
2563 */
2564static void
2565ip6_neighbor_del_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2566{
2567 ip6_mldp_group_t *mcast_group_info;
2568 uword *p;
2569
2570 p = mhash_get (&radv_info->address_to_mldp_index, &addr);
2571 mcast_group_info =
2572 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2573
2574 if (mcast_group_info)
2575 {
2576 mhash_unset (&radv_info->address_to_mldp_index, &addr,
2577 /* old_value */ 0);
2578 pool_put (radv_info->mldp_group_pool, mcast_group_info);
2579 }
2580}
2581
2582/**
2583 * @brief Add a multicast Address to the advertised MLD set
2584 */
2585static void
2586ip6_neighbor_add_mld_grp (ip6_radv_t * a,
2587 ip6_multicast_address_scope_t scope,
2588 ip6_multicast_link_local_group_id_t group)
2589{
2590 ip6_address_t addr;
2591
2592 ip6_set_reserved_multicast_address (&addr, scope, group);
2593
2594 ip6_neighbor_add_mld_prefix (a, &addr);
2595}
2596
2597/**
2598 * @brief create and initialize router advertisement parameters with default
2599 * values for this intfc
2600 */
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +02002601u32
Ed Warnickecb9cada2015-12-08 15:45:58 -07002602ip6_neighbor_sw_interface_add_del (vnet_main_t * vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002603 u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002604{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002605 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2606 ip6_radv_t *a = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002607 u32 ri = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002608 vnet_sw_interface_t *sw_if0;
2609 ethernet_interface_t *eth_if0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002610
2611 /* lookup radv container - ethernet interfaces only */
2612 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002613 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002614 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2615
Dave Barachd7cb1b52016-12-09 09:52:16 -05002616 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002617 return ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002618
2619 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2620 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002621 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2622
Dave Barachd7cb1b52016-12-09 09:52:16 -05002623 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002624 {
2625 a = pool_elt_at_index (nm->if_radv_pool, ri);
2626
Dave Barachd7cb1b52016-12-09 09:52:16 -05002627 if (!is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002628 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002629 ip6_radv_prefix_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002630 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002631
Neale Ranns32e1c012016-11-22 17:07:28 +00002632 /* release the lock on the interface's mcast adj */
2633 adj_unlock (a->mcast_adj_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002634
Neale Ranns87df12d2017-02-18 08:16:41 -08002635 /* clean up prefix and MDP pools */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002636 /* *INDENT-OFF* */
Neale Ranns87df12d2017-02-18 08:16:41 -08002637 pool_flush(p, a->adv_prefixes_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002638 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002639 mhash_unset (&a->address_to_prefix_index, &p->prefix, 0);
Neale Ranns87df12d2017-02-18 08:16:41 -08002640 }));
2641 pool_flush (m, a->mldp_group_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002642 ({
Neale Ranns87df12d2017-02-18 08:16:41 -08002643 mhash_unset (&a->address_to_mldp_index, &m->mcast_address, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002644 }));
2645 /* *INDENT-ON* */
2646
Neale Ranns87df12d2017-02-18 08:16:41 -08002647 pool_free (a->mldp_group_pool);
2648 pool_free (a->adv_prefixes_pool);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002649
Neale Ranns87df12d2017-02-18 08:16:41 -08002650 mhash_free (&a->address_to_prefix_index);
2651 mhash_free (&a->address_to_mldp_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002652
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002653 if (a->keep_sending_rs)
2654 a->keep_sending_rs = 0;
2655
Dave Barachd7cb1b52016-12-09 09:52:16 -05002656 pool_put (nm->if_radv_pool, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002657 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ~0;
2658 ri = ~0;
2659 }
2660 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002661 else
2662 {
2663 if (is_add)
2664 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002665 pool_get (nm->if_radv_pool, a);
2666
2667 ri = a - nm->if_radv_pool;
2668 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ri;
2669
2670 /* initialize default values (most of which are zero) */
Dave Barachb7b92992018-10-17 10:38:51 -04002671 clib_memset (a, 0, sizeof (a[0]));
Dave Barachd7cb1b52016-12-09 09:52:16 -05002672
2673 a->sw_if_index = sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002674 a->max_radv_interval = DEF_MAX_RADV_INTERVAL;
2675 a->min_radv_interval = DEF_MIN_RADV_INTERVAL;
2676 a->curr_hop_limit = DEF_CURR_HOP_LIMIT;
2677 a->adv_router_lifetime_in_sec = DEF_DEF_RTR_LIFETIME;
2678
Neale Ranns87df12d2017-02-18 08:16:41 -08002679 /* send ll address source address option */
2680 a->adv_link_layer_address = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002681
2682 a->min_delay_between_radv = MIN_DELAY_BETWEEN_RAS;
2683 a->max_delay_between_radv = MAX_DELAY_BETWEEN_RAS;
2684 a->max_rtr_default_lifetime = MAX_DEF_RTR_LIFETIME;
2685 a->seed = (u32) clib_cpu_time_now ();
2686 (void) random_u32 (&a->seed);
2687 a->randomizer = clib_cpu_time_now ();
2688 (void) random_u64 (&a->randomizer);
2689
2690 a->initial_adverts_count = MAX_INITIAL_RTR_ADVERTISEMENTS;
2691 a->initial_adverts_sent = a->initial_adverts_count - 1;
2692 a->initial_adverts_interval = MAX_INITIAL_RTR_ADVERT_INTERVAL;
2693
2694 /* deafult is to send */
2695 a->send_radv = 1;
2696
2697 /* fill in radv_info for this interface that will be needed later */
Ole Troand7231612018-06-07 10:17:57 +02002698 a->adv_link_mtu =
2699 vnet_sw_interface_get_mtu (vnm, sw_if_index, VNET_MTU_IP6);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002700
2701 clib_memcpy (a->link_layer_address, eth_if0->address, 6);
2702
2703 /* fill in default link-local address (this may be overridden) */
2704 ip6_link_local_address_from_ethernet_address
2705 (&a->link_local_address, eth_if0->address);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002706
2707 mhash_init (&a->address_to_prefix_index, sizeof (uword),
2708 sizeof (ip6_address_t));
2709 mhash_init (&a->address_to_mldp_index, sizeof (uword),
2710 sizeof (ip6_address_t));
2711
Neale Ranns32e1c012016-11-22 17:07:28 +00002712 a->mcast_adj_index = adj_mcast_add_or_lock (FIB_PROTOCOL_IP6,
2713 VNET_LINK_IP6,
2714 sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002715
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002716 a->keep_sending_rs = 0;
2717
Dave Barachd7cb1b52016-12-09 09:52:16 -05002718 /* add multicast groups we will always be reporting */
Neale Ranns87df12d2017-02-18 08:16:41 -08002719 ip6_neighbor_add_mld_grp (a,
2720 IP6_MULTICAST_SCOPE_link_local,
2721 IP6_MULTICAST_GROUP_ID_all_hosts);
2722 ip6_neighbor_add_mld_grp (a,
2723 IP6_MULTICAST_SCOPE_link_local,
2724 IP6_MULTICAST_GROUP_ID_all_routers);
2725 ip6_neighbor_add_mld_grp (a,
2726 IP6_MULTICAST_SCOPE_link_local,
2727 IP6_MULTICAST_GROUP_ID_mldv2_routers);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002728 }
2729 }
2730 return ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002731}
2732
2733/* send an mldpv2 report */
2734static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05002735ip6_neighbor_send_mldpv2_report (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002736{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002737 vnet_main_t *vnm = vnet_get_main ();
2738 vlib_main_t *vm = vnm->vlib_main;
2739 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2740 vnet_sw_interface_t *sw_if0;
2741 ethernet_interface_t *eth_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002742 u32 ri;
2743 int bogus_length;
2744
Dave Barachd7cb1b52016-12-09 09:52:16 -05002745 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002746 u16 payload_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002747 vlib_buffer_t *b0;
2748 ip6_header_t *ip0;
2749 u32 *to_next;
2750 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002751 u32 bo0;
2752 u32 n_to_alloc = 1;
2753 u32 n_allocated;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002754
Ed Warnickecb9cada2015-12-08 15:45:58 -07002755 icmp6_multicast_listener_report_header_t *rh0;
2756 icmp6_multicast_listener_report_packet_t *rp0;
2757
2758 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
2759 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
2760 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2761
2762 if (!eth_if0 || !vnet_sw_interface_is_admin_up (vnm, sw_if_index))
2763 return;
2764
2765 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002766 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2767 ~0);
2768
Ed Warnickecb9cada2015-12-08 15:45:58 -07002769 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05002770
2771 if (ri == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002772 return;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002773
Ed Warnickecb9cada2015-12-08 15:45:58 -07002774 /* send report now - build a mldpv2 report packet */
Damjan Marion671e60e2018-12-30 18:09:59 +01002775 n_allocated = vlib_buffer_alloc (vm, &bo0, n_to_alloc);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002776 if (PREDICT_FALSE (n_allocated == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002777 {
Dave Barach3a63fc52019-01-07 09:15:47 -05002778 alloc_fail:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002779 clib_warning ("buffer allocation failure");
2780 return;
2781 }
2782
2783 b0 = vlib_get_buffer (vm, bo0);
2784
2785 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002786 b0->current_length = sizeof (icmp6_multicast_listener_report_packet_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002787
Dave Barachd7cb1b52016-12-09 09:52:16 -05002788 payload_length = sizeof (icmp6_multicast_listener_report_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002789
2790 b0->error = ICMP6_ERROR_NONE;
2791
2792 rp0 = vlib_buffer_get_current (b0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002793 ip0 = (ip6_header_t *) & rp0->ip;
2794 rh0 = (icmp6_multicast_listener_report_header_t *) & rp0->report_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002795
Dave Barachb7b92992018-10-17 10:38:51 -04002796 clib_memset (rp0, 0x0, sizeof (icmp6_multicast_listener_report_packet_t));
Dave Barachd7cb1b52016-12-09 09:52:16 -05002797
2798 ip0->ip_version_traffic_class_and_flow_label =
2799 clib_host_to_net_u32 (0x6 << 28);
2800
2801 ip0->protocol = IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002802 /* for DEBUG - vnet driver won't seem to emit router alerts */
2803 /* ip0->protocol = IP_PROTOCOL_ICMP6; */
2804 ip0->hop_limit = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002805
Ed Warnickecb9cada2015-12-08 15:45:58 -07002806 rh0->icmp.type = ICMP6_multicast_listener_report_v2;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002807
Ed Warnickecb9cada2015-12-08 15:45:58 -07002808 /* source address MUST be the link-local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002809 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
2810 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002811
2812 /* destination is all mldpv2 routers */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002813 ip6_set_reserved_multicast_address (&ip0->dst_address,
2814 IP6_MULTICAST_SCOPE_link_local,
2815 IP6_MULTICAST_GROUP_ID_mldv2_routers);
2816
Ed Warnickecb9cada2015-12-08 15:45:58 -07002817 /* add reports here */
2818 ip6_mldp_group_t *m;
2819 int num_addr_records = 0;
2820 icmp6_multicast_address_record_t rr;
2821
2822 /* fill in the hop-by-hop extension header (router alert) info */
2823 rh0->ext_hdr.next_hdr = IP_PROTOCOL_ICMP6;
2824 rh0->ext_hdr.n_data_u64s = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002825
Ed Warnickecb9cada2015-12-08 15:45:58 -07002826 rh0->alert.type = IP6_MLDP_ALERT_TYPE;
2827 rh0->alert.len = 2;
2828 rh0->alert.value = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002829
Ed Warnickecb9cada2015-12-08 15:45:58 -07002830 rh0->pad.type = 1;
2831 rh0->pad.len = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002832
Ed Warnickecb9cada2015-12-08 15:45:58 -07002833 rh0->icmp.checksum = 0;
2834
Dave Barachd7cb1b52016-12-09 09:52:16 -05002835 /* *INDENT-OFF* */
2836 pool_foreach (m, radv_info->mldp_group_pool,
2837 ({
2838 rr.type = m->type;
2839 rr.aux_data_len_u32s = 0;
2840 rr.num_sources = clib_host_to_net_u16 (m->num_sources);
2841 clib_memcpy(&rr.mcast_addr, &m->mcast_address, sizeof(ip6_address_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002842
Dave Barachd7cb1b52016-12-09 09:52:16 -05002843 num_addr_records++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002844
Damjan Marionab9b7ec2019-01-18 20:24:44 +01002845 if(vlib_buffer_add_data (vm, &bo0, (void *)&rr,
2846 sizeof(icmp6_multicast_address_record_t)))
Dave Barach3a63fc52019-01-07 09:15:47 -05002847 {
2848 vlib_buffer_free (vm, &bo0, 1);
2849 goto alloc_fail;
2850 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002851
Dave Barachd7cb1b52016-12-09 09:52:16 -05002852 payload_length += sizeof( icmp6_multicast_address_record_t);
2853 }));
2854 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002855
2856 rh0->rsvd = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002857 rh0->num_addr_records = clib_host_to_net_u16 (num_addr_records);
2858
Ed Warnickecb9cada2015-12-08 15:45:58 -07002859 /* update lengths */
2860 ip0->payload_length = clib_host_to_net_u16 (payload_length);
2861
Dave Barachd7cb1b52016-12-09 09:52:16 -05002862 rh0->icmp.checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0,
2863 &bogus_length);
2864 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002865
Dave Barachd7cb1b52016-12-09 09:52:16 -05002866 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002867 * OK to override w/ no regard for actual FIB, because
Neale Rannsf06aea52016-11-29 06:51:37 -08002868 * ip6-rewrite only looks at the adjacency.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002869 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002870 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002871 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002872
Neale Ranns32e1c012016-11-22 17:07:28 +00002873 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = radv_info->mcast_adj_index;
Damjan Marion213b5aa2017-07-13 21:19:27 +02002874 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002875
Neale Ranns32e1c012016-11-22 17:07:28 +00002876 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "ip6-rewrite-mcast");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002877
Ed Warnickecb9cada2015-12-08 15:45:58 -07002878 f = vlib_get_frame_to_node (vm, node->index);
2879 to_next = vlib_frame_vector_args (f);
2880 to_next[0] = bo0;
2881 f->n_vectors = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002882
Ed Warnickecb9cada2015-12-08 15:45:58 -07002883 vlib_put_frame_to_node (vm, node->index, f);
2884 return;
2885}
2886
Dave Barachd7cb1b52016-12-09 09:52:16 -05002887/* *INDENT-OFF* */
2888VLIB_REGISTER_NODE (ip6_icmp_router_solicitation_node,static) =
2889{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002890 .function = icmp6_router_solicitation,
2891 .name = "icmp6-router-solicitation",
2892
2893 .vector_size = sizeof (u32),
2894
2895 .format_trace = format_icmp6_input_trace,
2896
2897 .n_next_nodes = ICMP6_ROUTER_SOLICITATION_N_NEXT,
2898 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002899 [ICMP6_ROUTER_SOLICITATION_NEXT_DROP] = "ip6-drop",
Neale Ranns32e1c012016-11-22 17:07:28 +00002900 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW] = "ip6-rewrite-mcast",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002901 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX] = "interface-output",
2902 },
2903};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002904/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002905
2906/* send a RA or update the timer info etc.. */
2907static uword
2908ip6_neighbor_process_timer_event (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002909 vlib_node_runtime_t * node,
2910 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002911{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002912 vnet_main_t *vnm = vnet_get_main ();
2913 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2914 ip6_radv_t *radv_info;
2915 vlib_frame_t *f = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002916 u32 n_this_frame = 0;
Benoît Ganned5304452016-04-08 22:25:05 -07002917 u32 n_left_to_next = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002918 u32 *to_next = 0;
2919 u32 bo0;
2920 icmp6_router_solicitation_header_t *h0;
2921 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002922 f64 now = vlib_time_now (vm);
2923
2924 /* Interface ip6 radv info list */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002925 /* *INDENT-OFF* */
2926 pool_foreach (radv_info, nm->if_radv_pool,
2927 ({
2928 if( !vnet_sw_interface_is_admin_up (vnm, radv_info->sw_if_index))
2929 {
2930 radv_info->initial_adverts_sent = radv_info->initial_adverts_count-1;
2931 radv_info->next_multicast_time = now;
2932 radv_info->last_multicast_time = now;
2933 radv_info->last_radv_time = 0;
2934 radv_info->all_routers_mcast = 0;
2935 continue;
2936 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002937
Dave Barachd7cb1b52016-12-09 09:52:16 -05002938 /* Make sure that we've joined the all-routers multicast group */
2939 if(!radv_info->all_routers_mcast)
2940 {
2941 /* send MDLP_REPORT_EVENT message */
2942 ip6_neighbor_send_mldpv2_report(radv_info->sw_if_index);
2943 radv_info->all_routers_mcast = 1;
2944 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002945
Dave Barachd7cb1b52016-12-09 09:52:16 -05002946 /* is it time to send a multicast RA on this interface? */
2947 if(radv_info->send_radv && (now >= radv_info->next_multicast_time))
2948 {
2949 u32 n_to_alloc = 1;
2950 u32 n_allocated;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002951
Dave Barachd7cb1b52016-12-09 09:52:16 -05002952 f64 rfn = (radv_info->max_radv_interval - radv_info->min_radv_interval) *
2953 random_f64 (&radv_info->seed) + radv_info->min_radv_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002954
Dave Barachd7cb1b52016-12-09 09:52:16 -05002955 /* multicast send - compute next multicast send time */
2956 if( radv_info->initial_adverts_sent > 0)
2957 {
2958 radv_info->initial_adverts_sent--;
2959 if(rfn > radv_info-> initial_adverts_interval)
2960 rfn = radv_info-> initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002961
Dave Barachd7cb1b52016-12-09 09:52:16 -05002962 /* check to see if we are ceasing to send */
2963 if( radv_info->initial_adverts_sent == 0)
2964 if(radv_info->cease_radv)
2965 radv_info->send_radv = 0;
2966 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002967
Dave Barachd7cb1b52016-12-09 09:52:16 -05002968 radv_info->next_multicast_time = rfn + now;
2969 radv_info->last_multicast_time = now;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002970
Dave Barachd7cb1b52016-12-09 09:52:16 -05002971 /* send advert now - build a "solicted" router advert with unspecified source address */
Damjan Marion671e60e2018-12-30 18:09:59 +01002972 n_allocated = vlib_buffer_alloc (vm, &bo0, n_to_alloc);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002973
Dave Barachd7cb1b52016-12-09 09:52:16 -05002974 if (PREDICT_FALSE(n_allocated == 0))
2975 {
2976 clib_warning ("buffer allocation failure");
2977 continue;
2978 }
2979 b0 = vlib_get_buffer (vm, bo0);
2980 b0->current_length = sizeof( icmp6_router_solicitation_header_t);
2981 b0->error = ICMP6_ERROR_NONE;
2982 vnet_buffer (b0)->sw_if_index[VLIB_RX] = radv_info->sw_if_index;
2983
2984 h0 = vlib_buffer_get_current (b0);
2985
Dave Barachb7b92992018-10-17 10:38:51 -04002986 clib_memset (h0, 0, sizeof (icmp6_router_solicitation_header_t));
Dave Barachd7cb1b52016-12-09 09:52:16 -05002987
2988 h0->ip.ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (0x6 << 28);
2989 h0->ip.payload_length = clib_host_to_net_u16 (sizeof (icmp6_router_solicitation_header_t)
2990 - STRUCT_OFFSET_OF (icmp6_router_solicitation_header_t, neighbor));
2991 h0->ip.protocol = IP_PROTOCOL_ICMP6;
2992 h0->ip.hop_limit = 255;
2993
2994 /* set src/dst address as "unspecified" this marks this packet as internally generated rather than recieved */
2995 h0->ip.src_address.as_u64[0] = 0;
2996 h0->ip.src_address.as_u64[1] = 0;
2997
2998 h0->ip.dst_address.as_u64[0] = 0;
2999 h0->ip.dst_address.as_u64[1] = 0;
3000
3001 h0->neighbor.icmp.type = ICMP6_router_solicitation;
3002
3003 if (PREDICT_FALSE(f == 0))
3004 {
3005 f = vlib_get_frame_to_node (vm, ip6_icmp_router_solicitation_node.index);
3006 to_next = vlib_frame_vector_args (f);
3007 n_left_to_next = VLIB_FRAME_SIZE;
3008 n_this_frame = 0;
3009 }
3010
3011 n_this_frame++;
3012 n_left_to_next--;
3013 to_next[0] = bo0;
3014 to_next += 1;
3015
3016 if (PREDICT_FALSE(n_left_to_next == 0))
3017 {
3018 f->n_vectors = n_this_frame;
3019 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
3020 f = 0;
3021 }
3022 }
3023 }));
3024 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003025
3026 if (f)
3027 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003028 ASSERT (n_this_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003029 f->n_vectors = n_this_frame;
3030 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
3031 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003032 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003033}
3034
3035static uword
3036ip6_icmp_neighbor_discovery_event_process (vlib_main_t * vm,
3037 vlib_node_runtime_t * node,
3038 vlib_frame_t * frame)
3039{
3040 uword event_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003041 ip6_icmp_neighbor_discovery_event_data_t *event_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003042
3043 /* init code here */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003044
Ed Warnickecb9cada2015-12-08 15:45:58 -07003045 while (1)
3046 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003047 vlib_process_wait_for_event_or_clock (vm, 1. /* seconds */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003048
Dave Barachd7cb1b52016-12-09 09:52:16 -05003049 event_data = vlib_process_get_event_data (vm, &event_type);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003050
Dave Barachd7cb1b52016-12-09 09:52:16 -05003051 if (!event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003052 {
3053 /* No events found: timer expired. */
3054 /* process interface list and send RAs as appropriate, update timer info */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003055 ip6_neighbor_process_timer_event (vm, node, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003056 }
3057 else
3058 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003059 switch (event_type)
3060 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07003061
Dave Barachd7cb1b52016-12-09 09:52:16 -05003062 case ICMP6_ND_EVENT_INIT:
3063 break;
3064
3065 case ~0:
3066 break;
3067
3068 default:
3069 ASSERT (0);
3070 }
3071
Ed Warnickecb9cada2015-12-08 15:45:58 -07003072 if (event_data)
3073 _vec_len (event_data) = 0;
3074 }
3075 }
3076 return frame->n_vectors;
3077}
3078
Dave Barachd7cb1b52016-12-09 09:52:16 -05003079/* *INDENT-OFF* */
3080VLIB_REGISTER_NODE (ip6_icmp_router_advertisement_node,static) =
3081{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003082 .function = icmp6_router_advertisement,
3083 .name = "icmp6-router-advertisement",
3084
3085 .vector_size = sizeof (u32),
3086
3087 .format_trace = format_icmp6_input_trace,
3088
3089 .n_next_nodes = 1,
3090 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003091 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003092 },
3093};
Dave Barachd7cb1b52016-12-09 09:52:16 -05003094/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003095
3096vlib_node_registration_t ip6_icmp_neighbor_discovery_event_node = {
3097
3098 .function = ip6_icmp_neighbor_discovery_event_process,
3099 .name = "ip6-icmp-neighbor-discovery-event-process",
3100 .type = VLIB_NODE_TYPE_PROCESS,
3101};
3102
3103static uword
3104icmp6_neighbor_solicitation (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003105 vlib_node_runtime_t * node, vlib_frame_t * frame)
3106{
3107 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
3108 /* is_solicitation */
3109 1);
3110}
Ed Warnickecb9cada2015-12-08 15:45:58 -07003111
3112static uword
3113icmp6_neighbor_advertisement (vlib_main_t * vm,
3114 vlib_node_runtime_t * node,
3115 vlib_frame_t * frame)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003116{
3117 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
3118 /* is_solicitation */
3119 0);
3120}
Ed Warnickecb9cada2015-12-08 15:45:58 -07003121
Dave Barachd7cb1b52016-12-09 09:52:16 -05003122/* *INDENT-OFF* */
3123VLIB_REGISTER_NODE (ip6_icmp_neighbor_solicitation_node,static) =
3124{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003125 .function = icmp6_neighbor_solicitation,
3126 .name = "icmp6-neighbor-solicitation",
3127
3128 .vector_size = sizeof (u32),
3129
3130 .format_trace = format_icmp6_input_trace,
3131
3132 .n_next_nodes = ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
3133 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003134 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003135 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY] = "interface-output",
3136 },
3137};
Dave Barachd7cb1b52016-12-09 09:52:16 -05003138/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003139
Dave Barachd7cb1b52016-12-09 09:52:16 -05003140/* *INDENT-OFF* */
3141VLIB_REGISTER_NODE (ip6_icmp_neighbor_advertisement_node,static) =
3142{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003143 .function = icmp6_neighbor_advertisement,
3144 .name = "icmp6-neighbor-advertisement",
3145
3146 .vector_size = sizeof (u32),
3147
3148 .format_trace = format_icmp6_input_trace,
3149
3150 .n_next_nodes = 1,
3151 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003152 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003153 },
3154};
Dave Barachd7cb1b52016-12-09 09:52:16 -05003155/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003156
Neale Rannsc7b8f202018-04-25 06:34:31 -07003157typedef enum
3158{
3159 IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
3160 IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX,
3161 IP6_DISCOVER_NEIGHBOR_N_NEXT,
3162} ip6_discover_neighbor_next_t;
3163
3164typedef enum
3165{
3166 IP6_DISCOVER_NEIGHBOR_ERROR_DROP,
3167 IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT,
3168 IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS,
3169} ip6_discover_neighbor_error_t;
3170
3171static uword
3172ip6_discover_neighbor_inline (vlib_main_t * vm,
3173 vlib_node_runtime_t * node,
3174 vlib_frame_t * frame, int is_glean)
3175{
3176 vnet_main_t *vnm = vnet_get_main ();
3177 ip6_main_t *im = &ip6_main;
3178 ip_lookup_main_t *lm = &im->lookup_main;
3179 u32 *from, *to_next_drop;
3180 uword n_left_from, n_left_to_next_drop;
Dave Barach49433ad2018-08-08 17:59:03 -04003181 u64 seed;
3182 u32 thread_index = vm->thread_index;
Neale Rannsc7b8f202018-04-25 06:34:31 -07003183 int bogus_length;
3184 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3185
3186 if (node->flags & VLIB_NODE_FLAG_TRACE)
3187 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
3188
Neale Rannscd35e532018-08-31 02:51:45 -07003189 seed = throttle_seed (&im->nd_throttle, thread_index, vlib_time_now (vm));
Neale Rannsc7b8f202018-04-25 06:34:31 -07003190
3191 from = vlib_frame_vector_args (frame);
3192 n_left_from = frame->n_vectors;
3193
3194 while (n_left_from > 0)
3195 {
3196 vlib_get_next_frame (vm, node, IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
3197 to_next_drop, n_left_to_next_drop);
3198
3199 while (n_left_from > 0 && n_left_to_next_drop > 0)
3200 {
Neale Rannscd35e532018-08-31 02:51:45 -07003201 u32 pi0, adj_index0, sw_if_index0, drop0, r0, next0;
Neale Rannsc7b8f202018-04-25 06:34:31 -07003202 vnet_hw_interface_t *hw_if0;
3203 ip6_radv_t *radv_info;
Neale Rannscd35e532018-08-31 02:51:45 -07003204 ip_adjacency_t *adj0;
3205 vlib_buffer_t *p0;
3206 ip6_header_t *ip0;
Neale Rannsc7b8f202018-04-25 06:34:31 -07003207
3208 pi0 = from[0];
3209
3210 p0 = vlib_get_buffer (vm, pi0);
3211
3212 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
3213
3214 ip0 = vlib_buffer_get_current (p0);
3215
3216 adj0 = adj_get (adj_index0);
3217
3218 if (!is_glean)
3219 {
3220 ip0->dst_address.as_u64[0] =
3221 adj0->sub_type.nbr.next_hop.ip6.as_u64[0];
3222 ip0->dst_address.as_u64[1] =
3223 adj0->sub_type.nbr.next_hop.ip6.as_u64[1];
3224 }
3225
Neale Rannsc7b8f202018-04-25 06:34:31 -07003226 sw_if_index0 = adj0->rewrite_header.sw_if_index;
3227 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
3228
Neale Rannscd35e532018-08-31 02:51:45 -07003229 /* combine the address and interface for a hash */
3230 r0 = ip6_address_hash_to_u64 (&ip0->dst_address) ^ sw_if_index0;
Neale Rannsc7b8f202018-04-25 06:34:31 -07003231
Neale Rannscd35e532018-08-31 02:51:45 -07003232 drop0 = throttle_check (&im->nd_throttle, thread_index, r0, seed);
Neale Rannsc7b8f202018-04-25 06:34:31 -07003233
3234 from += 1;
3235 n_left_from -= 1;
3236 to_next_drop[0] = pi0;
3237 to_next_drop += 1;
3238 n_left_to_next_drop -= 1;
3239
3240 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
3241
3242 /* If the interface is link-down, drop the pkt */
3243 if (!(hw_if0->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
3244 drop0 = 1;
3245
3246 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) > sw_if_index0)
3247 {
3248 u32 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
3249
3250 if (ri != ~0)
3251 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3252 else
3253 drop0 = 1;
3254 }
3255 else
3256 drop0 = 1;
3257
3258 /*
3259 * the adj has been updated to a rewrite but the node the DPO that got
3260 * us here hasn't - yet. no big deal. we'll drop while we wait.
3261 */
3262 if (IP_LOOKUP_NEXT_REWRITE == adj0->lookup_next_index)
3263 drop0 = 1;
3264
3265 p0->error =
3266 node->errors[drop0 ? IP6_DISCOVER_NEIGHBOR_ERROR_DROP
3267 : IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT];
3268
3269 if (drop0)
3270 continue;
3271
3272 {
3273 u32 bi0 = 0;
3274 icmp6_neighbor_solicitation_header_t *h0;
3275 vlib_buffer_t *b0;
3276
3277 h0 = vlib_packet_template_get_packet
3278 (vm, &im->discover_neighbor_packet_template, &bi0);
John Lo084606b2018-06-19 15:27:48 -04003279 if (!h0)
3280 continue;
Neale Rannsc7b8f202018-04-25 06:34:31 -07003281
Neale Ranns45db8852019-01-09 00:04:04 -08003282 /* copy the persistent fields from the original */
3283 b0 = vlib_get_buffer (vm, bi0);
3284 clib_memcpy_fast (b0->opaque2, p0->opaque2, sizeof (p0->opaque2));
3285
Neale Rannsc7b8f202018-04-25 06:34:31 -07003286 /*
3287 * Build ethernet header.
3288 * Choose source address based on destination lookup
3289 * adjacency.
3290 */
3291 if (!ip6_src_address_for_packet (lm,
3292 sw_if_index0,
3293 &ip0->dst_address,
3294 &h0->ip.src_address))
3295 {
3296 /* There is no address on the interface */
3297 p0->error =
3298 node->errors[IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS];
3299 vlib_buffer_free (vm, &bi0, 1);
3300 continue;
3301 }
3302
3303 /*
3304 * Destination address is a solicited node multicast address.
3305 * We need to fill in
3306 * the low 24 bits with low 24 bits of target's address.
3307 */
3308 h0->ip.dst_address.as_u8[13] = ip0->dst_address.as_u8[13];
3309 h0->ip.dst_address.as_u8[14] = ip0->dst_address.as_u8[14];
3310 h0->ip.dst_address.as_u8[15] = ip0->dst_address.as_u8[15];
3311
3312 h0->neighbor.target_address = ip0->dst_address;
3313
3314 clib_memcpy (h0->link_layer_option.ethernet_address,
3315 hw_if0->hw_address, vec_len (hw_if0->hw_address));
3316
3317 /* $$$$ appears we need this; why is the checksum non-zero? */
3318 h0->neighbor.icmp.checksum = 0;
3319 h0->neighbor.icmp.checksum =
3320 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h0->ip,
3321 &bogus_length);
3322
3323 ASSERT (bogus_length == 0);
3324
3325 vlib_buffer_copy_trace_flag (vm, p0, bi0);
Neale Rannsc7b8f202018-04-25 06:34:31 -07003326 vnet_buffer (b0)->sw_if_index[VLIB_TX]
3327 = vnet_buffer (p0)->sw_if_index[VLIB_TX];
3328
3329 vnet_buffer (b0)->ip.adj_index[VLIB_TX] =
3330 radv_info->mcast_adj_index;
3331
3332 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
3333 next0 = IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX;
3334
3335 vlib_set_next_frame_buffer (vm, node, next0, bi0);
3336 }
3337 }
3338
3339 vlib_put_next_frame (vm, node, IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
3340 n_left_to_next_drop);
3341 }
3342
3343 return frame->n_vectors;
3344}
3345
3346static uword
3347ip6_discover_neighbor (vlib_main_t * vm,
3348 vlib_node_runtime_t * node, vlib_frame_t * frame)
3349{
3350 return (ip6_discover_neighbor_inline (vm, node, frame, 0));
3351}
3352
3353static uword
3354ip6_glean (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
3355{
3356 return (ip6_discover_neighbor_inline (vm, node, frame, 1));
3357}
3358
3359static char *ip6_discover_neighbor_error_strings[] = {
3360 [IP6_DISCOVER_NEIGHBOR_ERROR_DROP] = "address overflow drops",
3361 [IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT] = "neighbor solicitations sent",
3362 [IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS]
3363 = "no source address for ND solicitation",
3364};
3365
3366/* *INDENT-OFF* */
3367VLIB_REGISTER_NODE (ip6_glean_node) =
3368{
3369 .function = ip6_glean,
3370 .name = "ip6-glean",
3371 .vector_size = sizeof (u32),
3372 .format_trace = format_ip6_forward_next_trace,
3373 .n_errors = ARRAY_LEN (ip6_discover_neighbor_error_strings),
3374 .error_strings = ip6_discover_neighbor_error_strings,
3375 .n_next_nodes = IP6_DISCOVER_NEIGHBOR_N_NEXT,
3376 .next_nodes =
3377 {
3378 [IP6_DISCOVER_NEIGHBOR_NEXT_DROP] = "ip6-drop",
3379 [IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX] = "ip6-rewrite-mcast",
3380 },
3381};
3382VLIB_REGISTER_NODE (ip6_discover_neighbor_node) =
3383{
3384 .function = ip6_discover_neighbor,
3385 .name = "ip6-discover-neighbor",
3386 .vector_size = sizeof (u32),
3387 .format_trace = format_ip6_forward_next_trace,
3388 .n_errors = ARRAY_LEN (ip6_discover_neighbor_error_strings),
3389 .error_strings = ip6_discover_neighbor_error_strings,
3390 .n_next_nodes = IP6_DISCOVER_NEIGHBOR_N_NEXT,
3391 .next_nodes =
3392 {
3393 [IP6_DISCOVER_NEIGHBOR_NEXT_DROP] = "ip6-drop",
3394 [IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX] = "ip6-rewrite-mcast",
3395 },
3396};
3397/* *INDENT-ON* */
3398
Dave Barachd7cb1b52016-12-09 09:52:16 -05003399/* API support functions */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003400int
Dave Barachd7cb1b52016-12-09 09:52:16 -05003401ip6_neighbor_ra_config (vlib_main_t * vm, u32 sw_if_index,
3402 u8 suppress, u8 managed, u8 other,
3403 u8 ll_option, u8 send_unicast, u8 cease,
3404 u8 use_lifetime, u32 lifetime,
3405 u32 initial_count, u32 initial_interval,
3406 u32 max_interval, u32 min_interval, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003407{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003408 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3409 int error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003410 u32 ri;
3411
3412 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003413 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3414 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003415 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003416 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003417
Dave Barachd7cb1b52016-12-09 09:52:16 -05003418 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003419 {
3420
Dave Barachd7cb1b52016-12-09 09:52:16 -05003421 ip6_radv_t *radv_info;
3422 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003423
Dave Barachd7cb1b52016-12-09 09:52:16 -05003424 if ((max_interval != 0) && (min_interval == 0))
3425 min_interval = .75 * max_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003426
Dave Barachd7cb1b52016-12-09 09:52:16 -05003427 max_interval =
3428 (max_interval !=
3429 0) ? ((is_no) ? DEF_MAX_RADV_INTERVAL : max_interval) :
3430 radv_info->max_radv_interval;
3431 min_interval =
3432 (min_interval !=
3433 0) ? ((is_no) ? DEF_MIN_RADV_INTERVAL : min_interval) :
3434 radv_info->min_radv_interval;
3435 lifetime =
3436 (use_lifetime !=
3437 0) ? ((is_no) ? DEF_DEF_RTR_LIFETIME : lifetime) :
3438 radv_info->adv_router_lifetime_in_sec;
3439
3440 if (lifetime)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003441 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003442 if (lifetime > MAX_DEF_RTR_LIFETIME)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003443 lifetime = MAX_DEF_RTR_LIFETIME;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003444
3445 if (lifetime <= max_interval)
3446 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003447 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003448
3449 if (min_interval != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003450 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003451 if ((min_interval > .75 * max_interval) || (min_interval < 3))
3452 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003453 }
3454
Dave Barachd7cb1b52016-12-09 09:52:16 -05003455 if ((initial_count > MAX_INITIAL_RTR_ADVERTISEMENTS) ||
3456 (initial_interval > MAX_INITIAL_RTR_ADVERT_INTERVAL))
3457 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003458
Dave Barachd7cb1b52016-12-09 09:52:16 -05003459 /*
3460 if "flag" is set and is_no is true then restore default value else set value corresponding to "flag"
3461 if "flag" is clear don't change corresponding value
3462 */
3463 radv_info->send_radv =
3464 (suppress != 0) ? ((is_no != 0) ? 1 : 0) : radv_info->send_radv;
3465 radv_info->adv_managed_flag =
3466 (managed != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_managed_flag;
3467 radv_info->adv_other_flag =
3468 (other != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_other_flag;
3469 radv_info->adv_link_layer_address =
3470 (ll_option !=
3471 0) ? ((is_no) ? 1 : 0) : radv_info->adv_link_layer_address;
3472 radv_info->send_unicast =
3473 (send_unicast != 0) ? ((is_no) ? 0 : 1) : radv_info->send_unicast;
3474 radv_info->cease_radv =
3475 (cease != 0) ? ((is_no) ? 0 : 1) : radv_info->cease_radv;
3476
3477 radv_info->min_radv_interval = min_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003478 radv_info->max_radv_interval = max_interval;
3479 radv_info->adv_router_lifetime_in_sec = lifetime;
3480
Dave Barachd7cb1b52016-12-09 09:52:16 -05003481 radv_info->initial_adverts_count =
3482 (initial_count !=
3483 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERTISEMENTS : initial_count) :
3484 radv_info->initial_adverts_count;
3485 radv_info->initial_adverts_interval =
3486 (initial_interval !=
3487 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERT_INTERVAL : initial_interval) :
3488 radv_info->initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003489
3490 /* restart */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003491 if ((cease != 0) && (is_no))
3492 radv_info->send_radv = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003493
Dave Barachd7cb1b52016-12-09 09:52:16 -05003494 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
3495 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003496 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003497 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003498 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003499 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003500}
3501
3502int
Dave Barachd7cb1b52016-12-09 09:52:16 -05003503ip6_neighbor_ra_prefix (vlib_main_t * vm, u32 sw_if_index,
3504 ip6_address_t * prefix_addr, u8 prefix_len,
3505 u8 use_default, u32 val_lifetime, u32 pref_lifetime,
3506 u8 no_advertise, u8 off_link, u8 no_autoconfig,
3507 u8 no_onlink, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003508{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003509 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003510 int error;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003511
Ed Warnickecb9cada2015-12-08 15:45:58 -07003512 u32 ri;
3513
3514 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003515 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3516 ~0);
3517
Ed Warnickecb9cada2015-12-08 15:45:58 -07003518 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3519
3520 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003521
3522 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003523 {
3524 f64 now = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003525 ip6_radv_t *radv_info;
3526 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003527
3528 /* prefix info add, delete or update */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003529 ip6_radv_prefix_t *prefix;
3530
Ed Warnickecb9cada2015-12-08 15:45:58 -07003531 /* lookup prefix info for this address on this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003532 uword *p = mhash_get (&radv_info->address_to_prefix_index, prefix_addr);
3533
Ed Warnickecb9cada2015-12-08 15:45:58 -07003534 prefix = p ? pool_elt_at_index (radv_info->adv_prefixes_pool, p[0]) : 0;
3535
Dave Barachd7cb1b52016-12-09 09:52:16 -05003536 if (is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003537 {
3538 /* delete */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003539 if (!prefix)
3540 return VNET_API_ERROR_INVALID_VALUE; /* invalid prefix */
3541
3542 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003543 return VNET_API_ERROR_INVALID_VALUE_2;
3544
Dave Barachd7cb1b52016-12-09 09:52:16 -05003545 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003546 /* do specific delete processing here before returning */
3547 /* try to remove from routing table */
3548
Dave Barachd7cb1b52016-12-09 09:52:16 -05003549 mhash_unset (&radv_info->address_to_prefix_index, prefix_addr,
3550 /* old_value */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003551 pool_put (radv_info->adv_prefixes_pool, prefix);
3552
Dave Barachd7cb1b52016-12-09 09:52:16 -05003553 radv_info->initial_adverts_sent =
3554 radv_info->initial_adverts_count - 1;
3555 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003556 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003557 radv_info->last_radv_time = 0;
3558 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003559 }
3560
3561 /* adding or changing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003562 if (!prefix)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003563 {
3564 /* add */
3565 u32 pi;
3566 pool_get (radv_info->adv_prefixes_pool, prefix);
3567 pi = prefix - radv_info->adv_prefixes_pool;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003568 mhash_set (&radv_info->address_to_prefix_index, prefix_addr, pi,
3569 /* old_value */ 0);
3570
Dave Barachb7b92992018-10-17 10:38:51 -04003571 clib_memset (prefix, 0x0, sizeof (ip6_radv_prefix_t));
Dave Barachd7cb1b52016-12-09 09:52:16 -05003572
Ed Warnickecb9cada2015-12-08 15:45:58 -07003573 prefix->prefix_len = prefix_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003574 clib_memcpy (&prefix->prefix, prefix_addr, sizeof (ip6_address_t));
3575
Ed Warnickecb9cada2015-12-08 15:45:58 -07003576 /* initialize default values */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003577 prefix->adv_on_link_flag = 1; /* L bit set */
3578 prefix->adv_autonomous_flag = 1; /* A bit set */
3579 prefix->adv_valid_lifetime_in_secs = DEF_ADV_VALID_LIFETIME;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003580 prefix->adv_pref_lifetime_in_secs = DEF_ADV_PREF_LIFETIME;
3581 prefix->enabled = 1;
3582 prefix->decrement_lifetime_flag = 1;
3583 prefix->deprecated_prefix_flag = 1;
3584
Dave Barachd7cb1b52016-12-09 09:52:16 -05003585 if (off_link == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003586 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003587 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003588 /* insert prefix into routing table as a connected prefix */
3589 }
3590
Dave Barachd7cb1b52016-12-09 09:52:16 -05003591 if (use_default)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003592 goto restart;
3593 }
3594 else
3595 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003596
3597 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003598 return VNET_API_ERROR_INVALID_VALUE_2;
3599
Dave Barachd7cb1b52016-12-09 09:52:16 -05003600 if (off_link != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003601 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003602 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003603 /* remove from routing table if already there */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003604 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003605 }
3606
Dave Barachd7cb1b52016-12-09 09:52:16 -05003607 if ((val_lifetime == ~0) || (pref_lifetime == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003608 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003609 prefix->adv_valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003610 prefix->adv_pref_lifetime_in_secs = ~0;
3611 prefix->decrement_lifetime_flag = 0;
3612 }
3613 else
3614 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003615 prefix->adv_valid_lifetime_in_secs = val_lifetime;;
3616 prefix->adv_pref_lifetime_in_secs = pref_lifetime;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003617 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003618
Ed Warnickecb9cada2015-12-08 15:45:58 -07003619 /* copy remaining */
3620 prefix->enabled = !(no_advertise != 0);
3621 prefix->adv_on_link_flag = !((off_link != 0) || (no_onlink != 0));
3622 prefix->adv_autonomous_flag = !(no_autoconfig != 0);
3623
Dave Barachd7cb1b52016-12-09 09:52:16 -05003624 restart:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003625 /* restart */
3626 /* fill in the expiration times */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003627 prefix->valid_lifetime_expires =
3628 now + prefix->adv_valid_lifetime_in_secs;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003629 prefix->pref_lifetime_expires = now + prefix->adv_pref_lifetime_in_secs;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003630
3631 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
3632 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003633 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003634 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003635 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003636 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003637}
3638
3639clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05003640ip6_neighbor_cmd (vlib_main_t * vm, unformat_input_t * main_input,
3641 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003642{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003643 vnet_main_t *vnm = vnet_get_main ();
3644 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3645 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003646 u8 is_no = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003647 u8 suppress = 0, managed = 0, other = 0;
3648 u8 suppress_ll_option = 0, send_unicast = 0, cease = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003649 u8 use_lifetime = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003650 u32 sw_if_index, ra_lifetime = 0, ra_initial_count =
3651 0, ra_initial_interval = 0;
3652 u32 ra_max_interval = 0, ra_min_interval = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003653
Dave Barachd7cb1b52016-12-09 09:52:16 -05003654 unformat_input_t _line_input, *line_input = &_line_input;
3655 vnet_sw_interface_t *sw_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003656
3657 int add_radv_info = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003658 __attribute__ ((unused)) ip6_radv_t *radv_info = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003659 ip6_address_t ip6_addr;
3660 u32 addr_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003661
Ed Warnickecb9cada2015-12-08 15:45:58 -07003662
3663 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003664 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003665 return 0;
3666
3667 /* get basic radv info for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003668 if (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003669 {
3670
Dave Barachd7cb1b52016-12-09 09:52:16 -05003671 if (unformat_user (line_input,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003672 unformat_vnet_sw_interface, vnm, &sw_if_index))
3673 {
3674 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003675 ethernet_interface_t *eth_if0 = 0;
3676
Ed Warnickecb9cada2015-12-08 15:45:58 -07003677 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003678 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
3679 eth_if0 =
3680 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
3681
3682 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003683 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003684 error =
3685 clib_error_return (0, "Interface must be of ethernet type");
Ed Warnickecb9cada2015-12-08 15:45:58 -07003686 goto done;
3687 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003688
Ed Warnickecb9cada2015-12-08 15:45:58 -07003689 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003690 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3691 sw_if_index, ~0);
3692
Ed Warnickecb9cada2015-12-08 15:45:58 -07003693 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003694
3695 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003696 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003697 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003698 }
3699 else
3700 {
3701 error = clib_error_return (0, "unknown interface %U'",
3702 format_unformat_error, line_input);
3703 goto done;
3704 }
3705 }
3706 else
3707 {
3708 error = clib_error_return (0, "invalid interface name %U'",
3709 format_unformat_error, line_input);
3710 goto done;
3711 }
3712 }
3713
3714 /* get the rest of the command */
3715 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3716 {
3717 if (unformat (line_input, "no"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05003718 is_no = 1;
3719 else if (unformat (line_input, "prefix %U/%d",
3720 unformat_ip6_address, &ip6_addr, &addr_len))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003721 {
3722 add_radv_info = 0;
3723 break;
3724 }
3725 else if (unformat (line_input, "ra-managed-config-flag"))
3726 {
3727 managed = 1;
3728 break;
3729 }
3730 else if (unformat (line_input, "ra-other-config-flag"))
3731 {
3732 other = 1;
3733 break;
3734 }
Chris Luke33879c92016-06-28 19:54:21 -04003735 else if (unformat (line_input, "ra-suppress") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003736 unformat (line_input, "ra-surpress"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003737 {
Chris Luke33879c92016-06-28 19:54:21 -04003738 suppress = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003739 break;
3740 }
Chris Luke33879c92016-06-28 19:54:21 -04003741 else if (unformat (line_input, "ra-suppress-link-layer") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003742 unformat (line_input, "ra-surpress-link-layer"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003743 {
Chris Luke33879c92016-06-28 19:54:21 -04003744 suppress_ll_option = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003745 break;
3746 }
3747 else if (unformat (line_input, "ra-send-unicast"))
3748 {
3749 send_unicast = 1;
3750 break;
3751 }
3752 else if (unformat (line_input, "ra-lifetime"))
3753 {
3754 if (!unformat (line_input, "%d", &ra_lifetime))
Billy McFalla9a20e72017-02-15 11:39:12 -05003755 {
3756 error = unformat_parse_error (line_input);
3757 goto done;
3758 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003759 use_lifetime = 1;
3760 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003761 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003762 else if (unformat (line_input, "ra-initial"))
3763 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003764 if (!unformat
3765 (line_input, "%d %d", &ra_initial_count, &ra_initial_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003766 {
3767 error = unformat_parse_error (line_input);
3768 goto done;
3769 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003770 break;
3771 }
3772 else if (unformat (line_input, "ra-interval"))
3773 {
3774 if (!unformat (line_input, "%d", &ra_max_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003775 {
3776 error = unformat_parse_error (line_input);
3777 goto done;
3778 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003779
3780 if (!unformat (line_input, "%d", &ra_min_interval))
3781 ra_min_interval = 0;
3782 break;
3783 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003784 else if (unformat (line_input, "ra-cease"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003785 {
3786 cease = 1;
3787 break;
3788 }
3789 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003790 {
3791 error = unformat_parse_error (line_input);
3792 goto done;
3793 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003794 }
3795
Dave Barachd7cb1b52016-12-09 09:52:16 -05003796 if (add_radv_info)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003797 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003798 ip6_neighbor_ra_config (vm, sw_if_index,
3799 suppress, managed, other,
3800 suppress_ll_option, send_unicast, cease,
3801 use_lifetime, ra_lifetime,
3802 ra_initial_count, ra_initial_interval,
3803 ra_max_interval, ra_min_interval, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003804 }
3805 else
3806 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003807 u32 valid_lifetime_in_secs = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003808 u32 pref_lifetime_in_secs = 0;
3809 u8 use_prefix_default_values = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003810 u8 no_advertise = 0;
3811 u8 off_link = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003812 u8 no_autoconfig = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003813 u8 no_onlink = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003814
3815 /* get the rest of the command */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003816 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003817 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003818 if (unformat (line_input, "default"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003819 {
3820 use_prefix_default_values = 1;
3821 break;
3822 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003823 else if (unformat (line_input, "infinite"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003824 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003825 valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003826 pref_lifetime_in_secs = ~0;
3827 break;
3828 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003829 else if (unformat (line_input, "%d %d", &valid_lifetime_in_secs,
3830 &pref_lifetime_in_secs))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003831 break;
3832 else
3833 break;
3834 }
3835
3836
3837 /* get the rest of the command */
3838 while (!use_prefix_default_values &&
3839 unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3840 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003841 if (unformat (line_input, "no-advertise"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003842 no_advertise = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003843 else if (unformat (line_input, "off-link"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003844 off_link = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003845 else if (unformat (line_input, "no-autoconfig"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003846 no_autoconfig = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003847 else if (unformat (line_input, "no-onlink"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003848 no_onlink = 1;
3849 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003850 {
3851 error = unformat_parse_error (line_input);
3852 goto done;
3853 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003854 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003855
3856 ip6_neighbor_ra_prefix (vm, sw_if_index,
3857 &ip6_addr, addr_len,
3858 use_prefix_default_values,
3859 valid_lifetime_in_secs,
3860 pref_lifetime_in_secs,
3861 no_advertise,
3862 off_link, no_autoconfig, no_onlink, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003863 }
3864
Billy McFalla9a20e72017-02-15 11:39:12 -05003865done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003866 unformat_free (line_input);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003867
Ed Warnickecb9cada2015-12-08 15:45:58 -07003868 return error;
3869}
3870
Chris Lukebfd32fd2016-06-24 20:38:06 -04003871static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05003872ip6_print_addrs (vlib_main_t * vm, u32 * addrs)
Chris Lukebfd32fd2016-06-24 20:38:06 -04003873{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003874 ip_lookup_main_t *lm = &ip6_main.lookup_main;
Chris Lukebfd32fd2016-06-24 20:38:06 -04003875 u32 i;
3876
3877 for (i = 0; i < vec_len (addrs); i++)
3878 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003879 ip_interface_address_t *a =
3880 pool_elt_at_index (lm->if_address_pool, addrs[i]);
3881 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003882
3883 vlib_cli_output (vm, "\t\t%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05003884 format_ip6_address, address, a->address_length);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003885 }
3886}
3887
Ed Warnickecb9cada2015-12-08 15:45:58 -07003888static clib_error_t *
3889show_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003890 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003891{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003892 vnet_main_t *vnm = vnet_get_main ();
3893 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3894 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003895 u32 sw_if_index;
3896
3897 sw_if_index = ~0;
3898
Dave Barachd7cb1b52016-12-09 09:52:16 -05003899 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003900 {
3901 u32 ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003902
Dave Barachd7cb1b52016-12-09 09:52:16 -05003903 /* look up the radv_t information for this interface */
3904 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3905 sw_if_index, ~0);
3906
3907 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3908
3909 if (ri != ~0)
3910 {
3911 ip_lookup_main_t *lm = &ip6_main.lookup_main;
3912 ip6_radv_t *radv_info;
3913 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3914
3915 vlib_cli_output (vm, "%U is admin %s\n",
3916 format_vnet_sw_interface_name, vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003917 vnet_get_sw_interface (vnm, sw_if_index),
Dave Barachd7cb1b52016-12-09 09:52:16 -05003918 (vnet_sw_interface_is_admin_up (vnm, sw_if_index) ?
3919 "up" : "down"));
3920
Chris Lukebfd32fd2016-06-24 20:38:06 -04003921 u32 ai;
3922 u32 *link_scope = 0, *global_scope = 0;
3923 u32 *local_scope = 0, *unknown_scope = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003924 ip_interface_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003925
Dave Barachd7cb1b52016-12-09 09:52:16 -05003926 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
3927 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003928 ai = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
3929
Dave Barachd7cb1b52016-12-09 09:52:16 -05003930 while (ai != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003931 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003932 a = pool_elt_at_index (lm->if_address_pool, ai);
3933 ip6_address_t *address =
3934 ip_interface_address_get_address (lm, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003935
Chris Lukebfd32fd2016-06-24 20:38:06 -04003936 if (ip6_address_is_link_local_unicast (address))
3937 vec_add1 (link_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003938 else if (ip6_address_is_global_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003939 vec_add1 (global_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003940 else if (ip6_address_is_local_unicast (address))
Chris Lukebfd32fd2016-06-24 20:38:06 -04003941 vec_add1 (local_scope, ai);
3942 else
3943 vec_add1 (unknown_scope, ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003944
3945 ai = a->next_this_sw_interface;
3946 }
3947
Dave Barachd7cb1b52016-12-09 09:52:16 -05003948 if (vec_len (link_scope))
3949 {
3950 vlib_cli_output (vm, "\tLink-local address(es):\n");
3951 ip6_print_addrs (vm, link_scope);
3952 vec_free (link_scope);
3953 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003954
Dave Barachd7cb1b52016-12-09 09:52:16 -05003955 if (vec_len (local_scope))
3956 {
3957 vlib_cli_output (vm, "\tLocal unicast address(es):\n");
3958 ip6_print_addrs (vm, local_scope);
3959 vec_free (local_scope);
3960 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003961
Dave Barachd7cb1b52016-12-09 09:52:16 -05003962 if (vec_len (global_scope))
3963 {
3964 vlib_cli_output (vm, "\tGlobal unicast address(es):\n");
3965 ip6_print_addrs (vm, global_scope);
3966 vec_free (global_scope);
3967 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003968
Dave Barachd7cb1b52016-12-09 09:52:16 -05003969 if (vec_len (unknown_scope))
3970 {
3971 vlib_cli_output (vm, "\tOther-scope address(es):\n");
3972 ip6_print_addrs (vm, unknown_scope);
3973 vec_free (unknown_scope);
3974 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003975
Neale Ranns53da2212018-02-24 02:11:19 -08003976 vlib_cli_output (vm, "\tLink-local address(es):\n");
3977 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3978 &radv_info->link_local_address);
3979
Ed Warnickecb9cada2015-12-08 15:45:58 -07003980 vlib_cli_output (vm, "\tJoined group address(es):\n");
3981 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003982 /* *INDENT-OFF* */
3983 pool_foreach (m, radv_info->mldp_group_pool,
3984 ({
3985 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3986 &m->mcast_address);
3987 }));
3988 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003989
3990 vlib_cli_output (vm, "\tAdvertised Prefixes:\n");
Dave Barachd7cb1b52016-12-09 09:52:16 -05003991 ip6_radv_prefix_t *p;
3992 /* *INDENT-OFF* */
3993 pool_foreach (p, radv_info->adv_prefixes_pool,
3994 ({
3995 vlib_cli_output (vm, "\t\tprefix %U, length %d\n",
3996 format_ip6_address, &p->prefix, p->prefix_len);
3997 }));
3998 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003999
Dave Barachd7cb1b52016-12-09 09:52:16 -05004000 vlib_cli_output (vm, "\tMTU is %d\n", radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004001 vlib_cli_output (vm, "\tICMP error messages are unlimited\n");
4002 vlib_cli_output (vm, "\tICMP redirects are disabled\n");
4003 vlib_cli_output (vm, "\tICMP unreachables are not sent\n");
4004 vlib_cli_output (vm, "\tND DAD is disabled\n");
4005 //vlib_cli_output (vm, "\tND reachable time is %d milliseconds\n",);
4006 vlib_cli_output (vm, "\tND advertised reachable time is %d\n",
4007 radv_info->adv_neighbor_reachable_time_in_msec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004008 vlib_cli_output (vm,
4009 "\tND advertised retransmit interval is %d (msec)\n",
4010 radv_info->
4011 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004012
4013 u32 ra_interval = radv_info->max_radv_interval;
4014 u32 ra_interval_min = radv_info->min_radv_interval;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004015 vlib_cli_output (vm,
4016 "\tND router advertisements are sent every %d seconds (min interval is %d)\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004017 ra_interval, ra_interval_min);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004018 vlib_cli_output (vm,
4019 "\tND router advertisements live for %d seconds\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004020 radv_info->adv_router_lifetime_in_sec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004021 vlib_cli_output (vm,
4022 "\tHosts %s stateless autoconfig for addresses\n",
4023 (radv_info->adv_managed_flag) ? "use" :
4024 " don't use");
4025 vlib_cli_output (vm, "\tND router advertisements sent %d\n",
4026 radv_info->n_advertisements_sent);
4027 vlib_cli_output (vm, "\tND router solicitations received %d\n",
4028 radv_info->n_solicitations_rcvd);
4029 vlib_cli_output (vm, "\tND router solicitations dropped %d\n",
4030 radv_info->n_solicitations_dropped);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004031 }
4032 else
4033 {
Chris Lukebfd32fd2016-06-24 20:38:06 -04004034 error = clib_error_return (0, "IPv6 not enabled on interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004035 format_unformat_error, input);
4036
4037 }
4038 }
4039 return error;
4040}
4041
Billy McFall0683c9c2016-10-13 08:27:31 -04004042/*?
4043 * This command is used to display various IPv6 attributes on a given
4044 * interface.
4045 *
4046 * @cliexpar
4047 * Example of how to display IPv6 settings:
4048 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
4049 * GigabitEthernet2/0/0 is admin up
4050 * Link-local address(es):
4051 * fe80::ab8/64
4052 * Joined group address(es):
4053 * ff02::1
4054 * ff02::2
4055 * ff02::16
4056 * ff02::1:ff00:ab8
4057 * Advertised Prefixes:
4058 * prefix fe80::fe:28ff:fe9c:75b3, length 64
4059 * MTU is 1500
4060 * ICMP error messages are unlimited
4061 * ICMP redirects are disabled
4062 * ICMP unreachables are not sent
4063 * ND DAD is disabled
4064 * ND advertised reachable time is 0
4065 * ND advertised retransmit interval is 0 (msec)
4066 * ND router advertisements are sent every 200 seconds (min interval is 150)
4067 * ND router advertisements live for 600 seconds
4068 * Hosts use stateless autoconfig for addresses
4069 * ND router advertisements sent 19336
4070 * ND router solicitations received 0
4071 * ND router solicitations dropped 0
4072 * @cliexend
4073 * Example of output if IPv6 is not enabled on the interface:
4074 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
4075 * show ip6 interface: IPv6 not enabled on interface
4076 * @cliexend
4077?*/
4078/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004079VLIB_CLI_COMMAND (show_ip6_interface_command, static) =
4080{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004081 .path = "show ip6 interface",
4082 .function = show_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04004083 .short_help = "show ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004084};
Billy McFall0683c9c2016-10-13 08:27:31 -04004085/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004086
4087clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05004088disable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004089{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004090 clib_error_t *error = 0;
4091 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004092 u32 ri;
4093
4094 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004095 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
4096 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004097 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004098
Ed Warnickecb9cada2015-12-08 15:45:58 -07004099 /* if not created - do nothing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004100 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004101 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004102 ip6_radv_t *radv_info;
4103
4104 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004105
4106 /* check radv_info ref count for other ip6 addresses on this interface */
Wojciech Dec7bc73102017-02-14 16:24:28 +01004107 /* This implicitly excludes the link local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004108 if (radv_info->ref_count == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004109 {
4110 /* essentially "disables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08004111 ip6_ll_prefix_t ilp = {
4112 .ilp_addr = radv_info->link_local_address,
4113 .ilp_sw_if_index = sw_if_index,
4114 };
4115 ip6_ll_table_entry_delete (&ilp);
4116 ip6_sw_interface_enable_disable (sw_if_index, 0);
Neale Ranns4008ac92017-02-13 23:20:04 -08004117 ip6_mfib_interface_enable_disable (sw_if_index, 0);
Neale Ranns53da2212018-02-24 02:11:19 -08004118 ip6_neighbor_sw_interface_add_del (vnet_get_main (), sw_if_index,
4119 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004120 }
4121 }
4122 return error;
4123}
4124
4125int
Dave Barachd7cb1b52016-12-09 09:52:16 -05004126ip6_interface_enabled (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004127{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004128 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4129 u32 ri = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004130
Dave Barachd7cb1b52016-12-09 09:52:16 -05004131 /* look up the radv_t information for this interface */
4132 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
4133 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004134
Dave Barachd7cb1b52016-12-09 09:52:16 -05004135 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07004136
Dave Barachd7cb1b52016-12-09 09:52:16 -05004137 return ri != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004138}
4139
Dave Barachd7cb1b52016-12-09 09:52:16 -05004140clib_error_t *
4141enable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004142{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004143 clib_error_t *error = 0;
4144 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004145 u32 ri;
4146 int is_add = 1;
4147
4148 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004149 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
4150 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004151
Dave Barachd7cb1b52016-12-09 09:52:16 -05004152 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
4153
4154 /* if not created yet */
4155 if (ri == ~0)
4156 {
4157 vnet_main_t *vnm = vnet_get_main ();
4158 vnet_sw_interface_t *sw_if0;
4159
4160 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
4161 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
4162 {
4163 ethernet_interface_t *eth_if0;
4164
4165 eth_if0 =
4166 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
4167 if (eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004168 {
4169 /* create radv_info. for this interface. This holds all the info needed for router adverts */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004170 ri =
4171 ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004172
Dave Barachd7cb1b52016-12-09 09:52:16 -05004173 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004174 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004175 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004176 ip6_address_t link_local_address;
4177
Dave Barachd7cb1b52016-12-09 09:52:16 -05004178 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004179
Dave Barachd7cb1b52016-12-09 09:52:16 -05004180 ip6_link_local_address_from_ethernet_mac_address
4181 (&link_local_address, eth_if0->address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004182
4183 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index);
Pavel Kotucek8dc80202017-08-15 13:52:22 +02004184 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_SUB ||
Neale Ranns17ff3c12018-07-04 10:24:24 -07004185 sw_if0->type == VNET_SW_INTERFACE_TYPE_PIPE ||
Pavel Kotucek8dc80202017-08-15 13:52:22 +02004186 sw_if0->type == VNET_SW_INTERFACE_TYPE_P2P)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004187 {
4188 /* make up an interface id */
Dave Barach611d9182018-03-12 15:56:41 -04004189 link_local_address.as_u64[1] =
4190 random_u64 (&radv_info->randomizer);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004191
4192 link_local_address.as_u64[0] =
4193 clib_host_to_net_u64 (0xFE80000000000000ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004194 /* clear u bit */
4195 link_local_address.as_u8[8] &= 0xfd;
4196 }
Neale Ranns53da2212018-02-24 02:11:19 -08004197 {
4198 ip6_ll_prefix_t ilp = {
4199 .ilp_addr = link_local_address,
4200 .ilp_sw_if_index = sw_if_index,
4201 };
Dave Barachd7cb1b52016-12-09 09:52:16 -05004202
Neale Ranns53da2212018-02-24 02:11:19 -08004203 ip6_ll_table_entry_update (&ilp, FIB_ROUTE_PATH_LOCAL);
4204 }
Neale Ranns4008ac92017-02-13 23:20:04 -08004205
Ed Warnickecb9cada2015-12-08 15:45:58 -07004206 /* essentially "enables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08004207 ip6_mfib_interface_enable_disable (sw_if_index, 1);
4208 ip6_sw_interface_enable_disable (sw_if_index, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004209
Neale Ranns53da2212018-02-24 02:11:19 -08004210 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004211 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004212 radv_info->link_local_address = link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004213 }
4214 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004215 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07004216 }
4217 }
4218 return error;
4219}
4220
Neale Ranns53da2212018-02-24 02:11:19 -08004221int
4222ip6_get_ll_address (u32 sw_if_index, ip6_address_t * addr)
4223{
4224 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4225 ip6_radv_t *radv_info;
4226 u32 ri;
4227
Eyal Baricd307742018-07-22 12:45:15 +03004228 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) <= sw_if_index)
Neale Ranns53da2212018-02-24 02:11:19 -08004229 return 0;
4230
4231 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
4232
4233 if (ri == ~0)
4234 return 0;
4235
4236 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4237 *addr = radv_info->link_local_address;
4238
4239 return (!0);
4240}
4241
Ed Warnickecb9cada2015-12-08 15:45:58 -07004242static clib_error_t *
4243enable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004244 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004245{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004246 vnet_main_t *vnm = vnet_get_main ();
4247 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004248 u32 sw_if_index;
4249
4250 sw_if_index = ~0;
4251
Dave Barachd7cb1b52016-12-09 09:52:16 -05004252 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004253 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004254 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004255 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004256 else
4257 {
4258 error = clib_error_return (0, "unknown interface\n'",
4259 format_unformat_error, input);
4260
4261 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07004262 return error;
4263}
4264
Billy McFall0683c9c2016-10-13 08:27:31 -04004265/*?
4266 * This command is used to enable IPv6 on a given interface.
4267 *
4268 * @cliexpar
4269 * Example of how enable IPv6 on a given interface:
4270 * @cliexcmd{enable ip6 interface GigabitEthernet2/0/0}
4271?*/
4272/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004273VLIB_CLI_COMMAND (enable_ip6_interface_command, static) =
4274{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004275 .path = "enable ip6 interface",
4276 .function = enable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04004277 .short_help = "enable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004278};
Billy McFall0683c9c2016-10-13 08:27:31 -04004279/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004280
4281static clib_error_t *
4282disable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004283 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004284{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004285 vnet_main_t *vnm = vnet_get_main ();
4286 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004287 u32 sw_if_index;
4288
4289 sw_if_index = ~0;
4290
Dave Barachd7cb1b52016-12-09 09:52:16 -05004291 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004292 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004293 error = disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004294 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004295 else
4296 {
4297 error = clib_error_return (0, "unknown interface\n'",
4298 format_unformat_error, input);
4299
4300 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07004301 return error;
4302}
4303
Billy McFall0683c9c2016-10-13 08:27:31 -04004304/*?
4305 * This command is used to disable IPv6 on a given interface.
4306 *
4307 * @cliexpar
4308 * Example of how disable IPv6 on a given interface:
4309 * @cliexcmd{disable ip6 interface GigabitEthernet2/0/0}
4310?*/
4311/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004312VLIB_CLI_COMMAND (disable_ip6_interface_command, static) =
4313{
Billy McFall0683c9c2016-10-13 08:27:31 -04004314 .path = "disable ip6 interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004315 .function = disable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04004316 .short_help = "disable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004317};
Billy McFall0683c9c2016-10-13 08:27:31 -04004318/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004319
Billy McFall0683c9c2016-10-13 08:27:31 -04004320/*?
4321 * This command is used to configure the neighbor discovery
4322 * parameters on a given interface. Use the '<em>show ip6 interface</em>'
4323 * command to display some of the current neighbor discovery parameters
4324 * on a given interface. This command has three formats:
4325 *
4326 *
4327 * <b>Format 1 - Router Advertisement Options:</b> (Only one can be entered in a single command)
4328 *
4329 * '<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>'
4330 *
4331 * Where:
4332 *
4333 * <em>[no] ra-managed-config-flag</em> - Advertises in ICMPv6
4334 * router-advertisement messages to use stateful address
4335 * auto-configuration to obtain address information (sets the M-bit).
4336 * Default is the M-bit is not set and the '<em>no</em>' option
4337 * returns it to this default state.
4338 *
4339 * <em>[no] ra-other-config-flag</em> - Indicates in ICMPv6
4340 * router-advertisement messages that hosts use stateful auto
4341 * configuration to obtain nonaddress related information (sets
4342 * the O-bit). Default is the O-bit is not set and the '<em>no</em>'
4343 * option returns it to this default state.
4344 *
4345 * <em>[no] ra-suppress</em> - Disables sending ICMPv6 router-advertisement
4346 * messages. The '<em>no</em>' option implies to enable sending ICMPv6
4347 * router-advertisement messages.
4348 *
4349 * <em>[no] ra-suppress-link-layer</em> - Indicates not to include the
4350 * optional source link-layer address in the ICMPv6 router-advertisement
4351 * messages. Default is to include the optional source link-layer address
4352 * and the '<em>no</em>' option returns it to this default state.
4353 *
4354 * <em>[no] ra-send-unicast</em> - Use the source address of the
4355 * router-solicitation message if availiable. The default is to use
4356 * multicast address of all nodes, and the '<em>no</em>' option returns
4357 * it to this default state.
4358 *
4359 * <em>[no] ra-lifetime <lifetime></em> - Advertises the lifetime of a
4360 * default router in ICMPv6 router-advertisement messages. The range is
4361 * from 0 to 9000 seconds. '<em><lifetime></em>' must be greater than
4362 * '<em><max-interval></em>'. The default value is 600 seconds and the
4363 * '<em>no</em>' option returns it to this default value.
4364 *
4365 * <em>[no] ra-initial <cnt> <interval></em> - Number of initial ICMPv6
4366 * router-advertisement messages sent and the interval between each
4367 * message. Range for count is 1 - 3 and default is 3. Range for interval
4368 * is 1 to 16 seconds, and default is 16 seconds. The '<em>no</em>' option
4369 * returns both to their default value.
4370 *
4371 * <em>[no] ra-interval <max-interval> [<min-interval>]</em> - Configures the
4372 * interval between sending ICMPv6 router-advertisement messages. The
4373 * range for max-interval is from 4 to 200 seconds. min-interval can not
4374 * be more than 75% of max-interval. If not set, min-interval will be
4375 * set to 75% of max-interval. The range for min-interval is from 3 to
4376 * 150 seconds. The '<em>no</em>' option returns both to their default
4377 * value.
4378 *
4379 * <em>[no] ra-cease</em> - Cease sending ICMPv6 router-advertisement messages.
4380 * The '<em>no</em>' options implies to start (or restart) sending
4381 * ICMPv6 router-advertisement messages.
4382 *
4383 *
4384 * <b>Format 2 - Prefix Options:</b>
4385 *
4386 * '<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>'
4387 *
4388 * Where:
4389 *
4390 * <em>no</em> - All additional flags are ignored and the prefix is deleted.
4391 *
4392 * <em><valid-lifetime> <pref-lifetime></em> - '<em><valid-lifetime></em>' is the
4393 * length of time in seconds during what the prefix is valid for the purpose of
4394 * on-link determination. Range is 7203 to 2592000 seconds and default is 2592000
4395 * seconds (30 days). '<em><pref-lifetime></em>' is the prefered-lifetime and is the
4396 * length of time in seconds during what addresses generated from the prefix remain
4397 * preferred. Range is 0 to 604800 seconds and default is 604800 seconds (7 days).
4398 *
4399 * <em>infinite</em> - Both '<em><valid-lifetime></em>' and '<em><<pref-lifetime></em>'
4400 * are inifinte, no timeout.
4401 *
4402 * <em>no-advertise</em> - Do not send full router address in prefix
4403 * advertisement. Default is to advertise (i.e. - This flag is off by default).
4404 *
4405 * <em>off-link</em> - Prefix is off-link, clear L-bit in packet. Default is on-link
4406 * (i.e. - This flag is off and L-bit in packet is set by default and this prefix can
4407 * be used for on-link determination). '<em>no-onlink</em>' also controls the L-bit.
4408 *
4409 * <em>no-autoconfig</em> - Do not use prefix for autoconfiguration, clear A-bit in packet.
4410 * Default is autoconfig (i.e. - This flag is off and A-bit in packet is set by default.
4411 *
4412 * <em>no-onlink</em> - Do not use prefix for onlink determination, clear L-bit in packet.
4413 * Default is on-link (i.e. - This flag is off and L-bit in packet is set by default and
4414 * this prefix can be used for on-link determination). '<em>off-link</em>' also controls
4415 * the L-bit.
4416 *
4417 *
4418 * <b>Format 3: - Default of Prefix:</b>
4419 *
4420 * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> default</b></em>'
4421 *
4422 * When a new prefix is added (or existing one is being overwritten) <em>default</em>
4423 * uses default values for the prefix. If <em>no</em> is used, the <em>default</em>
4424 * is ignored and the prefix is deleted.
4425 *
4426 *
4427 * @cliexpar
4428 * Example of how set a router advertisement option:
4429 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 ra-interval 100 20}
4430 * Example of how to add a prefix:
4431 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 prefix fe80::fe:28ff:fe9c:75b3/64 infinite no-advertise}
4432 * Example of how to delete a prefix:
4433 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 no prefix fe80::fe:28ff:fe9c:75b3/64}
4434?*/
4435/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004436VLIB_CLI_COMMAND (ip6_nd_command, static) =
4437{
Ed Warnickecb9cada2015-12-08 15:45:58 -07004438 .path = "ip6 nd",
Billy McFall0683c9c2016-10-13 08:27:31 -04004439 .short_help = "ip6 nd <interface> ...",
Ed Warnickecb9cada2015-12-08 15:45:58 -07004440 .function = ip6_neighbor_cmd,
4441};
Billy McFall0683c9c2016-10-13 08:27:31 -04004442/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004443
4444clib_error_t *
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004445ip6_neighbor_set_link_local_address (vlib_main_t * vm, u32 sw_if_index,
4446 ip6_address_t * address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004447{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004448 clib_error_t *error = 0;
4449 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004450 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004451 ip6_radv_t *radv_info;
4452 vnet_main_t *vnm = vnet_get_main ();
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004453 ip6_ll_prefix_t pfx = { 0, };
Ed Warnickecb9cada2015-12-08 15:45:58 -07004454
Dave Barachd7cb1b52016-12-09 09:52:16 -05004455 if (!ip6_address_is_link_local_unicast (address))
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004456 return (error = clib_error_return (0, "address not link-local",
4457 format_unformat_error));
Ed Warnickecb9cada2015-12-08 15:45:58 -07004458
4459 /* call enable ipv6 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004460 enable_ip6_interface (vm, sw_if_index);
4461
Ed Warnickecb9cada2015-12-08 15:45:58 -07004462 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004463
4464 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004465 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004466 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004467
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004468 pfx.ilp_sw_if_index = sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004469
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004470 pfx.ilp_addr = radv_info->link_local_address;
4471 ip6_ll_table_entry_delete (&pfx);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004472
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004473 pfx.ilp_addr = *address;
4474 ip6_ll_table_entry_update (&pfx, FIB_ROUTE_PATH_LOCAL);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004475
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +02004476 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4477 radv_info->link_local_address = *address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004478 }
4479 else
4480 {
4481 vnm->api_errno = VNET_API_ERROR_IP6_NOT_ENABLED;
4482 error = clib_error_return (0, "ip6 not enabled for interface",
4483 format_unformat_error);
4484 }
4485 return error;
4486}
Dave Barachd7cb1b52016-12-09 09:52:16 -05004487
Neale Ranns87df12d2017-02-18 08:16:41 -08004488/**
4489 * @brief callback when an interface address is added or deleted
4490 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004491static void
4492ip6_neighbor_add_del_interface_address (ip6_main_t * im,
4493 uword opaque,
4494 u32 sw_if_index,
4495 ip6_address_t * address,
4496 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004497 u32 if_address_index, u32 is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004498{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004499 vnet_main_t *vnm = vnet_get_main ();
4500 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004501 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004502 vlib_main_t *vm = vnm->vlib_main;
4503 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004504 ip6_address_t a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004505
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07004506 /* create solicited node multicast address for this interface address */
Ed Warnickecb9cada2015-12-08 15:45:58 -07004507 ip6_set_solicited_node_multicast_address (&a, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004508
Ed Warnickecb9cada2015-12-08 15:45:58 -07004509 a.as_u8[0xd] = address->as_u8[0xd];
4510 a.as_u8[0xe] = address->as_u8[0xe];
4511 a.as_u8[0xf] = address->as_u8[0xf];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004512
4513 if (!is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004514 {
4515 /* try to create radv_info - does nothing if ipv6 already enabled */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004516 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004517
4518 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004519 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
4520 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004521 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05004522 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004523 {
4524 /* get radv_info */
4525 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4526
4527 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004528 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004529 radv_info->ref_count++;
4530
Neale Ranns87df12d2017-02-18 08:16:41 -08004531 ip6_neighbor_add_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004532 }
4533 }
4534 else
4535 {
4536
4537 /* delete */
4538 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004539 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
4540 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004541 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Wojciech Dec7bc73102017-02-14 16:24:28 +01004542
Dave Barachd7cb1b52016-12-09 09:52:16 -05004543 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004544 {
4545 /* get radv_info */
4546 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
4547
Neale Ranns87df12d2017-02-18 08:16:41 -08004548 ip6_neighbor_del_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004549
4550 /* if interface up send MLDP "report" */
4551 radv_info->all_routers_mcast = 0;
4552
4553 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004554 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07004555 radv_info->ref_count--;
4556 }
Wojciech Dec7bc73102017-02-14 16:24:28 +01004557 /* Ensure that IPv6 is disabled, and LL removed after ref_count reaches 0 */
4558 disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004559 }
4560}
4561
Dave Barachd7cb1b52016-12-09 09:52:16 -05004562clib_error_t *
4563ip6_set_neighbor_limit (u32 neighbor_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004564{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004565 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07004566
4567 nm->limit_neighbor_cache_size = neighbor_limit;
4568 return 0;
4569}
4570
Neale Ranns15002542017-09-10 04:39:11 -07004571static void
4572ip6_neighbor_table_bind (ip6_main_t * im,
4573 uword opaque,
4574 u32 sw_if_index,
4575 u32 new_fib_index, u32 old_fib_index)
4576{
4577 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4578 ip6_neighbor_t *n = NULL;
4579 u32 i, *to_re_add = 0;
4580
4581 /* *INDENT-OFF* */
4582 pool_foreach (n, nm->neighbor_pool,
4583 ({
4584 if (n->key.sw_if_index == sw_if_index)
4585 vec_add1 (to_re_add, n - nm->neighbor_pool);
4586 }));
4587 /* *INDENT-ON* */
4588
4589 for (i = 0; i < vec_len (to_re_add); i++)
4590 {
4591 n = pool_elt_at_index (nm->neighbor_pool, to_re_add[i]);
4592 ip6_neighbor_adj_fib_remove (n, old_fib_index);
4593 ip6_neighbor_adj_fib_add (n, new_fib_index);
4594 }
4595 vec_free (to_re_add);
4596}
4597
Dave Barachd7cb1b52016-12-09 09:52:16 -05004598static clib_error_t *
4599ip6_neighbor_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004600{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004601 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4602 ip6_main_t *im = &ip6_main;
4603
Ed Warnickecb9cada2015-12-08 15:45:58 -07004604 mhash_init (&nm->neighbor_index_by_key,
4605 /* value size */ sizeof (uword),
4606 /* key size */ sizeof (ip6_neighbor_key_t));
4607
Dave Barachd7cb1b52016-12-09 09:52:16 -05004608 icmp6_register_type (vm, ICMP6_neighbor_solicitation,
4609 ip6_icmp_neighbor_solicitation_node.index);
4610 icmp6_register_type (vm, ICMP6_neighbor_advertisement,
4611 ip6_icmp_neighbor_advertisement_node.index);
4612 icmp6_register_type (vm, ICMP6_router_solicitation,
4613 ip6_icmp_router_solicitation_node.index);
4614 icmp6_register_type (vm, ICMP6_router_advertisement,
4615 ip6_icmp_router_advertisement_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004616
4617 /* handler node for ip6 neighbor discovery events and timers */
4618 vlib_register_node (vm, &ip6_icmp_neighbor_discovery_event_node);
4619
4620 /* add call backs */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004621 ip6_add_del_interface_address_callback_t cb;
Dave Barachb7b92992018-10-17 10:38:51 -04004622 clib_memset (&cb, 0x0, sizeof (ip6_add_del_interface_address_callback_t));
Dave Barachd7cb1b52016-12-09 09:52:16 -05004623
Ed Warnickecb9cada2015-12-08 15:45:58 -07004624 /* when an interface address changes... */
4625 cb.function = ip6_neighbor_add_del_interface_address;
4626 cb.function_opaque = 0;
4627 vec_add1 (im->add_del_interface_address_callbacks, cb);
4628
Neale Ranns15002542017-09-10 04:39:11 -07004629 ip6_table_bind_callback_t cbt;
4630 cbt.function = ip6_neighbor_table_bind;
4631 cbt.function_opaque = 0;
4632 vec_add1 (im->table_bind_callbacks, cbt);
4633
Ed Warnickecb9cada2015-12-08 15:45:58 -07004634 mhash_init (&nm->pending_resolutions_by_address,
4635 /* value size */ sizeof (uword),
4636 /* key size */ sizeof (ip6_address_t));
4637
John Lo1edfba92016-08-27 01:11:57 -04004638 mhash_init (&nm->mac_changes_by_address,
4639 /* value size */ sizeof (uword),
4640 /* key size */ sizeof (ip6_address_t));
4641
Ed Warnickecb9cada2015-12-08 15:45:58 -07004642 /* default, configurable */
4643 nm->limit_neighbor_cache_size = 50000;
4644
Eyal Baric125ecc2017-09-20 11:29:17 +03004645 nm->wc_ip6_nd_publisher_node = (uword) ~ 0;
4646
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01004647 nm->ip6_ra_publisher_node = (uword) ~ 0;
4648
Ed Warnickecb9cada2015-12-08 15:45:58 -07004649#if 0
4650 /* $$$$ Hack fix for today */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004651 vec_validate_init_empty
4652 (im->discover_neighbor_next_index_by_hw_if_index, 32, 0 /* drop */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004653#endif
4654
Ed Warnickecb9cada2015-12-08 15:45:58 -07004655 return 0;
4656}
4657
4658VLIB_INIT_FUNCTION (ip6_neighbor_init);
4659
4660
Dave Barachd7cb1b52016-12-09 09:52:16 -05004661void
4662vnet_register_ip6_neighbor_resolution_event (vnet_main_t * vnm,
4663 void *address_arg,
4664 uword node_index,
4665 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004666{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004667 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4668 ip6_address_t *address = address_arg;
4669 uword *p;
4670 pending_resolution_t *pr;
4671
Ed Warnickecb9cada2015-12-08 15:45:58 -07004672 pool_get (nm->pending_resolutions, pr);
4673
4674 pr->next_index = ~0;
4675 pr->node_index = node_index;
4676 pr->type_opaque = type_opaque;
4677 pr->data = data;
4678
4679 p = mhash_get (&nm->pending_resolutions_by_address, address);
4680 if (p)
4681 {
4682 /* Insert new resolution at the head of the list */
4683 pr->next_index = p[0];
4684 mhash_unset (&nm->pending_resolutions_by_address, address, 0);
4685 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004686
4687 mhash_set (&nm->pending_resolutions_by_address, address,
4688 pr - nm->pending_resolutions, 0 /* old value */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004689}
4690
Dave Barachd7cb1b52016-12-09 09:52:16 -05004691int
4692vnet_add_del_ip6_nd_change_event (vnet_main_t * vnm,
Neale Ranns37029302018-08-10 05:30:06 -07004693 ip6_nd_change_event_cb_t data_callback,
Dave Barachd7cb1b52016-12-09 09:52:16 -05004694 u32 pid,
4695 void *address_arg,
4696 uword node_index,
4697 uword type_opaque, uword data, int is_add)
John Lo1edfba92016-08-27 01:11:57 -04004698{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004699 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4700 ip6_address_t *address = address_arg;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004701
Eyal Barif9f40652017-04-01 03:55:08 +03004702 /* Try to find an existing entry */
4703 u32 *first = (u32 *) mhash_get (&nm->mac_changes_by_address, address);
4704 u32 *p = first;
4705 pending_resolution_t *mc;
4706 while (p && *p != ~0)
4707 {
4708 mc = pool_elt_at_index (nm->mac_changes, *p);
4709 if (mc->node_index == node_index && mc->type_opaque == type_opaque
4710 && mc->pid == pid)
4711 break;
4712 p = &mc->next_index;
4713 }
4714
4715 int found = p && *p != ~0;
John Lo1edfba92016-08-27 01:11:57 -04004716 if (is_add)
4717 {
Eyal Barif9f40652017-04-01 03:55:08 +03004718 if (found)
4719 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
4720
John Lo1edfba92016-08-27 01:11:57 -04004721 pool_get (nm->mac_changes, mc);
Neale Rannsf12dad62018-06-04 18:41:24 -07004722 /* *INDENT-OFF* */
Eyal Barif9f40652017-04-01 03:55:08 +03004723 *mc = (pending_resolution_t)
4724 {
Neale Rannsf12dad62018-06-04 18:41:24 -07004725 .next_index = ~0,
4726 .node_index = node_index,
4727 .type_opaque = type_opaque,
4728 .data = data,
4729 .data_callback = data_callback,
4730 .pid = pid,
4731 };
4732 /* *INDENT-ON* */
John Lo1edfba92016-08-27 01:11:57 -04004733
Eyal Barif9f40652017-04-01 03:55:08 +03004734 /* Insert new resolution at the end of the list */
4735 u32 new_idx = mc - nm->mac_changes;
John Lo1edfba92016-08-27 01:11:57 -04004736 if (p)
Eyal Barif9f40652017-04-01 03:55:08 +03004737 p[0] = new_idx;
4738 else
4739 mhash_set (&nm->mac_changes_by_address, address, new_idx, 0);
John Lo1edfba92016-08-27 01:11:57 -04004740 }
4741 else
4742 {
Eyal Barif9f40652017-04-01 03:55:08 +03004743 if (!found)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004744 return VNET_API_ERROR_NO_SUCH_ENTRY;
John Lo1edfba92016-08-27 01:11:57 -04004745
Eyal Barif9f40652017-04-01 03:55:08 +03004746 /* Clients may need to clean up pool entries, too */
Neale Ranns37029302018-08-10 05:30:06 -07004747 if (data_callback)
4748 (data_callback) (mc->data, NULL /* no new mac addrs */ , 0, NULL);
John Lo1edfba92016-08-27 01:11:57 -04004749
Eyal Barif9f40652017-04-01 03:55:08 +03004750 /* Remove the entry from the list and delete the entry */
4751 *p = mc->next_index;
4752 pool_put (nm->mac_changes, mc);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004753
Eyal Barif9f40652017-04-01 03:55:08 +03004754 /* Remove from hash if we deleted the last entry */
4755 if (*p == ~0 && p == first)
4756 mhash_unset (&nm->mac_changes_by_address, address, 0);
John Lo1edfba92016-08-27 01:11:57 -04004757 }
Eyal Barif9f40652017-04-01 03:55:08 +03004758 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004759}
4760
Dave Barachd7cb1b52016-12-09 09:52:16 -05004761int
4762vnet_ip6_nd_term (vlib_main_t * vm,
4763 vlib_node_runtime_t * node,
4764 vlib_buffer_t * p0,
4765 ethernet_header_t * eth,
Eyal Baria0623f82017-03-30 03:05:06 +03004766 ip6_header_t * ip, u32 sw_if_index, u16 bd_index)
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 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
Neale Ranns37029302018-08-10 05:30:06 -07004770 mac_address_t mac;
John Lo1edfba92016-08-27 01:11:57 -04004771
Neale Ranns37029302018-08-10 05:30:06 -07004772 mac_address_from_bytes (&mac, eth->src_address);
John Lo1edfba92016-08-27 01:11:57 -04004773 ndh = ip6_next_header (ip);
4774 if (ndh->icmp.type != ICMP6_neighbor_solicitation &&
4775 ndh->icmp.type != ICMP6_neighbor_advertisement)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004776 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004777
4778 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
4779 (p0->flags & VLIB_BUFFER_IS_TRACED)))
4780 {
4781 u8 *t0 = vlib_add_trace (vm, node, p0,
4782 sizeof (icmp6_input_trace_t));
4783 clib_memcpy (t0, ip, sizeof (icmp6_input_trace_t));
4784 }
4785
4786 /* Check if anyone want ND events for L2 BDs */
Eyal Baric125ecc2017-09-20 11:29:17 +03004787 if (PREDICT_FALSE
4788 (nm->wc_ip6_nd_publisher_node != (uword) ~ 0
4789 && !ip6_address_is_link_local_unicast (&ip->src_address)))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004790 {
Neale Ranns37029302018-08-10 05:30:06 -07004791 vnet_nd_wc_publish (sw_if_index, &mac, &ip->src_address);
John Lo1edfba92016-08-27 01:11:57 -04004792 }
4793
4794 /* Check if MAC entry exsist for solicited target IP */
4795 if (ndh->icmp.type == ICMP6_neighbor_solicitation)
4796 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004797 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
John Lo1edfba92016-08-27 01:11:57 -04004798 l2_bridge_domain_t *bd_config;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004799 u8 *macp;
John Lo1edfba92016-08-27 01:11:57 -04004800
4801 opt = (void *) (ndh + 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004802 if ((opt->header.type !=
John Lo1edfba92016-08-27 01:11:57 -04004803 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address) ||
4804 (opt->header.n_data_u64s != 1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004805 return 0; /* source link layer address option not present */
4806
John Lo1edfba92016-08-27 01:11:57 -04004807 bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004808 macp =
4809 (u8 *) hash_get_mem (bd_config->mac_by_ip6, &ndh->target_address);
John Lo1edfba92016-08-27 01:11:57 -04004810 if (macp)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004811 { /* found ip-mac entry, generate eighbor advertisement response */
John Lo1edfba92016-08-27 01:11:57 -04004812 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004813 vlib_node_runtime_t *error_node =
4814 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
John Lo1edfba92016-08-27 01:11:57 -04004815 ip->dst_address = ip->src_address;
4816 ip->src_address = ndh->target_address;
4817 ip->hop_limit = 255;
4818 opt->header.type =
Dave Barachd7cb1b52016-12-09 09:52:16 -05004819 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
John Lo1edfba92016-08-27 01:11:57 -04004820 clib_memcpy (opt->ethernet_address, macp, 6);
4821 ndh->icmp.type = ICMP6_neighbor_advertisement;
4822 ndh->advertisement_flags = clib_host_to_net_u32
Dave Barachd7cb1b52016-12-09 09:52:16 -05004823 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED |
4824 ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
John Lo1edfba92016-08-27 01:11:57 -04004825 ndh->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004826 ndh->icmp.checksum =
4827 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip, &bogus_length);
4828 clib_memcpy (eth->dst_address, eth->src_address, 6);
4829 clib_memcpy (eth->src_address, macp, 6);
4830 vlib_error_count (vm, error_node->node_index,
John Lo1edfba92016-08-27 01:11:57 -04004831 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004832 return 1;
4833 }
John Lo1edfba92016-08-27 01:11:57 -04004834 }
4835
4836 return 0;
4837
4838}
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004839
Neale Ranns3f844d02017-02-18 00:03:54 -08004840int
4841ip6_neighbor_proxy_add_del (u32 sw_if_index, ip6_address_t * addr, u8 is_del)
4842{
4843 u32 fib_index;
4844
4845 fib_prefix_t pfx = {
4846 .fp_len = 128,
4847 .fp_proto = FIB_PROTOCOL_IP6,
4848 .fp_addr = {
4849 .ip6 = *addr,
4850 },
4851 };
4852 ip46_address_t nh = {
4853 .ip6 = *addr,
4854 };
4855
4856 fib_index = ip6_fib_table_get_index_for_sw_if_index (sw_if_index);
4857
4858 if (~0 == fib_index)
4859 return VNET_API_ERROR_NO_SUCH_FIB;
4860
4861 if (is_del)
4862 {
4863 fib_table_entry_path_remove (fib_index,
4864 &pfx,
4865 FIB_SOURCE_IP6_ND_PROXY,
Neale Rannsda78f952017-05-24 09:15:43 -07004866 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004867 &nh,
4868 sw_if_index,
4869 ~0, 1, FIB_ROUTE_PATH_FLAG_NONE);
4870 /* flush the ND cache of this address if it's there */
Neale Ranns0bdd3192018-09-07 11:04:52 -07004871 vnet_unset_ip6_ethernet_neighbor (vlib_get_main (), sw_if_index, addr);
Neale Ranns3f844d02017-02-18 00:03:54 -08004872 }
4873 else
4874 {
4875 fib_table_entry_path_add (fib_index,
4876 &pfx,
4877 FIB_SOURCE_IP6_ND_PROXY,
4878 FIB_ENTRY_FLAG_NONE,
Neale Rannsda78f952017-05-24 09:15:43 -07004879 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004880 &nh,
4881 sw_if_index,
4882 ~0, 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
4883 }
4884 return (0);
4885}
4886
4887static clib_error_t *
4888set_ip6_nd_proxy_cmd (vlib_main_t * vm,
4889 unformat_input_t * input, vlib_cli_command_t * cmd)
4890{
4891 vnet_main_t *vnm = vnet_get_main ();
4892 clib_error_t *error = 0;
4893 ip6_address_t addr;
4894 u32 sw_if_index;
4895 u8 is_del = 0;
4896
4897 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
4898 {
4899 /* get the rest of the command */
4900 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
4901 {
4902 if (unformat (input, "%U", unformat_ip6_address, &addr))
4903 break;
4904 else if (unformat (input, "delete") || unformat (input, "del"))
4905 is_del = 1;
4906 else
4907 return (unformat_parse_error (input));
4908 }
4909 }
4910
4911 ip6_neighbor_proxy_add_del (sw_if_index, &addr, is_del);
4912
4913 return error;
4914}
4915
4916/* *INDENT-OFF* */
4917VLIB_CLI_COMMAND (set_ip6_nd_proxy_command, static) =
4918{
4919 .path = "set ip6 nd proxy",
4920 .short_help = "set ip6 nd proxy <HOST> <INTERFACE>",
4921 .function = set_ip6_nd_proxy_cmd,
4922};
4923/* *INDENT-ON* */
4924
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004925void
Neale Ranns3be6b282016-12-20 14:24:01 +00004926ethernet_ndp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004927{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004928 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4929 ip6_neighbor_t *n;
Neale Rannsc819fc62018-02-16 02:44:05 -08004930 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004931
4932 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004933 pool_foreach (n, nm->neighbor_pool,
4934 ({
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004935 if (n->key.sw_if_index == sw_if_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004936 {
Neale Rannsb80c5362016-10-08 13:03:40 +01004937 adj_nbr_walk_nh6 (sw_if_index,
4938 &n->key.ip6_address,
4939 ip6_nd_mk_complete_walk, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004940 }
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004941 }));
4942 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08004943
4944 ai = adj_glean_get (FIB_PROTOCOL_IP6, sw_if_index);
4945
4946 if (ADJ_INDEX_INVALID != ai)
4947 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004948}
Dave Barachd7cb1b52016-12-09 09:52:16 -05004949
John Lo8b81cb42017-06-26 01:40:20 -04004950void
Steven9f781d82018-06-05 11:09:32 -07004951send_ip6_na (vlib_main_t * vm, u32 sw_if_index)
John Lo8b81cb42017-06-26 01:40:20 -04004952{
4953 ip6_main_t *i6m = &ip6_main;
John Lo8b81cb42017-06-26 01:40:20 -04004954 ip6_address_t *ip6_addr = ip6_interface_first_address (i6m, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07004955
Steven9f781d82018-06-05 11:09:32 -07004956 send_ip6_na_w_addr (vm, ip6_addr, sw_if_index);
Neale Ranns25b04942018-04-04 09:34:50 -07004957}
4958
4959void
4960send_ip6_na_w_addr (vlib_main_t * vm,
Steven9f781d82018-06-05 11:09:32 -07004961 const ip6_address_t * ip6_addr, u32 sw_if_index)
Neale Ranns25b04942018-04-04 09:34:50 -07004962{
4963 ip6_main_t *i6m = &ip6_main;
Steven9f781d82018-06-05 11:09:32 -07004964 vnet_main_t *vnm = vnet_get_main ();
4965 u8 *rewrite, rewrite_len;
4966 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
4967 u8 dst_address[6];
Neale Ranns25b04942018-04-04 09:34:50 -07004968
John Lo8b81cb42017-06-26 01:40:20 -04004969 if (ip6_addr)
4970 {
4971 clib_warning
4972 ("Sending unsolicitated NA IP6 address %U on sw_if_idex %d",
4973 format_ip6_address, ip6_addr, sw_if_index);
4974
4975 /* Form unsolicited neighbor advertisement packet from NS pkt template */
4976 int bogus_length;
4977 u32 bi = 0;
4978 icmp6_neighbor_solicitation_header_t *h =
4979 vlib_packet_template_get_packet (vm,
4980 &i6m->discover_neighbor_packet_template,
4981 &bi);
John Lo084606b2018-06-19 15:27:48 -04004982 if (!h)
4983 return;
4984
John Lo8b81cb42017-06-26 01:40:20 -04004985 ip6_set_reserved_multicast_address (&h->ip.dst_address,
4986 IP6_MULTICAST_SCOPE_link_local,
4987 IP6_MULTICAST_GROUP_ID_all_hosts);
4988 h->ip.src_address = ip6_addr[0];
4989 h->neighbor.icmp.type = ICMP6_neighbor_advertisement;
4990 h->neighbor.target_address = ip6_addr[0];
4991 h->neighbor.advertisement_flags = clib_host_to_net_u32
4992 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
ahdj00722130e12018-08-14 10:35:43 +08004993 h->link_layer_option.header.type =
4994 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
John Lo8b81cb42017-06-26 01:40:20 -04004995 clib_memcpy (h->link_layer_option.ethernet_address,
4996 hi->hw_address, vec_len (hi->hw_address));
4997 h->neighbor.icmp.checksum =
4998 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
4999 ASSERT (bogus_length == 0);
5000
5001 /* Setup MAC header with IP6 Etype and mcast DMAC */
5002 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
Steven9f781d82018-06-05 11:09:32 -07005003 ip6_multicast_ethernet_address (dst_address,
John Lo8b81cb42017-06-26 01:40:20 -04005004 IP6_MULTICAST_GROUP_ID_all_hosts);
Steven9f781d82018-06-05 11:09:32 -07005005 rewrite =
5006 ethernet_build_rewrite (vnm, sw_if_index, VNET_LINK_IP6, dst_address);
5007 rewrite_len = vec_len (rewrite);
5008 vlib_buffer_advance (b, -rewrite_len);
5009 ethernet_header_t *e = vlib_buffer_get_current (b);
5010 clib_memcpy (e->dst_address, rewrite, rewrite_len);
5011 vec_free (rewrite);
John Lo8b81cb42017-06-26 01:40:20 -04005012
5013 /* Send unsolicited ND advertisement packet out the specified interface */
5014 vnet_buffer (b)->sw_if_index[VLIB_RX] =
5015 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
5016 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
5017 u32 *to_next = vlib_frame_vector_args (f);
5018 to_next[0] = bi;
5019 f->n_vectors = 1;
5020 vlib_put_frame_to_node (vm, hi->output_node_index, f);
5021 }
5022}
5023
Dave Barachd7cb1b52016-12-09 09:52:16 -05005024/*
5025 * fd.io coding-style-patch-verification: ON
5026 *
5027 * Local Variables:
5028 * eval: (c-set-style "gnu")
5029 * End:
5030 */