blob: c011ec5e877e0d4829fbc918959a466759af6f44 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ip/ip6_neighbor.c: IP6 neighbor handling
3 *
4 * Copyright (c) 2010 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/ip/ip.h>
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010019#include <vnet/ip/ip6_neighbor.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vnet/ethernet/ethernet.h>
21#include <vppinfra/mhash.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/adj/adj.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000023#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/fib/fib_table.h>
25#include <vnet/fib/ip6_fib.h>
Neale Ranns4008ac92017-02-13 23:20:04 -080026#include <vnet/mfib/ip6_mfib.h>
Neale Ranns53da2212018-02-24 02:11:19 -080027#include <vnet/ip/ip6_ll_table.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Billy McFall0683c9c2016-10-13 08:27:31 -040029/**
30 * @file
31 * @brief IPv6 Neighbor Adjacency and Neighbor Discovery.
32 *
33 * The files contains the API and CLI code for managing IPv6 neighbor
34 * adjacency tables and neighbor discovery logic.
35 */
36
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010037/* can't use sizeof link_layer_address, that's 8 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070038#define ETHER_MAC_ADDR_LEN 6
39
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010040/* advertised prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050041typedef struct
42{
Ed Warnickecb9cada2015-12-08 15:45:58 -070043 /* basic advertised information */
44 ip6_address_t prefix;
45 u8 prefix_len;
46 int adv_on_link_flag;
47 int adv_autonomous_flag;
48 u32 adv_valid_lifetime_in_secs;
49 u32 adv_pref_lifetime_in_secs;
50
51 /* advertised values are computed from these times if decrementing */
52 f64 valid_lifetime_expires;
Dave Barachd7cb1b52016-12-09 09:52:16 -050053 f64 pref_lifetime_expires;
54
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 /* local information */
56 int enabled;
57 int deprecated_prefix_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050058 int decrement_lifetime_flag;
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
60#define MIN_ADV_VALID_LIFETIME 7203 /* seconds */
61#define DEF_ADV_VALID_LIFETIME 2592000
62#define DEF_ADV_PREF_LIFETIME 604800
63
64 /* extensions are added here, mobile, DNS etc.. */
65} ip6_radv_prefix_t;
66
67
Dave Barachd7cb1b52016-12-09 09:52:16 -050068typedef struct
69{
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 /* group information */
71 u8 type;
72 ip6_address_t mcast_address;
73 u16 num_sources;
74 ip6_address_t *mcast_source_address_pool;
75} ip6_mldp_group_t;
76
77/* configured router advertisement information per ipv6 interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -050078typedef struct
79{
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
81 /* advertised config information, zero means unspecified */
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 u8 curr_hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 int adv_managed_flag;
84 int adv_other_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050085 u16 adv_router_lifetime_in_sec;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 u32 adv_neighbor_reachable_time_in_msec;
87 u32 adv_time_in_msec_between_retransmitted_neighbor_solicitations;
88
89 /* mtu option */
90 u32 adv_link_mtu;
Dave Barachd7cb1b52016-12-09 09:52:16 -050091
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 /* source link layer option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050093 u8 link_layer_address[8];
94 u8 link_layer_addr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
96 /* prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050097 ip6_radv_prefix_t *adv_prefixes_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 /* Hash table mapping address to index in interface advertised prefix pool. */
100 mhash_t address_to_prefix_index;
101
102 /* MLDP group information */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 ip6_mldp_group_t *mldp_group_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
105 /* Hash table mapping address to index in mldp address pool. */
106 mhash_t address_to_mldp_index;
107
108 /* local information */
109 u32 sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 int send_radv; /* radv on/off on this interface - set by config */
111 int cease_radv; /* we are ceasing to send - set byf config */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 int send_unicast;
113 int adv_link_layer_address;
114 int prefix_option;
115 int failed_device_check;
116 int all_routers_mcast;
117 u32 seed;
118 u64 randomizer;
119 int ref_count;
Neale Ranns32e1c012016-11-22 17:07:28 +0000120 adj_index_t mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500121
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 /* timing information */
123#define DEF_MAX_RADV_INTERVAL 200
124#define DEF_MIN_RADV_INTERVAL .75 * DEF_MAX_RADV_INTERVAL
125#define DEF_CURR_HOP_LIMIT 64
126#define DEF_DEF_RTR_LIFETIME 3 * DEF_MAX_RADV_INTERVAL
127#define MAX_DEF_RTR_LIFETIME 9000
128
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129#define MAX_INITIAL_RTR_ADVERT_INTERVAL 16 /* seconds */
130#define MAX_INITIAL_RTR_ADVERTISEMENTS 3 /*transmissions */
131#define MIN_DELAY_BETWEEN_RAS 3 /* seconds */
132#define MAX_DELAY_BETWEEN_RAS 1800 /* seconds */
133#define MAX_RA_DELAY_TIME .5 /* seconds */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134
135 f64 max_radv_interval;
136 f64 min_radv_interval;
137 f64 min_delay_between_radv;
138 f64 max_delay_between_radv;
139 f64 max_rtr_default_lifetime;
140
141 f64 last_radv_time;
142 f64 last_multicast_time;
143 f64 next_multicast_time;
144
145
146 u32 initial_adverts_count;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147 f64 initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 u32 initial_adverts_sent;
149
150 /* stats */
151 u32 n_advertisements_sent;
152 u32 n_solicitations_rcvd;
153 u32 n_solicitations_dropped;
154
155 /* Link local address to use (defaults to underlying physical for logical interfaces */
156 ip6_address_t link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157} ip6_radv_t;
158
Dave Barachd7cb1b52016-12-09 09:52:16 -0500159typedef struct
160{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 u32 next_index;
162 uword node_index;
163 uword type_opaque;
164 uword data;
John Lo1edfba92016-08-27 01:11:57 -0400165 /* Used for nd event notification only */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500166 void *data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400167 u32 pid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168} pending_resolution_t;
169
170
Dave Barachd7cb1b52016-12-09 09:52:16 -0500171typedef struct
172{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173 /* Hash tables mapping name to opcode. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500174 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
176 /* lite beer "glean" adjacency handling */
177 mhash_t pending_resolutions_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
John Lo1edfba92016-08-27 01:11:57 -0400180 /* Mac address change notification */
181 mhash_t mac_changes_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500182 pending_resolution_t *mac_changes;
John Lo1edfba92016-08-27 01:11:57 -0400183
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184 u32 *neighbor_input_next_index_by_hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Dave Barachd7cb1b52016-12-09 09:52:16 -0500186 ip6_neighbor_t *neighbor_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
188 mhash_t neighbor_index_by_key;
189
Dave Barachd7cb1b52016-12-09 09:52:16 -0500190 u32 *if_radv_pool_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
Dave Barachd7cb1b52016-12-09 09:52:16 -0500192 ip6_radv_t *if_radv_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
194 /* Neighbor attack mitigation */
195 u32 limit_neighbor_cache_size;
196 u32 neighbor_delete_rotor;
197
Eyal Baric125ecc2017-09-20 11:29:17 +0300198 /* Wildcard nd report publisher */
199 uword wc_ip6_nd_publisher_node;
200 uword wc_ip6_nd_publisher_et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201} ip6_neighbor_main_t;
202
Neale Ranns3f844d02017-02-18 00:03:54 -0800203/* ipv6 neighbor discovery - timer/event types */
204typedef enum
205{
206 ICMP6_ND_EVENT_INIT,
207} ip6_icmp_neighbor_discovery_event_type_t;
208
209typedef union
210{
211 u32 add_del_swindex;
212 struct
213 {
214 u32 up_down_swindex;
215 u32 fib_index;
216 } up_down_event;
217} ip6_icmp_neighbor_discovery_event_data_t;
218
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219static ip6_neighbor_main_t ip6_neighbor_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500220static ip6_address_t ip6a_zero; /* ip6 address 0 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221
Eyal Baric125ecc2017-09-20 11:29:17 +0300222static void wc_nd_signal_report (wc_nd_report_t * r);
223
224/**
225 * @brief publish wildcard arp event
226 * @param sw_if_index The interface on which the ARP entires are acted
227 */
228static int
229vnet_nd_wc_publish (u32 sw_if_index, u8 * mac, ip6_address_t * ip6)
230{
231 wc_nd_report_t r = {
232 .sw_if_index = sw_if_index,
233 .ip6 = *ip6,
234 };
235 memcpy (r.mac, mac, sizeof r.mac);
236
237 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
238 vl_api_rpc_call_main_thread (wc_nd_signal_report, (u8 *) & r, sizeof r);
239 return 0;
240}
241
242static void
243wc_nd_signal_report (wc_nd_report_t * r)
244{
245 vlib_main_t *vm = vlib_get_main ();
246 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
247 uword ni = nm->wc_ip6_nd_publisher_node;
248 uword et = nm->wc_ip6_nd_publisher_et;
249
250 if (ni == (uword) ~ 0)
251 return;
252 wc_nd_report_t *q =
253 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
254
255 *q = *r;
256}
257
258void
259wc_nd_set_publisher_node (uword node_index, uword event_type)
260{
261 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
262 nm->wc_ip6_nd_publisher_node = node_index;
263 nm->wc_ip6_nd_publisher_et = event_type;
264}
265
Dave Barachd7cb1b52016-12-09 09:52:16 -0500266static u8 *
267format_ip6_neighbor_ip6_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500269 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
270 ip6_neighbor_t *n = va_arg (*va, ip6_neighbor_t *);
271 vnet_main_t *vnm = vnet_get_main ();
272 vnet_sw_interface_t *si;
273 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Dave Barachd7cb1b52016-12-09 09:52:16 -0500275 if (!n)
Neale Ranns53da2212018-02-24 02:11:19 -0800276 return format (s, "%=12s%=25s%=6s%=20s%=40s", "Time", "Address", "Flags",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500277 "Link layer", "Interface");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100278
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100279 if (n->flags & IP6_NEIGHBOR_FLAG_DYNAMIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500280 flags = format (flags, "D");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100281
282 if (n->flags & IP6_NEIGHBOR_FLAG_STATIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500283 flags = format (flags, "S");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
Neale Rannsb3b2de72017-03-08 05:17:22 -0800285 if (n->flags & IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY)
286 flags = format (flags, "N");
287
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 si = vnet_get_sw_interface (vnm, n->key.sw_if_index);
Neale Ranns53da2212018-02-24 02:11:19 -0800289 s = format (s, "%=12U%=25U%=6s%=20U%=40U",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 format_vlib_cpu_time, vm, n->cpu_time_last_updated,
291 format_ip6_address, &n->key.ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500292 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 format_ethernet_address, n->link_layer_address,
294 format_vnet_sw_interface_name, vnm, si);
295
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 return s;
298}
299
Neale Ranns15002542017-09-10 04:39:11 -0700300static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700301ip6_neighbor_adj_fib_remove (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700302{
303 if (FIB_NODE_INDEX_INVALID != n->fib_entry_index)
304 {
Neale Ranns53da2212018-02-24 02:11:19 -0800305 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
306 {
307 ip6_ll_prefix_t pfx = {
308 .ilp_addr = n->key.ip6_address,
309 .ilp_sw_if_index = n->key.sw_if_index,
310 };
311 ip6_ll_table_entry_delete (&pfx);
312 }
313 else
314 {
315 fib_prefix_t pfx = {
316 .fp_len = 128,
317 .fp_proto = FIB_PROTOCOL_IP6,
318 .fp_addr.ip6 = n->key.ip6_address,
319 };
320 fib_table_entry_path_remove (fib_index,
321 &pfx,
322 FIB_SOURCE_ADJ,
323 DPO_PROTO_IP6,
324 &pfx.fp_addr,
325 n->key.sw_if_index, ~0,
326 1, FIB_ROUTE_PATH_FLAG_NONE);
327 }
Neale Ranns15002542017-09-10 04:39:11 -0700328 }
329}
330
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331static clib_error_t *
332ip6_neighbor_sw_interface_up_down (vnet_main_t * vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
336 ip6_neighbor_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
339 {
340 u32 i, *to_delete = 0;
341
342 /* *INDENT-OFF* */
343 pool_foreach (n, nm->neighbor_pool,
344 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 if (n->key.sw_if_index == sw_if_index)
346 vec_add1 (to_delete, n - nm->neighbor_pool);
347 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500348 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
350 for (i = 0; i < vec_len (to_delete); i++)
351 {
352 n = pool_elt_at_index (nm->neighbor_pool, to_delete[i]);
353 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
Neale Ranns15002542017-09-10 04:39:11 -0700354 ip6_neighbor_adj_fib_remove (n,
355 ip6_fib_table_get_index_for_sw_if_index
356 (n->key.sw_if_index));
357 pool_put (nm->neighbor_pool, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 vec_free (to_delete);
360 }
361
362 return 0;
363}
364
365VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_neighbor_sw_interface_up_down);
366
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367static void
368unset_random_neighbor_entry (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
371 vnet_main_t *vnm = vnet_get_main ();
372 vlib_main_t *vm = vnm->vlib_main;
373 ip6_neighbor_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374 u32 index;
375
376 index = pool_next_index (nm->neighbor_pool, nm->neighbor_delete_rotor);
377 nm->neighbor_delete_rotor = index;
378
379 /* Try again from elt 0, could happen if an intfc goes down */
380 if (index == ~0)
381 {
382 index = pool_next_index (nm->neighbor_pool, nm->neighbor_delete_rotor);
383 nm->neighbor_delete_rotor = index;
384 }
385
386 /* Nothing left in the pool */
387 if (index == ~0)
388 return;
389
390 e = pool_elt_at_index (nm->neighbor_pool, index);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 vnet_unset_ip6_ethernet_neighbor (vm, e->key.sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500393 &e->key.ip6_address,
394 e->link_layer_address,
395 ETHER_MAC_ADDR_LEN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396}
397
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398typedef struct
399{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 u8 is_add;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100401 u8 is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800402 u8 is_no_fib_entry;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 u8 link_layer_address[6];
404 u32 sw_if_index;
405 ip6_address_t addr;
406} ip6_neighbor_set_unset_rpc_args_t;
407
Dave Barachd7cb1b52016-12-09 09:52:16 -0500408static void ip6_neighbor_set_unset_rpc_callback
409 (ip6_neighbor_set_unset_rpc_args_t * a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410
Dave Barachd7cb1b52016-12-09 09:52:16 -0500411static void set_unset_ip6_neighbor_rpc
412 (vlib_main_t * vm,
413 u32 sw_if_index,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800414 ip6_address_t * a, u8 * link_layer_address, int is_add, int is_static,
415 int is_no_fib_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416{
417 ip6_neighbor_set_unset_rpc_args_t args;
Dave Barachf9bd6202015-12-14 13:22:11 -0500418 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 args.sw_if_index = sw_if_index;
421 args.is_add = is_add;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100422 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800423 args.is_no_fib_entry = is_no_fib_entry;
Damjan Marionf1213b82016-03-13 02:22:06 +0100424 clib_memcpy (&args.addr, a, sizeof (*a));
Neale Ranns3f844d02017-02-18 00:03:54 -0800425 if (NULL != link_layer_address)
426 clib_memcpy (args.link_layer_address, link_layer_address, 6);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 vl_api_rpc_call_main_thread (ip6_neighbor_set_unset_rpc_callback,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500429 (u8 *) & args, sizeof (args));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100432static void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500433ip6_nbr_probe (ip_adjacency_t * adj)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100434{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500435 icmp6_neighbor_solicitation_header_t *h;
436 vnet_main_t *vnm = vnet_get_main ();
437 ip6_main_t *im = &ip6_main;
438 ip_interface_address_t *ia;
439 ip6_address_t *dst, *src;
440 vnet_hw_interface_t *hi;
441 vnet_sw_interface_t *si;
442 vlib_buffer_t *b;
Neale Rannsb80c5362016-10-08 13:03:40 +0100443 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444 vlib_main_t *vm;
Neale Rannsb80c5362016-10-08 13:03:40 +0100445 u32 bi = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100446
Dave Barachd7cb1b52016-12-09 09:52:16 -0500447 vm = vlib_get_main ();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100448
Dave Barachd7cb1b52016-12-09 09:52:16 -0500449 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100450 dst = &adj->sub_type.nbr.next_hop.ip6;
451
452 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100453 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100454 return;
455 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500456 src = ip6_interface_address_matching_destination (im, dst,
457 adj->rewrite_header.
458 sw_if_index, &ia);
459 if (!src)
Neale Rannsb80c5362016-10-08 13:03:40 +0100460 {
461 return;
462 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100463
Dave Barachd7cb1b52016-12-09 09:52:16 -0500464 h = vlib_packet_template_get_packet (vm,
465 &im->discover_neighbor_packet_template,
466 &bi);
Neale Rannsb80c5362016-10-08 13:03:40 +0100467
Dave Barachd7cb1b52016-12-09 09:52:16 -0500468 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100469
470 h->ip.dst_address.as_u8[13] = dst->as_u8[13];
471 h->ip.dst_address.as_u8[14] = dst->as_u8[14];
472 h->ip.dst_address.as_u8[15] = dst->as_u8[15];
473 h->ip.src_address = src[0];
474 h->neighbor.target_address = dst[0];
475
476 clib_memcpy (h->link_layer_option.ethernet_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 hi->hw_address, vec_len (hi->hw_address));
Neale Rannsb80c5362016-10-08 13:03:40 +0100478
479 h->neighbor.icmp.checksum =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500480 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
481 ASSERT (bogus_length == 0);
Neale Rannsb80c5362016-10-08 13:03:40 +0100482
483 b = vlib_get_buffer (vm, bi);
484 vnet_buffer (b)->sw_if_index[VLIB_RX] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100486
487 /* Add encapsulation string for software interface (e.g. ethernet header). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500488 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
489 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
Neale Rannsb80c5362016-10-08 13:03:40 +0100490
491 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
493 u32 *to_next = vlib_frame_vector_args (f);
494 to_next[0] = bi;
495 f->n_vectors = 1;
496 vlib_put_frame_to_node (vm, hi->output_node_index, f);
Neale Rannsb80c5362016-10-08 13:03:40 +0100497 }
498}
499
500static void
501ip6_nd_mk_complete (adj_index_t ai, ip6_neighbor_t * nbr)
502{
503 adj_nbr_update_rewrite (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
504 ethernet_build_rewrite (vnet_get_main (),
505 nbr->key.sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500506 adj_get_link_type (ai),
Neale Rannsb80c5362016-10-08 13:03:40 +0100507 nbr->link_layer_address));
508}
509
510static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000511ip6_nd_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100512{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500513 ip_adjacency_t *adj = adj_get (ai);
Neale Ranns19c68d22016-12-07 15:38:14 +0000514
Dave Barachd7cb1b52016-12-09 09:52:16 -0500515 adj_nbr_update_rewrite (ai,
516 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
517 ethernet_build_rewrite (vnet_get_main (),
518 adj->rewrite_header.
519 sw_if_index,
520 adj_get_link_type (ai),
521 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
Neale Rannsb80c5362016-10-08 13:03:40 +0100522}
523
524#define IP6_NBR_MK_KEY(k, sw_if_index, addr) \
525{ \
526 k.sw_if_index = sw_if_index; \
527 k.ip6_address = *addr; \
528 k.pad = 0; \
529}
530
531static ip6_neighbor_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500532ip6_nd_find (u32 sw_if_index, const ip6_address_t * addr)
Neale Rannsb80c5362016-10-08 13:03:40 +0100533{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500534 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
535 ip6_neighbor_t *n = NULL;
Neale Rannsb80c5362016-10-08 13:03:40 +0100536 ip6_neighbor_key_t k;
537 uword *p;
538
Dave Barachd7cb1b52016-12-09 09:52:16 -0500539 IP6_NBR_MK_KEY (k, sw_if_index, addr);
Neale Rannsb80c5362016-10-08 13:03:40 +0100540
541 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500542 if (p)
543 {
544 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
545 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100546
547 return (n);
548}
549
550static adj_walk_rc_t
551ip6_nd_mk_complete_walk (adj_index_t ai, void *ctx)
552{
553 ip6_neighbor_t *nbr = ctx;
554
555 ip6_nd_mk_complete (ai, nbr);
556
557 return (ADJ_WALK_RC_CONTINUE);
558}
559
560static adj_walk_rc_t
561ip6_nd_mk_incomplete_walk (adj_index_t ai, void *ctx)
562{
Neale Ranns19c68d22016-12-07 15:38:14 +0000563 ip6_nd_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100564
565 return (ADJ_WALK_RC_CONTINUE);
566}
567
568void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500569ip6_ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100570{
571 ip6_neighbor_t *nbr;
572 ip_adjacency_t *adj;
573
574 adj = adj_get (ai);
575
576 nbr = ip6_nd_find (sw_if_index, &adj->sub_type.nbr.next_hop.ip6);
577
Neale Ranns32e1c012016-11-22 17:07:28 +0000578 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100579 {
Ole Trøan438f6302018-02-15 21:56:06 +0000580 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800581 adj_glean_update_rewrite (ai);
582 break;
583 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000584 if (NULL != nbr)
585 {
586 adj_nbr_walk_nh6 (sw_if_index, &nbr->key.ip6_address,
587 ip6_nd_mk_complete_walk, nbr);
588 }
589 else
590 {
591 /*
592 * no matching ND entry.
593 * construct the rewrite required to for an ND packet, and stick
594 * that in the adj's pipe to smoke.
595 */
596 adj_nbr_update_rewrite (ai,
597 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
598 ethernet_build_rewrite (vnm,
599 sw_if_index,
600 VNET_LINK_IP6,
601 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
602
603 /*
604 * since the FIB has added this adj for a route, it makes sense it may
605 * want to forward traffic sometime soon. Let's send a speculative ND.
606 * just one. If we were to do periodically that wouldn't be bad either,
607 * but that's more code than i'm prepared to write at this time for
608 * relatively little reward.
609 */
610 ip6_nbr_probe (adj);
611 }
612 break;
613 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700614 {
615 /*
616 * Construct a partial rewrite from the known ethernet mcast dest MAC
617 */
618 u8 *rewrite;
619 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100620
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700621 rewrite = ethernet_build_rewrite (vnm,
622 sw_if_index,
623 adj->ia_link,
624 ethernet_ip6_mcast_dst_addr ());
Neale Ranns32e1c012016-11-22 17:07:28 +0000625
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700626 /*
627 * Complete the remaining fields of the adj's rewrite to direct the
628 * complete of the rewrite at switch time by copying in the IP
629 * dst address's bytes.
630 * Ofset is 2 bytes into the desintation address. And we write 4 bytes.
631 */
632 offset = vec_len (rewrite) - 2;
633 adj_mcast_update_rewrite (ai, rewrite, offset, 0xffffffff);
Neale Ranns32e1c012016-11-22 17:07:28 +0000634
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700635 break;
636 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000637 case IP_LOOKUP_NEXT_DROP:
638 case IP_LOOKUP_NEXT_PUNT:
639 case IP_LOOKUP_NEXT_LOCAL:
640 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800641 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000642 case IP_LOOKUP_NEXT_MIDCHAIN:
643 case IP_LOOKUP_NEXT_ICMP_ERROR:
644 case IP_LOOKUP_N_NEXT:
645 ASSERT (0);
646 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100647 }
648}
649
Neale Ranns15002542017-09-10 04:39:11 -0700650
651static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700652ip6_neighbor_adj_fib_add (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700653{
Neale Ranns53da2212018-02-24 02:11:19 -0800654 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
655 {
656 ip6_ll_prefix_t pfx = {
657 .ilp_addr = n->key.ip6_address,
658 .ilp_sw_if_index = n->key.sw_if_index,
659 };
660 n->fib_entry_index =
661 ip6_ll_table_entry_update (&pfx, FIB_ROUTE_PATH_FLAG_NONE);
662 }
663 else
664 {
665 fib_prefix_t pfx = {
666 .fp_len = 128,
667 .fp_proto = FIB_PROTOCOL_IP6,
668 .fp_addr.ip6 = n->key.ip6_address,
669 };
Neale Ranns15002542017-09-10 04:39:11 -0700670
Neale Ranns53da2212018-02-24 02:11:19 -0800671 n->fib_entry_index =
672 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
673 FIB_ENTRY_FLAG_ATTACHED,
674 DPO_PROTO_IP6, &pfx.fp_addr,
675 n->key.sw_if_index, ~0, 1, NULL,
676 FIB_ROUTE_PATH_FLAG_NONE);
677 }
Neale Ranns15002542017-09-10 04:39:11 -0700678}
679
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680int
681vnet_set_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500682 u32 sw_if_index,
683 ip6_address_t * a,
684 u8 * link_layer_address,
685 uword n_bytes_link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800686 int is_static, int is_no_fib_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500688 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500690 ip6_neighbor_t *n = 0;
691 int make_new_nd_cache_entry = 1;
692 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693 u32 next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500694 pending_resolution_t *pr, *mc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695
Damjan Marion586afd72017-04-05 19:18:20 +0200696 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 {
698 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800699 1 /* set new neighbor */ , is_static,
700 is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 return 0;
702 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703
704 k.sw_if_index = sw_if_index;
705 k.ip6_address = a[0];
706 k.pad = 0;
707
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500709 if (p)
710 {
711 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
712 /* Refuse to over-write static neighbor entry. */
713 if (!is_static && (n->flags & IP6_NEIGHBOR_FLAG_STATIC))
714 return -2;
715 make_new_nd_cache_entry = 0;
716 }
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100717
Dave Barachd7cb1b52016-12-09 09:52:16 -0500718 if (make_new_nd_cache_entry)
719 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500720 pool_get (nm->neighbor_pool, n);
721 mhash_set (&nm->neighbor_index_by_key, &k, n - nm->neighbor_pool,
722 /* old value */ 0);
723 n->key = k;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700724 n->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100725
Dave Barachd7cb1b52016-12-09 09:52:16 -0500726 clib_memcpy (n->link_layer_address,
727 link_layer_address, n_bytes_link_layer_address);
Neale Rannsb80c5362016-10-08 13:03:40 +0100728
Dave Barachd7cb1b52016-12-09 09:52:16 -0500729 /*
730 * create the adj-fib. the entry in the FIB table for and to the peer.
731 */
Neale Rannsb3b2de72017-03-08 05:17:22 -0800732 if (!is_no_fib_entry)
733 {
Neale Ranns53da2212018-02-24 02:11:19 -0800734 ip6_neighbor_adj_fib_add
735 (n, ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700736 }
737 else
738 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800739 n->flags |= IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY;
740 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500741 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100742 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500743 {
744 /*
745 * prevent a DoS attack from the data-plane that
746 * spams us with no-op updates to the MAC address
747 */
748 if (0 == memcmp (n->link_layer_address,
749 link_layer_address, n_bytes_link_layer_address))
Dave Barach59b25652017-09-10 15:04:27 -0400750 goto check_customers;
Neale Rannsb80c5362016-10-08 13:03:40 +0100751
Dave Barachd7cb1b52016-12-09 09:52:16 -0500752 clib_memcpy (n->link_layer_address,
753 link_layer_address, n_bytes_link_layer_address);
754 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
Neale Rannsb80c5362016-10-08 13:03:40 +0100756 /* Update time stamp and flags. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757 n->cpu_time_last_updated = clib_cpu_time_now ();
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100758 if (is_static)
759 n->flags |= IP6_NEIGHBOR_FLAG_STATIC;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100760 else
761 n->flags |= IP6_NEIGHBOR_FLAG_DYNAMIC;
762
Neale Rannsb80c5362016-10-08 13:03:40 +0100763 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500764 &n->key.ip6_address, ip6_nd_mk_complete_walk, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765
Dave Barach59b25652017-09-10 15:04:27 -0400766check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767 /* Customer(s) waiting for this address to be resolved? */
768 p = mhash_get (&nm->pending_resolutions_by_address, a);
John Lo1edfba92016-08-27 01:11:57 -0400769 if (p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 {
John Lo1edfba92016-08-27 01:11:57 -0400771 next_index = p[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500772
773 while (next_index != (u32) ~ 0)
774 {
John Lo1edfba92016-08-27 01:11:57 -0400775 pr = pool_elt_at_index (nm->pending_resolutions, next_index);
776 vlib_process_signal_event (vm, pr->node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500777 pr->type_opaque, pr->data);
John Lo1edfba92016-08-27 01:11:57 -0400778 next_index = pr->next_index;
779 pool_put (nm->pending_resolutions, pr);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500780 }
John Lo1edfba92016-08-27 01:11:57 -0400781
782 mhash_unset (&nm->pending_resolutions_by_address, a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783 }
784
John Lo1edfba92016-08-27 01:11:57 -0400785 /* Customer(s) requesting ND event for this address? */
786 p = mhash_get (&nm->mac_changes_by_address, a);
787 if (p)
788 {
789 next_index = p[0];
790
Dave Barachd7cb1b52016-12-09 09:52:16 -0500791 while (next_index != (u32) ~ 0)
792 {
793 int (*fp) (u32, u8 *, u32, ip6_address_t *);
794 int rv = 1;
795 mc = pool_elt_at_index (nm->mac_changes, next_index);
796 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400797
Dave Barachd7cb1b52016-12-09 09:52:16 -0500798 /* Call the user's data callback, return 1 to suppress dup events */
799 if (fp)
800 rv =
801 (*fp) (mc->data, link_layer_address, sw_if_index, &ip6a_zero);
802 /*
803 * Signal the resolver process, as long as the user
804 * says they want to be notified
805 */
806 if (rv == 0)
807 vlib_process_signal_event (vm, mc->node_index,
808 mc->type_opaque, mc->data);
809 next_index = mc->next_index;
810 }
John Lo1edfba92016-08-27 01:11:57 -0400811 }
812
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813 return 0;
814}
815
816int
817vnet_unset_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500818 u32 sw_if_index,
819 ip6_address_t * a,
820 u8 * link_layer_address,
821 uword n_bytes_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500823 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500825 ip6_neighbor_t *n;
826 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700827 int rv = 0;
828
Damjan Marion586afd72017-04-05 19:18:20 +0200829 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830 {
831 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800832 0 /* unset */ , 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 return 0;
834 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835
836 k.sw_if_index = sw_if_index;
837 k.ip6_address = a[0];
838 k.pad = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500839
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840 p = mhash_get (&nm->neighbor_index_by_key, &k);
841 if (p == 0)
842 {
843 rv = -1;
844 goto out;
845 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500846
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
Neale Ranns19c68d22016-12-07 15:38:14 +0000848 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100849
Neale Rannsb80c5362016-10-08 13:03:40 +0100850 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500851 &n->key.ip6_address, ip6_nd_mk_incomplete_walk, NULL);
Neale Rannsb80c5362016-10-08 13:03:40 +0100852
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700853
854 if (FIB_NODE_INDEX_INVALID != n->fib_entry_index)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700855 {
856 fib_prefix_t pfx = {
857 .fp_len = 128,
858 .fp_proto = FIB_PROTOCOL_IP6,
859 .fp_addr.ip6 = n->key.ip6_address,
860 };
861 fib_table_entry_path_remove
862 (ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index),
863 &pfx,
864 FIB_SOURCE_ADJ,
Neale Rannsda78f952017-05-24 09:15:43 -0700865 DPO_PROTO_IP6,
Neale Rannsdcd6d622017-05-26 02:59:16 -0700866 &pfx.fp_addr, n->key.sw_if_index, ~0, 1, FIB_ROUTE_PATH_FLAG_NONE);
867 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 pool_put (nm->neighbor_pool, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500869
870out:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 return rv;
872}
873
Dave Barachd7cb1b52016-12-09 09:52:16 -0500874static void ip6_neighbor_set_unset_rpc_callback
875 (ip6_neighbor_set_unset_rpc_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500877 vlib_main_t *vm = vlib_get_main ();
878 if (a->is_add)
879 vnet_set_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800880 a->link_layer_address, 6, a->is_static,
881 a->is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500883 vnet_unset_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
884 a->link_layer_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886
887static int
888ip6_neighbor_sort (void *a1, void *a2)
889{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500890 vnet_main_t *vnm = vnet_get_main ();
891 ip6_neighbor_t *n1 = a1, *n2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 int cmp;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500893 cmp = vnet_sw_interface_compare (vnm, n1->key.sw_if_index,
894 n2->key.sw_if_index);
895 if (!cmp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700896 cmp = ip6_address_compare (&n1->key.ip6_address, &n2->key.ip6_address);
897 return cmp;
898}
899
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100900ip6_neighbor_t *
901ip6_neighbors_entries (u32 sw_if_index)
902{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500903 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100904 ip6_neighbor_t *n, *ns = 0;
905
906 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500907 pool_foreach (n, nm->neighbor_pool,
908 ({
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100909 if (sw_if_index != ~0 && n->key.sw_if_index != sw_if_index)
910 continue;
911 vec_add1 (ns, n[0]);
912 }));
913 /* *INDENT-ON* */
914
915 if (ns)
916 vec_sort_with_function (ns, ip6_neighbor_sort);
917 return ns;
918}
919
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920static clib_error_t *
921show_ip6_neighbors (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500922 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500924 vnet_main_t *vnm = vnet_get_main ();
925 ip6_neighbor_t *n, *ns;
926 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 u32 sw_if_index;
928
929 /* Filter entries by interface if given. */
930 sw_if_index = ~0;
931 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
932
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100933 ns = ip6_neighbors_entries (sw_if_index);
Billy McFall46529cd2016-10-14 10:45:49 -0400934 if (ns)
935 {
Billy McFall46529cd2016-10-14 10:45:49 -0400936 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500937 vec_foreach (n, ns)
938 {
939 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, n);
Billy McFall46529cd2016-10-14 10:45:49 -0400940 }
941 vec_free (ns);
942 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943
944 return error;
945}
946
Billy McFall0683c9c2016-10-13 08:27:31 -0400947/*?
948 * This command is used to display the adjacent IPv6 hosts found via
949 * neighbor discovery. Optionally, limit the output to the specified
950 * interface.
951 *
952 * @cliexpar
953 * Example of how to display the IPv6 neighbor adjacency table:
954 * @cliexstart{show ip6 neighbors}
955 * Time Address Flags Link layer Interface
956 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
957 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
958 * 886.6654 ::1:1:c:0:9 S 02:fe:e4:45:27:5b GigabitEthernet3/0/0
959 * @cliexend
960 * Example of how to display the IPv6 neighbor adjacency table for given interface:
961 * @cliexstart{show ip6 neighbors GigabitEthernet2/0/0}
962 * Time Address Flags Link layer Interface
963 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
964 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
965 * @cliexend
966?*/
967/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968VLIB_CLI_COMMAND (show_ip6_neighbors_command, static) = {
969 .path = "show ip6 neighbors",
970 .function = show_ip6_neighbors,
Billy McFall0683c9c2016-10-13 08:27:31 -0400971 .short_help = "show ip6 neighbors [<interface>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972};
Billy McFall0683c9c2016-10-13 08:27:31 -0400973/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974
975static clib_error_t *
976set_ip6_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500977 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700978{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500979 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980 ip6_address_t addr;
981 u8 mac_address[6];
982 int addr_valid = 0;
983 int is_del = 0;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100984 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800985 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986 u32 sw_if_index;
987
Dave Barachd7cb1b52016-12-09 09:52:16 -0500988 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989 {
990 /* intfc, ip6-address, mac-address */
991 if (unformat (input, "%U %U %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500992 unformat_vnet_sw_interface, vnm, &sw_if_index,
993 unformat_ip6_address, &addr,
994 unformat_ethernet_address, mac_address))
995 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996
997 else if (unformat (input, "delete") || unformat (input, "del"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500998 is_del = 1;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100999 else if (unformat (input, "static"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001000 is_static = 1;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001001 else if (unformat (input, "no-fib-entry"))
1002 is_no_fib_entry = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001004 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005 }
1006
1007 if (!addr_valid)
1008 return clib_error_return (0, "Missing interface, ip6 or hw address");
Dave Barachd7cb1b52016-12-09 09:52:16 -05001009
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010 if (!is_del)
1011 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index, &addr,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001012 mac_address, sizeof (mac_address),
Neale Rannsb3b2de72017-03-08 05:17:22 -08001013 is_static, is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014 else
1015 vnet_unset_ip6_ethernet_neighbor (vm, sw_if_index, &addr,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001016 mac_address, sizeof (mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017 return 0;
1018}
1019
Billy McFall0683c9c2016-10-13 08:27:31 -04001020/*?
1021 * This command is used to manually add an entry to the IPv6 neighbor
1022 * adjacency table. Optionally, the entry can be added as static. It is
1023 * also used to remove an entry from the table. Use the '<em>show ip6
1024 * neighbors</em>' command to display all learned and manually entered entries.
1025 *
1026 * @cliexpar
1027 * Example of how to add a static entry to the IPv6 neighbor adjacency table:
1028 * @cliexcmd{set ip6 neighbor GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b static}
1029 * Example of how to delete an entry from the IPv6 neighbor adjacency table:
1030 * @cliexcmd{set ip6 neighbor del GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b}
1031?*/
1032/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001033VLIB_CLI_COMMAND (set_ip6_neighbor_command, static) =
1034{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 .path = "set ip6 neighbor",
1036 .function = set_ip6_neighbor,
Billy McFall0683c9c2016-10-13 08:27:31 -04001037 .short_help = "set ip6 neighbor [del] <interface> <ip6-address> <mac-address> [static]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038};
Billy McFall0683c9c2016-10-13 08:27:31 -04001039/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040
Dave Barachd7cb1b52016-12-09 09:52:16 -05001041typedef enum
1042{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043 ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP,
1044 ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY,
1045 ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
1046} icmp6_neighbor_solicitation_or_advertisement_next_t;
1047
1048static_always_inline uword
1049icmp6_neighbor_solicitation_or_advertisement (vlib_main_t * vm,
1050 vlib_node_runtime_t * node,
1051 vlib_frame_t * frame,
1052 uword is_solicitation)
1053{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001054 vnet_main_t *vnm = vnet_get_main ();
1055 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001057 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001058 u32 n_left_from, n_left_to_next, next_index, n_advertisements_sent;
1059 icmp6_neighbor_discovery_option_type_t option_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001060 vlib_node_runtime_t *error_node =
1061 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062 int bogus_length;
1063
1064 from = vlib_frame_vector_args (frame);
1065 n_left_from = n_packets;
1066 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001067
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068 if (node->flags & VLIB_NODE_FLAG_TRACE)
1069 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1070 /* stride */ 1,
1071 sizeof (icmp6_input_trace_t));
1072
Dave Barachd7cb1b52016-12-09 09:52:16 -05001073 option_type =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074 (is_solicitation
1075 ? ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address
1076 : ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address);
1077 n_advertisements_sent = 0;
1078
1079 while (n_left_from > 0)
1080 {
1081 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1082
1083 while (n_left_from > 0 && n_left_to_next > 0)
1084 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001085 vlib_buffer_t *p0;
1086 ip6_header_t *ip0;
1087 icmp6_neighbor_solicitation_or_advertisement_header_t *h0;
1088 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001090 u32 ip6_sadd_link_local, ip6_sadd_unspecified;
1091 int is_rewrite0;
1092 u32 ni0;
1093
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 bi0 = to_next[0] = from[0];
1095
1096 from += 1;
1097 to_next += 1;
1098 n_left_from -= 1;
1099 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001100
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101 p0 = vlib_get_buffer (vm, bi0);
1102 ip0 = vlib_buffer_get_current (p0);
1103 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001104 options_len0 =
1105 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106
1107 error0 = ICMP6_ERROR_NONE;
1108 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001109 ip6_sadd_link_local =
1110 ip6_address_is_link_local_unicast (&ip0->src_address);
1111 ip6_sadd_unspecified =
1112 ip6_address_is_unspecified (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113
1114 /* Check that source address is unspecified, link-local or else on-link. */
1115 if (!ip6_sadd_unspecified && !ip6_sadd_link_local)
1116 {
1117 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118
Dave Barachd7cb1b52016-12-09 09:52:16 -05001119 if (ADJ_INDEX_INVALID != src_adj_index0)
1120 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001121 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122
Dave Barachd7cb1b52016-12-09 09:52:16 -05001123 /* Allow all realistic-looking rewrite adjacencies to pass */
1124 ni0 = adj0->lookup_next_index;
1125 is_rewrite0 = (ni0 >= IP_LOOKUP_NEXT_ARP) &&
1126 (ni0 < IP6_LOOKUP_N_NEXT);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001127
Dave Barachd7cb1b52016-12-09 09:52:16 -05001128 error0 = ((adj0->rewrite_header.sw_if_index != sw_if_index0
1129 || !is_rewrite0)
1130 ?
1131 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK
1132 : error0);
1133 }
1134 else
1135 {
1136 error0 =
1137 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK;
1138 }
1139 }
1140
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141 o0 = (void *) (h0 + 1);
1142 o0 = ((options_len0 == 8 && o0->header.type == option_type
1143 && o0->header.n_data_u64s == 1) ? o0 : 0);
1144
1145 /* If src address unspecified or link local, donot learn neighbor MAC */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001146 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
Neale Ranns2a3ea492017-04-19 05:24:40 -07001147 !ip6_sadd_unspecified))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001148 {
1149 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
1150 if (nm->limit_neighbor_cache_size &&
1151 pool_elts (nm->neighbor_pool) >=
1152 nm->limit_neighbor_cache_size)
1153 unset_random_neighbor_entry ();
1154 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1155 is_solicitation ?
1156 &ip0->src_address :
1157 &h0->target_address,
1158 o0->ethernet_address,
1159 sizeof (o0->ethernet_address),
Neale Ranns53da2212018-02-24 02:11:19 -08001160 0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001161 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162
1163 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1164 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001165 /* Check that target address is local to this router. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001166 fib_node_index_t fei;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001167 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001168
Dave Barachd7cb1b52016-12-09 09:52:16 -05001169 fib_index =
1170 ip6_fib_table_get_index_for_sw_if_index (sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001171
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001172 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001173 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001174 error0 = ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1175 }
1176 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001177 {
Neale Ranns53da2212018-02-24 02:11:19 -08001178 if (ip6_address_is_link_local_unicast (&h0->target_address))
1179 {
1180 fei = ip6_fib_table_lookup_exact_match
1181 (ip6_ll_fib_get (sw_if_index0),
1182 &h0->target_address, 128);
1183 }
1184 else
1185 {
1186 fei = ip6_fib_table_lookup_exact_match (fib_index,
1187 &h0->target_address,
1188 128);
1189 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001190
Neale Ranns3f844d02017-02-18 00:03:54 -08001191 if (FIB_NODE_INDEX_INVALID == fei)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001192 {
Neale Ranns3f844d02017-02-18 00:03:54 -08001193 /* The target address is not in the FIB */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001194 error0 =
1195 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001196 }
Neale Ranns3f844d02017-02-18 00:03:54 -08001197 else
1198 {
1199 if (FIB_ENTRY_FLAG_LOCAL &
1200 fib_entry_get_flags_for_source (fei,
1201 FIB_SOURCE_INTERFACE))
1202 {
1203 /* It's an address that belongs to one of our interfaces
1204 * that's good. */
1205 }
1206 else
1207 if (fib_entry_is_sourced
Neale Ranns53da2212018-02-24 02:11:19 -08001208 (fei, FIB_SOURCE_IP6_ND_PROXY) ||
1209 fib_entry_is_sourced (fei, FIB_SOURCE_IP6_ND))
Neale Ranns3f844d02017-02-18 00:03:54 -08001210 {
1211 /* The address was added by IPv6 Proxy ND config.
1212 * We should only respond to these if the NS arrived on
1213 * the link that has a matching covering prefix */
1214 }
1215 else
1216 {
1217 error0 =
1218 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1219 }
1220 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001221 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001222 }
1223
1224 if (is_solicitation)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001225 next0 = (error0 != ICMP6_ERROR_NONE
1226 ? ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP
1227 : ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228 else
1229 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001230 next0 = 0;
1231 error0 = error0 == ICMP6_ERROR_NONE ?
1232 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_RX : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 }
1234
1235 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1236 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001237 vnet_sw_interface_t *sw_if0;
1238 ethernet_interface_t *eth_if0;
1239 ethernet_header_t *eth0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001240
Dave Barachd7cb1b52016-12-09 09:52:16 -05001241 /* dst address is either source address or the all-nodes mcast addr */
1242 if (!ip6_sadd_unspecified)
1243 ip0->dst_address = ip0->src_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001244 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001245 ip6_set_reserved_multicast_address (&ip0->dst_address,
1246 IP6_MULTICAST_SCOPE_link_local,
1247 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248
1249 ip0->src_address = h0->target_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001250 ip0->hop_limit = 255;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 h0->icmp.type = ICMP6_neighbor_advertisement;
1252
1253 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1254 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001255 eth_if0 =
1256 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 if (eth_if0 && o0)
1258 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001259 clib_memcpy (o0->ethernet_address, eth_if0->address, 6);
1260 o0->header.type =
1261 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001262 }
1263
1264 h0->advertisement_flags = clib_host_to_net_u32
1265 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED
1266 | ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
1267
1268 h0->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001269 h0->icmp.checksum =
1270 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1271 &bogus_length);
1272 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001273
Dave Barachd7cb1b52016-12-09 09:52:16 -05001274 /* Reuse current MAC header, copy SMAC to DMAC and
1275 * interface MAC to SMAC */
1276 vlib_buffer_advance (p0, -ethernet_buffer_header_size (p0));
1277 eth0 = vlib_buffer_get_current (p0);
1278 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
1279 if (eth_if0)
1280 clib_memcpy (eth0->src_address, eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281
Dave Barachd7cb1b52016-12-09 09:52:16 -05001282 /* Setup input and output sw_if_index for packet */
1283 ASSERT (vnet_buffer (p0)->sw_if_index[VLIB_RX] == sw_if_index0);
1284 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1285 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
1286 vnet_main.local_interface_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287
1288 n_advertisements_sent++;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001289 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290
1291 p0->error = error_node->errors[error0];
1292
1293 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1294 to_next, n_left_to_next,
1295 bi0, next0);
1296 }
1297
1298 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1299 }
1300
1301 /* Account for advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001302 vlib_error_count (vm, error_node->node_index,
1303 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX,
1304 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305
1306 return frame->n_vectors;
1307}
1308
1309/* for "syslogging" - use elog for now */
1310#define foreach_log_level \
1311 _ (DEBUG, "DEBUG") \
1312 _ (INFO, "INFORMATION") \
1313 _ (NOTICE, "NOTICE") \
1314 _ (WARNING, "WARNING") \
1315 _ (ERR, "ERROR") \
1316 _ (CRIT, "CRITICAL") \
1317 _ (ALERT, "ALERT") \
1318 _ (EMERG, "EMERGENCY")
1319
Dave Barachd7cb1b52016-12-09 09:52:16 -05001320typedef enum
1321{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001322#define _(f,s) LOG_##f,
1323 foreach_log_level
1324#undef _
1325} log_level_t;
1326
Dave Barachd7cb1b52016-12-09 09:52:16 -05001327static char *log_level_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328#define _(f,s) s,
1329 foreach_log_level
1330#undef _
1331};
1332
Dave Barachd7cb1b52016-12-09 09:52:16 -05001333static int logmask = 1 << LOG_DEBUG;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334
1335static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05001336ip6_neighbor_syslog (vlib_main_t * vm, int priority, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337{
1338 /* just use elog for now */
1339 u8 *what;
1340 va_list va;
1341
Dave Barachd7cb1b52016-12-09 09:52:16 -05001342 if ((priority > LOG_EMERG) || !(logmask & (1 << priority)))
1343 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001344
1345 va_start (va, fmt);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001346 if (fmt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347 {
1348 what = va_format (0, fmt, &va);
1349
Dave Barachd7cb1b52016-12-09 09:52:16 -05001350 ELOG_TYPE_DECLARE (e) =
1351 {
1352 .format = "ip6 nd: (%s): %s",.format_args = "T4T4",};
1353 struct
1354 {
1355 u32 s[2];
1356 } *ed;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357 ed = ELOG_DATA (&vm->elog_main, e);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001358 ed->s[0] = elog_string (&vm->elog_main, log_level_strings[priority]);
1359 ed->s[1] = elog_string (&vm->elog_main, (char *) what);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360 }
1361 va_end (va);
1362 return;
1363}
1364
1365/* ipv6 neighbor discovery - router advertisements */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001366typedef enum
1367{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001368 ICMP6_ROUTER_SOLICITATION_NEXT_DROP,
1369 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW,
1370 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX,
1371 ICMP6_ROUTER_SOLICITATION_N_NEXT,
1372} icmp6_router_solicitation_or_advertisement_next_t;
1373
1374static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001375icmp6_router_solicitation (vlib_main_t * vm,
1376 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001377{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001378 vnet_main_t *vnm = vnet_get_main ();
1379 ip6_main_t *im = &ip6_main;
1380 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001381 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001382 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001383 u32 n_left_from, n_left_to_next, next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001384 u32 n_advertisements_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385 int bogus_length;
1386
1387 icmp6_neighbor_discovery_option_type_t option_type;
1388
Dave Barachd7cb1b52016-12-09 09:52:16 -05001389 vlib_node_runtime_t *error_node =
1390 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391
1392 from = vlib_frame_vector_args (frame);
1393 n_left_from = n_packets;
1394 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001395
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396 if (node->flags & VLIB_NODE_FLAG_TRACE)
1397 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1398 /* stride */ 1,
1399 sizeof (icmp6_input_trace_t));
1400
1401 /* source may append his LL address */
1402 option_type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
1403
1404 while (n_left_from > 0)
1405 {
1406 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001407
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408 while (n_left_from > 0 && n_left_to_next > 0)
1409 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001410 vlib_buffer_t *p0;
1411 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412 ip6_radv_t *radv_info = 0;
1413
Dave Barachd7cb1b52016-12-09 09:52:16 -05001414 icmp6_neighbor_discovery_header_t *h0;
1415 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
1416
Ed Warnickecb9cada2015-12-08 15:45:58 -07001417 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001418 u32 is_solicitation = 1, is_dropped = 0;
1419 u32 is_unspecified, is_link_local;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001420
1421 bi0 = to_next[0] = from[0];
1422
1423 from += 1;
1424 to_next += 1;
1425 n_left_from -= 1;
1426 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001427
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428 p0 = vlib_get_buffer (vm, bi0);
1429 ip0 = vlib_buffer_get_current (p0);
1430 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001431 options_len0 =
1432 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
1433 is_unspecified = ip6_address_is_unspecified (&ip0->src_address);
1434 is_link_local =
1435 ip6_address_is_link_local_unicast (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436
1437 error0 = ICMP6_ERROR_NONE;
1438 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001439
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440 /* check if solicitation (not from nd_timer node) */
1441 if (ip6_address_is_unspecified (&ip0->dst_address))
1442 is_solicitation = 0;
1443
1444 /* Check that source address is unspecified, link-local or else on-link. */
1445 if (!is_unspecified && !is_link_local)
1446 {
1447 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001448
Dave Barachd7cb1b52016-12-09 09:52:16 -05001449 if (ADJ_INDEX_INVALID != src_adj_index0)
1450 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001451 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001452
Dave Barachd7cb1b52016-12-09 09:52:16 -05001453 error0 = (adj0->rewrite_header.sw_if_index != sw_if_index0
1454 ?
1455 ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK
1456 : error0);
1457 }
1458 else
1459 {
1460 error0 = ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK;
1461 }
1462 }
1463
Ed Warnickecb9cada2015-12-08 15:45:58 -07001464 /* check for source LL option and process */
1465 o0 = (void *) (h0 + 1);
1466 o0 = ((options_len0 == 8
1467 && o0->header.type == option_type
Dave Barachd7cb1b52016-12-09 09:52:16 -05001468 && o0->header.n_data_u64s == 1) ? o0 : 0);
1469
Ed Warnickecb9cada2015-12-08 15:45:58 -07001470 /* if src address unspecified IGNORE any options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001471 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
1472 !is_unspecified && !is_link_local))
1473 {
1474 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
1475 if (nm->limit_neighbor_cache_size &&
1476 pool_elts (nm->neighbor_pool) >=
1477 nm->limit_neighbor_cache_size)
1478 unset_random_neighbor_entry ();
1479
1480 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1481 &ip0->src_address,
1482 o0->ethernet_address,
1483 sizeof (o0->ethernet_address),
Neale Rannsb3b2de72017-03-08 05:17:22 -08001484 0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001485 }
1486
Ed Warnickecb9cada2015-12-08 15:45:58 -07001487 /* default is to drop */
1488 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001489
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490 if (error0 == ICMP6_ERROR_NONE)
1491 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001492 vnet_sw_interface_t *sw_if0;
1493 ethernet_interface_t *eth_if0;
1494 u32 adj_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001495
1496 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1497 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001498 eth_if0 =
1499 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001500
1501 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001502 error0 =
1503 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1504 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001505
1506 if (error0 == ICMP6_ERROR_NONE)
1507 {
1508 u32 ri;
1509
1510 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001511 p0->current_length -=
1512 (options_len0 +
1513 sizeof (icmp6_neighbor_discovery_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001514
1515 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001516 vec_validate_init_empty
1517 (nm->if_radv_pool_index_by_sw_if_index, sw_if_index0, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001518
1519 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
1520
Dave Barachd7cb1b52016-12-09 09:52:16 -05001521 if (ri != ~0)
1522 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1523
1524 error0 =
1525 ((!radv_info) ?
1526 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1527 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001528
1529 if (error0 == ICMP6_ERROR_NONE)
1530 {
1531 f64 now = vlib_time_now (vm);
1532
1533 /* for solicited adverts - need to rate limit */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001534 if (is_solicitation)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001535 {
Neale Ranns75152282017-01-09 01:00:45 -08001536 if (0 != radv_info->last_radv_time &&
1537 (now - radv_info->last_radv_time) <
Dave Barachd7cb1b52016-12-09 09:52:16 -05001538 MIN_DELAY_BETWEEN_RAS)
1539 is_dropped = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001540 else
1541 radv_info->last_radv_time = now;
1542 }
1543
1544 /* send now */
1545 icmp6_router_advertisement_header_t rh;
1546
1547 rh.icmp.type = ICMP6_router_advertisement;
1548 rh.icmp.code = 0;
1549 rh.icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001550
Ed Warnickecb9cada2015-12-08 15:45:58 -07001551 rh.current_hop_limit = radv_info->curr_hop_limit;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001552 rh.router_lifetime_in_sec =
1553 clib_host_to_net_u16
1554 (radv_info->adv_router_lifetime_in_sec);
1555 rh.
1556 time_in_msec_between_retransmitted_neighbor_solicitations
1557 =
1558 clib_host_to_net_u32 (radv_info->
1559 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
1560 rh.neighbor_reachable_time_in_msec =
1561 clib_host_to_net_u32 (radv_info->
1562 adv_neighbor_reachable_time_in_msec);
1563
1564 rh.flags =
1565 (radv_info->adv_managed_flag) ?
1566 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP :
1567 0;
1568 rh.flags |=
1569 ((radv_info->adv_other_flag) ?
1570 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP :
1571 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001572
1573
Dave Barachd7cb1b52016-12-09 09:52:16 -05001574 u16 payload_length =
1575 sizeof (icmp6_router_advertisement_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001576
1577 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001578 vlib_buffer_get_free_list_index
1579 (p0), bi0, (void *) &rh,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001580 sizeof
1581 (icmp6_router_advertisement_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001582
Dave Barachd7cb1b52016-12-09 09:52:16 -05001583 if (radv_info->adv_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001584 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001585 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
1586 h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001587
Dave Barachd7cb1b52016-12-09 09:52:16 -05001588 h.header.type =
1589 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001590 h.header.n_data_u64s = 1;
1591
1592 /* copy ll address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001593 clib_memcpy (&h.ethernet_address[0],
1594 eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001595
1596 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001597 vlib_buffer_get_free_list_index
1598 (p0), bi0, (void *) &h,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001599 sizeof
1600 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001601
Dave Barachd7cb1b52016-12-09 09:52:16 -05001602 payload_length +=
1603 sizeof
1604 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001605 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001606
Ed Warnickecb9cada2015-12-08 15:45:58 -07001607 /* add MTU option */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001608 if (radv_info->adv_link_mtu)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001609 {
1610 icmp6_neighbor_discovery_mtu_option_t h;
1611
1612 h.unused = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001613 h.mtu =
1614 clib_host_to_net_u32 (radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001615 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu;
1616 h.header.n_data_u64s = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001617
1618 payload_length +=
1619 sizeof (icmp6_neighbor_discovery_mtu_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001620
1621 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001622 vlib_buffer_get_free_list_index
1623 (p0), bi0, (void *) &h,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001624 sizeof
1625 (icmp6_neighbor_discovery_mtu_option_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001626 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001627
Ed Warnickecb9cada2015-12-08 15:45:58 -07001628 /* add advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001629 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001630
Dave Barachd7cb1b52016-12-09 09:52:16 -05001631 /* *INDENT-OFF* */
1632 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
1633 ({
1634 if(pr_info->enabled &&
1635 (!pr_info->decrement_lifetime_flag
1636 || (pr_info->pref_lifetime_expires >0)))
1637 {
1638 /* advertise this prefix */
1639 icmp6_neighbor_discovery_prefix_information_option_t h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001640
Dave Barachd7cb1b52016-12-09 09:52:16 -05001641 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information;
1642 h.header.n_data_u64s = (sizeof(icmp6_neighbor_discovery_prefix_information_option_t) >> 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001643
Dave Barachd7cb1b52016-12-09 09:52:16 -05001644 h.dst_address_length = pr_info->prefix_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001645
Dave Barachd7cb1b52016-12-09 09:52:16 -05001646 h.flags = (pr_info->adv_on_link_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_FLAG_ON_LINK : 0;
1647 h.flags |= (pr_info->adv_autonomous_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_AUTO : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001648
Dave Barachd7cb1b52016-12-09 09:52:16 -05001649 if(radv_info->cease_radv && pr_info->deprecated_prefix_flag)
1650 {
1651 h.valid_time = clib_host_to_net_u32(MIN_ADV_VALID_LIFETIME);
1652 h.preferred_time = 0;
1653 }
1654 else
1655 {
1656 if(pr_info->decrement_lifetime_flag)
1657 {
1658 pr_info->adv_valid_lifetime_in_secs = ((pr_info->valid_lifetime_expires > now)) ?
1659 (pr_info->valid_lifetime_expires - now) : 0;
1660
1661 pr_info->adv_pref_lifetime_in_secs = ((pr_info->pref_lifetime_expires > now)) ?
1662 (pr_info->pref_lifetime_expires - now) : 0;
1663 }
1664
1665 h.valid_time = clib_host_to_net_u32(pr_info->adv_valid_lifetime_in_secs);
1666 h.preferred_time = clib_host_to_net_u32(pr_info->adv_pref_lifetime_in_secs) ;
1667 }
1668 h.unused = 0;
1669
1670 clib_memcpy(&h.dst_address, &pr_info->prefix, sizeof(ip6_address_t));
1671
1672 payload_length += sizeof( icmp6_neighbor_discovery_prefix_information_option_t);
1673
1674 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001675 vlib_buffer_get_free_list_index (p0),
Dave Barachd7cb1b52016-12-09 09:52:16 -05001676 bi0,
1677 (void *)&h, sizeof(icmp6_neighbor_discovery_prefix_information_option_t));
1678
1679 }
1680 }));
1681 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001682
1683 /* add additional options before here */
1684
1685 /* finish building the router advertisement... */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001686 if (!is_unspecified && radv_info->send_unicast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001687 {
1688 ip0->dst_address = ip0->src_address;
1689 }
1690 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001691 {
1692 /* target address is all-nodes mcast addr */
1693 ip6_set_reserved_multicast_address
1694 (&ip0->dst_address,
1695 IP6_MULTICAST_SCOPE_link_local,
1696 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001697 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001698
Ed Warnickecb9cada2015-12-08 15:45:58 -07001699 /* source address MUST be the link-local address */
1700 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001701
Dave Barachd7cb1b52016-12-09 09:52:16 -05001702 ip0->hop_limit = 255;
1703 ip0->payload_length =
1704 clib_host_to_net_u16 (payload_length);
1705
1706 icmp6_router_advertisement_header_t *rh0 =
1707 (icmp6_router_advertisement_header_t *) (ip0 + 1);
1708 rh0->icmp.checksum =
1709 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1710 &bogus_length);
1711 ASSERT (bogus_length == 0);
1712
Ed Warnickecb9cada2015-12-08 15:45:58 -07001713 /* setup output if and adjacency */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001714 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001715 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001716
1717 if (is_solicitation)
1718 {
1719 ethernet_header_t *eth0;
1720 /* Reuse current MAC header, copy SMAC to DMAC and
1721 * interface MAC to SMAC */
1722 vlib_buffer_reset (p0);
1723 eth0 = vlib_buffer_get_current (p0);
1724 clib_memcpy (eth0->dst_address, eth0->src_address,
1725 6);
1726 clib_memcpy (eth0->src_address, eth_if0->address,
1727 6);
1728 next0 =
1729 is_dropped ? next0 :
1730 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX;
1731 vnet_buffer (p0)->sw_if_index[VLIB_TX] =
1732 sw_if_index0;
1733 }
1734 else
1735 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001736 adj_index0 = radv_info->mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001737 if (adj_index0 == 0)
1738 error0 = ICMP6_ERROR_DST_LOOKUP_MISS;
1739 else
1740 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001741 next0 =
1742 is_dropped ? next0 :
1743 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW;
1744 vnet_buffer (p0)->ip.adj_index[VLIB_TX] =
1745 adj_index0;
1746 }
1747 }
Damjan Marion213b5aa2017-07-13 21:19:27 +02001748 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001749
1750 radv_info->n_solicitations_dropped += is_dropped;
1751 radv_info->n_solicitations_rcvd += is_solicitation;
1752
1753 if ((error0 == ICMP6_ERROR_NONE) && !is_dropped)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001754 {
1755 radv_info->n_advertisements_sent++;
1756 n_advertisements_sent++;
1757 }
1758 }
1759 }
1760 }
1761
1762 p0->error = error_node->errors[error0];
1763
Dave Barachd7cb1b52016-12-09 09:52:16 -05001764 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001765 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001766
Ed Warnickecb9cada2015-12-08 15:45:58 -07001767 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1768 to_next, n_left_to_next,
1769 bi0, next0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001770
Ed Warnickecb9cada2015-12-08 15:45:58 -07001771 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001772
Ed Warnickecb9cada2015-12-08 15:45:58 -07001773 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1774 }
1775
1776 /* Account for router advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001777 vlib_error_count (vm, error_node->node_index,
1778 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_TX,
1779 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001780
1781 return frame->n_vectors;
1782}
1783
1784 /* validate advertised info for consistancy (see RFC-4861 section 6.2.7) - log any inconsistencies, packet will always be dropped */
1785static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001786icmp6_router_advertisement (vlib_main_t * vm,
1787 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001788{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001789 vnet_main_t *vnm = vnet_get_main ();
1790 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001791 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001792 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001793 u32 n_left_from, n_left_to_next, next_index;
1794 u32 n_advertisements_rcvd = 0;
1795
Dave Barachd7cb1b52016-12-09 09:52:16 -05001796 vlib_node_runtime_t *error_node =
1797 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001798
1799 from = vlib_frame_vector_args (frame);
1800 n_left_from = n_packets;
1801 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001802
Ed Warnickecb9cada2015-12-08 15:45:58 -07001803 if (node->flags & VLIB_NODE_FLAG_TRACE)
1804 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1805 /* stride */ 1,
1806 sizeof (icmp6_input_trace_t));
1807
1808 while (n_left_from > 0)
1809 {
1810 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001811
Ed Warnickecb9cada2015-12-08 15:45:58 -07001812 while (n_left_from > 0 && n_left_to_next > 0)
1813 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001814 vlib_buffer_t *p0;
1815 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001816 ip6_radv_t *radv_info = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001817 icmp6_router_advertisement_header_t *h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001818 u32 bi0, options_len0, sw_if_index0, next0, error0;
1819
1820 bi0 = to_next[0] = from[0];
1821
1822 from += 1;
1823 to_next += 1;
1824 n_left_from -= 1;
1825 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001826
Ed Warnickecb9cada2015-12-08 15:45:58 -07001827 p0 = vlib_get_buffer (vm, bi0);
1828 ip0 = vlib_buffer_get_current (p0);
1829 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001830 options_len0 =
1831 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001832
1833 error0 = ICMP6_ERROR_NONE;
1834 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1835
Dave Barachd7cb1b52016-12-09 09:52:16 -05001836 /* Check that source address is link-local */
1837 error0 = (!ip6_address_is_link_local_unicast (&ip0->src_address)) ?
Ed Warnickecb9cada2015-12-08 15:45:58 -07001838 ICMP6_ERROR_ROUTER_ADVERTISEMENT_SOURCE_NOT_LINK_LOCAL : error0;
1839
1840 /* default is to drop */
1841 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001842
Ed Warnickecb9cada2015-12-08 15:45:58 -07001843 n_advertisements_rcvd++;
1844
1845 if (error0 == ICMP6_ERROR_NONE)
1846 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001847 vnet_sw_interface_t *sw_if0;
1848 ethernet_interface_t *eth_if0;
1849
Ed Warnickecb9cada2015-12-08 15:45:58 -07001850 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1851 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001852 eth_if0 =
1853 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854
1855 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001856 error0 =
1857 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1858 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001859
1860 if (error0 == ICMP6_ERROR_NONE)
1861 {
1862 u32 ri;
1863
1864 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001865 vec_validate_init_empty
1866 (nm->if_radv_pool_index_by_sw_if_index, sw_if_index0, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001867
1868 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
1869
Dave Barachd7cb1b52016-12-09 09:52:16 -05001870 if (ri != ~0)
1871 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1872
1873 error0 =
1874 ((!radv_info) ?
1875 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1876 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001877
1878 if (error0 == ICMP6_ERROR_NONE)
1879 {
1880 /* validate advertised information */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001881 if ((h0->current_hop_limit && radv_info->curr_hop_limit)
1882 && (h0->current_hop_limit !=
1883 radv_info->curr_hop_limit))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001884 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001885 ip6_neighbor_syslog (vm, LOG_WARNING,
1886 "our AdvCurHopLimit on %U doesn't agree with %U",
1887 format_vnet_sw_if_index_name,
1888 vnm, sw_if_index0,
1889 format_ip6_address,
1890 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001891 }
1892
Dave Barachd7cb1b52016-12-09 09:52:16 -05001893 if ((h0->flags &
1894 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP)
1895 != radv_info->adv_managed_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001896 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001897 ip6_neighbor_syslog (vm, LOG_WARNING,
1898 "our AdvManagedFlag on %U doesn't agree with %U",
1899 format_vnet_sw_if_index_name,
1900 vnm, sw_if_index0,
1901 format_ip6_address,
1902 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001903 }
1904
Dave Barachd7cb1b52016-12-09 09:52:16 -05001905 if ((h0->flags &
1906 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP)
1907 != radv_info->adv_other_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001908 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001909 ip6_neighbor_syslog (vm, LOG_WARNING,
1910 "our AdvOtherConfigFlag on %U doesn't agree with %U",
1911 format_vnet_sw_if_index_name,
1912 vnm, sw_if_index0,
1913 format_ip6_address,
1914 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001915 }
1916
Dave Barachd7cb1b52016-12-09 09:52:16 -05001917 if ((h0->
1918 time_in_msec_between_retransmitted_neighbor_solicitations
1919 && radv_info->
1920 adv_time_in_msec_between_retransmitted_neighbor_solicitations)
1921 && (h0->
1922 time_in_msec_between_retransmitted_neighbor_solicitations
1923 !=
1924 clib_host_to_net_u32 (radv_info->
1925 adv_time_in_msec_between_retransmitted_neighbor_solicitations)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001926 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001927 ip6_neighbor_syslog (vm, LOG_WARNING,
1928 "our AdvRetransTimer on %U doesn't agree with %U",
1929 format_vnet_sw_if_index_name,
1930 vnm, sw_if_index0,
1931 format_ip6_address,
1932 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001933 }
1934
Dave Barachd7cb1b52016-12-09 09:52:16 -05001935 if ((h0->neighbor_reachable_time_in_msec &&
1936 radv_info->adv_neighbor_reachable_time_in_msec) &&
1937 (h0->neighbor_reachable_time_in_msec !=
1938 clib_host_to_net_u32
1939 (radv_info->adv_neighbor_reachable_time_in_msec)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001940 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001941 ip6_neighbor_syslog (vm, LOG_WARNING,
1942 "our AdvReachableTime on %U doesn't agree with %U",
1943 format_vnet_sw_if_index_name,
1944 vnm, sw_if_index0,
1945 format_ip6_address,
1946 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001947 }
1948
1949 /* check for MTU or prefix options or .. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001950 u8 *opt_hdr = (u8 *) (h0 + 1);
1951 while (options_len0 > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001953 icmp6_neighbor_discovery_option_header_t *o0 =
1954 (icmp6_neighbor_discovery_option_header_t *)
1955 opt_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001956 int opt_len = o0->n_data_u64s << 3;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001957 icmp6_neighbor_discovery_option_type_t option_type =
1958 o0->type;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001959
Dave Barachd7cb1b52016-12-09 09:52:16 -05001960 if (options_len0 < 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001961 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001962 ip6_neighbor_syslog (vm, LOG_ERR,
1963 "malformed RA packet on %U from %U",
1964 format_vnet_sw_if_index_name,
1965 vnm, sw_if_index0,
1966 format_ip6_address,
1967 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001968 break;
1969 }
1970
Dave Barachd7cb1b52016-12-09 09:52:16 -05001971 if (opt_len == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001972 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001973 ip6_neighbor_syslog (vm, LOG_ERR,
1974 " zero length option in RA on %U from %U",
1975 format_vnet_sw_if_index_name,
1976 vnm, sw_if_index0,
1977 format_ip6_address,
1978 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001979 break;
1980 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001981 else if (opt_len > options_len0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001982 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001983 ip6_neighbor_syslog (vm, LOG_ERR,
1984 "option length in RA packet greater than total length on %U from %U",
1985 format_vnet_sw_if_index_name,
1986 vnm, sw_if_index0,
1987 format_ip6_address,
1988 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001989 break;
1990 }
1991
1992 options_len0 -= opt_len;
1993 opt_hdr += opt_len;
1994
Dave Barachd7cb1b52016-12-09 09:52:16 -05001995 switch (option_type)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001996 {
1997 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu:
Dave Barachd7cb1b52016-12-09 09:52:16 -05001998 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001999 icmp6_neighbor_discovery_mtu_option_t *h =
Dave Barachd7cb1b52016-12-09 09:52:16 -05002000 (icmp6_neighbor_discovery_mtu_option_t
2001 *) (o0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002002
Dave Barachd7cb1b52016-12-09 09:52:16 -05002003 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002004 break;
2005
Dave Barachd7cb1b52016-12-09 09:52:16 -05002006 if ((h->mtu && radv_info->adv_link_mtu) &&
2007 (h->mtu !=
2008 clib_host_to_net_u32
2009 (radv_info->adv_link_mtu)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002010 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002011 ip6_neighbor_syslog (vm, LOG_WARNING,
2012 "our AdvLinkMTU on %U doesn't agree with %U",
2013 format_vnet_sw_if_index_name,
2014 vnm, sw_if_index0,
2015 format_ip6_address,
2016 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002017 }
2018 }
2019 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002020
Ed Warnickecb9cada2015-12-08 15:45:58 -07002021 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information:
2022 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002023 icmp6_neighbor_discovery_prefix_information_option_t
2024 * h =
2025 (icmp6_neighbor_discovery_prefix_information_option_t
2026 *) (o0);
2027
Ed Warnickecb9cada2015-12-08 15:45:58 -07002028 /* validate advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002029 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002030 u32 preferred, valid;
2031
Dave Barachd7cb1b52016-12-09 09:52:16 -05002032 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002033 break;
2034
Dave Barachd7cb1b52016-12-09 09:52:16 -05002035 preferred =
2036 clib_net_to_host_u32 (h->preferred_time);
2037 valid = clib_net_to_host_u32 (h->valid_time);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002038
2039 /* look for matching prefix - if we our advertising it, it better be consistant */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002040 /* *INDENT-OFF* */
2041 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
2042 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002043
Dave Barachd7cb1b52016-12-09 09:52:16 -05002044 ip6_address_t mask;
2045 ip6_address_mask_from_width(&mask, pr_info->prefix_len);
2046
2047 if(pr_info->enabled &&
2048 (pr_info->prefix_len == h->dst_address_length) &&
2049 ip6_address_is_equal_masked (&pr_info->prefix, &h->dst_address, &mask))
2050 {
2051 /* found it */
2052 if(!pr_info->decrement_lifetime_flag &&
2053 valid != pr_info->adv_valid_lifetime_in_secs)
2054 {
2055 ip6_neighbor_syslog(vm, LOG_WARNING,
2056 "our ADV validlifetime on %U for %U does not agree with %U",
2057 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2058 format_ip6_address, &h->dst_address);
2059 }
2060 if(!pr_info->decrement_lifetime_flag &&
2061 preferred != pr_info->adv_pref_lifetime_in_secs)
2062 {
2063 ip6_neighbor_syslog(vm, LOG_WARNING,
2064 "our ADV preferredlifetime on %U for %U does not agree with %U",
2065 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2066 format_ip6_address, &h->dst_address);
2067 }
2068 }
2069 break;
2070 }));
2071 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002072 break;
2073 }
2074 default:
2075 /* skip this one */
2076 break;
2077 }
2078 }
2079 }
2080 }
2081 }
2082
2083 p0->error = error_node->errors[error0];
2084
Dave Barachd7cb1b52016-12-09 09:52:16 -05002085 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002086 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002087
Ed Warnickecb9cada2015-12-08 15:45:58 -07002088 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2089 to_next, n_left_to_next,
2090 bi0, next0);
2091 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002092
Ed Warnickecb9cada2015-12-08 15:45:58 -07002093 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2094 }
2095
2096 /* Account for router advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002097 vlib_error_count (vm, error_node->node_index,
2098 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_RX,
2099 n_advertisements_rcvd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002100
2101 return frame->n_vectors;
2102}
2103
Neale Ranns87df12d2017-02-18 08:16:41 -08002104/**
2105 * @brief Add a multicast Address to the advertised MLD set
2106 */
2107static void
2108ip6_neighbor_add_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2109{
2110 ip6_mldp_group_t *mcast_group_info;
2111 uword *p;
2112
2113 /* lookup mldp info for this interface */
Neale Rannse0a35442018-02-25 10:39:02 -08002114 p = mhash_get (&radv_info->address_to_mldp_index, addr);
Neale Ranns87df12d2017-02-18 08:16:41 -08002115 mcast_group_info =
2116 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2117
2118 /* add address */
2119 if (!mcast_group_info)
2120 {
2121 /* add */
2122 u32 mi;
2123 pool_get (radv_info->mldp_group_pool, mcast_group_info);
2124
2125 mi = mcast_group_info - radv_info->mldp_group_pool;
Neale Rannse0a35442018-02-25 10:39:02 -08002126 mhash_set (&radv_info->address_to_mldp_index, addr, mi, /* old_value */
Neale Ranns87df12d2017-02-18 08:16:41 -08002127 0);
2128
2129 mcast_group_info->type = 4;
2130 mcast_group_info->mcast_source_address_pool = 0;
2131 mcast_group_info->num_sources = 0;
Neale Rannse0a35442018-02-25 10:39:02 -08002132 clib_memcpy (&mcast_group_info->mcast_address, addr,
Neale Ranns87df12d2017-02-18 08:16:41 -08002133 sizeof (ip6_address_t));
2134 }
2135}
2136
2137/**
2138 * @brief Delete a multicast Address from the advertised MLD set
2139 */
2140static void
2141ip6_neighbor_del_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2142{
2143 ip6_mldp_group_t *mcast_group_info;
2144 uword *p;
2145
2146 p = mhash_get (&radv_info->address_to_mldp_index, &addr);
2147 mcast_group_info =
2148 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2149
2150 if (mcast_group_info)
2151 {
2152 mhash_unset (&radv_info->address_to_mldp_index, &addr,
2153 /* old_value */ 0);
2154 pool_put (radv_info->mldp_group_pool, mcast_group_info);
2155 }
2156}
2157
2158/**
2159 * @brief Add a multicast Address to the advertised MLD set
2160 */
2161static void
2162ip6_neighbor_add_mld_grp (ip6_radv_t * a,
2163 ip6_multicast_address_scope_t scope,
2164 ip6_multicast_link_local_group_id_t group)
2165{
2166 ip6_address_t addr;
2167
2168 ip6_set_reserved_multicast_address (&addr, scope, group);
2169
2170 ip6_neighbor_add_mld_prefix (a, &addr);
2171}
2172
2173/**
2174 * @brief create and initialize router advertisement parameters with default
2175 * values for this intfc
2176 */
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +02002177u32
Ed Warnickecb9cada2015-12-08 15:45:58 -07002178ip6_neighbor_sw_interface_add_del (vnet_main_t * vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002179 u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002180{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002181 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2182 ip6_radv_t *a = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002183 u32 ri = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002184 vnet_sw_interface_t *sw_if0;
2185 ethernet_interface_t *eth_if0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002186
2187 /* lookup radv container - ethernet interfaces only */
2188 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002189 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002190 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2191
Dave Barachd7cb1b52016-12-09 09:52:16 -05002192 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002193 return ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002194
2195 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2196 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002197 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2198
Dave Barachd7cb1b52016-12-09 09:52:16 -05002199 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002200 {
2201 a = pool_elt_at_index (nm->if_radv_pool, ri);
2202
Dave Barachd7cb1b52016-12-09 09:52:16 -05002203 if (!is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002204 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002205 ip6_radv_prefix_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002206 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002207
Neale Ranns32e1c012016-11-22 17:07:28 +00002208 /* release the lock on the interface's mcast adj */
2209 adj_unlock (a->mcast_adj_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002210
Neale Ranns87df12d2017-02-18 08:16:41 -08002211 /* clean up prefix and MDP pools */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002212 /* *INDENT-OFF* */
Neale Ranns87df12d2017-02-18 08:16:41 -08002213 pool_flush(p, a->adv_prefixes_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002214 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002215 mhash_unset (&a->address_to_prefix_index, &p->prefix, 0);
Neale Ranns87df12d2017-02-18 08:16:41 -08002216 }));
2217 pool_flush (m, a->mldp_group_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002218 ({
Neale Ranns87df12d2017-02-18 08:16:41 -08002219 mhash_unset (&a->address_to_mldp_index, &m->mcast_address, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002220 }));
2221 /* *INDENT-ON* */
2222
Neale Ranns87df12d2017-02-18 08:16:41 -08002223 pool_free (a->mldp_group_pool);
2224 pool_free (a->adv_prefixes_pool);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002225
Neale Ranns87df12d2017-02-18 08:16:41 -08002226 mhash_free (&a->address_to_prefix_index);
2227 mhash_free (&a->address_to_mldp_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002228
2229 pool_put (nm->if_radv_pool, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002230 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ~0;
2231 ri = ~0;
2232 }
2233 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002234 else
2235 {
2236 if (is_add)
2237 {
2238 vnet_hw_interface_t *hw_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002239
Dave Barachd7cb1b52016-12-09 09:52:16 -05002240 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index);
2241
2242 pool_get (nm->if_radv_pool, a);
2243
2244 ri = a - nm->if_radv_pool;
2245 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ri;
2246
2247 /* initialize default values (most of which are zero) */
2248 memset (a, 0, sizeof (a[0]));
2249
2250 a->sw_if_index = sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002251 a->max_radv_interval = DEF_MAX_RADV_INTERVAL;
2252 a->min_radv_interval = DEF_MIN_RADV_INTERVAL;
2253 a->curr_hop_limit = DEF_CURR_HOP_LIMIT;
2254 a->adv_router_lifetime_in_sec = DEF_DEF_RTR_LIFETIME;
2255
Neale Ranns87df12d2017-02-18 08:16:41 -08002256 /* send ll address source address option */
2257 a->adv_link_layer_address = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002258
2259 a->min_delay_between_radv = MIN_DELAY_BETWEEN_RAS;
2260 a->max_delay_between_radv = MAX_DELAY_BETWEEN_RAS;
2261 a->max_rtr_default_lifetime = MAX_DEF_RTR_LIFETIME;
2262 a->seed = (u32) clib_cpu_time_now ();
2263 (void) random_u32 (&a->seed);
2264 a->randomizer = clib_cpu_time_now ();
2265 (void) random_u64 (&a->randomizer);
2266
2267 a->initial_adverts_count = MAX_INITIAL_RTR_ADVERTISEMENTS;
2268 a->initial_adverts_sent = a->initial_adverts_count - 1;
2269 a->initial_adverts_interval = MAX_INITIAL_RTR_ADVERT_INTERVAL;
2270
2271 /* deafult is to send */
2272 a->send_radv = 1;
2273
2274 /* fill in radv_info for this interface that will be needed later */
2275 a->adv_link_mtu = hw_if0->max_l3_packet_bytes[VLIB_RX];
2276
2277 clib_memcpy (a->link_layer_address, eth_if0->address, 6);
2278
2279 /* fill in default link-local address (this may be overridden) */
2280 ip6_link_local_address_from_ethernet_address
2281 (&a->link_local_address, eth_if0->address);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002282
2283 mhash_init (&a->address_to_prefix_index, sizeof (uword),
2284 sizeof (ip6_address_t));
2285 mhash_init (&a->address_to_mldp_index, sizeof (uword),
2286 sizeof (ip6_address_t));
2287
Neale Ranns32e1c012016-11-22 17:07:28 +00002288 a->mcast_adj_index = adj_mcast_add_or_lock (FIB_PROTOCOL_IP6,
2289 VNET_LINK_IP6,
2290 sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002291
2292 /* add multicast groups we will always be reporting */
Neale Ranns87df12d2017-02-18 08:16:41 -08002293 ip6_neighbor_add_mld_grp (a,
2294 IP6_MULTICAST_SCOPE_link_local,
2295 IP6_MULTICAST_GROUP_ID_all_hosts);
2296 ip6_neighbor_add_mld_grp (a,
2297 IP6_MULTICAST_SCOPE_link_local,
2298 IP6_MULTICAST_GROUP_ID_all_routers);
2299 ip6_neighbor_add_mld_grp (a,
2300 IP6_MULTICAST_SCOPE_link_local,
2301 IP6_MULTICAST_GROUP_ID_mldv2_routers);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002302 }
2303 }
2304 return ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002305}
2306
2307/* send an mldpv2 report */
2308static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05002309ip6_neighbor_send_mldpv2_report (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002310{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002311 vnet_main_t *vnm = vnet_get_main ();
2312 vlib_main_t *vm = vnm->vlib_main;
2313 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2314 vnet_sw_interface_t *sw_if0;
2315 ethernet_interface_t *eth_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002316 u32 ri;
2317 int bogus_length;
2318
Dave Barachd7cb1b52016-12-09 09:52:16 -05002319 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002320 u16 payload_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002321 vlib_buffer_t *b0;
2322 ip6_header_t *ip0;
2323 u32 *to_next;
2324 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002325 u32 bo0;
2326 u32 n_to_alloc = 1;
2327 u32 n_allocated;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002328
Ed Warnickecb9cada2015-12-08 15:45:58 -07002329 icmp6_multicast_listener_report_header_t *rh0;
2330 icmp6_multicast_listener_report_packet_t *rp0;
2331
2332 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
2333 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
2334 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2335
2336 if (!eth_if0 || !vnet_sw_interface_is_admin_up (vnm, sw_if_index))
2337 return;
2338
2339 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002340 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2341 ~0);
2342
Ed Warnickecb9cada2015-12-08 15:45:58 -07002343 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05002344
2345 if (ri == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002346 return;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002347
Ed Warnickecb9cada2015-12-08 15:45:58 -07002348 /* send report now - build a mldpv2 report packet */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002349 n_allocated = vlib_buffer_alloc_from_free_list (vm,
2350 &bo0,
2351 n_to_alloc,
2352 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
2353 if (PREDICT_FALSE (n_allocated == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002354 {
2355 clib_warning ("buffer allocation failure");
2356 return;
2357 }
2358
2359 b0 = vlib_get_buffer (vm, bo0);
2360
2361 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002362 b0->current_length = sizeof (icmp6_multicast_listener_report_packet_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002363
Dave Barachd7cb1b52016-12-09 09:52:16 -05002364 payload_length = sizeof (icmp6_multicast_listener_report_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002365
2366 b0->error = ICMP6_ERROR_NONE;
2367
2368 rp0 = vlib_buffer_get_current (b0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002369 ip0 = (ip6_header_t *) & rp0->ip;
2370 rh0 = (icmp6_multicast_listener_report_header_t *) & rp0->report_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002371
Dave Barachd7cb1b52016-12-09 09:52:16 -05002372 memset (rp0, 0x0, sizeof (icmp6_multicast_listener_report_packet_t));
2373
2374 ip0->ip_version_traffic_class_and_flow_label =
2375 clib_host_to_net_u32 (0x6 << 28);
2376
2377 ip0->protocol = IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002378 /* for DEBUG - vnet driver won't seem to emit router alerts */
2379 /* ip0->protocol = IP_PROTOCOL_ICMP6; */
2380 ip0->hop_limit = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002381
Ed Warnickecb9cada2015-12-08 15:45:58 -07002382 rh0->icmp.type = ICMP6_multicast_listener_report_v2;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002383
Ed Warnickecb9cada2015-12-08 15:45:58 -07002384 /* source address MUST be the link-local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002385 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
2386 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002387
2388 /* destination is all mldpv2 routers */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002389 ip6_set_reserved_multicast_address (&ip0->dst_address,
2390 IP6_MULTICAST_SCOPE_link_local,
2391 IP6_MULTICAST_GROUP_ID_mldv2_routers);
2392
Ed Warnickecb9cada2015-12-08 15:45:58 -07002393 /* add reports here */
2394 ip6_mldp_group_t *m;
2395 int num_addr_records = 0;
2396 icmp6_multicast_address_record_t rr;
2397
2398 /* fill in the hop-by-hop extension header (router alert) info */
2399 rh0->ext_hdr.next_hdr = IP_PROTOCOL_ICMP6;
2400 rh0->ext_hdr.n_data_u64s = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002401
Ed Warnickecb9cada2015-12-08 15:45:58 -07002402 rh0->alert.type = IP6_MLDP_ALERT_TYPE;
2403 rh0->alert.len = 2;
2404 rh0->alert.value = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002405
Ed Warnickecb9cada2015-12-08 15:45:58 -07002406 rh0->pad.type = 1;
2407 rh0->pad.len = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002408
Ed Warnickecb9cada2015-12-08 15:45:58 -07002409 rh0->icmp.checksum = 0;
2410
Dave Barachd7cb1b52016-12-09 09:52:16 -05002411 /* *INDENT-OFF* */
2412 pool_foreach (m, radv_info->mldp_group_pool,
2413 ({
2414 rr.type = m->type;
2415 rr.aux_data_len_u32s = 0;
2416 rr.num_sources = clib_host_to_net_u16 (m->num_sources);
2417 clib_memcpy(&rr.mcast_addr, &m->mcast_address, sizeof(ip6_address_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002418
Dave Barachd7cb1b52016-12-09 09:52:16 -05002419 num_addr_records++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002420
Dave Barachd7cb1b52016-12-09 09:52:16 -05002421 vlib_buffer_add_data
Damjan Marion072401e2017-07-13 18:53:27 +02002422 (vm, vlib_buffer_get_free_list_index (b0), bo0,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002423 (void *)&rr, sizeof(icmp6_multicast_address_record_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002424
Dave Barachd7cb1b52016-12-09 09:52:16 -05002425 payload_length += sizeof( icmp6_multicast_address_record_t);
2426 }));
2427 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002428
2429 rh0->rsvd = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002430 rh0->num_addr_records = clib_host_to_net_u16 (num_addr_records);
2431
Ed Warnickecb9cada2015-12-08 15:45:58 -07002432 /* update lengths */
2433 ip0->payload_length = clib_host_to_net_u16 (payload_length);
2434
Dave Barachd7cb1b52016-12-09 09:52:16 -05002435 rh0->icmp.checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0,
2436 &bogus_length);
2437 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002438
Dave Barachd7cb1b52016-12-09 09:52:16 -05002439 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002440 * OK to override w/ no regard for actual FIB, because
Neale Rannsf06aea52016-11-29 06:51:37 -08002441 * ip6-rewrite only looks at the adjacency.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002442 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002443 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002444 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002445
Neale Ranns32e1c012016-11-22 17:07:28 +00002446 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = radv_info->mcast_adj_index;
Damjan Marion213b5aa2017-07-13 21:19:27 +02002447 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002448
Neale Ranns32e1c012016-11-22 17:07:28 +00002449 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "ip6-rewrite-mcast");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002450
Ed Warnickecb9cada2015-12-08 15:45:58 -07002451 f = vlib_get_frame_to_node (vm, node->index);
2452 to_next = vlib_frame_vector_args (f);
2453 to_next[0] = bo0;
2454 f->n_vectors = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002455
Ed Warnickecb9cada2015-12-08 15:45:58 -07002456 vlib_put_frame_to_node (vm, node->index, f);
2457 return;
2458}
2459
Dave Barachd7cb1b52016-12-09 09:52:16 -05002460/* *INDENT-OFF* */
2461VLIB_REGISTER_NODE (ip6_icmp_router_solicitation_node,static) =
2462{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002463 .function = icmp6_router_solicitation,
2464 .name = "icmp6-router-solicitation",
2465
2466 .vector_size = sizeof (u32),
2467
2468 .format_trace = format_icmp6_input_trace,
2469
2470 .n_next_nodes = ICMP6_ROUTER_SOLICITATION_N_NEXT,
2471 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002472 [ICMP6_ROUTER_SOLICITATION_NEXT_DROP] = "ip6-drop",
Neale Ranns32e1c012016-11-22 17:07:28 +00002473 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW] = "ip6-rewrite-mcast",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002474 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX] = "interface-output",
2475 },
2476};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002477/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002478
2479/* send a RA or update the timer info etc.. */
2480static uword
2481ip6_neighbor_process_timer_event (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002482 vlib_node_runtime_t * node,
2483 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002484{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002485 vnet_main_t *vnm = vnet_get_main ();
2486 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2487 ip6_radv_t *radv_info;
2488 vlib_frame_t *f = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002489 u32 n_this_frame = 0;
Benoît Ganned5304452016-04-08 22:25:05 -07002490 u32 n_left_to_next = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002491 u32 *to_next = 0;
2492 u32 bo0;
2493 icmp6_router_solicitation_header_t *h0;
2494 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002495 f64 now = vlib_time_now (vm);
2496
2497 /* Interface ip6 radv info list */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002498 /* *INDENT-OFF* */
2499 pool_foreach (radv_info, nm->if_radv_pool,
2500 ({
2501 if( !vnet_sw_interface_is_admin_up (vnm, radv_info->sw_if_index))
2502 {
2503 radv_info->initial_adverts_sent = radv_info->initial_adverts_count-1;
2504 radv_info->next_multicast_time = now;
2505 radv_info->last_multicast_time = now;
2506 radv_info->last_radv_time = 0;
2507 radv_info->all_routers_mcast = 0;
2508 continue;
2509 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002510
Dave Barachd7cb1b52016-12-09 09:52:16 -05002511 /* Make sure that we've joined the all-routers multicast group */
2512 if(!radv_info->all_routers_mcast)
2513 {
2514 /* send MDLP_REPORT_EVENT message */
2515 ip6_neighbor_send_mldpv2_report(radv_info->sw_if_index);
2516 radv_info->all_routers_mcast = 1;
2517 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002518
Dave Barachd7cb1b52016-12-09 09:52:16 -05002519 /* is it time to send a multicast RA on this interface? */
2520 if(radv_info->send_radv && (now >= radv_info->next_multicast_time))
2521 {
2522 u32 n_to_alloc = 1;
2523 u32 n_allocated;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002524
Dave Barachd7cb1b52016-12-09 09:52:16 -05002525 f64 rfn = (radv_info->max_radv_interval - radv_info->min_radv_interval) *
2526 random_f64 (&radv_info->seed) + radv_info->min_radv_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002527
Dave Barachd7cb1b52016-12-09 09:52:16 -05002528 /* multicast send - compute next multicast send time */
2529 if( radv_info->initial_adverts_sent > 0)
2530 {
2531 radv_info->initial_adverts_sent--;
2532 if(rfn > radv_info-> initial_adverts_interval)
2533 rfn = radv_info-> initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002534
Dave Barachd7cb1b52016-12-09 09:52:16 -05002535 /* check to see if we are ceasing to send */
2536 if( radv_info->initial_adverts_sent == 0)
2537 if(radv_info->cease_radv)
2538 radv_info->send_radv = 0;
2539 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002540
Dave Barachd7cb1b52016-12-09 09:52:16 -05002541 radv_info->next_multicast_time = rfn + now;
2542 radv_info->last_multicast_time = now;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002543
Dave Barachd7cb1b52016-12-09 09:52:16 -05002544 /* send advert now - build a "solicted" router advert with unspecified source address */
2545 n_allocated = vlib_buffer_alloc_from_free_list
2546 (vm, &bo0, n_to_alloc, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002547
Dave Barachd7cb1b52016-12-09 09:52:16 -05002548 if (PREDICT_FALSE(n_allocated == 0))
2549 {
2550 clib_warning ("buffer allocation failure");
2551 continue;
2552 }
2553 b0 = vlib_get_buffer (vm, bo0);
2554 b0->current_length = sizeof( icmp6_router_solicitation_header_t);
2555 b0->error = ICMP6_ERROR_NONE;
2556 vnet_buffer (b0)->sw_if_index[VLIB_RX] = radv_info->sw_if_index;
2557
2558 h0 = vlib_buffer_get_current (b0);
2559
2560 memset (h0, 0, sizeof (icmp6_router_solicitation_header_t));
2561
2562 h0->ip.ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (0x6 << 28);
2563 h0->ip.payload_length = clib_host_to_net_u16 (sizeof (icmp6_router_solicitation_header_t)
2564 - STRUCT_OFFSET_OF (icmp6_router_solicitation_header_t, neighbor));
2565 h0->ip.protocol = IP_PROTOCOL_ICMP6;
2566 h0->ip.hop_limit = 255;
2567
2568 /* set src/dst address as "unspecified" this marks this packet as internally generated rather than recieved */
2569 h0->ip.src_address.as_u64[0] = 0;
2570 h0->ip.src_address.as_u64[1] = 0;
2571
2572 h0->ip.dst_address.as_u64[0] = 0;
2573 h0->ip.dst_address.as_u64[1] = 0;
2574
2575 h0->neighbor.icmp.type = ICMP6_router_solicitation;
2576
2577 if (PREDICT_FALSE(f == 0))
2578 {
2579 f = vlib_get_frame_to_node (vm, ip6_icmp_router_solicitation_node.index);
2580 to_next = vlib_frame_vector_args (f);
2581 n_left_to_next = VLIB_FRAME_SIZE;
2582 n_this_frame = 0;
2583 }
2584
2585 n_this_frame++;
2586 n_left_to_next--;
2587 to_next[0] = bo0;
2588 to_next += 1;
2589
2590 if (PREDICT_FALSE(n_left_to_next == 0))
2591 {
2592 f->n_vectors = n_this_frame;
2593 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
2594 f = 0;
2595 }
2596 }
2597 }));
2598 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002599
2600 if (f)
2601 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002602 ASSERT (n_this_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002603 f->n_vectors = n_this_frame;
2604 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
2605 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002606 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002607}
2608
2609static uword
2610ip6_icmp_neighbor_discovery_event_process (vlib_main_t * vm,
2611 vlib_node_runtime_t * node,
2612 vlib_frame_t * frame)
2613{
2614 uword event_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002615 ip6_icmp_neighbor_discovery_event_data_t *event_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002616
2617 /* init code here */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002618
Ed Warnickecb9cada2015-12-08 15:45:58 -07002619 while (1)
2620 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002621 vlib_process_wait_for_event_or_clock (vm, 1. /* seconds */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002622
Dave Barachd7cb1b52016-12-09 09:52:16 -05002623 event_data = vlib_process_get_event_data (vm, &event_type);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002624
Dave Barachd7cb1b52016-12-09 09:52:16 -05002625 if (!event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002626 {
2627 /* No events found: timer expired. */
2628 /* process interface list and send RAs as appropriate, update timer info */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002629 ip6_neighbor_process_timer_event (vm, node, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002630 }
2631 else
2632 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002633 switch (event_type)
2634 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002635
Dave Barachd7cb1b52016-12-09 09:52:16 -05002636 case ICMP6_ND_EVENT_INIT:
2637 break;
2638
2639 case ~0:
2640 break;
2641
2642 default:
2643 ASSERT (0);
2644 }
2645
Ed Warnickecb9cada2015-12-08 15:45:58 -07002646 if (event_data)
2647 _vec_len (event_data) = 0;
2648 }
2649 }
2650 return frame->n_vectors;
2651}
2652
Dave Barachd7cb1b52016-12-09 09:52:16 -05002653/* *INDENT-OFF* */
2654VLIB_REGISTER_NODE (ip6_icmp_router_advertisement_node,static) =
2655{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002656 .function = icmp6_router_advertisement,
2657 .name = "icmp6-router-advertisement",
2658
2659 .vector_size = sizeof (u32),
2660
2661 .format_trace = format_icmp6_input_trace,
2662
2663 .n_next_nodes = 1,
2664 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002665 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002666 },
2667};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002668/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002669
2670vlib_node_registration_t ip6_icmp_neighbor_discovery_event_node = {
2671
2672 .function = ip6_icmp_neighbor_discovery_event_process,
2673 .name = "ip6-icmp-neighbor-discovery-event-process",
2674 .type = VLIB_NODE_TYPE_PROCESS,
2675};
2676
2677static uword
2678icmp6_neighbor_solicitation (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002679 vlib_node_runtime_t * node, vlib_frame_t * frame)
2680{
2681 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
2682 /* is_solicitation */
2683 1);
2684}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002685
2686static uword
2687icmp6_neighbor_advertisement (vlib_main_t * vm,
2688 vlib_node_runtime_t * node,
2689 vlib_frame_t * frame)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002690{
2691 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
2692 /* is_solicitation */
2693 0);
2694}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002695
Dave Barachd7cb1b52016-12-09 09:52:16 -05002696/* *INDENT-OFF* */
2697VLIB_REGISTER_NODE (ip6_icmp_neighbor_solicitation_node,static) =
2698{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002699 .function = icmp6_neighbor_solicitation,
2700 .name = "icmp6-neighbor-solicitation",
2701
2702 .vector_size = sizeof (u32),
2703
2704 .format_trace = format_icmp6_input_trace,
2705
2706 .n_next_nodes = ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
2707 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002708 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002709 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY] = "interface-output",
2710 },
2711};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002712/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002713
Dave Barachd7cb1b52016-12-09 09:52:16 -05002714/* *INDENT-OFF* */
2715VLIB_REGISTER_NODE (ip6_icmp_neighbor_advertisement_node,static) =
2716{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002717 .function = icmp6_neighbor_advertisement,
2718 .name = "icmp6-neighbor-advertisement",
2719
2720 .vector_size = sizeof (u32),
2721
2722 .format_trace = format_icmp6_input_trace,
2723
2724 .n_next_nodes = 1,
2725 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002726 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002727 },
2728};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002729/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002730
Dave Barachd7cb1b52016-12-09 09:52:16 -05002731/* API support functions */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002732int
Dave Barachd7cb1b52016-12-09 09:52:16 -05002733ip6_neighbor_ra_config (vlib_main_t * vm, u32 sw_if_index,
2734 u8 suppress, u8 managed, u8 other,
2735 u8 ll_option, u8 send_unicast, u8 cease,
2736 u8 use_lifetime, u32 lifetime,
2737 u32 initial_count, u32 initial_interval,
2738 u32 max_interval, u32 min_interval, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002739{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002740 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2741 int error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002742 u32 ri;
2743
2744 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002745 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2746 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002747 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05002748 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002749
Dave Barachd7cb1b52016-12-09 09:52:16 -05002750 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002751 {
2752
Dave Barachd7cb1b52016-12-09 09:52:16 -05002753 ip6_radv_t *radv_info;
2754 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002755
Dave Barachd7cb1b52016-12-09 09:52:16 -05002756 if ((max_interval != 0) && (min_interval == 0))
2757 min_interval = .75 * max_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002758
Dave Barachd7cb1b52016-12-09 09:52:16 -05002759 max_interval =
2760 (max_interval !=
2761 0) ? ((is_no) ? DEF_MAX_RADV_INTERVAL : max_interval) :
2762 radv_info->max_radv_interval;
2763 min_interval =
2764 (min_interval !=
2765 0) ? ((is_no) ? DEF_MIN_RADV_INTERVAL : min_interval) :
2766 radv_info->min_radv_interval;
2767 lifetime =
2768 (use_lifetime !=
2769 0) ? ((is_no) ? DEF_DEF_RTR_LIFETIME : lifetime) :
2770 radv_info->adv_router_lifetime_in_sec;
2771
2772 if (lifetime)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002773 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002774 if (lifetime > MAX_DEF_RTR_LIFETIME)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002775 lifetime = MAX_DEF_RTR_LIFETIME;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002776
2777 if (lifetime <= max_interval)
2778 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002779 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002780
2781 if (min_interval != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002782 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002783 if ((min_interval > .75 * max_interval) || (min_interval < 3))
2784 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002785 }
2786
Dave Barachd7cb1b52016-12-09 09:52:16 -05002787 if ((initial_count > MAX_INITIAL_RTR_ADVERTISEMENTS) ||
2788 (initial_interval > MAX_INITIAL_RTR_ADVERT_INTERVAL))
2789 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002790
Dave Barachd7cb1b52016-12-09 09:52:16 -05002791 /*
2792 if "flag" is set and is_no is true then restore default value else set value corresponding to "flag"
2793 if "flag" is clear don't change corresponding value
2794 */
2795 radv_info->send_radv =
2796 (suppress != 0) ? ((is_no != 0) ? 1 : 0) : radv_info->send_radv;
2797 radv_info->adv_managed_flag =
2798 (managed != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_managed_flag;
2799 radv_info->adv_other_flag =
2800 (other != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_other_flag;
2801 radv_info->adv_link_layer_address =
2802 (ll_option !=
2803 0) ? ((is_no) ? 1 : 0) : radv_info->adv_link_layer_address;
2804 radv_info->send_unicast =
2805 (send_unicast != 0) ? ((is_no) ? 0 : 1) : radv_info->send_unicast;
2806 radv_info->cease_radv =
2807 (cease != 0) ? ((is_no) ? 0 : 1) : radv_info->cease_radv;
2808
2809 radv_info->min_radv_interval = min_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002810 radv_info->max_radv_interval = max_interval;
2811 radv_info->adv_router_lifetime_in_sec = lifetime;
2812
Dave Barachd7cb1b52016-12-09 09:52:16 -05002813 radv_info->initial_adverts_count =
2814 (initial_count !=
2815 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERTISEMENTS : initial_count) :
2816 radv_info->initial_adverts_count;
2817 radv_info->initial_adverts_interval =
2818 (initial_interval !=
2819 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERT_INTERVAL : initial_interval) :
2820 radv_info->initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002821
2822 /* restart */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002823 if ((cease != 0) && (is_no))
2824 radv_info->send_radv = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002825
Dave Barachd7cb1b52016-12-09 09:52:16 -05002826 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
2827 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002828 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002829 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002830 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002831 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002832}
2833
2834int
Dave Barachd7cb1b52016-12-09 09:52:16 -05002835ip6_neighbor_ra_prefix (vlib_main_t * vm, u32 sw_if_index,
2836 ip6_address_t * prefix_addr, u8 prefix_len,
2837 u8 use_default, u32 val_lifetime, u32 pref_lifetime,
2838 u8 no_advertise, u8 off_link, u8 no_autoconfig,
2839 u8 no_onlink, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002840{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002841 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002842 int error;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002843
Ed Warnickecb9cada2015-12-08 15:45:58 -07002844 u32 ri;
2845
2846 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002847 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2848 ~0);
2849
Ed Warnickecb9cada2015-12-08 15:45:58 -07002850 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2851
2852 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002853
2854 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002855 {
2856 f64 now = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002857 ip6_radv_t *radv_info;
2858 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002859
2860 /* prefix info add, delete or update */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002861 ip6_radv_prefix_t *prefix;
2862
Ed Warnickecb9cada2015-12-08 15:45:58 -07002863 /* lookup prefix info for this address on this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002864 uword *p = mhash_get (&radv_info->address_to_prefix_index, prefix_addr);
2865
Ed Warnickecb9cada2015-12-08 15:45:58 -07002866 prefix = p ? pool_elt_at_index (radv_info->adv_prefixes_pool, p[0]) : 0;
2867
Dave Barachd7cb1b52016-12-09 09:52:16 -05002868 if (is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002869 {
2870 /* delete */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002871 if (!prefix)
2872 return VNET_API_ERROR_INVALID_VALUE; /* invalid prefix */
2873
2874 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002875 return VNET_API_ERROR_INVALID_VALUE_2;
2876
Dave Barachd7cb1b52016-12-09 09:52:16 -05002877 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002878 /* do specific delete processing here before returning */
2879 /* try to remove from routing table */
2880
Dave Barachd7cb1b52016-12-09 09:52:16 -05002881 mhash_unset (&radv_info->address_to_prefix_index, prefix_addr,
2882 /* old_value */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002883 pool_put (radv_info->adv_prefixes_pool, prefix);
2884
Dave Barachd7cb1b52016-12-09 09:52:16 -05002885 radv_info->initial_adverts_sent =
2886 radv_info->initial_adverts_count - 1;
2887 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002888 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002889 radv_info->last_radv_time = 0;
2890 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002891 }
2892
2893 /* adding or changing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002894 if (!prefix)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002895 {
2896 /* add */
2897 u32 pi;
2898 pool_get (radv_info->adv_prefixes_pool, prefix);
2899 pi = prefix - radv_info->adv_prefixes_pool;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002900 mhash_set (&radv_info->address_to_prefix_index, prefix_addr, pi,
2901 /* old_value */ 0);
2902
2903 memset (prefix, 0x0, sizeof (ip6_radv_prefix_t));
2904
Ed Warnickecb9cada2015-12-08 15:45:58 -07002905 prefix->prefix_len = prefix_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002906 clib_memcpy (&prefix->prefix, prefix_addr, sizeof (ip6_address_t));
2907
Ed Warnickecb9cada2015-12-08 15:45:58 -07002908 /* initialize default values */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002909 prefix->adv_on_link_flag = 1; /* L bit set */
2910 prefix->adv_autonomous_flag = 1; /* A bit set */
2911 prefix->adv_valid_lifetime_in_secs = DEF_ADV_VALID_LIFETIME;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002912 prefix->adv_pref_lifetime_in_secs = DEF_ADV_PREF_LIFETIME;
2913 prefix->enabled = 1;
2914 prefix->decrement_lifetime_flag = 1;
2915 prefix->deprecated_prefix_flag = 1;
2916
Dave Barachd7cb1b52016-12-09 09:52:16 -05002917 if (off_link == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002918 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002919 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002920 /* insert prefix into routing table as a connected prefix */
2921 }
2922
Dave Barachd7cb1b52016-12-09 09:52:16 -05002923 if (use_default)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002924 goto restart;
2925 }
2926 else
2927 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002928
2929 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002930 return VNET_API_ERROR_INVALID_VALUE_2;
2931
Dave Barachd7cb1b52016-12-09 09:52:16 -05002932 if (off_link != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002933 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002934 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002935 /* remove from routing table if already there */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002936 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002937 }
2938
Dave Barachd7cb1b52016-12-09 09:52:16 -05002939 if ((val_lifetime == ~0) || (pref_lifetime == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002940 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002941 prefix->adv_valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002942 prefix->adv_pref_lifetime_in_secs = ~0;
2943 prefix->decrement_lifetime_flag = 0;
2944 }
2945 else
2946 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002947 prefix->adv_valid_lifetime_in_secs = val_lifetime;;
2948 prefix->adv_pref_lifetime_in_secs = pref_lifetime;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002949 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002950
Ed Warnickecb9cada2015-12-08 15:45:58 -07002951 /* copy remaining */
2952 prefix->enabled = !(no_advertise != 0);
2953 prefix->adv_on_link_flag = !((off_link != 0) || (no_onlink != 0));
2954 prefix->adv_autonomous_flag = !(no_autoconfig != 0);
2955
Dave Barachd7cb1b52016-12-09 09:52:16 -05002956 restart:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002957 /* restart */
2958 /* fill in the expiration times */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002959 prefix->valid_lifetime_expires =
2960 now + prefix->adv_valid_lifetime_in_secs;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002961 prefix->pref_lifetime_expires = now + prefix->adv_pref_lifetime_in_secs;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002962
2963 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
2964 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002965 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002966 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002967 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002968 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002969}
2970
2971clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05002972ip6_neighbor_cmd (vlib_main_t * vm, unformat_input_t * main_input,
2973 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002974{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002975 vnet_main_t *vnm = vnet_get_main ();
2976 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2977 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002978 u8 is_no = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002979 u8 suppress = 0, managed = 0, other = 0;
2980 u8 suppress_ll_option = 0, send_unicast = 0, cease = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002981 u8 use_lifetime = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002982 u32 sw_if_index, ra_lifetime = 0, ra_initial_count =
2983 0, ra_initial_interval = 0;
2984 u32 ra_max_interval = 0, ra_min_interval = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002985
Dave Barachd7cb1b52016-12-09 09:52:16 -05002986 unformat_input_t _line_input, *line_input = &_line_input;
2987 vnet_sw_interface_t *sw_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002988
2989 int add_radv_info = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002990 __attribute__ ((unused)) ip6_radv_t *radv_info = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002991 ip6_address_t ip6_addr;
2992 u32 addr_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002993
Ed Warnickecb9cada2015-12-08 15:45:58 -07002994
2995 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002996 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002997 return 0;
2998
2999 /* get basic radv info for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003000 if (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003001 {
3002
Dave Barachd7cb1b52016-12-09 09:52:16 -05003003 if (unformat_user (line_input,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003004 unformat_vnet_sw_interface, vnm, &sw_if_index))
3005 {
3006 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003007 ethernet_interface_t *eth_if0 = 0;
3008
Ed Warnickecb9cada2015-12-08 15:45:58 -07003009 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003010 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
3011 eth_if0 =
3012 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
3013
3014 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003015 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003016 error =
3017 clib_error_return (0, "Interface must be of ethernet type");
Ed Warnickecb9cada2015-12-08 15:45:58 -07003018 goto done;
3019 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003020
Ed Warnickecb9cada2015-12-08 15:45:58 -07003021 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003022 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3023 sw_if_index, ~0);
3024
Ed Warnickecb9cada2015-12-08 15:45:58 -07003025 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003026
3027 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003028 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003029 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003030 }
3031 else
3032 {
3033 error = clib_error_return (0, "unknown interface %U'",
3034 format_unformat_error, line_input);
3035 goto done;
3036 }
3037 }
3038 else
3039 {
3040 error = clib_error_return (0, "invalid interface name %U'",
3041 format_unformat_error, line_input);
3042 goto done;
3043 }
3044 }
3045
3046 /* get the rest of the command */
3047 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3048 {
3049 if (unformat (line_input, "no"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05003050 is_no = 1;
3051 else if (unformat (line_input, "prefix %U/%d",
3052 unformat_ip6_address, &ip6_addr, &addr_len))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003053 {
3054 add_radv_info = 0;
3055 break;
3056 }
3057 else if (unformat (line_input, "ra-managed-config-flag"))
3058 {
3059 managed = 1;
3060 break;
3061 }
3062 else if (unformat (line_input, "ra-other-config-flag"))
3063 {
3064 other = 1;
3065 break;
3066 }
Chris Luke33879c92016-06-28 19:54:21 -04003067 else if (unformat (line_input, "ra-suppress") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003068 unformat (line_input, "ra-surpress"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003069 {
Chris Luke33879c92016-06-28 19:54:21 -04003070 suppress = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003071 break;
3072 }
Chris Luke33879c92016-06-28 19:54:21 -04003073 else if (unformat (line_input, "ra-suppress-link-layer") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003074 unformat (line_input, "ra-surpress-link-layer"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003075 {
Chris Luke33879c92016-06-28 19:54:21 -04003076 suppress_ll_option = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003077 break;
3078 }
3079 else if (unformat (line_input, "ra-send-unicast"))
3080 {
3081 send_unicast = 1;
3082 break;
3083 }
3084 else if (unformat (line_input, "ra-lifetime"))
3085 {
3086 if (!unformat (line_input, "%d", &ra_lifetime))
Billy McFalla9a20e72017-02-15 11:39:12 -05003087 {
3088 error = unformat_parse_error (line_input);
3089 goto done;
3090 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003091 use_lifetime = 1;
3092 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003093 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003094 else if (unformat (line_input, "ra-initial"))
3095 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003096 if (!unformat
3097 (line_input, "%d %d", &ra_initial_count, &ra_initial_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003098 {
3099 error = unformat_parse_error (line_input);
3100 goto done;
3101 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003102 break;
3103 }
3104 else if (unformat (line_input, "ra-interval"))
3105 {
3106 if (!unformat (line_input, "%d", &ra_max_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003107 {
3108 error = unformat_parse_error (line_input);
3109 goto done;
3110 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003111
3112 if (!unformat (line_input, "%d", &ra_min_interval))
3113 ra_min_interval = 0;
3114 break;
3115 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003116 else if (unformat (line_input, "ra-cease"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003117 {
3118 cease = 1;
3119 break;
3120 }
3121 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003122 {
3123 error = unformat_parse_error (line_input);
3124 goto done;
3125 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003126 }
3127
Dave Barachd7cb1b52016-12-09 09:52:16 -05003128 if (add_radv_info)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003129 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003130 ip6_neighbor_ra_config (vm, sw_if_index,
3131 suppress, managed, other,
3132 suppress_ll_option, send_unicast, cease,
3133 use_lifetime, ra_lifetime,
3134 ra_initial_count, ra_initial_interval,
3135 ra_max_interval, ra_min_interval, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003136 }
3137 else
3138 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003139 u32 valid_lifetime_in_secs = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003140 u32 pref_lifetime_in_secs = 0;
3141 u8 use_prefix_default_values = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003142 u8 no_advertise = 0;
3143 u8 off_link = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003144 u8 no_autoconfig = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003145 u8 no_onlink = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003146
3147 /* get the rest of the command */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003148 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003149 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003150 if (unformat (line_input, "default"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003151 {
3152 use_prefix_default_values = 1;
3153 break;
3154 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003155 else if (unformat (line_input, "infinite"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003156 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003157 valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003158 pref_lifetime_in_secs = ~0;
3159 break;
3160 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003161 else if (unformat (line_input, "%d %d", &valid_lifetime_in_secs,
3162 &pref_lifetime_in_secs))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003163 break;
3164 else
3165 break;
3166 }
3167
3168
3169 /* get the rest of the command */
3170 while (!use_prefix_default_values &&
3171 unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3172 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003173 if (unformat (line_input, "no-advertise"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003174 no_advertise = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003175 else if (unformat (line_input, "off-link"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003176 off_link = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003177 else if (unformat (line_input, "no-autoconfig"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003178 no_autoconfig = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003179 else if (unformat (line_input, "no-onlink"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003180 no_onlink = 1;
3181 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003182 {
3183 error = unformat_parse_error (line_input);
3184 goto done;
3185 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003186 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003187
3188 ip6_neighbor_ra_prefix (vm, sw_if_index,
3189 &ip6_addr, addr_len,
3190 use_prefix_default_values,
3191 valid_lifetime_in_secs,
3192 pref_lifetime_in_secs,
3193 no_advertise,
3194 off_link, no_autoconfig, no_onlink, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003195 }
3196
Billy McFalla9a20e72017-02-15 11:39:12 -05003197done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003198 unformat_free (line_input);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003199
Ed Warnickecb9cada2015-12-08 15:45:58 -07003200 return error;
3201}
3202
Chris Lukebfd32fd2016-06-24 20:38:06 -04003203static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05003204ip6_print_addrs (vlib_main_t * vm, u32 * addrs)
Chris Lukebfd32fd2016-06-24 20:38:06 -04003205{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003206 ip_lookup_main_t *lm = &ip6_main.lookup_main;
Chris Lukebfd32fd2016-06-24 20:38:06 -04003207 u32 i;
3208
3209 for (i = 0; i < vec_len (addrs); i++)
3210 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003211 ip_interface_address_t *a =
3212 pool_elt_at_index (lm->if_address_pool, addrs[i]);
3213 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003214
3215 vlib_cli_output (vm, "\t\t%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05003216 format_ip6_address, address, a->address_length);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003217 }
3218}
3219
Ed Warnickecb9cada2015-12-08 15:45:58 -07003220static clib_error_t *
3221show_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003222 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003223{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003224 vnet_main_t *vnm = vnet_get_main ();
3225 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3226 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003227 u32 sw_if_index;
3228
3229 sw_if_index = ~0;
3230
Dave Barachd7cb1b52016-12-09 09:52:16 -05003231 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003232 {
3233 u32 ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003234
Dave Barachd7cb1b52016-12-09 09:52:16 -05003235 /* look up the radv_t information for this interface */
3236 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3237 sw_if_index, ~0);
3238
3239 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3240
3241 if (ri != ~0)
3242 {
3243 ip_lookup_main_t *lm = &ip6_main.lookup_main;
3244 ip6_radv_t *radv_info;
3245 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3246
3247 vlib_cli_output (vm, "%U is admin %s\n",
3248 format_vnet_sw_interface_name, vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003249 vnet_get_sw_interface (vnm, sw_if_index),
Dave Barachd7cb1b52016-12-09 09:52:16 -05003250 (vnet_sw_interface_is_admin_up (vnm, sw_if_index) ?
3251 "up" : "down"));
3252
Chris Lukebfd32fd2016-06-24 20:38:06 -04003253 u32 ai;
3254 u32 *link_scope = 0, *global_scope = 0;
3255 u32 *local_scope = 0, *unknown_scope = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003256 ip_interface_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003257
Dave Barachd7cb1b52016-12-09 09:52:16 -05003258 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
3259 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003260 ai = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
3261
Dave Barachd7cb1b52016-12-09 09:52:16 -05003262 while (ai != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003263 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003264 a = pool_elt_at_index (lm->if_address_pool, ai);
3265 ip6_address_t *address =
3266 ip_interface_address_get_address (lm, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003267
Chris Lukebfd32fd2016-06-24 20:38:06 -04003268 if (ip6_address_is_link_local_unicast (address))
3269 vec_add1 (link_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003270 else if (ip6_address_is_global_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003271 vec_add1 (global_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003272 else if (ip6_address_is_local_unicast (address))
Chris Lukebfd32fd2016-06-24 20:38:06 -04003273 vec_add1 (local_scope, ai);
3274 else
3275 vec_add1 (unknown_scope, ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003276
3277 ai = a->next_this_sw_interface;
3278 }
3279
Dave Barachd7cb1b52016-12-09 09:52:16 -05003280 if (vec_len (link_scope))
3281 {
3282 vlib_cli_output (vm, "\tLink-local address(es):\n");
3283 ip6_print_addrs (vm, link_scope);
3284 vec_free (link_scope);
3285 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003286
Dave Barachd7cb1b52016-12-09 09:52:16 -05003287 if (vec_len (local_scope))
3288 {
3289 vlib_cli_output (vm, "\tLocal unicast address(es):\n");
3290 ip6_print_addrs (vm, local_scope);
3291 vec_free (local_scope);
3292 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003293
Dave Barachd7cb1b52016-12-09 09:52:16 -05003294 if (vec_len (global_scope))
3295 {
3296 vlib_cli_output (vm, "\tGlobal unicast address(es):\n");
3297 ip6_print_addrs (vm, global_scope);
3298 vec_free (global_scope);
3299 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003300
Dave Barachd7cb1b52016-12-09 09:52:16 -05003301 if (vec_len (unknown_scope))
3302 {
3303 vlib_cli_output (vm, "\tOther-scope address(es):\n");
3304 ip6_print_addrs (vm, unknown_scope);
3305 vec_free (unknown_scope);
3306 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003307
Neale Ranns53da2212018-02-24 02:11:19 -08003308 vlib_cli_output (vm, "\tLink-local address(es):\n");
3309 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3310 &radv_info->link_local_address);
3311
Ed Warnickecb9cada2015-12-08 15:45:58 -07003312 vlib_cli_output (vm, "\tJoined group address(es):\n");
3313 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003314 /* *INDENT-OFF* */
3315 pool_foreach (m, radv_info->mldp_group_pool,
3316 ({
3317 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3318 &m->mcast_address);
3319 }));
3320 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003321
3322 vlib_cli_output (vm, "\tAdvertised Prefixes:\n");
Dave Barachd7cb1b52016-12-09 09:52:16 -05003323 ip6_radv_prefix_t *p;
3324 /* *INDENT-OFF* */
3325 pool_foreach (p, radv_info->adv_prefixes_pool,
3326 ({
3327 vlib_cli_output (vm, "\t\tprefix %U, length %d\n",
3328 format_ip6_address, &p->prefix, p->prefix_len);
3329 }));
3330 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003331
Dave Barachd7cb1b52016-12-09 09:52:16 -05003332 vlib_cli_output (vm, "\tMTU is %d\n", radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003333 vlib_cli_output (vm, "\tICMP error messages are unlimited\n");
3334 vlib_cli_output (vm, "\tICMP redirects are disabled\n");
3335 vlib_cli_output (vm, "\tICMP unreachables are not sent\n");
3336 vlib_cli_output (vm, "\tND DAD is disabled\n");
3337 //vlib_cli_output (vm, "\tND reachable time is %d milliseconds\n",);
3338 vlib_cli_output (vm, "\tND advertised reachable time is %d\n",
3339 radv_info->adv_neighbor_reachable_time_in_msec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003340 vlib_cli_output (vm,
3341 "\tND advertised retransmit interval is %d (msec)\n",
3342 radv_info->
3343 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003344
3345 u32 ra_interval = radv_info->max_radv_interval;
3346 u32 ra_interval_min = radv_info->min_radv_interval;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003347 vlib_cli_output (vm,
3348 "\tND router advertisements are sent every %d seconds (min interval is %d)\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003349 ra_interval, ra_interval_min);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003350 vlib_cli_output (vm,
3351 "\tND router advertisements live for %d seconds\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003352 radv_info->adv_router_lifetime_in_sec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003353 vlib_cli_output (vm,
3354 "\tHosts %s stateless autoconfig for addresses\n",
3355 (radv_info->adv_managed_flag) ? "use" :
3356 " don't use");
3357 vlib_cli_output (vm, "\tND router advertisements sent %d\n",
3358 radv_info->n_advertisements_sent);
3359 vlib_cli_output (vm, "\tND router solicitations received %d\n",
3360 radv_info->n_solicitations_rcvd);
3361 vlib_cli_output (vm, "\tND router solicitations dropped %d\n",
3362 radv_info->n_solicitations_dropped);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003363 }
3364 else
3365 {
Chris Lukebfd32fd2016-06-24 20:38:06 -04003366 error = clib_error_return (0, "IPv6 not enabled on interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003367 format_unformat_error, input);
3368
3369 }
3370 }
3371 return error;
3372}
3373
Billy McFall0683c9c2016-10-13 08:27:31 -04003374/*?
3375 * This command is used to display various IPv6 attributes on a given
3376 * interface.
3377 *
3378 * @cliexpar
3379 * Example of how to display IPv6 settings:
3380 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
3381 * GigabitEthernet2/0/0 is admin up
3382 * Link-local address(es):
3383 * fe80::ab8/64
3384 * Joined group address(es):
3385 * ff02::1
3386 * ff02::2
3387 * ff02::16
3388 * ff02::1:ff00:ab8
3389 * Advertised Prefixes:
3390 * prefix fe80::fe:28ff:fe9c:75b3, length 64
3391 * MTU is 1500
3392 * ICMP error messages are unlimited
3393 * ICMP redirects are disabled
3394 * ICMP unreachables are not sent
3395 * ND DAD is disabled
3396 * ND advertised reachable time is 0
3397 * ND advertised retransmit interval is 0 (msec)
3398 * ND router advertisements are sent every 200 seconds (min interval is 150)
3399 * ND router advertisements live for 600 seconds
3400 * Hosts use stateless autoconfig for addresses
3401 * ND router advertisements sent 19336
3402 * ND router solicitations received 0
3403 * ND router solicitations dropped 0
3404 * @cliexend
3405 * Example of output if IPv6 is not enabled on the interface:
3406 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
3407 * show ip6 interface: IPv6 not enabled on interface
3408 * @cliexend
3409?*/
3410/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003411VLIB_CLI_COMMAND (show_ip6_interface_command, static) =
3412{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003413 .path = "show ip6 interface",
3414 .function = show_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04003415 .short_help = "show ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003416};
Billy McFall0683c9c2016-10-13 08:27:31 -04003417/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003418
3419clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05003420disable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003421{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003422 clib_error_t *error = 0;
3423 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003424 u32 ri;
3425
3426 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003427 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3428 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003429 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003430
Ed Warnickecb9cada2015-12-08 15:45:58 -07003431 /* if not created - do nothing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003432 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003433 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003434 ip6_radv_t *radv_info;
3435
3436 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003437
3438 /* check radv_info ref count for other ip6 addresses on this interface */
Wojciech Dec7bc73102017-02-14 16:24:28 +01003439 /* This implicitly excludes the link local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003440 if (radv_info->ref_count == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003441 {
3442 /* essentially "disables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08003443 ip6_ll_prefix_t ilp = {
3444 .ilp_addr = radv_info->link_local_address,
3445 .ilp_sw_if_index = sw_if_index,
3446 };
3447 ip6_ll_table_entry_delete (&ilp);
3448 ip6_sw_interface_enable_disable (sw_if_index, 0);
Neale Ranns4008ac92017-02-13 23:20:04 -08003449 ip6_mfib_interface_enable_disable (sw_if_index, 0);
Neale Ranns53da2212018-02-24 02:11:19 -08003450 ip6_neighbor_sw_interface_add_del (vnet_get_main (), sw_if_index,
3451 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003452 }
3453 }
3454 return error;
3455}
3456
3457int
Dave Barachd7cb1b52016-12-09 09:52:16 -05003458ip6_interface_enabled (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003459{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003460 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3461 u32 ri = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003462
Dave Barachd7cb1b52016-12-09 09:52:16 -05003463 /* look up the radv_t information for this interface */
3464 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3465 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003466
Dave Barachd7cb1b52016-12-09 09:52:16 -05003467 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07003468
Dave Barachd7cb1b52016-12-09 09:52:16 -05003469 return ri != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003470}
3471
Dave Barachd7cb1b52016-12-09 09:52:16 -05003472clib_error_t *
3473enable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003474{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003475 clib_error_t *error = 0;
3476 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003477 u32 ri;
3478 int is_add = 1;
3479
3480 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003481 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3482 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003483
Dave Barachd7cb1b52016-12-09 09:52:16 -05003484 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3485
3486 /* if not created yet */
3487 if (ri == ~0)
3488 {
3489 vnet_main_t *vnm = vnet_get_main ();
3490 vnet_sw_interface_t *sw_if0;
3491
3492 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
3493 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
3494 {
3495 ethernet_interface_t *eth_if0;
3496
3497 eth_if0 =
3498 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
3499 if (eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003500 {
3501 /* create radv_info. for this interface. This holds all the info needed for router adverts */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003502 ri =
3503 ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003504
Dave Barachd7cb1b52016-12-09 09:52:16 -05003505 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003506 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003507 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003508 ip6_address_t link_local_address;
3509
Dave Barachd7cb1b52016-12-09 09:52:16 -05003510 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003511
Dave Barachd7cb1b52016-12-09 09:52:16 -05003512 ip6_link_local_address_from_ethernet_mac_address
3513 (&link_local_address, eth_if0->address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003514
3515 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index);
Pavel Kotucek8dc80202017-08-15 13:52:22 +02003516 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_SUB ||
3517 sw_if0->type == VNET_SW_INTERFACE_TYPE_P2P)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003518 {
3519 /* make up an interface id */
Dave Barach611d9182018-03-12 15:56:41 -04003520 link_local_address.as_u64[1] =
3521 random_u64 (&radv_info->randomizer);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003522
3523 link_local_address.as_u64[0] =
3524 clib_host_to_net_u64 (0xFE80000000000000ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003525 /* clear u bit */
3526 link_local_address.as_u8[8] &= 0xfd;
3527 }
Neale Ranns53da2212018-02-24 02:11:19 -08003528 {
3529 ip6_ll_prefix_t ilp = {
3530 .ilp_addr = link_local_address,
3531 .ilp_sw_if_index = sw_if_index,
3532 };
Dave Barachd7cb1b52016-12-09 09:52:16 -05003533
Neale Ranns53da2212018-02-24 02:11:19 -08003534 ip6_ll_table_entry_update (&ilp, FIB_ROUTE_PATH_LOCAL);
3535 }
Neale Ranns4008ac92017-02-13 23:20:04 -08003536
Ed Warnickecb9cada2015-12-08 15:45:58 -07003537 /* essentially "enables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08003538 ip6_mfib_interface_enable_disable (sw_if_index, 1);
3539 ip6_sw_interface_enable_disable (sw_if_index, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003540
Neale Ranns53da2212018-02-24 02:11:19 -08003541 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003542 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003543 radv_info->link_local_address = link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003544 }
3545 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003546 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003547 }
3548 }
3549 return error;
3550}
3551
Neale Ranns53da2212018-02-24 02:11:19 -08003552int
3553ip6_get_ll_address (u32 sw_if_index, ip6_address_t * addr)
3554{
3555 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3556 ip6_radv_t *radv_info;
3557 u32 ri;
3558
3559 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) < sw_if_index)
3560 return 0;
3561
3562 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3563
3564 if (ri == ~0)
3565 return 0;
3566
3567 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3568 *addr = radv_info->link_local_address;
3569
3570 return (!0);
3571}
3572
Ed Warnickecb9cada2015-12-08 15:45:58 -07003573static clib_error_t *
3574enable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003575 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003576{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003577 vnet_main_t *vnm = vnet_get_main ();
3578 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003579 u32 sw_if_index;
3580
3581 sw_if_index = ~0;
3582
Dave Barachd7cb1b52016-12-09 09:52:16 -05003583 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003584 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003585 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003586 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003587 else
3588 {
3589 error = clib_error_return (0, "unknown interface\n'",
3590 format_unformat_error, input);
3591
3592 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003593 return error;
3594}
3595
Billy McFall0683c9c2016-10-13 08:27:31 -04003596/*?
3597 * This command is used to enable IPv6 on a given interface.
3598 *
3599 * @cliexpar
3600 * Example of how enable IPv6 on a given interface:
3601 * @cliexcmd{enable ip6 interface GigabitEthernet2/0/0}
3602?*/
3603/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003604VLIB_CLI_COMMAND (enable_ip6_interface_command, static) =
3605{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003606 .path = "enable ip6 interface",
3607 .function = enable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04003608 .short_help = "enable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003609};
Billy McFall0683c9c2016-10-13 08:27:31 -04003610/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003611
3612static clib_error_t *
3613disable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003614 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003615{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003616 vnet_main_t *vnm = vnet_get_main ();
3617 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003618 u32 sw_if_index;
3619
3620 sw_if_index = ~0;
3621
Dave Barachd7cb1b52016-12-09 09:52:16 -05003622 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003623 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003624 error = disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003625 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003626 else
3627 {
3628 error = clib_error_return (0, "unknown interface\n'",
3629 format_unformat_error, input);
3630
3631 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003632 return error;
3633}
3634
Billy McFall0683c9c2016-10-13 08:27:31 -04003635/*?
3636 * This command is used to disable IPv6 on a given interface.
3637 *
3638 * @cliexpar
3639 * Example of how disable IPv6 on a given interface:
3640 * @cliexcmd{disable ip6 interface GigabitEthernet2/0/0}
3641?*/
3642/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003643VLIB_CLI_COMMAND (disable_ip6_interface_command, static) =
3644{
Billy McFall0683c9c2016-10-13 08:27:31 -04003645 .path = "disable ip6 interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003646 .function = disable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04003647 .short_help = "disable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003648};
Billy McFall0683c9c2016-10-13 08:27:31 -04003649/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003650
Billy McFall0683c9c2016-10-13 08:27:31 -04003651/*?
3652 * This command is used to configure the neighbor discovery
3653 * parameters on a given interface. Use the '<em>show ip6 interface</em>'
3654 * command to display some of the current neighbor discovery parameters
3655 * on a given interface. This command has three formats:
3656 *
3657 *
3658 * <b>Format 1 - Router Advertisement Options:</b> (Only one can be entered in a single command)
3659 *
3660 * '<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>'
3661 *
3662 * Where:
3663 *
3664 * <em>[no] ra-managed-config-flag</em> - Advertises in ICMPv6
3665 * router-advertisement messages to use stateful address
3666 * auto-configuration to obtain address information (sets the M-bit).
3667 * Default is the M-bit is not set and the '<em>no</em>' option
3668 * returns it to this default state.
3669 *
3670 * <em>[no] ra-other-config-flag</em> - Indicates in ICMPv6
3671 * router-advertisement messages that hosts use stateful auto
3672 * configuration to obtain nonaddress related information (sets
3673 * the O-bit). Default is the O-bit is not set and the '<em>no</em>'
3674 * option returns it to this default state.
3675 *
3676 * <em>[no] ra-suppress</em> - Disables sending ICMPv6 router-advertisement
3677 * messages. The '<em>no</em>' option implies to enable sending ICMPv6
3678 * router-advertisement messages.
3679 *
3680 * <em>[no] ra-suppress-link-layer</em> - Indicates not to include the
3681 * optional source link-layer address in the ICMPv6 router-advertisement
3682 * messages. Default is to include the optional source link-layer address
3683 * and the '<em>no</em>' option returns it to this default state.
3684 *
3685 * <em>[no] ra-send-unicast</em> - Use the source address of the
3686 * router-solicitation message if availiable. The default is to use
3687 * multicast address of all nodes, and the '<em>no</em>' option returns
3688 * it to this default state.
3689 *
3690 * <em>[no] ra-lifetime <lifetime></em> - Advertises the lifetime of a
3691 * default router in ICMPv6 router-advertisement messages. The range is
3692 * from 0 to 9000 seconds. '<em><lifetime></em>' must be greater than
3693 * '<em><max-interval></em>'. The default value is 600 seconds and the
3694 * '<em>no</em>' option returns it to this default value.
3695 *
3696 * <em>[no] ra-initial <cnt> <interval></em> - Number of initial ICMPv6
3697 * router-advertisement messages sent and the interval between each
3698 * message. Range for count is 1 - 3 and default is 3. Range for interval
3699 * is 1 to 16 seconds, and default is 16 seconds. The '<em>no</em>' option
3700 * returns both to their default value.
3701 *
3702 * <em>[no] ra-interval <max-interval> [<min-interval>]</em> - Configures the
3703 * interval between sending ICMPv6 router-advertisement messages. The
3704 * range for max-interval is from 4 to 200 seconds. min-interval can not
3705 * be more than 75% of max-interval. If not set, min-interval will be
3706 * set to 75% of max-interval. The range for min-interval is from 3 to
3707 * 150 seconds. The '<em>no</em>' option returns both to their default
3708 * value.
3709 *
3710 * <em>[no] ra-cease</em> - Cease sending ICMPv6 router-advertisement messages.
3711 * The '<em>no</em>' options implies to start (or restart) sending
3712 * ICMPv6 router-advertisement messages.
3713 *
3714 *
3715 * <b>Format 2 - Prefix Options:</b>
3716 *
3717 * '<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>'
3718 *
3719 * Where:
3720 *
3721 * <em>no</em> - All additional flags are ignored and the prefix is deleted.
3722 *
3723 * <em><valid-lifetime> <pref-lifetime></em> - '<em><valid-lifetime></em>' is the
3724 * length of time in seconds during what the prefix is valid for the purpose of
3725 * on-link determination. Range is 7203 to 2592000 seconds and default is 2592000
3726 * seconds (30 days). '<em><pref-lifetime></em>' is the prefered-lifetime and is the
3727 * length of time in seconds during what addresses generated from the prefix remain
3728 * preferred. Range is 0 to 604800 seconds and default is 604800 seconds (7 days).
3729 *
3730 * <em>infinite</em> - Both '<em><valid-lifetime></em>' and '<em><<pref-lifetime></em>'
3731 * are inifinte, no timeout.
3732 *
3733 * <em>no-advertise</em> - Do not send full router address in prefix
3734 * advertisement. Default is to advertise (i.e. - This flag is off by default).
3735 *
3736 * <em>off-link</em> - Prefix is off-link, clear L-bit in packet. Default is on-link
3737 * (i.e. - This flag is off and L-bit in packet is set by default and this prefix can
3738 * be used for on-link determination). '<em>no-onlink</em>' also controls the L-bit.
3739 *
3740 * <em>no-autoconfig</em> - Do not use prefix for autoconfiguration, clear A-bit in packet.
3741 * Default is autoconfig (i.e. - This flag is off and A-bit in packet is set by default.
3742 *
3743 * <em>no-onlink</em> - Do not use prefix for onlink determination, clear L-bit in packet.
3744 * Default is on-link (i.e. - This flag is off and L-bit in packet is set by default and
3745 * this prefix can be used for on-link determination). '<em>off-link</em>' also controls
3746 * the L-bit.
3747 *
3748 *
3749 * <b>Format 3: - Default of Prefix:</b>
3750 *
3751 * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> default</b></em>'
3752 *
3753 * When a new prefix is added (or existing one is being overwritten) <em>default</em>
3754 * uses default values for the prefix. If <em>no</em> is used, the <em>default</em>
3755 * is ignored and the prefix is deleted.
3756 *
3757 *
3758 * @cliexpar
3759 * Example of how set a router advertisement option:
3760 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 ra-interval 100 20}
3761 * Example of how to add a prefix:
3762 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 prefix fe80::fe:28ff:fe9c:75b3/64 infinite no-advertise}
3763 * Example of how to delete a prefix:
3764 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 no prefix fe80::fe:28ff:fe9c:75b3/64}
3765?*/
3766/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003767VLIB_CLI_COMMAND (ip6_nd_command, static) =
3768{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003769 .path = "ip6 nd",
Billy McFall0683c9c2016-10-13 08:27:31 -04003770 .short_help = "ip6 nd <interface> ...",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003771 .function = ip6_neighbor_cmd,
3772};
Billy McFall0683c9c2016-10-13 08:27:31 -04003773/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003774
3775clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05003776set_ip6_link_local_address (vlib_main_t * vm,
Neale Ranns75152282017-01-09 01:00:45 -08003777 u32 sw_if_index, ip6_address_t * address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003778{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003779 clib_error_t *error = 0;
3780 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003781 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003782 ip6_radv_t *radv_info;
3783 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07003784
Dave Barachd7cb1b52016-12-09 09:52:16 -05003785 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003786 {
3787 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_LINK_LOCAL;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003788 return (error = clib_error_return (0, "address not link-local",
3789 format_unformat_error));
Ed Warnickecb9cada2015-12-08 15:45:58 -07003790 }
3791
3792 /* call enable ipv6 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003793 enable_ip6_interface (vm, sw_if_index);
3794
Ed Warnickecb9cada2015-12-08 15:45:58 -07003795 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003796
3797 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003798 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003799 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003800
3801 /* save if link local address (overwrite default) */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003802
Ed Warnickecb9cada2015-12-08 15:45:58 -07003803 /* delete the old one */
3804 error = ip6_add_del_interface_address (vm, sw_if_index,
3805 &radv_info->link_local_address,
Neale Ranns75152282017-01-09 01:00:45 -08003806 128, 1 /* is_del */ );
Dave Barachd7cb1b52016-12-09 09:52:16 -05003807
3808 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003809 {
3810 /* add the new one */
3811 error = ip6_add_del_interface_address (vm, sw_if_index,
Neale Ranns75152282017-01-09 01:00:45 -08003812 address, 128,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003813 0 /* is_del */ );
3814
3815 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003816 {
3817 radv_info->link_local_address = *address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003818 }
3819 }
3820 }
3821 else
3822 {
3823 vnm->api_errno = VNET_API_ERROR_IP6_NOT_ENABLED;
3824 error = clib_error_return (0, "ip6 not enabled for interface",
3825 format_unformat_error);
3826 }
3827 return error;
3828}
Dave Barachd7cb1b52016-12-09 09:52:16 -05003829
Ed Warnickecb9cada2015-12-08 15:45:58 -07003830clib_error_t *
3831set_ip6_link_local_address_cmd (vlib_main_t * vm,
3832 unformat_input_t * input,
3833 vlib_cli_command_t * cmd)
3834{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003835 vnet_main_t *vnm = vnet_get_main ();
3836 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003837 u32 sw_if_index;
3838 ip6_address_t ip6_addr;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003839
3840 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003841 {
3842 /* get the rest of the command */
3843 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3844 {
Neale Ranns75152282017-01-09 01:00:45 -08003845 if (unformat (input, "%U", unformat_ip6_address, &ip6_addr))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003846 break;
3847 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05003848 return (unformat_parse_error (input));
Ed Warnickecb9cada2015-12-08 15:45:58 -07003849 }
3850 }
Neale Ranns75152282017-01-09 01:00:45 -08003851 error = set_ip6_link_local_address (vm, sw_if_index, &ip6_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003852 return error;
3853}
3854
Billy McFall0683c9c2016-10-13 08:27:31 -04003855/*?
3856 * This command is used to assign an IPv6 Link-local address to an
3857 * interface. This command will enable IPv6 on an interface if it
3858 * is not already enabled. Use the '<em>show ip6 interface</em>' command
3859 * to display the assigned Link-local address.
3860 *
3861 * @cliexpar
3862 * Example of how to assign an IPv6 Link-local address to an interface:
Neale Ranns75152282017-01-09 01:00:45 -08003863 * @cliexcmd{set ip6 link-local address GigabitEthernet2/0/0 FE80::AB8}
Billy McFall0683c9c2016-10-13 08:27:31 -04003864?*/
3865/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003866VLIB_CLI_COMMAND (set_ip6_link_local_address_command, static) =
3867{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003868 .path = "set ip6 link-local address",
Neale Ranns75152282017-01-09 01:00:45 -08003869 .short_help = "set ip6 link-local address <interface> <ip6-address>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003870 .function = set_ip6_link_local_address_cmd,
3871};
Billy McFall0683c9c2016-10-13 08:27:31 -04003872/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003873
Neale Ranns87df12d2017-02-18 08:16:41 -08003874/**
3875 * @brief callback when an interface address is added or deleted
3876 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003877static void
3878ip6_neighbor_add_del_interface_address (ip6_main_t * im,
3879 uword opaque,
3880 u32 sw_if_index,
3881 ip6_address_t * address,
3882 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003883 u32 if_address_index, u32 is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003884{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003885 vnet_main_t *vnm = vnet_get_main ();
3886 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003887 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003888 vlib_main_t *vm = vnm->vlib_main;
3889 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003890 ip6_address_t a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003891
3892 /* create solicited node multicast address for this interface adddress */
3893 ip6_set_solicited_node_multicast_address (&a, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003894
Ed Warnickecb9cada2015-12-08 15:45:58 -07003895 a.as_u8[0xd] = address->as_u8[0xd];
3896 a.as_u8[0xe] = address->as_u8[0xe];
3897 a.as_u8[0xf] = address->as_u8[0xf];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003898
3899 if (!is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003900 {
3901 /* try to create radv_info - does nothing if ipv6 already enabled */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003902 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003903
3904 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003905 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3906 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003907 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003908 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003909 {
3910 /* get radv_info */
3911 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3912
3913 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003914 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003915 radv_info->ref_count++;
3916
Neale Ranns87df12d2017-02-18 08:16:41 -08003917 ip6_neighbor_add_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003918 }
3919 }
3920 else
3921 {
3922
3923 /* delete */
3924 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003925 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3926 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003927 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Wojciech Dec7bc73102017-02-14 16:24:28 +01003928
Dave Barachd7cb1b52016-12-09 09:52:16 -05003929 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003930 {
3931 /* get radv_info */
3932 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3933
Neale Ranns87df12d2017-02-18 08:16:41 -08003934 ip6_neighbor_del_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003935
3936 /* if interface up send MLDP "report" */
3937 radv_info->all_routers_mcast = 0;
3938
3939 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003940 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003941 radv_info->ref_count--;
3942 }
Wojciech Dec7bc73102017-02-14 16:24:28 +01003943 /* Ensure that IPv6 is disabled, and LL removed after ref_count reaches 0 */
3944 disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003945 }
3946}
3947
Dave Barachd7cb1b52016-12-09 09:52:16 -05003948clib_error_t *
3949ip6_set_neighbor_limit (u32 neighbor_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003950{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003951 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003952
3953 nm->limit_neighbor_cache_size = neighbor_limit;
3954 return 0;
3955}
3956
Neale Ranns15002542017-09-10 04:39:11 -07003957static void
3958ip6_neighbor_table_bind (ip6_main_t * im,
3959 uword opaque,
3960 u32 sw_if_index,
3961 u32 new_fib_index, u32 old_fib_index)
3962{
3963 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3964 ip6_neighbor_t *n = NULL;
3965 u32 i, *to_re_add = 0;
3966
3967 /* *INDENT-OFF* */
3968 pool_foreach (n, nm->neighbor_pool,
3969 ({
3970 if (n->key.sw_if_index == sw_if_index)
3971 vec_add1 (to_re_add, n - nm->neighbor_pool);
3972 }));
3973 /* *INDENT-ON* */
3974
3975 for (i = 0; i < vec_len (to_re_add); i++)
3976 {
3977 n = pool_elt_at_index (nm->neighbor_pool, to_re_add[i]);
3978 ip6_neighbor_adj_fib_remove (n, old_fib_index);
3979 ip6_neighbor_adj_fib_add (n, new_fib_index);
3980 }
3981 vec_free (to_re_add);
3982}
3983
Dave Barachd7cb1b52016-12-09 09:52:16 -05003984static clib_error_t *
3985ip6_neighbor_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003986{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003987 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3988 ip6_main_t *im = &ip6_main;
3989
Ed Warnickecb9cada2015-12-08 15:45:58 -07003990 mhash_init (&nm->neighbor_index_by_key,
3991 /* value size */ sizeof (uword),
3992 /* key size */ sizeof (ip6_neighbor_key_t));
3993
Dave Barachd7cb1b52016-12-09 09:52:16 -05003994 icmp6_register_type (vm, ICMP6_neighbor_solicitation,
3995 ip6_icmp_neighbor_solicitation_node.index);
3996 icmp6_register_type (vm, ICMP6_neighbor_advertisement,
3997 ip6_icmp_neighbor_advertisement_node.index);
3998 icmp6_register_type (vm, ICMP6_router_solicitation,
3999 ip6_icmp_router_solicitation_node.index);
4000 icmp6_register_type (vm, ICMP6_router_advertisement,
4001 ip6_icmp_router_advertisement_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004002
4003 /* handler node for ip6 neighbor discovery events and timers */
4004 vlib_register_node (vm, &ip6_icmp_neighbor_discovery_event_node);
4005
4006 /* add call backs */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004007 ip6_add_del_interface_address_callback_t cb;
4008 memset (&cb, 0x0, sizeof (ip6_add_del_interface_address_callback_t));
4009
Ed Warnickecb9cada2015-12-08 15:45:58 -07004010 /* when an interface address changes... */
4011 cb.function = ip6_neighbor_add_del_interface_address;
4012 cb.function_opaque = 0;
4013 vec_add1 (im->add_del_interface_address_callbacks, cb);
4014
Neale Ranns15002542017-09-10 04:39:11 -07004015 ip6_table_bind_callback_t cbt;
4016 cbt.function = ip6_neighbor_table_bind;
4017 cbt.function_opaque = 0;
4018 vec_add1 (im->table_bind_callbacks, cbt);
4019
Ed Warnickecb9cada2015-12-08 15:45:58 -07004020 mhash_init (&nm->pending_resolutions_by_address,
4021 /* value size */ sizeof (uword),
4022 /* key size */ sizeof (ip6_address_t));
4023
John Lo1edfba92016-08-27 01:11:57 -04004024 mhash_init (&nm->mac_changes_by_address,
4025 /* value size */ sizeof (uword),
4026 /* key size */ sizeof (ip6_address_t));
4027
Ed Warnickecb9cada2015-12-08 15:45:58 -07004028 /* default, configurable */
4029 nm->limit_neighbor_cache_size = 50000;
4030
Eyal Baric125ecc2017-09-20 11:29:17 +03004031 nm->wc_ip6_nd_publisher_node = (uword) ~ 0;
4032
Ed Warnickecb9cada2015-12-08 15:45:58 -07004033#if 0
4034 /* $$$$ Hack fix for today */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004035 vec_validate_init_empty
4036 (im->discover_neighbor_next_index_by_hw_if_index, 32, 0 /* drop */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004037#endif
4038
Ed Warnickecb9cada2015-12-08 15:45:58 -07004039 return 0;
4040}
4041
4042VLIB_INIT_FUNCTION (ip6_neighbor_init);
4043
4044
Dave Barachd7cb1b52016-12-09 09:52:16 -05004045void
4046vnet_register_ip6_neighbor_resolution_event (vnet_main_t * vnm,
4047 void *address_arg,
4048 uword node_index,
4049 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004050{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004051 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4052 ip6_address_t *address = address_arg;
4053 uword *p;
4054 pending_resolution_t *pr;
4055
Ed Warnickecb9cada2015-12-08 15:45:58 -07004056 pool_get (nm->pending_resolutions, pr);
4057
4058 pr->next_index = ~0;
4059 pr->node_index = node_index;
4060 pr->type_opaque = type_opaque;
4061 pr->data = data;
4062
4063 p = mhash_get (&nm->pending_resolutions_by_address, address);
4064 if (p)
4065 {
4066 /* Insert new resolution at the head of the list */
4067 pr->next_index = p[0];
4068 mhash_unset (&nm->pending_resolutions_by_address, address, 0);
4069 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004070
4071 mhash_set (&nm->pending_resolutions_by_address, address,
4072 pr - nm->pending_resolutions, 0 /* old value */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004073}
4074
Dave Barachd7cb1b52016-12-09 09:52:16 -05004075int
4076vnet_add_del_ip6_nd_change_event (vnet_main_t * vnm,
4077 void *data_callback,
4078 u32 pid,
4079 void *address_arg,
4080 uword node_index,
4081 uword type_opaque, uword data, int is_add)
John Lo1edfba92016-08-27 01:11:57 -04004082{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004083 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4084 ip6_address_t *address = address_arg;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004085
Eyal Barif9f40652017-04-01 03:55:08 +03004086 /* Try to find an existing entry */
4087 u32 *first = (u32 *) mhash_get (&nm->mac_changes_by_address, address);
4088 u32 *p = first;
4089 pending_resolution_t *mc;
4090 while (p && *p != ~0)
4091 {
4092 mc = pool_elt_at_index (nm->mac_changes, *p);
4093 if (mc->node_index == node_index && mc->type_opaque == type_opaque
4094 && mc->pid == pid)
4095 break;
4096 p = &mc->next_index;
4097 }
4098
4099 int found = p && *p != ~0;
John Lo1edfba92016-08-27 01:11:57 -04004100 if (is_add)
4101 {
Eyal Barif9f40652017-04-01 03:55:08 +03004102 if (found)
4103 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
4104
John Lo1edfba92016-08-27 01:11:57 -04004105 pool_get (nm->mac_changes, mc);
Eyal Barif9f40652017-04-01 03:55:08 +03004106 *mc = (pending_resolution_t)
4107 {
4108 .next_index = ~0,.node_index = node_index,.type_opaque =
4109 type_opaque,.data = data,.data_callback = data_callback,.pid =
4110 pid,};
John Lo1edfba92016-08-27 01:11:57 -04004111
Eyal Barif9f40652017-04-01 03:55:08 +03004112 /* Insert new resolution at the end of the list */
4113 u32 new_idx = mc - nm->mac_changes;
John Lo1edfba92016-08-27 01:11:57 -04004114 if (p)
Eyal Barif9f40652017-04-01 03:55:08 +03004115 p[0] = new_idx;
4116 else
4117 mhash_set (&nm->mac_changes_by_address, address, new_idx, 0);
John Lo1edfba92016-08-27 01:11:57 -04004118 }
4119 else
4120 {
Eyal Barif9f40652017-04-01 03:55:08 +03004121 if (!found)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004122 return VNET_API_ERROR_NO_SUCH_ENTRY;
John Lo1edfba92016-08-27 01:11:57 -04004123
Eyal Barif9f40652017-04-01 03:55:08 +03004124 /* Clients may need to clean up pool entries, too */
4125 void (*fp) (u32, u8 *) = data_callback;
4126 if (fp)
4127 (*fp) (mc->data, 0 /* no new mac addrs */ );
John Lo1edfba92016-08-27 01:11:57 -04004128
Eyal Barif9f40652017-04-01 03:55:08 +03004129 /* Remove the entry from the list and delete the entry */
4130 *p = mc->next_index;
4131 pool_put (nm->mac_changes, mc);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004132
Eyal Barif9f40652017-04-01 03:55:08 +03004133 /* Remove from hash if we deleted the last entry */
4134 if (*p == ~0 && p == first)
4135 mhash_unset (&nm->mac_changes_by_address, address, 0);
John Lo1edfba92016-08-27 01:11:57 -04004136 }
Eyal Barif9f40652017-04-01 03:55:08 +03004137 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004138}
4139
Dave Barachd7cb1b52016-12-09 09:52:16 -05004140int
4141vnet_ip6_nd_term (vlib_main_t * vm,
4142 vlib_node_runtime_t * node,
4143 vlib_buffer_t * p0,
4144 ethernet_header_t * eth,
Eyal Baria0623f82017-03-30 03:05:06 +03004145 ip6_header_t * ip, u32 sw_if_index, u16 bd_index)
John Lo1edfba92016-08-27 01:11:57 -04004146{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004147 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4148 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
John Lo1edfba92016-08-27 01:11:57 -04004149
4150 ndh = ip6_next_header (ip);
4151 if (ndh->icmp.type != ICMP6_neighbor_solicitation &&
4152 ndh->icmp.type != ICMP6_neighbor_advertisement)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004153 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004154
4155 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
4156 (p0->flags & VLIB_BUFFER_IS_TRACED)))
4157 {
4158 u8 *t0 = vlib_add_trace (vm, node, p0,
4159 sizeof (icmp6_input_trace_t));
4160 clib_memcpy (t0, ip, sizeof (icmp6_input_trace_t));
4161 }
4162
4163 /* Check if anyone want ND events for L2 BDs */
Eyal Baric125ecc2017-09-20 11:29:17 +03004164 if (PREDICT_FALSE
4165 (nm->wc_ip6_nd_publisher_node != (uword) ~ 0
4166 && !ip6_address_is_link_local_unicast (&ip->src_address)))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004167 {
Eyal Baric125ecc2017-09-20 11:29:17 +03004168 vnet_nd_wc_publish (sw_if_index, eth->src_address, &ip->src_address);
John Lo1edfba92016-08-27 01:11:57 -04004169 }
4170
4171 /* Check if MAC entry exsist for solicited target IP */
4172 if (ndh->icmp.type == ICMP6_neighbor_solicitation)
4173 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004174 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
John Lo1edfba92016-08-27 01:11:57 -04004175 l2_bridge_domain_t *bd_config;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004176 u8 *macp;
John Lo1edfba92016-08-27 01:11:57 -04004177
4178 opt = (void *) (ndh + 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004179 if ((opt->header.type !=
John Lo1edfba92016-08-27 01:11:57 -04004180 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address) ||
4181 (opt->header.n_data_u64s != 1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004182 return 0; /* source link layer address option not present */
4183
John Lo1edfba92016-08-27 01:11:57 -04004184 bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004185 macp =
4186 (u8 *) hash_get_mem (bd_config->mac_by_ip6, &ndh->target_address);
John Lo1edfba92016-08-27 01:11:57 -04004187 if (macp)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004188 { /* found ip-mac entry, generate eighbor advertisement response */
John Lo1edfba92016-08-27 01:11:57 -04004189 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004190 vlib_node_runtime_t *error_node =
4191 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
John Lo1edfba92016-08-27 01:11:57 -04004192 ip->dst_address = ip->src_address;
4193 ip->src_address = ndh->target_address;
4194 ip->hop_limit = 255;
4195 opt->header.type =
Dave Barachd7cb1b52016-12-09 09:52:16 -05004196 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
John Lo1edfba92016-08-27 01:11:57 -04004197 clib_memcpy (opt->ethernet_address, macp, 6);
4198 ndh->icmp.type = ICMP6_neighbor_advertisement;
4199 ndh->advertisement_flags = clib_host_to_net_u32
Dave Barachd7cb1b52016-12-09 09:52:16 -05004200 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED |
4201 ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
John Lo1edfba92016-08-27 01:11:57 -04004202 ndh->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004203 ndh->icmp.checksum =
4204 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip, &bogus_length);
4205 clib_memcpy (eth->dst_address, eth->src_address, 6);
4206 clib_memcpy (eth->src_address, macp, 6);
4207 vlib_error_count (vm, error_node->node_index,
John Lo1edfba92016-08-27 01:11:57 -04004208 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004209 return 1;
4210 }
John Lo1edfba92016-08-27 01:11:57 -04004211 }
4212
4213 return 0;
4214
4215}
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004216
Neale Ranns3f844d02017-02-18 00:03:54 -08004217int
4218ip6_neighbor_proxy_add_del (u32 sw_if_index, ip6_address_t * addr, u8 is_del)
4219{
4220 u32 fib_index;
4221
4222 fib_prefix_t pfx = {
4223 .fp_len = 128,
4224 .fp_proto = FIB_PROTOCOL_IP6,
4225 .fp_addr = {
4226 .ip6 = *addr,
4227 },
4228 };
4229 ip46_address_t nh = {
4230 .ip6 = *addr,
4231 };
4232
4233 fib_index = ip6_fib_table_get_index_for_sw_if_index (sw_if_index);
4234
4235 if (~0 == fib_index)
4236 return VNET_API_ERROR_NO_SUCH_FIB;
4237
4238 if (is_del)
4239 {
4240 fib_table_entry_path_remove (fib_index,
4241 &pfx,
4242 FIB_SOURCE_IP6_ND_PROXY,
Neale Rannsda78f952017-05-24 09:15:43 -07004243 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004244 &nh,
4245 sw_if_index,
4246 ~0, 1, FIB_ROUTE_PATH_FLAG_NONE);
4247 /* flush the ND cache of this address if it's there */
4248 vnet_unset_ip6_ethernet_neighbor (vlib_get_main (),
4249 sw_if_index, addr, NULL, 0);
4250 }
4251 else
4252 {
4253 fib_table_entry_path_add (fib_index,
4254 &pfx,
4255 FIB_SOURCE_IP6_ND_PROXY,
4256 FIB_ENTRY_FLAG_NONE,
Neale Rannsda78f952017-05-24 09:15:43 -07004257 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004258 &nh,
4259 sw_if_index,
4260 ~0, 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
4261 }
4262 return (0);
4263}
4264
4265static clib_error_t *
4266set_ip6_nd_proxy_cmd (vlib_main_t * vm,
4267 unformat_input_t * input, vlib_cli_command_t * cmd)
4268{
4269 vnet_main_t *vnm = vnet_get_main ();
4270 clib_error_t *error = 0;
4271 ip6_address_t addr;
4272 u32 sw_if_index;
4273 u8 is_del = 0;
4274
4275 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
4276 {
4277 /* get the rest of the command */
4278 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
4279 {
4280 if (unformat (input, "%U", unformat_ip6_address, &addr))
4281 break;
4282 else if (unformat (input, "delete") || unformat (input, "del"))
4283 is_del = 1;
4284 else
4285 return (unformat_parse_error (input));
4286 }
4287 }
4288
4289 ip6_neighbor_proxy_add_del (sw_if_index, &addr, is_del);
4290
4291 return error;
4292}
4293
4294/* *INDENT-OFF* */
4295VLIB_CLI_COMMAND (set_ip6_nd_proxy_command, static) =
4296{
4297 .path = "set ip6 nd proxy",
4298 .short_help = "set ip6 nd proxy <HOST> <INTERFACE>",
4299 .function = set_ip6_nd_proxy_cmd,
4300};
4301/* *INDENT-ON* */
4302
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004303void
Neale Ranns3be6b282016-12-20 14:24:01 +00004304ethernet_ndp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004305{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004306 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4307 ip6_neighbor_t *n;
Neale Rannsc819fc62018-02-16 02:44:05 -08004308 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004309
4310 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004311 pool_foreach (n, nm->neighbor_pool,
4312 ({
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004313 if (n->key.sw_if_index == sw_if_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004314 {
Neale Rannsb80c5362016-10-08 13:03:40 +01004315 adj_nbr_walk_nh6 (sw_if_index,
4316 &n->key.ip6_address,
4317 ip6_nd_mk_complete_walk, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004318 }
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004319 }));
4320 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08004321
4322 ai = adj_glean_get (FIB_PROTOCOL_IP6, sw_if_index);
4323
4324 if (ADJ_INDEX_INVALID != ai)
4325 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004326}
Dave Barachd7cb1b52016-12-09 09:52:16 -05004327
John Lo8b81cb42017-06-26 01:40:20 -04004328void
4329send_ip6_na (vlib_main_t * vm, vnet_hw_interface_t * hi)
4330{
4331 ip6_main_t *i6m = &ip6_main;
4332 u32 sw_if_index = hi->sw_if_index;
4333 ip6_address_t *ip6_addr = ip6_interface_first_address (i6m, sw_if_index);
4334 if (ip6_addr)
4335 {
4336 clib_warning
4337 ("Sending unsolicitated NA IP6 address %U on sw_if_idex %d",
4338 format_ip6_address, ip6_addr, sw_if_index);
4339
4340 /* Form unsolicited neighbor advertisement packet from NS pkt template */
4341 int bogus_length;
4342 u32 bi = 0;
4343 icmp6_neighbor_solicitation_header_t *h =
4344 vlib_packet_template_get_packet (vm,
4345 &i6m->discover_neighbor_packet_template,
4346 &bi);
4347 ip6_set_reserved_multicast_address (&h->ip.dst_address,
4348 IP6_MULTICAST_SCOPE_link_local,
4349 IP6_MULTICAST_GROUP_ID_all_hosts);
4350 h->ip.src_address = ip6_addr[0];
4351 h->neighbor.icmp.type = ICMP6_neighbor_advertisement;
4352 h->neighbor.target_address = ip6_addr[0];
4353 h->neighbor.advertisement_flags = clib_host_to_net_u32
4354 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
4355 clib_memcpy (h->link_layer_option.ethernet_address,
4356 hi->hw_address, vec_len (hi->hw_address));
4357 h->neighbor.icmp.checksum =
4358 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
4359 ASSERT (bogus_length == 0);
4360
4361 /* Setup MAC header with IP6 Etype and mcast DMAC */
4362 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
4363 vlib_buffer_advance (b, -sizeof (ethernet_header_t));
4364 ethernet_header_t *e = vlib_buffer_get_current (b);
4365 e->type = clib_host_to_net_u16 (ETHERNET_TYPE_IP6);
4366 clib_memcpy (e->src_address, hi->hw_address, sizeof (e->src_address));
4367 ip6_multicast_ethernet_address (e->dst_address,
4368 IP6_MULTICAST_GROUP_ID_all_hosts);
4369
4370 /* Send unsolicited ND advertisement packet out the specified interface */
4371 vnet_buffer (b)->sw_if_index[VLIB_RX] =
4372 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
4373 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
4374 u32 *to_next = vlib_frame_vector_args (f);
4375 to_next[0] = bi;
4376 f->n_vectors = 1;
4377 vlib_put_frame_to_node (vm, hi->output_node_index, f);
4378 }
4379}
4380
Dave Barachd7cb1b52016-12-09 09:52:16 -05004381/*
4382 * fd.io coding-style-patch-verification: ON
4383 *
4384 * Local Variables:
4385 * eval: (c-set-style "gnu")
4386 * End:
4387 */