blob: d63796636b186c080333dc68030a9b9b4eccb9bd [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>
22#include <vppinfra/md5.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010023#include <vnet/adj/adj.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000024#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010025#include <vnet/fib/fib_table.h>
26#include <vnet/fib/ip6_fib.h>
Neale Ranns4008ac92017-02-13 23:20:04 -080027#include <vnet/mfib/ip6_mfib.h>
Neale Ranns53da2212018-02-24 02:11:19 -080028#include <vnet/ip/ip6_ll_table.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070029
Billy McFall0683c9c2016-10-13 08:27:31 -040030/**
31 * @file
32 * @brief IPv6 Neighbor Adjacency and Neighbor Discovery.
33 *
34 * The files contains the API and CLI code for managing IPv6 neighbor
35 * adjacency tables and neighbor discovery logic.
36 */
37
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010038/* can't use sizeof link_layer_address, that's 8 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070039#define ETHER_MAC_ADDR_LEN 6
40
Pavel Kotucek3e046ea2016-12-05 08:27:37 +010041/* advertised prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050042typedef struct
43{
Ed Warnickecb9cada2015-12-08 15:45:58 -070044 /* basic advertised information */
45 ip6_address_t prefix;
46 u8 prefix_len;
47 int adv_on_link_flag;
48 int adv_autonomous_flag;
49 u32 adv_valid_lifetime_in_secs;
50 u32 adv_pref_lifetime_in_secs;
51
52 /* advertised values are computed from these times if decrementing */
53 f64 valid_lifetime_expires;
Dave Barachd7cb1b52016-12-09 09:52:16 -050054 f64 pref_lifetime_expires;
55
Ed Warnickecb9cada2015-12-08 15:45:58 -070056 /* local information */
57 int enabled;
58 int deprecated_prefix_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050059 int decrement_lifetime_flag;
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
61#define MIN_ADV_VALID_LIFETIME 7203 /* seconds */
62#define DEF_ADV_VALID_LIFETIME 2592000
63#define DEF_ADV_PREF_LIFETIME 604800
64
65 /* extensions are added here, mobile, DNS etc.. */
66} ip6_radv_prefix_t;
67
68
Dave Barachd7cb1b52016-12-09 09:52:16 -050069typedef struct
70{
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 /* group information */
72 u8 type;
73 ip6_address_t mcast_address;
74 u16 num_sources;
75 ip6_address_t *mcast_source_address_pool;
76} ip6_mldp_group_t;
77
78/* configured router advertisement information per ipv6 interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -050079typedef struct
80{
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82 /* advertised config information, zero means unspecified */
Dave Barachd7cb1b52016-12-09 09:52:16 -050083 u8 curr_hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -070084 int adv_managed_flag;
85 int adv_other_flag;
Dave Barachd7cb1b52016-12-09 09:52:16 -050086 u16 adv_router_lifetime_in_sec;
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 u32 adv_neighbor_reachable_time_in_msec;
88 u32 adv_time_in_msec_between_retransmitted_neighbor_solicitations;
89
90 /* mtu option */
91 u32 adv_link_mtu;
Dave Barachd7cb1b52016-12-09 09:52:16 -050092
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 /* source link layer option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050094 u8 link_layer_address[8];
95 u8 link_layer_addr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 /* prefix option */
Dave Barachd7cb1b52016-12-09 09:52:16 -050098 ip6_radv_prefix_t *adv_prefixes_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
100 /* Hash table mapping address to index in interface advertised prefix pool. */
101 mhash_t address_to_prefix_index;
102
103 /* MLDP group information */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500104 ip6_mldp_group_t *mldp_group_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 /* Hash table mapping address to index in mldp address pool. */
107 mhash_t address_to_mldp_index;
108
109 /* local information */
110 u32 sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111 int send_radv; /* radv on/off on this interface - set by config */
112 int cease_radv; /* we are ceasing to send - set byf config */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 int send_unicast;
114 int adv_link_layer_address;
115 int prefix_option;
116 int failed_device_check;
117 int all_routers_mcast;
118 u32 seed;
119 u64 randomizer;
120 int ref_count;
Neale Ranns32e1c012016-11-22 17:07:28 +0000121 adj_index_t mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 /* timing information */
124#define DEF_MAX_RADV_INTERVAL 200
125#define DEF_MIN_RADV_INTERVAL .75 * DEF_MAX_RADV_INTERVAL
126#define DEF_CURR_HOP_LIMIT 64
127#define DEF_DEF_RTR_LIFETIME 3 * DEF_MAX_RADV_INTERVAL
128#define MAX_DEF_RTR_LIFETIME 9000
129
Dave Barachd7cb1b52016-12-09 09:52:16 -0500130#define MAX_INITIAL_RTR_ADVERT_INTERVAL 16 /* seconds */
131#define MAX_INITIAL_RTR_ADVERTISEMENTS 3 /*transmissions */
132#define MIN_DELAY_BETWEEN_RAS 3 /* seconds */
133#define MAX_DELAY_BETWEEN_RAS 1800 /* seconds */
134#define MAX_RA_DELAY_TIME .5 /* seconds */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
136 f64 max_radv_interval;
137 f64 min_radv_interval;
138 f64 min_delay_between_radv;
139 f64 max_delay_between_radv;
140 f64 max_rtr_default_lifetime;
141
142 f64 last_radv_time;
143 f64 last_multicast_time;
144 f64 next_multicast_time;
145
146
147 u32 initial_adverts_count;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500148 f64 initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 u32 initial_adverts_sent;
150
151 /* stats */
152 u32 n_advertisements_sent;
153 u32 n_solicitations_rcvd;
154 u32 n_solicitations_dropped;
155
156 /* Link local address to use (defaults to underlying physical for logical interfaces */
157 ip6_address_t link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158} ip6_radv_t;
159
Dave Barachd7cb1b52016-12-09 09:52:16 -0500160typedef struct
161{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 u32 next_index;
163 uword node_index;
164 uword type_opaque;
165 uword data;
John Lo1edfba92016-08-27 01:11:57 -0400166 /* Used for nd event notification only */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500167 void *data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400168 u32 pid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169} pending_resolution_t;
170
171
Dave Barachd7cb1b52016-12-09 09:52:16 -0500172typedef struct
173{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174 /* Hash tables mapping name to opcode. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500175 uword *opcode_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
177 /* lite beer "glean" adjacency handling */
178 mhash_t pending_resolutions_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500179 pending_resolution_t *pending_resolutions;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
John Lo1edfba92016-08-27 01:11:57 -0400181 /* Mac address change notification */
182 mhash_t mac_changes_by_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500183 pending_resolution_t *mac_changes;
John Lo1edfba92016-08-27 01:11:57 -0400184
Dave Barachd7cb1b52016-12-09 09:52:16 -0500185 u32 *neighbor_input_next_index_by_hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
Dave Barachd7cb1b52016-12-09 09:52:16 -0500187 ip6_neighbor_t *neighbor_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
189 mhash_t neighbor_index_by_key;
190
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191 u32 *if_radv_pool_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
Dave Barachd7cb1b52016-12-09 09:52:16 -0500193 ip6_radv_t *if_radv_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194
195 /* Neighbor attack mitigation */
196 u32 limit_neighbor_cache_size;
197 u32 neighbor_delete_rotor;
198
Eyal Baric125ecc2017-09-20 11:29:17 +0300199 /* Wildcard nd report publisher */
200 uword wc_ip6_nd_publisher_node;
201 uword wc_ip6_nd_publisher_et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202} ip6_neighbor_main_t;
203
Neale Ranns3f844d02017-02-18 00:03:54 -0800204/* ipv6 neighbor discovery - timer/event types */
205typedef enum
206{
207 ICMP6_ND_EVENT_INIT,
208} ip6_icmp_neighbor_discovery_event_type_t;
209
210typedef union
211{
212 u32 add_del_swindex;
213 struct
214 {
215 u32 up_down_swindex;
216 u32 fib_index;
217 } up_down_event;
218} ip6_icmp_neighbor_discovery_event_data_t;
219
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220static ip6_neighbor_main_t ip6_neighbor_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500221static ip6_address_t ip6a_zero; /* ip6 address 0 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222
Eyal Baric125ecc2017-09-20 11:29:17 +0300223static void wc_nd_signal_report (wc_nd_report_t * r);
224
225/**
226 * @brief publish wildcard arp event
227 * @param sw_if_index The interface on which the ARP entires are acted
228 */
229static int
230vnet_nd_wc_publish (u32 sw_if_index, u8 * mac, ip6_address_t * ip6)
231{
232 wc_nd_report_t r = {
233 .sw_if_index = sw_if_index,
234 .ip6 = *ip6,
235 };
236 memcpy (r.mac, mac, sizeof r.mac);
237
238 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
239 vl_api_rpc_call_main_thread (wc_nd_signal_report, (u8 *) & r, sizeof r);
240 return 0;
241}
242
243static void
244wc_nd_signal_report (wc_nd_report_t * r)
245{
246 vlib_main_t *vm = vlib_get_main ();
247 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
248 uword ni = nm->wc_ip6_nd_publisher_node;
249 uword et = nm->wc_ip6_nd_publisher_et;
250
251 if (ni == (uword) ~ 0)
252 return;
253 wc_nd_report_t *q =
254 vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
255
256 *q = *r;
257}
258
259void
260wc_nd_set_publisher_node (uword node_index, uword event_type)
261{
262 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
263 nm->wc_ip6_nd_publisher_node = node_index;
264 nm->wc_ip6_nd_publisher_et = event_type;
265}
266
Dave Barachd7cb1b52016-12-09 09:52:16 -0500267static u8 *
268format_ip6_neighbor_ip6_entry (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500270 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
271 ip6_neighbor_t *n = va_arg (*va, ip6_neighbor_t *);
272 vnet_main_t *vnm = vnet_get_main ();
273 vnet_sw_interface_t *si;
274 u8 *flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 if (!n)
Neale Ranns53da2212018-02-24 02:11:19 -0800277 return format (s, "%=12s%=25s%=6s%=20s%=40s", "Time", "Address", "Flags",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500278 "Link layer", "Interface");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100279
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100280 if (n->flags & IP6_NEIGHBOR_FLAG_DYNAMIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281 flags = format (flags, "D");
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100282
283 if (n->flags & IP6_NEIGHBOR_FLAG_STATIC)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500284 flags = format (flags, "S");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
Neale Rannsb3b2de72017-03-08 05:17:22 -0800286 if (n->flags & IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY)
287 flags = format (flags, "N");
288
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289 si = vnet_get_sw_interface (vnm, n->key.sw_if_index);
Neale Ranns53da2212018-02-24 02:11:19 -0800290 s = format (s, "%=12U%=25U%=6s%=20U%=40U",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 format_vlib_cpu_time, vm, n->cpu_time_last_updated,
292 format_ip6_address, &n->key.ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 flags ? (char *) flags : "",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 format_ethernet_address, n->link_layer_address,
295 format_vnet_sw_interface_name, vnm, si);
296
Dave Barachd7cb1b52016-12-09 09:52:16 -0500297 vec_free (flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 return s;
299}
300
Neale Ranns15002542017-09-10 04:39:11 -0700301static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700302ip6_neighbor_adj_fib_remove (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700303{
304 if (FIB_NODE_INDEX_INVALID != n->fib_entry_index)
305 {
Neale Ranns53da2212018-02-24 02:11:19 -0800306 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
307 {
308 ip6_ll_prefix_t pfx = {
309 .ilp_addr = n->key.ip6_address,
310 .ilp_sw_if_index = n->key.sw_if_index,
311 };
312 ip6_ll_table_entry_delete (&pfx);
313 }
314 else
315 {
316 fib_prefix_t pfx = {
317 .fp_len = 128,
318 .fp_proto = FIB_PROTOCOL_IP6,
319 .fp_addr.ip6 = n->key.ip6_address,
320 };
321 fib_table_entry_path_remove (fib_index,
322 &pfx,
323 FIB_SOURCE_ADJ,
324 DPO_PROTO_IP6,
325 &pfx.fp_addr,
326 n->key.sw_if_index, ~0,
327 1, FIB_ROUTE_PATH_FLAG_NONE);
328 }
Neale Ranns15002542017-09-10 04:39:11 -0700329 }
330}
331
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332static clib_error_t *
333ip6_neighbor_sw_interface_up_down (vnet_main_t * vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500334 u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
337 ip6_neighbor_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
340 {
341 u32 i, *to_delete = 0;
342
343 /* *INDENT-OFF* */
344 pool_foreach (n, nm->neighbor_pool,
345 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 if (n->key.sw_if_index == sw_if_index)
347 vec_add1 (to_delete, n - nm->neighbor_pool);
348 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
351 for (i = 0; i < vec_len (to_delete); i++)
352 {
353 n = pool_elt_at_index (nm->neighbor_pool, to_delete[i]);
354 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
Neale Ranns15002542017-09-10 04:39:11 -0700355 ip6_neighbor_adj_fib_remove (n,
356 ip6_fib_table_get_index_for_sw_if_index
357 (n->key.sw_if_index));
358 pool_put (nm->neighbor_pool, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 vec_free (to_delete);
361 }
362
363 return 0;
364}
365
366VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_neighbor_sw_interface_up_down);
367
Dave Barachd7cb1b52016-12-09 09:52:16 -0500368static void
369unset_random_neighbor_entry (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500371 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
372 vnet_main_t *vnm = vnet_get_main ();
373 vlib_main_t *vm = vnm->vlib_main;
374 ip6_neighbor_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 u32 index;
376
377 index = pool_next_index (nm->neighbor_pool, nm->neighbor_delete_rotor);
378 nm->neighbor_delete_rotor = index;
379
380 /* Try again from elt 0, could happen if an intfc goes down */
381 if (index == ~0)
382 {
383 index = pool_next_index (nm->neighbor_pool, nm->neighbor_delete_rotor);
384 nm->neighbor_delete_rotor = index;
385 }
386
387 /* Nothing left in the pool */
388 if (index == ~0)
389 return;
390
391 e = pool_elt_at_index (nm->neighbor_pool, index);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500392
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 vnet_unset_ip6_ethernet_neighbor (vm, e->key.sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500394 &e->key.ip6_address,
395 e->link_layer_address,
396 ETHER_MAC_ADDR_LEN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397}
398
Dave Barachd7cb1b52016-12-09 09:52:16 -0500399typedef struct
400{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 u8 is_add;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100402 u8 is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800403 u8 is_no_fib_entry;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404 u8 link_layer_address[6];
405 u32 sw_if_index;
406 ip6_address_t addr;
407} ip6_neighbor_set_unset_rpc_args_t;
408
Dave Barachd7cb1b52016-12-09 09:52:16 -0500409static void ip6_neighbor_set_unset_rpc_callback
410 (ip6_neighbor_set_unset_rpc_args_t * a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412static void set_unset_ip6_neighbor_rpc
413 (vlib_main_t * vm,
414 u32 sw_if_index,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800415 ip6_address_t * a, u8 * link_layer_address, int is_add, int is_static,
416 int is_no_fib_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417{
418 ip6_neighbor_set_unset_rpc_args_t args;
Dave Barachf9bd6202015-12-14 13:22:11 -0500419 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500420
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 args.sw_if_index = sw_if_index;
422 args.is_add = is_add;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100423 args.is_static = is_static;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800424 args.is_no_fib_entry = is_no_fib_entry;
Damjan Marionf1213b82016-03-13 02:22:06 +0100425 clib_memcpy (&args.addr, a, sizeof (*a));
Neale Ranns3f844d02017-02-18 00:03:54 -0800426 if (NULL != link_layer_address)
427 clib_memcpy (args.link_layer_address, link_layer_address, 6);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500428
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 vl_api_rpc_call_main_thread (ip6_neighbor_set_unset_rpc_callback,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500430 (u8 *) & args, sizeof (args));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100433static void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500434ip6_nbr_probe (ip_adjacency_t * adj)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100435{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500436 icmp6_neighbor_solicitation_header_t *h;
437 vnet_main_t *vnm = vnet_get_main ();
438 ip6_main_t *im = &ip6_main;
439 ip_interface_address_t *ia;
440 ip6_address_t *dst, *src;
441 vnet_hw_interface_t *hi;
442 vnet_sw_interface_t *si;
443 vlib_buffer_t *b;
Neale Rannsb80c5362016-10-08 13:03:40 +0100444 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500445 vlib_main_t *vm;
Neale Rannsb80c5362016-10-08 13:03:40 +0100446 u32 bi = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 vm = vlib_get_main ();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100449
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100451 dst = &adj->sub_type.nbr.next_hop.ip6;
452
453 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100454 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100455 return;
456 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 src = ip6_interface_address_matching_destination (im, dst,
458 adj->rewrite_header.
459 sw_if_index, &ia);
460 if (!src)
Neale Rannsb80c5362016-10-08 13:03:40 +0100461 {
462 return;
463 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100464
Dave Barachd7cb1b52016-12-09 09:52:16 -0500465 h = vlib_packet_template_get_packet (vm,
466 &im->discover_neighbor_packet_template,
467 &bi);
Neale Rannsb80c5362016-10-08 13:03:40 +0100468
Dave Barachd7cb1b52016-12-09 09:52:16 -0500469 hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100470
471 h->ip.dst_address.as_u8[13] = dst->as_u8[13];
472 h->ip.dst_address.as_u8[14] = dst->as_u8[14];
473 h->ip.dst_address.as_u8[15] = dst->as_u8[15];
474 h->ip.src_address = src[0];
475 h->neighbor.target_address = dst[0];
476
477 clib_memcpy (h->link_layer_option.ethernet_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500478 hi->hw_address, vec_len (hi->hw_address));
Neale Rannsb80c5362016-10-08 13:03:40 +0100479
480 h->neighbor.icmp.checksum =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500481 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
482 ASSERT (bogus_length == 0);
Neale Rannsb80c5362016-10-08 13:03:40 +0100483
484 b = vlib_get_buffer (vm, bi);
485 vnet_buffer (b)->sw_if_index[VLIB_RX] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500486 vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100487
488 /* Add encapsulation string for software interface (e.g. ethernet header). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
490 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
Neale Rannsb80c5362016-10-08 13:03:40 +0100491
492 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
494 u32 *to_next = vlib_frame_vector_args (f);
495 to_next[0] = bi;
496 f->n_vectors = 1;
497 vlib_put_frame_to_node (vm, hi->output_node_index, f);
Neale Rannsb80c5362016-10-08 13:03:40 +0100498 }
499}
500
501static void
502ip6_nd_mk_complete (adj_index_t ai, ip6_neighbor_t * nbr)
503{
504 adj_nbr_update_rewrite (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE,
505 ethernet_build_rewrite (vnet_get_main (),
506 nbr->key.sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500507 adj_get_link_type (ai),
Neale Rannsb80c5362016-10-08 13:03:40 +0100508 nbr->link_layer_address));
509}
510
511static void
Neale Ranns19c68d22016-12-07 15:38:14 +0000512ip6_nd_mk_incomplete (adj_index_t ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100513{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500514 ip_adjacency_t *adj = adj_get (ai);
Neale Ranns19c68d22016-12-07 15:38:14 +0000515
Dave Barachd7cb1b52016-12-09 09:52:16 -0500516 adj_nbr_update_rewrite (ai,
517 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
518 ethernet_build_rewrite (vnet_get_main (),
519 adj->rewrite_header.
520 sw_if_index,
521 adj_get_link_type (ai),
522 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
Neale Rannsb80c5362016-10-08 13:03:40 +0100523}
524
525#define IP6_NBR_MK_KEY(k, sw_if_index, addr) \
526{ \
527 k.sw_if_index = sw_if_index; \
528 k.ip6_address = *addr; \
529 k.pad = 0; \
530}
531
532static ip6_neighbor_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500533ip6_nd_find (u32 sw_if_index, const ip6_address_t * addr)
Neale Rannsb80c5362016-10-08 13:03:40 +0100534{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500535 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
536 ip6_neighbor_t *n = NULL;
Neale Rannsb80c5362016-10-08 13:03:40 +0100537 ip6_neighbor_key_t k;
538 uword *p;
539
Dave Barachd7cb1b52016-12-09 09:52:16 -0500540 IP6_NBR_MK_KEY (k, sw_if_index, addr);
Neale Rannsb80c5362016-10-08 13:03:40 +0100541
542 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500543 if (p)
544 {
545 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
546 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100547
548 return (n);
549}
550
551static adj_walk_rc_t
552ip6_nd_mk_complete_walk (adj_index_t ai, void *ctx)
553{
554 ip6_neighbor_t *nbr = ctx;
555
556 ip6_nd_mk_complete (ai, nbr);
557
558 return (ADJ_WALK_RC_CONTINUE);
559}
560
561static adj_walk_rc_t
562ip6_nd_mk_incomplete_walk (adj_index_t ai, void *ctx)
563{
Neale Ranns19c68d22016-12-07 15:38:14 +0000564 ip6_nd_mk_incomplete (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100565
566 return (ADJ_WALK_RC_CONTINUE);
567}
568
569void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500570ip6_ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
Neale Rannsb80c5362016-10-08 13:03:40 +0100571{
572 ip6_neighbor_t *nbr;
573 ip_adjacency_t *adj;
574
575 adj = adj_get (ai);
576
577 nbr = ip6_nd_find (sw_if_index, &adj->sub_type.nbr.next_hop.ip6);
578
Neale Ranns32e1c012016-11-22 17:07:28 +0000579 switch (adj->lookup_next_index)
Neale Rannsb80c5362016-10-08 13:03:40 +0100580 {
Ole Trøan438f6302018-02-15 21:56:06 +0000581 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -0800582 adj_glean_update_rewrite (ai);
583 break;
584 case IP_LOOKUP_NEXT_ARP:
Neale Ranns32e1c012016-11-22 17:07:28 +0000585 if (NULL != nbr)
586 {
587 adj_nbr_walk_nh6 (sw_if_index, &nbr->key.ip6_address,
588 ip6_nd_mk_complete_walk, nbr);
589 }
590 else
591 {
592 /*
593 * no matching ND entry.
594 * construct the rewrite required to for an ND packet, and stick
595 * that in the adj's pipe to smoke.
596 */
597 adj_nbr_update_rewrite (ai,
598 ADJ_NBR_REWRITE_FLAG_INCOMPLETE,
599 ethernet_build_rewrite (vnm,
600 sw_if_index,
601 VNET_LINK_IP6,
602 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
603
604 /*
605 * since the FIB has added this adj for a route, it makes sense it may
606 * want to forward traffic sometime soon. Let's send a speculative ND.
607 * just one. If we were to do periodically that wouldn't be bad either,
608 * but that's more code than i'm prepared to write at this time for
609 * relatively little reward.
610 */
611 ip6_nbr_probe (adj);
612 }
613 break;
614 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700615 {
616 /*
617 * Construct a partial rewrite from the known ethernet mcast dest MAC
618 */
619 u8 *rewrite;
620 u8 offset;
Neale Rannsb80c5362016-10-08 13:03:40 +0100621
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700622 rewrite = ethernet_build_rewrite (vnm,
623 sw_if_index,
624 adj->ia_link,
625 ethernet_ip6_mcast_dst_addr ());
Neale Ranns32e1c012016-11-22 17:07:28 +0000626
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700627 /*
628 * Complete the remaining fields of the adj's rewrite to direct the
629 * complete of the rewrite at switch time by copying in the IP
630 * dst address's bytes.
631 * Ofset is 2 bytes into the desintation address. And we write 4 bytes.
632 */
633 offset = vec_len (rewrite) - 2;
634 adj_mcast_update_rewrite (ai, rewrite, offset, 0xffffffff);
Neale Ranns32e1c012016-11-22 17:07:28 +0000635
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700636 break;
637 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000638 case IP_LOOKUP_NEXT_DROP:
639 case IP_LOOKUP_NEXT_PUNT:
640 case IP_LOOKUP_NEXT_LOCAL:
641 case IP_LOOKUP_NEXT_REWRITE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800642 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000643 case IP_LOOKUP_NEXT_MIDCHAIN:
644 case IP_LOOKUP_NEXT_ICMP_ERROR:
645 case IP_LOOKUP_N_NEXT:
646 ASSERT (0);
647 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100648 }
649}
650
Neale Ranns15002542017-09-10 04:39:11 -0700651
652static void
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700653ip6_neighbor_adj_fib_add (ip6_neighbor_t * n, u32 fib_index)
Neale Ranns15002542017-09-10 04:39:11 -0700654{
Neale Ranns53da2212018-02-24 02:11:19 -0800655 if (ip6_address_is_link_local_unicast (&n->key.ip6_address))
656 {
657 ip6_ll_prefix_t pfx = {
658 .ilp_addr = n->key.ip6_address,
659 .ilp_sw_if_index = n->key.sw_if_index,
660 };
661 n->fib_entry_index =
662 ip6_ll_table_entry_update (&pfx, FIB_ROUTE_PATH_FLAG_NONE);
663 }
664 else
665 {
666 fib_prefix_t pfx = {
667 .fp_len = 128,
668 .fp_proto = FIB_PROTOCOL_IP6,
669 .fp_addr.ip6 = n->key.ip6_address,
670 };
Neale Ranns15002542017-09-10 04:39:11 -0700671
Neale Ranns53da2212018-02-24 02:11:19 -0800672 n->fib_entry_index =
673 fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
674 FIB_ENTRY_FLAG_ATTACHED,
675 DPO_PROTO_IP6, &pfx.fp_addr,
676 n->key.sw_if_index, ~0, 1, NULL,
677 FIB_ROUTE_PATH_FLAG_NONE);
678 }
Neale Ranns15002542017-09-10 04:39:11 -0700679}
680
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681int
682vnet_set_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500683 u32 sw_if_index,
684 ip6_address_t * a,
685 u8 * link_layer_address,
686 uword n_bytes_link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800687 int is_static, int is_no_fib_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500689 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500691 ip6_neighbor_t *n = 0;
692 int make_new_nd_cache_entry = 1;
693 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 u32 next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500695 pending_resolution_t *pr, *mc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696
Damjan Marion586afd72017-04-05 19:18:20 +0200697 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 {
699 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800700 1 /* set new neighbor */ , is_static,
701 is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702 return 0;
703 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704
705 k.sw_if_index = sw_if_index;
706 k.ip6_address = a[0];
707 k.pad = 0;
708
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 p = mhash_get (&nm->neighbor_index_by_key, &k);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500710 if (p)
711 {
712 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
713 /* Refuse to over-write static neighbor entry. */
714 if (!is_static && (n->flags & IP6_NEIGHBOR_FLAG_STATIC))
715 return -2;
716 make_new_nd_cache_entry = 0;
717 }
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100718
Dave Barachd7cb1b52016-12-09 09:52:16 -0500719 if (make_new_nd_cache_entry)
720 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500721 pool_get (nm->neighbor_pool, n);
722 mhash_set (&nm->neighbor_index_by_key, &k, n - nm->neighbor_pool,
723 /* old value */ 0);
724 n->key = k;
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700725 n->fib_entry_index = FIB_NODE_INDEX_INVALID;
Neale Rannsb80c5362016-10-08 13:03:40 +0100726
Dave Barachd7cb1b52016-12-09 09:52:16 -0500727 clib_memcpy (n->link_layer_address,
728 link_layer_address, n_bytes_link_layer_address);
Neale Rannsb80c5362016-10-08 13:03:40 +0100729
Dave Barachd7cb1b52016-12-09 09:52:16 -0500730 /*
731 * create the adj-fib. the entry in the FIB table for and to the peer.
732 */
Neale Rannsb3b2de72017-03-08 05:17:22 -0800733 if (!is_no_fib_entry)
734 {
Neale Ranns53da2212018-02-24 02:11:19 -0800735 ip6_neighbor_adj_fib_add
736 (n, ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index));
Neale Ranns2a3ea492017-04-19 05:24:40 -0700737 }
738 else
739 {
Neale Rannsb3b2de72017-03-08 05:17:22 -0800740 n->flags |= IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY;
741 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500742 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100743 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500744 {
745 /*
746 * prevent a DoS attack from the data-plane that
747 * spams us with no-op updates to the MAC address
748 */
749 if (0 == memcmp (n->link_layer_address,
750 link_layer_address, n_bytes_link_layer_address))
Dave Barach59b25652017-09-10 15:04:27 -0400751 goto check_customers;
Neale Rannsb80c5362016-10-08 13:03:40 +0100752
Dave Barachd7cb1b52016-12-09 09:52:16 -0500753 clib_memcpy (n->link_layer_address,
754 link_layer_address, n_bytes_link_layer_address);
755 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756
Neale Rannsb80c5362016-10-08 13:03:40 +0100757 /* Update time stamp and flags. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758 n->cpu_time_last_updated = clib_cpu_time_now ();
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100759 if (is_static)
760 n->flags |= IP6_NEIGHBOR_FLAG_STATIC;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100761 else
762 n->flags |= IP6_NEIGHBOR_FLAG_DYNAMIC;
763
Neale Rannsb80c5362016-10-08 13:03:40 +0100764 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500765 &n->key.ip6_address, ip6_nd_mk_complete_walk, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
Dave Barach59b25652017-09-10 15:04:27 -0400767check_customers:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768 /* Customer(s) waiting for this address to be resolved? */
769 p = mhash_get (&nm->pending_resolutions_by_address, a);
John Lo1edfba92016-08-27 01:11:57 -0400770 if (p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 {
John Lo1edfba92016-08-27 01:11:57 -0400772 next_index = p[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500773
774 while (next_index != (u32) ~ 0)
775 {
John Lo1edfba92016-08-27 01:11:57 -0400776 pr = pool_elt_at_index (nm->pending_resolutions, next_index);
777 vlib_process_signal_event (vm, pr->node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500778 pr->type_opaque, pr->data);
John Lo1edfba92016-08-27 01:11:57 -0400779 next_index = pr->next_index;
780 pool_put (nm->pending_resolutions, pr);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500781 }
John Lo1edfba92016-08-27 01:11:57 -0400782
783 mhash_unset (&nm->pending_resolutions_by_address, a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784 }
785
John Lo1edfba92016-08-27 01:11:57 -0400786 /* Customer(s) requesting ND event for this address? */
787 p = mhash_get (&nm->mac_changes_by_address, a);
788 if (p)
789 {
790 next_index = p[0];
791
Dave Barachd7cb1b52016-12-09 09:52:16 -0500792 while (next_index != (u32) ~ 0)
793 {
794 int (*fp) (u32, u8 *, u32, ip6_address_t *);
795 int rv = 1;
796 mc = pool_elt_at_index (nm->mac_changes, next_index);
797 fp = mc->data_callback;
John Lo1edfba92016-08-27 01:11:57 -0400798
Dave Barachd7cb1b52016-12-09 09:52:16 -0500799 /* Call the user's data callback, return 1 to suppress dup events */
800 if (fp)
801 rv =
802 (*fp) (mc->data, link_layer_address, sw_if_index, &ip6a_zero);
803 /*
804 * Signal the resolver process, as long as the user
805 * says they want to be notified
806 */
807 if (rv == 0)
808 vlib_process_signal_event (vm, mc->node_index,
809 mc->type_opaque, mc->data);
810 next_index = mc->next_index;
811 }
John Lo1edfba92016-08-27 01:11:57 -0400812 }
813
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814 return 0;
815}
816
817int
818vnet_unset_ip6_ethernet_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500819 u32 sw_if_index,
820 ip6_address_t * a,
821 u8 * link_layer_address,
822 uword n_bytes_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500824 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825 ip6_neighbor_key_t k;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500826 ip6_neighbor_t *n;
827 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828 int rv = 0;
829
Damjan Marion586afd72017-04-05 19:18:20 +0200830 if (vlib_get_thread_index ())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831 {
832 set_unset_ip6_neighbor_rpc (vm, sw_if_index, a, link_layer_address,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800833 0 /* unset */ , 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 return 0;
835 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836
837 k.sw_if_index = sw_if_index;
838 k.ip6_address = a[0];
839 k.pad = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500840
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841 p = mhash_get (&nm->neighbor_index_by_key, &k);
842 if (p == 0)
843 {
844 rv = -1;
845 goto out;
846 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500847
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848 n = pool_elt_at_index (nm->neighbor_pool, p[0]);
Neale Ranns19c68d22016-12-07 15:38:14 +0000849 mhash_unset (&nm->neighbor_index_by_key, &n->key, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100850
Neale Rannsb80c5362016-10-08 13:03:40 +0100851 adj_nbr_walk_nh6 (sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500852 &n->key.ip6_address, ip6_nd_mk_incomplete_walk, NULL);
Neale Rannsb80c5362016-10-08 13:03:40 +0100853
Neale Rannsd5b6aa12017-05-16 08:46:45 -0700854
855 if (FIB_NODE_INDEX_INVALID != n->fib_entry_index)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700856 {
857 fib_prefix_t pfx = {
858 .fp_len = 128,
859 .fp_proto = FIB_PROTOCOL_IP6,
860 .fp_addr.ip6 = n->key.ip6_address,
861 };
862 fib_table_entry_path_remove
863 (ip6_fib_table_get_index_for_sw_if_index (n->key.sw_if_index),
864 &pfx,
865 FIB_SOURCE_ADJ,
Neale Rannsda78f952017-05-24 09:15:43 -0700866 DPO_PROTO_IP6,
Neale Rannsdcd6d622017-05-26 02:59:16 -0700867 &pfx.fp_addr, n->key.sw_if_index, ~0, 1, FIB_ROUTE_PATH_FLAG_NONE);
868 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869 pool_put (nm->neighbor_pool, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500870
871out:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872 return rv;
873}
874
Dave Barachd7cb1b52016-12-09 09:52:16 -0500875static void ip6_neighbor_set_unset_rpc_callback
876 (ip6_neighbor_set_unset_rpc_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500878 vlib_main_t *vm = vlib_get_main ();
879 if (a->is_add)
880 vnet_set_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800881 a->link_layer_address, 6, a->is_static,
882 a->is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700883 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500884 vnet_unset_ip6_ethernet_neighbor (vm, a->sw_if_index, &a->addr,
885 a->link_layer_address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887
888static int
889ip6_neighbor_sort (void *a1, void *a2)
890{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500891 vnet_main_t *vnm = vnet_get_main ();
892 ip6_neighbor_t *n1 = a1, *n2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700893 int cmp;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500894 cmp = vnet_sw_interface_compare (vnm, n1->key.sw_if_index,
895 n2->key.sw_if_index);
896 if (!cmp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897 cmp = ip6_address_compare (&n1->key.ip6_address, &n2->key.ip6_address);
898 return cmp;
899}
900
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100901ip6_neighbor_t *
902ip6_neighbors_entries (u32 sw_if_index)
903{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500904 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100905 ip6_neighbor_t *n, *ns = 0;
906
907 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500908 pool_foreach (n, nm->neighbor_pool,
909 ({
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100910 if (sw_if_index != ~0 && n->key.sw_if_index != sw_if_index)
911 continue;
912 vec_add1 (ns, n[0]);
913 }));
914 /* *INDENT-ON* */
915
916 if (ns)
917 vec_sort_with_function (ns, ip6_neighbor_sort);
918 return ns;
919}
920
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921static clib_error_t *
922show_ip6_neighbors (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500923 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500925 vnet_main_t *vnm = vnet_get_main ();
926 ip6_neighbor_t *n, *ns;
927 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 u32 sw_if_index;
929
930 /* Filter entries by interface if given. */
931 sw_if_index = ~0;
932 (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
933
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100934 ns = ip6_neighbors_entries (sw_if_index);
Billy McFall46529cd2016-10-14 10:45:49 -0400935 if (ns)
936 {
Billy McFall46529cd2016-10-14 10:45:49 -0400937 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500938 vec_foreach (n, ns)
939 {
940 vlib_cli_output (vm, "%U", format_ip6_neighbor_ip6_entry, vm, n);
Billy McFall46529cd2016-10-14 10:45:49 -0400941 }
942 vec_free (ns);
943 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
945 return error;
946}
947
Billy McFall0683c9c2016-10-13 08:27:31 -0400948/*?
949 * This command is used to display the adjacent IPv6 hosts found via
950 * neighbor discovery. Optionally, limit the output to the specified
951 * interface.
952 *
953 * @cliexpar
954 * Example of how to display the IPv6 neighbor adjacency table:
955 * @cliexstart{show ip6 neighbors}
956 * Time Address Flags Link layer Interface
957 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
958 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
959 * 886.6654 ::1:1:c:0:9 S 02:fe:e4:45:27:5b GigabitEthernet3/0/0
960 * @cliexend
961 * Example of how to display the IPv6 neighbor adjacency table for given interface:
962 * @cliexstart{show ip6 neighbors GigabitEthernet2/0/0}
963 * Time Address Flags Link layer Interface
964 * 34.0910 ::a:1:1:0:7 02:fe:6a:07:39:6f GigabitEthernet2/0/0
965 * 173.2916 ::b:5:1:c:2 02:fe:50:62:3a:94 GigabitEthernet2/0/0
966 * @cliexend
967?*/
968/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700969VLIB_CLI_COMMAND (show_ip6_neighbors_command, static) = {
970 .path = "show ip6 neighbors",
971 .function = show_ip6_neighbors,
Billy McFall0683c9c2016-10-13 08:27:31 -0400972 .short_help = "show ip6 neighbors [<interface>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973};
Billy McFall0683c9c2016-10-13 08:27:31 -0400974/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975
976static clib_error_t *
977set_ip6_neighbor (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500978 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500980 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981 ip6_address_t addr;
982 u8 mac_address[6];
983 int addr_valid = 0;
984 int is_del = 0;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100985 int is_static = 0;
Neale Rannsb3b2de72017-03-08 05:17:22 -0800986 int is_no_fib_entry = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987 u32 sw_if_index;
988
Dave Barachd7cb1b52016-12-09 09:52:16 -0500989 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990 {
991 /* intfc, ip6-address, mac-address */
992 if (unformat (input, "%U %U %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500993 unformat_vnet_sw_interface, vnm, &sw_if_index,
994 unformat_ip6_address, &addr,
995 unformat_ethernet_address, mac_address))
996 addr_valid = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997
998 else if (unformat (input, "delete") || unformat (input, "del"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500999 is_del = 1;
Pierre Pfister1dabaaf2016-04-25 14:15:15 +01001000 else if (unformat (input, "static"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001001 is_static = 1;
Neale Rannsb3b2de72017-03-08 05:17:22 -08001002 else if (unformat (input, "no-fib-entry"))
1003 is_no_fib_entry = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001004 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001005 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001006 }
1007
1008 if (!addr_valid)
1009 return clib_error_return (0, "Missing interface, ip6 or hw address");
Dave Barachd7cb1b52016-12-09 09:52:16 -05001010
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011 if (!is_del)
1012 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index, &addr,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001013 mac_address, sizeof (mac_address),
Neale Rannsb3b2de72017-03-08 05:17:22 -08001014 is_static, is_no_fib_entry);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015 else
1016 vnet_unset_ip6_ethernet_neighbor (vm, sw_if_index, &addr,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001017 mac_address, sizeof (mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018 return 0;
1019}
1020
Billy McFall0683c9c2016-10-13 08:27:31 -04001021/*?
1022 * This command is used to manually add an entry to the IPv6 neighbor
1023 * adjacency table. Optionally, the entry can be added as static. It is
1024 * also used to remove an entry from the table. Use the '<em>show ip6
1025 * neighbors</em>' command to display all learned and manually entered entries.
1026 *
1027 * @cliexpar
1028 * Example of how to add a static entry to the IPv6 neighbor adjacency table:
1029 * @cliexcmd{set ip6 neighbor GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b static}
1030 * Example of how to delete an entry from the IPv6 neighbor adjacency table:
1031 * @cliexcmd{set ip6 neighbor del GigabitEthernet2/0/0 ::1:1:c:0:9 02:fe:e4:45:27:5b}
1032?*/
1033/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001034VLIB_CLI_COMMAND (set_ip6_neighbor_command, static) =
1035{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036 .path = "set ip6 neighbor",
1037 .function = set_ip6_neighbor,
Billy McFall0683c9c2016-10-13 08:27:31 -04001038 .short_help = "set ip6 neighbor [del] <interface> <ip6-address> <mac-address> [static]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039};
Billy McFall0683c9c2016-10-13 08:27:31 -04001040/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001041
Dave Barachd7cb1b52016-12-09 09:52:16 -05001042typedef enum
1043{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001044 ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP,
1045 ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY,
1046 ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
1047} icmp6_neighbor_solicitation_or_advertisement_next_t;
1048
1049static_always_inline uword
1050icmp6_neighbor_solicitation_or_advertisement (vlib_main_t * vm,
1051 vlib_node_runtime_t * node,
1052 vlib_frame_t * frame,
1053 uword is_solicitation)
1054{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001055 vnet_main_t *vnm = vnet_get_main ();
1056 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001058 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059 u32 n_left_from, n_left_to_next, next_index, n_advertisements_sent;
1060 icmp6_neighbor_discovery_option_type_t option_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001061 vlib_node_runtime_t *error_node =
1062 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063 int bogus_length;
1064
1065 from = vlib_frame_vector_args (frame);
1066 n_left_from = n_packets;
1067 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001068
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069 if (node->flags & VLIB_NODE_FLAG_TRACE)
1070 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1071 /* stride */ 1,
1072 sizeof (icmp6_input_trace_t));
1073
Dave Barachd7cb1b52016-12-09 09:52:16 -05001074 option_type =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075 (is_solicitation
1076 ? ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address
1077 : ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address);
1078 n_advertisements_sent = 0;
1079
1080 while (n_left_from > 0)
1081 {
1082 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1083
1084 while (n_left_from > 0 && n_left_to_next > 0)
1085 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001086 vlib_buffer_t *p0;
1087 ip6_header_t *ip0;
1088 icmp6_neighbor_solicitation_or_advertisement_header_t *h0;
1089 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001091 u32 ip6_sadd_link_local, ip6_sadd_unspecified;
1092 int is_rewrite0;
1093 u32 ni0;
1094
Ed Warnickecb9cada2015-12-08 15:45:58 -07001095 bi0 = to_next[0] = from[0];
1096
1097 from += 1;
1098 to_next += 1;
1099 n_left_from -= 1;
1100 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001101
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102 p0 = vlib_get_buffer (vm, bi0);
1103 ip0 = vlib_buffer_get_current (p0);
1104 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001105 options_len0 =
1106 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107
1108 error0 = ICMP6_ERROR_NONE;
1109 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001110 ip6_sadd_link_local =
1111 ip6_address_is_link_local_unicast (&ip0->src_address);
1112 ip6_sadd_unspecified =
1113 ip6_address_is_unspecified (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114
1115 /* Check that source address is unspecified, link-local or else on-link. */
1116 if (!ip6_sadd_unspecified && !ip6_sadd_link_local)
1117 {
1118 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119
Dave Barachd7cb1b52016-12-09 09:52:16 -05001120 if (ADJ_INDEX_INVALID != src_adj_index0)
1121 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001122 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123
Dave Barachd7cb1b52016-12-09 09:52:16 -05001124 /* Allow all realistic-looking rewrite adjacencies to pass */
1125 ni0 = adj0->lookup_next_index;
1126 is_rewrite0 = (ni0 >= IP_LOOKUP_NEXT_ARP) &&
1127 (ni0 < IP6_LOOKUP_N_NEXT);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001128
Dave Barachd7cb1b52016-12-09 09:52:16 -05001129 error0 = ((adj0->rewrite_header.sw_if_index != sw_if_index0
1130 || !is_rewrite0)
1131 ?
1132 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK
1133 : error0);
1134 }
1135 else
1136 {
1137 error0 =
1138 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_NOT_ON_LINK;
1139 }
1140 }
1141
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142 o0 = (void *) (h0 + 1);
1143 o0 = ((options_len0 == 8 && o0->header.type == option_type
1144 && o0->header.n_data_u64s == 1) ? o0 : 0);
1145
1146 /* If src address unspecified or link local, donot learn neighbor MAC */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001147 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
Neale Ranns2a3ea492017-04-19 05:24:40 -07001148 !ip6_sadd_unspecified))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001149 {
1150 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
1151 if (nm->limit_neighbor_cache_size &&
1152 pool_elts (nm->neighbor_pool) >=
1153 nm->limit_neighbor_cache_size)
1154 unset_random_neighbor_entry ();
1155 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1156 is_solicitation ?
1157 &ip0->src_address :
1158 &h0->target_address,
1159 o0->ethernet_address,
1160 sizeof (o0->ethernet_address),
Neale Ranns53da2212018-02-24 02:11:19 -08001161 0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001162 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163
1164 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1165 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001166 /* Check that target address is local to this router. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001167 fib_node_index_t fei;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001168 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169
Dave Barachd7cb1b52016-12-09 09:52:16 -05001170 fib_index =
1171 ip6_fib_table_get_index_for_sw_if_index (sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001172
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001173 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001174 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001175 error0 = ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1176 }
1177 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001178 {
Neale Ranns53da2212018-02-24 02:11:19 -08001179 if (ip6_address_is_link_local_unicast (&h0->target_address))
1180 {
1181 fei = ip6_fib_table_lookup_exact_match
1182 (ip6_ll_fib_get (sw_if_index0),
1183 &h0->target_address, 128);
1184 }
1185 else
1186 {
1187 fei = ip6_fib_table_lookup_exact_match (fib_index,
1188 &h0->target_address,
1189 128);
1190 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001191
Neale Ranns3f844d02017-02-18 00:03:54 -08001192 if (FIB_NODE_INDEX_INVALID == fei)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001193 {
Neale Ranns3f844d02017-02-18 00:03:54 -08001194 /* The target address is not in the FIB */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001195 error0 =
1196 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001197 }
Neale Ranns3f844d02017-02-18 00:03:54 -08001198 else
1199 {
1200 if (FIB_ENTRY_FLAG_LOCAL &
1201 fib_entry_get_flags_for_source (fei,
1202 FIB_SOURCE_INTERFACE))
1203 {
1204 /* It's an address that belongs to one of our interfaces
1205 * that's good. */
1206 }
1207 else
1208 if (fib_entry_is_sourced
Neale Ranns53da2212018-02-24 02:11:19 -08001209 (fei, FIB_SOURCE_IP6_ND_PROXY) ||
1210 fib_entry_is_sourced (fei, FIB_SOURCE_IP6_ND))
Neale Ranns3f844d02017-02-18 00:03:54 -08001211 {
1212 /* The address was added by IPv6 Proxy ND config.
1213 * We should only respond to these if the NS arrived on
1214 * the link that has a matching covering prefix */
1215 }
1216 else
1217 {
1218 error0 =
1219 ICMP6_ERROR_NEIGHBOR_SOLICITATION_SOURCE_UNKNOWN;
1220 }
1221 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001222 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001223 }
1224
1225 if (is_solicitation)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001226 next0 = (error0 != ICMP6_ERROR_NONE
1227 ? ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP
1228 : ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229 else
1230 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001231 next0 = 0;
1232 error0 = error0 == ICMP6_ERROR_NONE ?
1233 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_RX : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234 }
1235
1236 if (is_solicitation && error0 == ICMP6_ERROR_NONE)
1237 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001238 vnet_sw_interface_t *sw_if0;
1239 ethernet_interface_t *eth_if0;
1240 ethernet_header_t *eth0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241
Dave Barachd7cb1b52016-12-09 09:52:16 -05001242 /* dst address is either source address or the all-nodes mcast addr */
1243 if (!ip6_sadd_unspecified)
1244 ip0->dst_address = ip0->src_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001246 ip6_set_reserved_multicast_address (&ip0->dst_address,
1247 IP6_MULTICAST_SCOPE_link_local,
1248 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249
1250 ip0->src_address = h0->target_address;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001251 ip0->hop_limit = 255;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252 h0->icmp.type = ICMP6_neighbor_advertisement;
1253
1254 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1255 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001256 eth_if0 =
1257 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001258 if (eth_if0 && o0)
1259 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001260 clib_memcpy (o0->ethernet_address, eth_if0->address, 6);
1261 o0->header.type =
1262 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001263 }
1264
1265 h0->advertisement_flags = clib_host_to_net_u32
1266 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED
1267 | ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
1268
1269 h0->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001270 h0->icmp.checksum =
1271 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1272 &bogus_length);
1273 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274
Dave Barachd7cb1b52016-12-09 09:52:16 -05001275 /* Reuse current MAC header, copy SMAC to DMAC and
1276 * interface MAC to SMAC */
1277 vlib_buffer_advance (p0, -ethernet_buffer_header_size (p0));
1278 eth0 = vlib_buffer_get_current (p0);
1279 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
1280 if (eth_if0)
1281 clib_memcpy (eth0->src_address, eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282
Dave Barachd7cb1b52016-12-09 09:52:16 -05001283 /* Setup input and output sw_if_index for packet */
1284 ASSERT (vnet_buffer (p0)->sw_if_index[VLIB_RX] == sw_if_index0);
1285 vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1286 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
1287 vnet_main.local_interface_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288
1289 n_advertisements_sent++;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001290 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291
1292 p0->error = error_node->errors[error0];
1293
1294 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1295 to_next, n_left_to_next,
1296 bi0, next0);
1297 }
1298
1299 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1300 }
1301
1302 /* Account for advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001303 vlib_error_count (vm, error_node->node_index,
1304 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX,
1305 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001306
1307 return frame->n_vectors;
1308}
1309
1310/* for "syslogging" - use elog for now */
1311#define foreach_log_level \
1312 _ (DEBUG, "DEBUG") \
1313 _ (INFO, "INFORMATION") \
1314 _ (NOTICE, "NOTICE") \
1315 _ (WARNING, "WARNING") \
1316 _ (ERR, "ERROR") \
1317 _ (CRIT, "CRITICAL") \
1318 _ (ALERT, "ALERT") \
1319 _ (EMERG, "EMERGENCY")
1320
Dave Barachd7cb1b52016-12-09 09:52:16 -05001321typedef enum
1322{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323#define _(f,s) LOG_##f,
1324 foreach_log_level
1325#undef _
1326} log_level_t;
1327
Dave Barachd7cb1b52016-12-09 09:52:16 -05001328static char *log_level_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329#define _(f,s) s,
1330 foreach_log_level
1331#undef _
1332};
1333
Dave Barachd7cb1b52016-12-09 09:52:16 -05001334static int logmask = 1 << LOG_DEBUG;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335
1336static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05001337ip6_neighbor_syslog (vlib_main_t * vm, int priority, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001338{
1339 /* just use elog for now */
1340 u8 *what;
1341 va_list va;
1342
Dave Barachd7cb1b52016-12-09 09:52:16 -05001343 if ((priority > LOG_EMERG) || !(logmask & (1 << priority)))
1344 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345
1346 va_start (va, fmt);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001347 if (fmt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348 {
1349 what = va_format (0, fmt, &va);
1350
Dave Barachd7cb1b52016-12-09 09:52:16 -05001351 ELOG_TYPE_DECLARE (e) =
1352 {
1353 .format = "ip6 nd: (%s): %s",.format_args = "T4T4",};
1354 struct
1355 {
1356 u32 s[2];
1357 } *ed;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 ed = ELOG_DATA (&vm->elog_main, e);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001359 ed->s[0] = elog_string (&vm->elog_main, log_level_strings[priority]);
1360 ed->s[1] = elog_string (&vm->elog_main, (char *) what);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 }
1362 va_end (va);
1363 return;
1364}
1365
1366/* ipv6 neighbor discovery - router advertisements */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001367typedef enum
1368{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369 ICMP6_ROUTER_SOLICITATION_NEXT_DROP,
1370 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW,
1371 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX,
1372 ICMP6_ROUTER_SOLICITATION_N_NEXT,
1373} icmp6_router_solicitation_or_advertisement_next_t;
1374
1375static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001376icmp6_router_solicitation (vlib_main_t * vm,
1377 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001379 vnet_main_t *vnm = vnet_get_main ();
1380 ip6_main_t *im = &ip6_main;
1381 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001382 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001383 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 u32 n_left_from, n_left_to_next, next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001385 u32 n_advertisements_sent = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001386 int bogus_length;
1387
1388 icmp6_neighbor_discovery_option_type_t option_type;
1389
Dave Barachd7cb1b52016-12-09 09:52:16 -05001390 vlib_node_runtime_t *error_node =
1391 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001392
1393 from = vlib_frame_vector_args (frame);
1394 n_left_from = n_packets;
1395 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001396
Ed Warnickecb9cada2015-12-08 15:45:58 -07001397 if (node->flags & VLIB_NODE_FLAG_TRACE)
1398 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1399 /* stride */ 1,
1400 sizeof (icmp6_input_trace_t));
1401
1402 /* source may append his LL address */
1403 option_type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
1404
1405 while (n_left_from > 0)
1406 {
1407 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001408
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409 while (n_left_from > 0 && n_left_to_next > 0)
1410 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001411 vlib_buffer_t *p0;
1412 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001413 ip6_radv_t *radv_info = 0;
1414
Dave Barachd7cb1b52016-12-09 09:52:16 -05001415 icmp6_neighbor_discovery_header_t *h0;
1416 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *o0;
1417
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418 u32 bi0, options_len0, sw_if_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001419 u32 is_solicitation = 1, is_dropped = 0;
1420 u32 is_unspecified, is_link_local;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001421
1422 bi0 = to_next[0] = from[0];
1423
1424 from += 1;
1425 to_next += 1;
1426 n_left_from -= 1;
1427 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001428
Ed Warnickecb9cada2015-12-08 15:45:58 -07001429 p0 = vlib_get_buffer (vm, bi0);
1430 ip0 = vlib_buffer_get_current (p0);
1431 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001432 options_len0 =
1433 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
1434 is_unspecified = ip6_address_is_unspecified (&ip0->src_address);
1435 is_link_local =
1436 ip6_address_is_link_local_unicast (&ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437
1438 error0 = ICMP6_ERROR_NONE;
1439 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001440
Ed Warnickecb9cada2015-12-08 15:45:58 -07001441 /* check if solicitation (not from nd_timer node) */
1442 if (ip6_address_is_unspecified (&ip0->dst_address))
1443 is_solicitation = 0;
1444
1445 /* Check that source address is unspecified, link-local or else on-link. */
1446 if (!is_unspecified && !is_link_local)
1447 {
1448 u32 src_adj_index0 = ip6_src_lookup_for_packet (im, p0, ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449
Dave Barachd7cb1b52016-12-09 09:52:16 -05001450 if (ADJ_INDEX_INVALID != src_adj_index0)
1451 {
Neale Ranns107e7d42017-04-11 09:55:19 -07001452 ip_adjacency_t *adj0 = adj_get (src_adj_index0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001453
Dave Barachd7cb1b52016-12-09 09:52:16 -05001454 error0 = (adj0->rewrite_header.sw_if_index != sw_if_index0
1455 ?
1456 ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK
1457 : error0);
1458 }
1459 else
1460 {
1461 error0 = ICMP6_ERROR_ROUTER_SOLICITATION_SOURCE_NOT_ON_LINK;
1462 }
1463 }
1464
Ed Warnickecb9cada2015-12-08 15:45:58 -07001465 /* check for source LL option and process */
1466 o0 = (void *) (h0 + 1);
1467 o0 = ((options_len0 == 8
1468 && o0->header.type == option_type
Dave Barachd7cb1b52016-12-09 09:52:16 -05001469 && o0->header.n_data_u64s == 1) ? o0 : 0);
1470
Ed Warnickecb9cada2015-12-08 15:45:58 -07001471 /* if src address unspecified IGNORE any options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001472 if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 &&
1473 !is_unspecified && !is_link_local))
1474 {
1475 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
1476 if (nm->limit_neighbor_cache_size &&
1477 pool_elts (nm->neighbor_pool) >=
1478 nm->limit_neighbor_cache_size)
1479 unset_random_neighbor_entry ();
1480
1481 vnet_set_ip6_ethernet_neighbor (vm, sw_if_index0,
1482 &ip0->src_address,
1483 o0->ethernet_address,
1484 sizeof (o0->ethernet_address),
Neale Rannsb3b2de72017-03-08 05:17:22 -08001485 0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001486 }
1487
Ed Warnickecb9cada2015-12-08 15:45:58 -07001488 /* default is to drop */
1489 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001490
Ed Warnickecb9cada2015-12-08 15:45:58 -07001491 if (error0 == ICMP6_ERROR_NONE)
1492 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001493 vnet_sw_interface_t *sw_if0;
1494 ethernet_interface_t *eth_if0;
1495 u32 adj_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001496
1497 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1498 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001499 eth_if0 =
1500 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001501
1502 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001503 error0 =
1504 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1505 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001506
1507 if (error0 == ICMP6_ERROR_NONE)
1508 {
1509 u32 ri;
1510
1511 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001512 p0->current_length -=
1513 (options_len0 +
1514 sizeof (icmp6_neighbor_discovery_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001515
1516 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001517 vec_validate_init_empty
1518 (nm->if_radv_pool_index_by_sw_if_index, sw_if_index0, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001519
1520 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
1521
Dave Barachd7cb1b52016-12-09 09:52:16 -05001522 if (ri != ~0)
1523 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1524
1525 error0 =
1526 ((!radv_info) ?
1527 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1528 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001529
1530 if (error0 == ICMP6_ERROR_NONE)
1531 {
1532 f64 now = vlib_time_now (vm);
1533
1534 /* for solicited adverts - need to rate limit */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001535 if (is_solicitation)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001536 {
Neale Ranns75152282017-01-09 01:00:45 -08001537 if (0 != radv_info->last_radv_time &&
1538 (now - radv_info->last_radv_time) <
Dave Barachd7cb1b52016-12-09 09:52:16 -05001539 MIN_DELAY_BETWEEN_RAS)
1540 is_dropped = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001541 else
1542 radv_info->last_radv_time = now;
1543 }
1544
1545 /* send now */
1546 icmp6_router_advertisement_header_t rh;
1547
1548 rh.icmp.type = ICMP6_router_advertisement;
1549 rh.icmp.code = 0;
1550 rh.icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001551
Ed Warnickecb9cada2015-12-08 15:45:58 -07001552 rh.current_hop_limit = radv_info->curr_hop_limit;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001553 rh.router_lifetime_in_sec =
1554 clib_host_to_net_u16
1555 (radv_info->adv_router_lifetime_in_sec);
1556 rh.
1557 time_in_msec_between_retransmitted_neighbor_solicitations
1558 =
1559 clib_host_to_net_u32 (radv_info->
1560 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
1561 rh.neighbor_reachable_time_in_msec =
1562 clib_host_to_net_u32 (radv_info->
1563 adv_neighbor_reachable_time_in_msec);
1564
1565 rh.flags =
1566 (radv_info->adv_managed_flag) ?
1567 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP :
1568 0;
1569 rh.flags |=
1570 ((radv_info->adv_other_flag) ?
1571 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP :
1572 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001573
1574
Dave Barachd7cb1b52016-12-09 09:52:16 -05001575 u16 payload_length =
1576 sizeof (icmp6_router_advertisement_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001577
1578 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001579 vlib_buffer_get_free_list_index
1580 (p0), bi0, (void *) &rh,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001581 sizeof
1582 (icmp6_router_advertisement_header_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001583
Dave Barachd7cb1b52016-12-09 09:52:16 -05001584 if (radv_info->adv_link_layer_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001585 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001586 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t
1587 h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588
Dave Barachd7cb1b52016-12-09 09:52:16 -05001589 h.header.type =
1590 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001591 h.header.n_data_u64s = 1;
1592
1593 /* copy ll address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001594 clib_memcpy (&h.ethernet_address[0],
1595 eth_if0->address, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001596
1597 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001598 vlib_buffer_get_free_list_index
1599 (p0), bi0, (void *) &h,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001600 sizeof
1601 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001602
Dave Barachd7cb1b52016-12-09 09:52:16 -05001603 payload_length +=
1604 sizeof
1605 (icmp6_neighbor_discovery_ethernet_link_layer_address_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001606 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001607
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608 /* add MTU option */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001609 if (radv_info->adv_link_mtu)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610 {
1611 icmp6_neighbor_discovery_mtu_option_t h;
1612
1613 h.unused = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001614 h.mtu =
1615 clib_host_to_net_u32 (radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001616 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu;
1617 h.header.n_data_u64s = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001618
1619 payload_length +=
1620 sizeof (icmp6_neighbor_discovery_mtu_option_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001621
1622 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001623 vlib_buffer_get_free_list_index
1624 (p0), bi0, (void *) &h,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001625 sizeof
1626 (icmp6_neighbor_discovery_mtu_option_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001627 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001628
Ed Warnickecb9cada2015-12-08 15:45:58 -07001629 /* add advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001630 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631
Dave Barachd7cb1b52016-12-09 09:52:16 -05001632 /* *INDENT-OFF* */
1633 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
1634 ({
1635 if(pr_info->enabled &&
1636 (!pr_info->decrement_lifetime_flag
1637 || (pr_info->pref_lifetime_expires >0)))
1638 {
1639 /* advertise this prefix */
1640 icmp6_neighbor_discovery_prefix_information_option_t h;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001641
Dave Barachd7cb1b52016-12-09 09:52:16 -05001642 h.header.type = ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information;
1643 h.header.n_data_u64s = (sizeof(icmp6_neighbor_discovery_prefix_information_option_t) >> 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644
Dave Barachd7cb1b52016-12-09 09:52:16 -05001645 h.dst_address_length = pr_info->prefix_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001646
Dave Barachd7cb1b52016-12-09 09:52:16 -05001647 h.flags = (pr_info->adv_on_link_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_FLAG_ON_LINK : 0;
1648 h.flags |= (pr_info->adv_autonomous_flag) ? ICMP6_NEIGHBOR_DISCOVERY_PREFIX_INFORMATION_AUTO : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001649
Dave Barachd7cb1b52016-12-09 09:52:16 -05001650 if(radv_info->cease_radv && pr_info->deprecated_prefix_flag)
1651 {
1652 h.valid_time = clib_host_to_net_u32(MIN_ADV_VALID_LIFETIME);
1653 h.preferred_time = 0;
1654 }
1655 else
1656 {
1657 if(pr_info->decrement_lifetime_flag)
1658 {
1659 pr_info->adv_valid_lifetime_in_secs = ((pr_info->valid_lifetime_expires > now)) ?
1660 (pr_info->valid_lifetime_expires - now) : 0;
1661
1662 pr_info->adv_pref_lifetime_in_secs = ((pr_info->pref_lifetime_expires > now)) ?
1663 (pr_info->pref_lifetime_expires - now) : 0;
1664 }
1665
1666 h.valid_time = clib_host_to_net_u32(pr_info->adv_valid_lifetime_in_secs);
1667 h.preferred_time = clib_host_to_net_u32(pr_info->adv_pref_lifetime_in_secs) ;
1668 }
1669 h.unused = 0;
1670
1671 clib_memcpy(&h.dst_address, &pr_info->prefix, sizeof(ip6_address_t));
1672
1673 payload_length += sizeof( icmp6_neighbor_discovery_prefix_information_option_t);
1674
1675 vlib_buffer_add_data (vm,
Damjan Marion072401e2017-07-13 18:53:27 +02001676 vlib_buffer_get_free_list_index (p0),
Dave Barachd7cb1b52016-12-09 09:52:16 -05001677 bi0,
1678 (void *)&h, sizeof(icmp6_neighbor_discovery_prefix_information_option_t));
1679
1680 }
1681 }));
1682 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001683
1684 /* add additional options before here */
1685
1686 /* finish building the router advertisement... */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001687 if (!is_unspecified && radv_info->send_unicast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001688 {
1689 ip0->dst_address = ip0->src_address;
1690 }
1691 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001692 {
1693 /* target address is all-nodes mcast addr */
1694 ip6_set_reserved_multicast_address
1695 (&ip0->dst_address,
1696 IP6_MULTICAST_SCOPE_link_local,
1697 IP6_MULTICAST_GROUP_ID_all_hosts);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001698 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001699
Ed Warnickecb9cada2015-12-08 15:45:58 -07001700 /* source address MUST be the link-local address */
1701 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001702
Dave Barachd7cb1b52016-12-09 09:52:16 -05001703 ip0->hop_limit = 255;
1704 ip0->payload_length =
1705 clib_host_to_net_u16 (payload_length);
1706
1707 icmp6_router_advertisement_header_t *rh0 =
1708 (icmp6_router_advertisement_header_t *) (ip0 + 1);
1709 rh0->icmp.checksum =
1710 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0,
1711 &bogus_length);
1712 ASSERT (bogus_length == 0);
1713
Ed Warnickecb9cada2015-12-08 15:45:58 -07001714 /* setup output if and adjacency */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001715 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001716 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001717
1718 if (is_solicitation)
1719 {
1720 ethernet_header_t *eth0;
1721 /* Reuse current MAC header, copy SMAC to DMAC and
1722 * interface MAC to SMAC */
1723 vlib_buffer_reset (p0);
1724 eth0 = vlib_buffer_get_current (p0);
1725 clib_memcpy (eth0->dst_address, eth0->src_address,
1726 6);
1727 clib_memcpy (eth0->src_address, eth_if0->address,
1728 6);
1729 next0 =
1730 is_dropped ? next0 :
1731 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX;
1732 vnet_buffer (p0)->sw_if_index[VLIB_TX] =
1733 sw_if_index0;
1734 }
1735 else
1736 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001737 adj_index0 = radv_info->mcast_adj_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001738 if (adj_index0 == 0)
1739 error0 = ICMP6_ERROR_DST_LOOKUP_MISS;
1740 else
1741 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001742 next0 =
1743 is_dropped ? next0 :
1744 ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW;
1745 vnet_buffer (p0)->ip.adj_index[VLIB_TX] =
1746 adj_index0;
1747 }
1748 }
Damjan Marion213b5aa2017-07-13 21:19:27 +02001749 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001750
1751 radv_info->n_solicitations_dropped += is_dropped;
1752 radv_info->n_solicitations_rcvd += is_solicitation;
1753
1754 if ((error0 == ICMP6_ERROR_NONE) && !is_dropped)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001755 {
1756 radv_info->n_advertisements_sent++;
1757 n_advertisements_sent++;
1758 }
1759 }
1760 }
1761 }
1762
1763 p0->error = error_node->errors[error0];
1764
Dave Barachd7cb1b52016-12-09 09:52:16 -05001765 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001766 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001767
Ed Warnickecb9cada2015-12-08 15:45:58 -07001768 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1769 to_next, n_left_to_next,
1770 bi0, next0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001771
Ed Warnickecb9cada2015-12-08 15:45:58 -07001772 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001773
Ed Warnickecb9cada2015-12-08 15:45:58 -07001774 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1775 }
1776
1777 /* Account for router advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001778 vlib_error_count (vm, error_node->node_index,
1779 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_TX,
1780 n_advertisements_sent);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001781
1782 return frame->n_vectors;
1783}
1784
1785 /* validate advertised info for consistancy (see RFC-4861 section 6.2.7) - log any inconsistencies, packet will always be dropped */
1786static_always_inline uword
Dave Barachd7cb1b52016-12-09 09:52:16 -05001787icmp6_router_advertisement (vlib_main_t * vm,
1788 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001789{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001790 vnet_main_t *vnm = vnet_get_main ();
1791 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001792 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001793 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001794 u32 n_left_from, n_left_to_next, next_index;
1795 u32 n_advertisements_rcvd = 0;
1796
Dave Barachd7cb1b52016-12-09 09:52:16 -05001797 vlib_node_runtime_t *error_node =
1798 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001799
1800 from = vlib_frame_vector_args (frame);
1801 n_left_from = n_packets;
1802 next_index = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001803
Ed Warnickecb9cada2015-12-08 15:45:58 -07001804 if (node->flags & VLIB_NODE_FLAG_TRACE)
1805 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
1806 /* stride */ 1,
1807 sizeof (icmp6_input_trace_t));
1808
1809 while (n_left_from > 0)
1810 {
1811 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001812
Ed Warnickecb9cada2015-12-08 15:45:58 -07001813 while (n_left_from > 0 && n_left_to_next > 0)
1814 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001815 vlib_buffer_t *p0;
1816 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001817 ip6_radv_t *radv_info = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001818 icmp6_router_advertisement_header_t *h0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001819 u32 bi0, options_len0, sw_if_index0, next0, error0;
1820
1821 bi0 = to_next[0] = from[0];
1822
1823 from += 1;
1824 to_next += 1;
1825 n_left_from -= 1;
1826 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001827
Ed Warnickecb9cada2015-12-08 15:45:58 -07001828 p0 = vlib_get_buffer (vm, bi0);
1829 ip0 = vlib_buffer_get_current (p0);
1830 h0 = ip6_next_header (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001831 options_len0 =
1832 clib_net_to_host_u16 (ip0->payload_length) - sizeof (h0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001833
1834 error0 = ICMP6_ERROR_NONE;
1835 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
1836
Dave Barachd7cb1b52016-12-09 09:52:16 -05001837 /* Check that source address is link-local */
1838 error0 = (!ip6_address_is_link_local_unicast (&ip0->src_address)) ?
Ed Warnickecb9cada2015-12-08 15:45:58 -07001839 ICMP6_ERROR_ROUTER_ADVERTISEMENT_SOURCE_NOT_LINK_LOCAL : error0;
1840
1841 /* default is to drop */
1842 next0 = ICMP6_ROUTER_SOLICITATION_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001843
Ed Warnickecb9cada2015-12-08 15:45:58 -07001844 n_advertisements_rcvd++;
1845
1846 if (error0 == ICMP6_ERROR_NONE)
1847 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001848 vnet_sw_interface_t *sw_if0;
1849 ethernet_interface_t *eth_if0;
1850
Ed Warnickecb9cada2015-12-08 15:45:58 -07001851 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1852 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001853 eth_if0 =
1854 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001855
1856 /* only support ethernet interface type for now */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001857 error0 =
1858 (!eth_if0) ? ICMP6_ERROR_ROUTER_SOLICITATION_UNSUPPORTED_INTF
1859 : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001860
1861 if (error0 == ICMP6_ERROR_NONE)
1862 {
1863 u32 ri;
1864
1865 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001866 vec_validate_init_empty
1867 (nm->if_radv_pool_index_by_sw_if_index, sw_if_index0, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001868
1869 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index0];
1870
Dave Barachd7cb1b52016-12-09 09:52:16 -05001871 if (ri != ~0)
1872 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
1873
1874 error0 =
1875 ((!radv_info) ?
1876 ICMP6_ERROR_ROUTER_SOLICITATION_RADV_NOT_CONFIG :
1877 error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001878
1879 if (error0 == ICMP6_ERROR_NONE)
1880 {
1881 /* validate advertised information */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001882 if ((h0->current_hop_limit && radv_info->curr_hop_limit)
1883 && (h0->current_hop_limit !=
1884 radv_info->curr_hop_limit))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001885 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001886 ip6_neighbor_syslog (vm, LOG_WARNING,
1887 "our AdvCurHopLimit on %U doesn't agree with %U",
1888 format_vnet_sw_if_index_name,
1889 vnm, sw_if_index0,
1890 format_ip6_address,
1891 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001892 }
1893
Dave Barachd7cb1b52016-12-09 09:52:16 -05001894 if ((h0->flags &
1895 ICMP6_ROUTER_DISCOVERY_FLAG_ADDRESS_CONFIG_VIA_DHCP)
1896 != radv_info->adv_managed_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001897 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001898 ip6_neighbor_syslog (vm, LOG_WARNING,
1899 "our AdvManagedFlag on %U doesn't agree with %U",
1900 format_vnet_sw_if_index_name,
1901 vnm, sw_if_index0,
1902 format_ip6_address,
1903 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001904 }
1905
Dave Barachd7cb1b52016-12-09 09:52:16 -05001906 if ((h0->flags &
1907 ICMP6_ROUTER_DISCOVERY_FLAG_OTHER_CONFIG_VIA_DHCP)
1908 != radv_info->adv_other_flag)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001909 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001910 ip6_neighbor_syslog (vm, LOG_WARNING,
1911 "our AdvOtherConfigFlag on %U doesn't agree with %U",
1912 format_vnet_sw_if_index_name,
1913 vnm, sw_if_index0,
1914 format_ip6_address,
1915 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001916 }
1917
Dave Barachd7cb1b52016-12-09 09:52:16 -05001918 if ((h0->
1919 time_in_msec_between_retransmitted_neighbor_solicitations
1920 && radv_info->
1921 adv_time_in_msec_between_retransmitted_neighbor_solicitations)
1922 && (h0->
1923 time_in_msec_between_retransmitted_neighbor_solicitations
1924 !=
1925 clib_host_to_net_u32 (radv_info->
1926 adv_time_in_msec_between_retransmitted_neighbor_solicitations)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001927 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001928 ip6_neighbor_syslog (vm, LOG_WARNING,
1929 "our AdvRetransTimer on %U doesn't agree with %U",
1930 format_vnet_sw_if_index_name,
1931 vnm, sw_if_index0,
1932 format_ip6_address,
1933 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001934 }
1935
Dave Barachd7cb1b52016-12-09 09:52:16 -05001936 if ((h0->neighbor_reachable_time_in_msec &&
1937 radv_info->adv_neighbor_reachable_time_in_msec) &&
1938 (h0->neighbor_reachable_time_in_msec !=
1939 clib_host_to_net_u32
1940 (radv_info->adv_neighbor_reachable_time_in_msec)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001941 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001942 ip6_neighbor_syslog (vm, LOG_WARNING,
1943 "our AdvReachableTime on %U doesn't agree with %U",
1944 format_vnet_sw_if_index_name,
1945 vnm, sw_if_index0,
1946 format_ip6_address,
1947 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001948 }
1949
1950 /* check for MTU or prefix options or .. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001951 u8 *opt_hdr = (u8 *) (h0 + 1);
1952 while (options_len0 > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001954 icmp6_neighbor_discovery_option_header_t *o0 =
1955 (icmp6_neighbor_discovery_option_header_t *)
1956 opt_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001957 int opt_len = o0->n_data_u64s << 3;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001958 icmp6_neighbor_discovery_option_type_t option_type =
1959 o0->type;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001960
Dave Barachd7cb1b52016-12-09 09:52:16 -05001961 if (options_len0 < 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001962 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001963 ip6_neighbor_syslog (vm, LOG_ERR,
1964 "malformed RA packet on %U from %U",
1965 format_vnet_sw_if_index_name,
1966 vnm, sw_if_index0,
1967 format_ip6_address,
1968 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001969 break;
1970 }
1971
Dave Barachd7cb1b52016-12-09 09:52:16 -05001972 if (opt_len == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001973 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001974 ip6_neighbor_syslog (vm, LOG_ERR,
1975 " zero length option in RA on %U from %U",
1976 format_vnet_sw_if_index_name,
1977 vnm, sw_if_index0,
1978 format_ip6_address,
1979 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001980 break;
1981 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001982 else if (opt_len > options_len0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001983 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001984 ip6_neighbor_syslog (vm, LOG_ERR,
1985 "option length in RA packet greater than total length on %U from %U",
1986 format_vnet_sw_if_index_name,
1987 vnm, sw_if_index0,
1988 format_ip6_address,
1989 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001990 break;
1991 }
1992
1993 options_len0 -= opt_len;
1994 opt_hdr += opt_len;
1995
Dave Barachd7cb1b52016-12-09 09:52:16 -05001996 switch (option_type)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001997 {
1998 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_mtu:
Dave Barachd7cb1b52016-12-09 09:52:16 -05001999 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002000 icmp6_neighbor_discovery_mtu_option_t *h =
Dave Barachd7cb1b52016-12-09 09:52:16 -05002001 (icmp6_neighbor_discovery_mtu_option_t
2002 *) (o0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002003
Dave Barachd7cb1b52016-12-09 09:52:16 -05002004 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002005 break;
2006
Dave Barachd7cb1b52016-12-09 09:52:16 -05002007 if ((h->mtu && radv_info->adv_link_mtu) &&
2008 (h->mtu !=
2009 clib_host_to_net_u32
2010 (radv_info->adv_link_mtu)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002011 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002012 ip6_neighbor_syslog (vm, LOG_WARNING,
2013 "our AdvLinkMTU on %U doesn't agree with %U",
2014 format_vnet_sw_if_index_name,
2015 vnm, sw_if_index0,
2016 format_ip6_address,
2017 &ip0->src_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002018 }
2019 }
2020 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002021
Ed Warnickecb9cada2015-12-08 15:45:58 -07002022 case ICMP6_NEIGHBOR_DISCOVERY_OPTION_prefix_information:
2023 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002024 icmp6_neighbor_discovery_prefix_information_option_t
2025 * h =
2026 (icmp6_neighbor_discovery_prefix_information_option_t
2027 *) (o0);
2028
Ed Warnickecb9cada2015-12-08 15:45:58 -07002029 /* validate advertised prefix options */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002030 ip6_radv_prefix_t *pr_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002031 u32 preferred, valid;
2032
Dave Barachd7cb1b52016-12-09 09:52:16 -05002033 if (opt_len < sizeof (*h))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002034 break;
2035
Dave Barachd7cb1b52016-12-09 09:52:16 -05002036 preferred =
2037 clib_net_to_host_u32 (h->preferred_time);
2038 valid = clib_net_to_host_u32 (h->valid_time);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002039
2040 /* look for matching prefix - if we our advertising it, it better be consistant */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002041 /* *INDENT-OFF* */
2042 pool_foreach (pr_info, radv_info->adv_prefixes_pool,
2043 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002044
Dave Barachd7cb1b52016-12-09 09:52:16 -05002045 ip6_address_t mask;
2046 ip6_address_mask_from_width(&mask, pr_info->prefix_len);
2047
2048 if(pr_info->enabled &&
2049 (pr_info->prefix_len == h->dst_address_length) &&
2050 ip6_address_is_equal_masked (&pr_info->prefix, &h->dst_address, &mask))
2051 {
2052 /* found it */
2053 if(!pr_info->decrement_lifetime_flag &&
2054 valid != pr_info->adv_valid_lifetime_in_secs)
2055 {
2056 ip6_neighbor_syslog(vm, LOG_WARNING,
2057 "our ADV validlifetime on %U for %U does not agree with %U",
2058 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2059 format_ip6_address, &h->dst_address);
2060 }
2061 if(!pr_info->decrement_lifetime_flag &&
2062 preferred != pr_info->adv_pref_lifetime_in_secs)
2063 {
2064 ip6_neighbor_syslog(vm, LOG_WARNING,
2065 "our ADV preferredlifetime on %U for %U does not agree with %U",
2066 format_vnet_sw_if_index_name, vnm, sw_if_index0,format_ip6_address, &pr_info->prefix,
2067 format_ip6_address, &h->dst_address);
2068 }
2069 }
2070 break;
2071 }));
2072 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002073 break;
2074 }
2075 default:
2076 /* skip this one */
2077 break;
2078 }
2079 }
2080 }
2081 }
2082 }
2083
2084 p0->error = error_node->errors[error0];
2085
Dave Barachd7cb1b52016-12-09 09:52:16 -05002086 if (error0 != ICMP6_ERROR_NONE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002087 vlib_error_count (vm, error_node->node_index, error0, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002088
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2090 to_next, n_left_to_next,
2091 bi0, next0);
2092 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002093
Ed Warnickecb9cada2015-12-08 15:45:58 -07002094 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2095 }
2096
2097 /* Account for router advertisements sent. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002098 vlib_error_count (vm, error_node->node_index,
2099 ICMP6_ERROR_ROUTER_ADVERTISEMENTS_RX,
2100 n_advertisements_rcvd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002101
2102 return frame->n_vectors;
2103}
2104
Neale Ranns87df12d2017-02-18 08:16:41 -08002105/**
2106 * @brief Add a multicast Address to the advertised MLD set
2107 */
2108static void
2109ip6_neighbor_add_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2110{
2111 ip6_mldp_group_t *mcast_group_info;
2112 uword *p;
2113
2114 /* lookup mldp info for this interface */
Neale Rannse0a35442018-02-25 10:39:02 -08002115 p = mhash_get (&radv_info->address_to_mldp_index, addr);
Neale Ranns87df12d2017-02-18 08:16:41 -08002116 mcast_group_info =
2117 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2118
2119 /* add address */
2120 if (!mcast_group_info)
2121 {
2122 /* add */
2123 u32 mi;
2124 pool_get (radv_info->mldp_group_pool, mcast_group_info);
2125
2126 mi = mcast_group_info - radv_info->mldp_group_pool;
Neale Rannse0a35442018-02-25 10:39:02 -08002127 mhash_set (&radv_info->address_to_mldp_index, addr, mi, /* old_value */
Neale Ranns87df12d2017-02-18 08:16:41 -08002128 0);
2129
2130 mcast_group_info->type = 4;
2131 mcast_group_info->mcast_source_address_pool = 0;
2132 mcast_group_info->num_sources = 0;
Neale Rannse0a35442018-02-25 10:39:02 -08002133 clib_memcpy (&mcast_group_info->mcast_address, addr,
Neale Ranns87df12d2017-02-18 08:16:41 -08002134 sizeof (ip6_address_t));
2135 }
2136}
2137
2138/**
2139 * @brief Delete a multicast Address from the advertised MLD set
2140 */
2141static void
2142ip6_neighbor_del_mld_prefix (ip6_radv_t * radv_info, ip6_address_t * addr)
2143{
2144 ip6_mldp_group_t *mcast_group_info;
2145 uword *p;
2146
2147 p = mhash_get (&radv_info->address_to_mldp_index, &addr);
2148 mcast_group_info =
2149 p ? pool_elt_at_index (radv_info->mldp_group_pool, p[0]) : 0;
2150
2151 if (mcast_group_info)
2152 {
2153 mhash_unset (&radv_info->address_to_mldp_index, &addr,
2154 /* old_value */ 0);
2155 pool_put (radv_info->mldp_group_pool, mcast_group_info);
2156 }
2157}
2158
2159/**
2160 * @brief Add a multicast Address to the advertised MLD set
2161 */
2162static void
2163ip6_neighbor_add_mld_grp (ip6_radv_t * a,
2164 ip6_multicast_address_scope_t scope,
2165 ip6_multicast_link_local_group_id_t group)
2166{
2167 ip6_address_t addr;
2168
2169 ip6_set_reserved_multicast_address (&addr, scope, group);
2170
2171 ip6_neighbor_add_mld_prefix (a, &addr);
2172}
2173
2174/**
2175 * @brief create and initialize router advertisement parameters with default
2176 * values for this intfc
2177 */
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +02002178u32
Ed Warnickecb9cada2015-12-08 15:45:58 -07002179ip6_neighbor_sw_interface_add_del (vnet_main_t * vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002180 u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002181{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002182 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2183 ip6_radv_t *a = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002184 u32 ri = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002185 vnet_sw_interface_t *sw_if0;
2186 ethernet_interface_t *eth_if0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002187
2188 /* lookup radv container - ethernet interfaces only */
2189 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002190 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002191 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2192
Dave Barachd7cb1b52016-12-09 09:52:16 -05002193 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002194 return ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002195
2196 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2197 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002198 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2199
Dave Barachd7cb1b52016-12-09 09:52:16 -05002200 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002201 {
2202 a = pool_elt_at_index (nm->if_radv_pool, ri);
2203
Dave Barachd7cb1b52016-12-09 09:52:16 -05002204 if (!is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002205 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002206 ip6_radv_prefix_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002207 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002208
Neale Ranns32e1c012016-11-22 17:07:28 +00002209 /* release the lock on the interface's mcast adj */
2210 adj_unlock (a->mcast_adj_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002211
Neale Ranns87df12d2017-02-18 08:16:41 -08002212 /* clean up prefix and MDP pools */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002213 /* *INDENT-OFF* */
Neale Ranns87df12d2017-02-18 08:16:41 -08002214 pool_flush(p, a->adv_prefixes_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002215 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -07002216 mhash_unset (&a->address_to_prefix_index, &p->prefix, 0);
Neale Ranns87df12d2017-02-18 08:16:41 -08002217 }));
2218 pool_flush (m, a->mldp_group_pool,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002219 ({
Neale Ranns87df12d2017-02-18 08:16:41 -08002220 mhash_unset (&a->address_to_mldp_index, &m->mcast_address, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002221 }));
2222 /* *INDENT-ON* */
2223
Neale Ranns87df12d2017-02-18 08:16:41 -08002224 pool_free (a->mldp_group_pool);
2225 pool_free (a->adv_prefixes_pool);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002226
Neale Ranns87df12d2017-02-18 08:16:41 -08002227 mhash_free (&a->address_to_prefix_index);
2228 mhash_free (&a->address_to_mldp_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002229
2230 pool_put (nm->if_radv_pool, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002231 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ~0;
2232 ri = ~0;
2233 }
2234 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002235 else
2236 {
2237 if (is_add)
2238 {
2239 vnet_hw_interface_t *hw_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002240
Dave Barachd7cb1b52016-12-09 09:52:16 -05002241 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index);
2242
2243 pool_get (nm->if_radv_pool, a);
2244
2245 ri = a - nm->if_radv_pool;
2246 nm->if_radv_pool_index_by_sw_if_index[sw_if_index] = ri;
2247
2248 /* initialize default values (most of which are zero) */
2249 memset (a, 0, sizeof (a[0]));
2250
2251 a->sw_if_index = sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002252 a->max_radv_interval = DEF_MAX_RADV_INTERVAL;
2253 a->min_radv_interval = DEF_MIN_RADV_INTERVAL;
2254 a->curr_hop_limit = DEF_CURR_HOP_LIMIT;
2255 a->adv_router_lifetime_in_sec = DEF_DEF_RTR_LIFETIME;
2256
Neale Ranns87df12d2017-02-18 08:16:41 -08002257 /* send ll address source address option */
2258 a->adv_link_layer_address = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002259
2260 a->min_delay_between_radv = MIN_DELAY_BETWEEN_RAS;
2261 a->max_delay_between_radv = MAX_DELAY_BETWEEN_RAS;
2262 a->max_rtr_default_lifetime = MAX_DEF_RTR_LIFETIME;
2263 a->seed = (u32) clib_cpu_time_now ();
2264 (void) random_u32 (&a->seed);
2265 a->randomizer = clib_cpu_time_now ();
2266 (void) random_u64 (&a->randomizer);
2267
2268 a->initial_adverts_count = MAX_INITIAL_RTR_ADVERTISEMENTS;
2269 a->initial_adverts_sent = a->initial_adverts_count - 1;
2270 a->initial_adverts_interval = MAX_INITIAL_RTR_ADVERT_INTERVAL;
2271
2272 /* deafult is to send */
2273 a->send_radv = 1;
2274
2275 /* fill in radv_info for this interface that will be needed later */
2276 a->adv_link_mtu = hw_if0->max_l3_packet_bytes[VLIB_RX];
2277
2278 clib_memcpy (a->link_layer_address, eth_if0->address, 6);
2279
2280 /* fill in default link-local address (this may be overridden) */
2281 ip6_link_local_address_from_ethernet_address
2282 (&a->link_local_address, eth_if0->address);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002283
2284 mhash_init (&a->address_to_prefix_index, sizeof (uword),
2285 sizeof (ip6_address_t));
2286 mhash_init (&a->address_to_mldp_index, sizeof (uword),
2287 sizeof (ip6_address_t));
2288
Neale Ranns32e1c012016-11-22 17:07:28 +00002289 a->mcast_adj_index = adj_mcast_add_or_lock (FIB_PROTOCOL_IP6,
2290 VNET_LINK_IP6,
2291 sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002292
2293 /* add multicast groups we will always be reporting */
Neale Ranns87df12d2017-02-18 08:16:41 -08002294 ip6_neighbor_add_mld_grp (a,
2295 IP6_MULTICAST_SCOPE_link_local,
2296 IP6_MULTICAST_GROUP_ID_all_hosts);
2297 ip6_neighbor_add_mld_grp (a,
2298 IP6_MULTICAST_SCOPE_link_local,
2299 IP6_MULTICAST_GROUP_ID_all_routers);
2300 ip6_neighbor_add_mld_grp (a,
2301 IP6_MULTICAST_SCOPE_link_local,
2302 IP6_MULTICAST_GROUP_ID_mldv2_routers);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002303 }
2304 }
2305 return ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002306}
2307
2308/* send an mldpv2 report */
2309static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05002310ip6_neighbor_send_mldpv2_report (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002311{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002312 vnet_main_t *vnm = vnet_get_main ();
2313 vlib_main_t *vm = vnm->vlib_main;
2314 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2315 vnet_sw_interface_t *sw_if0;
2316 ethernet_interface_t *eth_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002317 u32 ri;
2318 int bogus_length;
2319
Dave Barachd7cb1b52016-12-09 09:52:16 -05002320 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002321 u16 payload_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002322 vlib_buffer_t *b0;
2323 ip6_header_t *ip0;
2324 u32 *to_next;
2325 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002326 u32 bo0;
2327 u32 n_to_alloc = 1;
2328 u32 n_allocated;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002329
Ed Warnickecb9cada2015-12-08 15:45:58 -07002330 icmp6_multicast_listener_report_header_t *rh0;
2331 icmp6_multicast_listener_report_packet_t *rp0;
2332
2333 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
2334 ASSERT (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
2335 eth_if0 = ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
2336
2337 if (!eth_if0 || !vnet_sw_interface_is_admin_up (vnm, sw_if_index))
2338 return;
2339
2340 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002341 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2342 ~0);
2343
Ed Warnickecb9cada2015-12-08 15:45:58 -07002344 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05002345
2346 if (ri == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002347 return;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002348
Ed Warnickecb9cada2015-12-08 15:45:58 -07002349 /* send report now - build a mldpv2 report packet */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002350 n_allocated = vlib_buffer_alloc_from_free_list (vm,
2351 &bo0,
2352 n_to_alloc,
2353 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
2354 if (PREDICT_FALSE (n_allocated == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002355 {
2356 clib_warning ("buffer allocation failure");
2357 return;
2358 }
2359
2360 b0 = vlib_get_buffer (vm, bo0);
2361
2362 /* adjust the sizeof the buffer to just include the ipv6 header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002363 b0->current_length = sizeof (icmp6_multicast_listener_report_packet_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002364
Dave Barachd7cb1b52016-12-09 09:52:16 -05002365 payload_length = sizeof (icmp6_multicast_listener_report_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002366
2367 b0->error = ICMP6_ERROR_NONE;
2368
2369 rp0 = vlib_buffer_get_current (b0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002370 ip0 = (ip6_header_t *) & rp0->ip;
2371 rh0 = (icmp6_multicast_listener_report_header_t *) & rp0->report_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002372
Dave Barachd7cb1b52016-12-09 09:52:16 -05002373 memset (rp0, 0x0, sizeof (icmp6_multicast_listener_report_packet_t));
2374
2375 ip0->ip_version_traffic_class_and_flow_label =
2376 clib_host_to_net_u32 (0x6 << 28);
2377
2378 ip0->protocol = IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002379 /* for DEBUG - vnet driver won't seem to emit router alerts */
2380 /* ip0->protocol = IP_PROTOCOL_ICMP6; */
2381 ip0->hop_limit = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002382
Ed Warnickecb9cada2015-12-08 15:45:58 -07002383 rh0->icmp.type = ICMP6_multicast_listener_report_v2;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002384
Ed Warnickecb9cada2015-12-08 15:45:58 -07002385 /* source address MUST be the link-local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002386 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
2387 ip0->src_address = radv_info->link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002388
2389 /* destination is all mldpv2 routers */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002390 ip6_set_reserved_multicast_address (&ip0->dst_address,
2391 IP6_MULTICAST_SCOPE_link_local,
2392 IP6_MULTICAST_GROUP_ID_mldv2_routers);
2393
Ed Warnickecb9cada2015-12-08 15:45:58 -07002394 /* add reports here */
2395 ip6_mldp_group_t *m;
2396 int num_addr_records = 0;
2397 icmp6_multicast_address_record_t rr;
2398
2399 /* fill in the hop-by-hop extension header (router alert) info */
2400 rh0->ext_hdr.next_hdr = IP_PROTOCOL_ICMP6;
2401 rh0->ext_hdr.n_data_u64s = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002402
Ed Warnickecb9cada2015-12-08 15:45:58 -07002403 rh0->alert.type = IP6_MLDP_ALERT_TYPE;
2404 rh0->alert.len = 2;
2405 rh0->alert.value = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002406
Ed Warnickecb9cada2015-12-08 15:45:58 -07002407 rh0->pad.type = 1;
2408 rh0->pad.len = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002409
Ed Warnickecb9cada2015-12-08 15:45:58 -07002410 rh0->icmp.checksum = 0;
2411
Dave Barachd7cb1b52016-12-09 09:52:16 -05002412 /* *INDENT-OFF* */
2413 pool_foreach (m, radv_info->mldp_group_pool,
2414 ({
2415 rr.type = m->type;
2416 rr.aux_data_len_u32s = 0;
2417 rr.num_sources = clib_host_to_net_u16 (m->num_sources);
2418 clib_memcpy(&rr.mcast_addr, &m->mcast_address, sizeof(ip6_address_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002419
Dave Barachd7cb1b52016-12-09 09:52:16 -05002420 num_addr_records++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002421
Dave Barachd7cb1b52016-12-09 09:52:16 -05002422 vlib_buffer_add_data
Damjan Marion072401e2017-07-13 18:53:27 +02002423 (vm, vlib_buffer_get_free_list_index (b0), bo0,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002424 (void *)&rr, sizeof(icmp6_multicast_address_record_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002425
Dave Barachd7cb1b52016-12-09 09:52:16 -05002426 payload_length += sizeof( icmp6_multicast_address_record_t);
2427 }));
2428 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002429
2430 rh0->rsvd = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002431 rh0->num_addr_records = clib_host_to_net_u16 (num_addr_records);
2432
Ed Warnickecb9cada2015-12-08 15:45:58 -07002433 /* update lengths */
2434 ip0->payload_length = clib_host_to_net_u16 (payload_length);
2435
Dave Barachd7cb1b52016-12-09 09:52:16 -05002436 rh0->icmp.checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0,
2437 &bogus_length);
2438 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002439
Dave Barachd7cb1b52016-12-09 09:52:16 -05002440 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002441 * OK to override w/ no regard for actual FIB, because
Neale Rannsf06aea52016-11-29 06:51:37 -08002442 * ip6-rewrite only looks at the adjacency.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002443 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002444 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
Ed Warnickecb9cada2015-12-08 15:45:58 -07002445 vnet_main.local_interface_sw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002446
Neale Ranns32e1c012016-11-22 17:07:28 +00002447 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = radv_info->mcast_adj_index;
Damjan Marion213b5aa2017-07-13 21:19:27 +02002448 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002449
Neale Ranns32e1c012016-11-22 17:07:28 +00002450 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "ip6-rewrite-mcast");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002451
Ed Warnickecb9cada2015-12-08 15:45:58 -07002452 f = vlib_get_frame_to_node (vm, node->index);
2453 to_next = vlib_frame_vector_args (f);
2454 to_next[0] = bo0;
2455 f->n_vectors = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002456
Ed Warnickecb9cada2015-12-08 15:45:58 -07002457 vlib_put_frame_to_node (vm, node->index, f);
2458 return;
2459}
2460
Dave Barachd7cb1b52016-12-09 09:52:16 -05002461/* *INDENT-OFF* */
2462VLIB_REGISTER_NODE (ip6_icmp_router_solicitation_node,static) =
2463{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002464 .function = icmp6_router_solicitation,
2465 .name = "icmp6-router-solicitation",
2466
2467 .vector_size = sizeof (u32),
2468
2469 .format_trace = format_icmp6_input_trace,
2470
2471 .n_next_nodes = ICMP6_ROUTER_SOLICITATION_N_NEXT,
2472 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002473 [ICMP6_ROUTER_SOLICITATION_NEXT_DROP] = "ip6-drop",
Neale Ranns32e1c012016-11-22 17:07:28 +00002474 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_RW] = "ip6-rewrite-mcast",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002475 [ICMP6_ROUTER_SOLICITATION_NEXT_REPLY_TX] = "interface-output",
2476 },
2477};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002478/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002479
2480/* send a RA or update the timer info etc.. */
2481static uword
2482ip6_neighbor_process_timer_event (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002483 vlib_node_runtime_t * node,
2484 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002485{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002486 vnet_main_t *vnm = vnet_get_main ();
2487 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2488 ip6_radv_t *radv_info;
2489 vlib_frame_t *f = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002490 u32 n_this_frame = 0;
Benoît Ganned5304452016-04-08 22:25:05 -07002491 u32 n_left_to_next = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002492 u32 *to_next = 0;
2493 u32 bo0;
2494 icmp6_router_solicitation_header_t *h0;
2495 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002496 f64 now = vlib_time_now (vm);
2497
2498 /* Interface ip6 radv info list */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002499 /* *INDENT-OFF* */
2500 pool_foreach (radv_info, nm->if_radv_pool,
2501 ({
2502 if( !vnet_sw_interface_is_admin_up (vnm, radv_info->sw_if_index))
2503 {
2504 radv_info->initial_adverts_sent = radv_info->initial_adverts_count-1;
2505 radv_info->next_multicast_time = now;
2506 radv_info->last_multicast_time = now;
2507 radv_info->last_radv_time = 0;
2508 radv_info->all_routers_mcast = 0;
2509 continue;
2510 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002511
Dave Barachd7cb1b52016-12-09 09:52:16 -05002512 /* Make sure that we've joined the all-routers multicast group */
2513 if(!radv_info->all_routers_mcast)
2514 {
2515 /* send MDLP_REPORT_EVENT message */
2516 ip6_neighbor_send_mldpv2_report(radv_info->sw_if_index);
2517 radv_info->all_routers_mcast = 1;
2518 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002519
Dave Barachd7cb1b52016-12-09 09:52:16 -05002520 /* is it time to send a multicast RA on this interface? */
2521 if(radv_info->send_radv && (now >= radv_info->next_multicast_time))
2522 {
2523 u32 n_to_alloc = 1;
2524 u32 n_allocated;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002525
Dave Barachd7cb1b52016-12-09 09:52:16 -05002526 f64 rfn = (radv_info->max_radv_interval - radv_info->min_radv_interval) *
2527 random_f64 (&radv_info->seed) + radv_info->min_radv_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002528
Dave Barachd7cb1b52016-12-09 09:52:16 -05002529 /* multicast send - compute next multicast send time */
2530 if( radv_info->initial_adverts_sent > 0)
2531 {
2532 radv_info->initial_adverts_sent--;
2533 if(rfn > radv_info-> initial_adverts_interval)
2534 rfn = radv_info-> initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002535
Dave Barachd7cb1b52016-12-09 09:52:16 -05002536 /* check to see if we are ceasing to send */
2537 if( radv_info->initial_adverts_sent == 0)
2538 if(radv_info->cease_radv)
2539 radv_info->send_radv = 0;
2540 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002541
Dave Barachd7cb1b52016-12-09 09:52:16 -05002542 radv_info->next_multicast_time = rfn + now;
2543 radv_info->last_multicast_time = now;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002544
Dave Barachd7cb1b52016-12-09 09:52:16 -05002545 /* send advert now - build a "solicted" router advert with unspecified source address */
2546 n_allocated = vlib_buffer_alloc_from_free_list
2547 (vm, &bo0, n_to_alloc, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002548
Dave Barachd7cb1b52016-12-09 09:52:16 -05002549 if (PREDICT_FALSE(n_allocated == 0))
2550 {
2551 clib_warning ("buffer allocation failure");
2552 continue;
2553 }
2554 b0 = vlib_get_buffer (vm, bo0);
2555 b0->current_length = sizeof( icmp6_router_solicitation_header_t);
2556 b0->error = ICMP6_ERROR_NONE;
2557 vnet_buffer (b0)->sw_if_index[VLIB_RX] = radv_info->sw_if_index;
2558
2559 h0 = vlib_buffer_get_current (b0);
2560
2561 memset (h0, 0, sizeof (icmp6_router_solicitation_header_t));
2562
2563 h0->ip.ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (0x6 << 28);
2564 h0->ip.payload_length = clib_host_to_net_u16 (sizeof (icmp6_router_solicitation_header_t)
2565 - STRUCT_OFFSET_OF (icmp6_router_solicitation_header_t, neighbor));
2566 h0->ip.protocol = IP_PROTOCOL_ICMP6;
2567 h0->ip.hop_limit = 255;
2568
2569 /* set src/dst address as "unspecified" this marks this packet as internally generated rather than recieved */
2570 h0->ip.src_address.as_u64[0] = 0;
2571 h0->ip.src_address.as_u64[1] = 0;
2572
2573 h0->ip.dst_address.as_u64[0] = 0;
2574 h0->ip.dst_address.as_u64[1] = 0;
2575
2576 h0->neighbor.icmp.type = ICMP6_router_solicitation;
2577
2578 if (PREDICT_FALSE(f == 0))
2579 {
2580 f = vlib_get_frame_to_node (vm, ip6_icmp_router_solicitation_node.index);
2581 to_next = vlib_frame_vector_args (f);
2582 n_left_to_next = VLIB_FRAME_SIZE;
2583 n_this_frame = 0;
2584 }
2585
2586 n_this_frame++;
2587 n_left_to_next--;
2588 to_next[0] = bo0;
2589 to_next += 1;
2590
2591 if (PREDICT_FALSE(n_left_to_next == 0))
2592 {
2593 f->n_vectors = n_this_frame;
2594 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
2595 f = 0;
2596 }
2597 }
2598 }));
2599 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002600
2601 if (f)
2602 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002603 ASSERT (n_this_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002604 f->n_vectors = n_this_frame;
2605 vlib_put_frame_to_node (vm, ip6_icmp_router_solicitation_node.index, f);
2606 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002607 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002608}
2609
2610static uword
2611ip6_icmp_neighbor_discovery_event_process (vlib_main_t * vm,
2612 vlib_node_runtime_t * node,
2613 vlib_frame_t * frame)
2614{
2615 uword event_type;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002616 ip6_icmp_neighbor_discovery_event_data_t *event_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002617
2618 /* init code here */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002619
Ed Warnickecb9cada2015-12-08 15:45:58 -07002620 while (1)
2621 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002622 vlib_process_wait_for_event_or_clock (vm, 1. /* seconds */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07002623
Dave Barachd7cb1b52016-12-09 09:52:16 -05002624 event_data = vlib_process_get_event_data (vm, &event_type);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002625
Dave Barachd7cb1b52016-12-09 09:52:16 -05002626 if (!event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002627 {
2628 /* No events found: timer expired. */
2629 /* process interface list and send RAs as appropriate, update timer info */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002630 ip6_neighbor_process_timer_event (vm, node, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002631 }
2632 else
2633 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002634 switch (event_type)
2635 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002636
Dave Barachd7cb1b52016-12-09 09:52:16 -05002637 case ICMP6_ND_EVENT_INIT:
2638 break;
2639
2640 case ~0:
2641 break;
2642
2643 default:
2644 ASSERT (0);
2645 }
2646
Ed Warnickecb9cada2015-12-08 15:45:58 -07002647 if (event_data)
2648 _vec_len (event_data) = 0;
2649 }
2650 }
2651 return frame->n_vectors;
2652}
2653
Dave Barachd7cb1b52016-12-09 09:52:16 -05002654/* *INDENT-OFF* */
2655VLIB_REGISTER_NODE (ip6_icmp_router_advertisement_node,static) =
2656{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002657 .function = icmp6_router_advertisement,
2658 .name = "icmp6-router-advertisement",
2659
2660 .vector_size = sizeof (u32),
2661
2662 .format_trace = format_icmp6_input_trace,
2663
2664 .n_next_nodes = 1,
2665 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002666 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002667 },
2668};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002669/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002670
2671vlib_node_registration_t ip6_icmp_neighbor_discovery_event_node = {
2672
2673 .function = ip6_icmp_neighbor_discovery_event_process,
2674 .name = "ip6-icmp-neighbor-discovery-event-process",
2675 .type = VLIB_NODE_TYPE_PROCESS,
2676};
2677
2678static uword
2679icmp6_neighbor_solicitation (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002680 vlib_node_runtime_t * node, vlib_frame_t * frame)
2681{
2682 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
2683 /* is_solicitation */
2684 1);
2685}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002686
2687static uword
2688icmp6_neighbor_advertisement (vlib_main_t * vm,
2689 vlib_node_runtime_t * node,
2690 vlib_frame_t * frame)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002691{
2692 return icmp6_neighbor_solicitation_or_advertisement (vm, node, frame,
2693 /* is_solicitation */
2694 0);
2695}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002696
Dave Barachd7cb1b52016-12-09 09:52:16 -05002697/* *INDENT-OFF* */
2698VLIB_REGISTER_NODE (ip6_icmp_neighbor_solicitation_node,static) =
2699{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002700 .function = icmp6_neighbor_solicitation,
2701 .name = "icmp6-neighbor-solicitation",
2702
2703 .vector_size = sizeof (u32),
2704
2705 .format_trace = format_icmp6_input_trace,
2706
2707 .n_next_nodes = ICMP6_NEIGHBOR_SOLICITATION_N_NEXT,
2708 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002709 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_DROP] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002710 [ICMP6_NEIGHBOR_SOLICITATION_NEXT_REPLY] = "interface-output",
2711 },
2712};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002713/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002714
Dave Barachd7cb1b52016-12-09 09:52:16 -05002715/* *INDENT-OFF* */
2716VLIB_REGISTER_NODE (ip6_icmp_neighbor_advertisement_node,static) =
2717{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002718 .function = icmp6_neighbor_advertisement,
2719 .name = "icmp6-neighbor-advertisement",
2720
2721 .vector_size = sizeof (u32),
2722
2723 .format_trace = format_icmp6_input_trace,
2724
2725 .n_next_nodes = 1,
2726 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002727 [0] = "ip6-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002728 },
2729};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002730/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002731
Dave Barachd7cb1b52016-12-09 09:52:16 -05002732/* API support functions */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002733int
Dave Barachd7cb1b52016-12-09 09:52:16 -05002734ip6_neighbor_ra_config (vlib_main_t * vm, u32 sw_if_index,
2735 u8 suppress, u8 managed, u8 other,
2736 u8 ll_option, u8 send_unicast, u8 cease,
2737 u8 use_lifetime, u32 lifetime,
2738 u32 initial_count, u32 initial_interval,
2739 u32 max_interval, u32 min_interval, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002740{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002741 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2742 int error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002743 u32 ri;
2744
2745 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002746 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2747 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002748 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05002749 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002750
Dave Barachd7cb1b52016-12-09 09:52:16 -05002751 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002752 {
2753
Dave Barachd7cb1b52016-12-09 09:52:16 -05002754 ip6_radv_t *radv_info;
2755 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002756
Dave Barachd7cb1b52016-12-09 09:52:16 -05002757 if ((max_interval != 0) && (min_interval == 0))
2758 min_interval = .75 * max_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002759
Dave Barachd7cb1b52016-12-09 09:52:16 -05002760 max_interval =
2761 (max_interval !=
2762 0) ? ((is_no) ? DEF_MAX_RADV_INTERVAL : max_interval) :
2763 radv_info->max_radv_interval;
2764 min_interval =
2765 (min_interval !=
2766 0) ? ((is_no) ? DEF_MIN_RADV_INTERVAL : min_interval) :
2767 radv_info->min_radv_interval;
2768 lifetime =
2769 (use_lifetime !=
2770 0) ? ((is_no) ? DEF_DEF_RTR_LIFETIME : lifetime) :
2771 radv_info->adv_router_lifetime_in_sec;
2772
2773 if (lifetime)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002774 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002775 if (lifetime > MAX_DEF_RTR_LIFETIME)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002776 lifetime = MAX_DEF_RTR_LIFETIME;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002777
2778 if (lifetime <= max_interval)
2779 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002780 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002781
2782 if (min_interval != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002783 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002784 if ((min_interval > .75 * max_interval) || (min_interval < 3))
2785 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002786 }
2787
Dave Barachd7cb1b52016-12-09 09:52:16 -05002788 if ((initial_count > MAX_INITIAL_RTR_ADVERTISEMENTS) ||
2789 (initial_interval > MAX_INITIAL_RTR_ADVERT_INTERVAL))
2790 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002791
Dave Barachd7cb1b52016-12-09 09:52:16 -05002792 /*
2793 if "flag" is set and is_no is true then restore default value else set value corresponding to "flag"
2794 if "flag" is clear don't change corresponding value
2795 */
2796 radv_info->send_radv =
2797 (suppress != 0) ? ((is_no != 0) ? 1 : 0) : radv_info->send_radv;
2798 radv_info->adv_managed_flag =
2799 (managed != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_managed_flag;
2800 radv_info->adv_other_flag =
2801 (other != 0) ? ((is_no) ? 0 : 1) : radv_info->adv_other_flag;
2802 radv_info->adv_link_layer_address =
2803 (ll_option !=
2804 0) ? ((is_no) ? 1 : 0) : radv_info->adv_link_layer_address;
2805 radv_info->send_unicast =
2806 (send_unicast != 0) ? ((is_no) ? 0 : 1) : radv_info->send_unicast;
2807 radv_info->cease_radv =
2808 (cease != 0) ? ((is_no) ? 0 : 1) : radv_info->cease_radv;
2809
2810 radv_info->min_radv_interval = min_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002811 radv_info->max_radv_interval = max_interval;
2812 radv_info->adv_router_lifetime_in_sec = lifetime;
2813
Dave Barachd7cb1b52016-12-09 09:52:16 -05002814 radv_info->initial_adverts_count =
2815 (initial_count !=
2816 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERTISEMENTS : initial_count) :
2817 radv_info->initial_adverts_count;
2818 radv_info->initial_adverts_interval =
2819 (initial_interval !=
2820 0) ? ((is_no) ? MAX_INITIAL_RTR_ADVERT_INTERVAL : initial_interval) :
2821 radv_info->initial_adverts_interval;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002822
2823 /* restart */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002824 if ((cease != 0) && (is_no))
2825 radv_info->send_radv = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002826
Dave Barachd7cb1b52016-12-09 09:52:16 -05002827 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
2828 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002829 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002830 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002831 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002832 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002833}
2834
2835int
Dave Barachd7cb1b52016-12-09 09:52:16 -05002836ip6_neighbor_ra_prefix (vlib_main_t * vm, u32 sw_if_index,
2837 ip6_address_t * prefix_addr, u8 prefix_len,
2838 u8 use_default, u32 val_lifetime, u32 pref_lifetime,
2839 u8 no_advertise, u8 off_link, u8 no_autoconfig,
2840 u8 no_onlink, u8 is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002841{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002842 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002843 int error;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002844
Ed Warnickecb9cada2015-12-08 15:45:58 -07002845 u32 ri;
2846
2847 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002848 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
2849 ~0);
2850
Ed Warnickecb9cada2015-12-08 15:45:58 -07002851 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
2852
2853 error = (ri != ~0) ? 0 : VNET_API_ERROR_INVALID_SW_IF_INDEX;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002854
2855 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002856 {
2857 f64 now = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002858 ip6_radv_t *radv_info;
2859 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002860
2861 /* prefix info add, delete or update */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002862 ip6_radv_prefix_t *prefix;
2863
Ed Warnickecb9cada2015-12-08 15:45:58 -07002864 /* lookup prefix info for this address on this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002865 uword *p = mhash_get (&radv_info->address_to_prefix_index, prefix_addr);
2866
Ed Warnickecb9cada2015-12-08 15:45:58 -07002867 prefix = p ? pool_elt_at_index (radv_info->adv_prefixes_pool, p[0]) : 0;
2868
Dave Barachd7cb1b52016-12-09 09:52:16 -05002869 if (is_no)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002870 {
2871 /* delete */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002872 if (!prefix)
2873 return VNET_API_ERROR_INVALID_VALUE; /* invalid prefix */
2874
2875 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002876 return VNET_API_ERROR_INVALID_VALUE_2;
2877
Dave Barachd7cb1b52016-12-09 09:52:16 -05002878 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002879 /* do specific delete processing here before returning */
2880 /* try to remove from routing table */
2881
Dave Barachd7cb1b52016-12-09 09:52:16 -05002882 mhash_unset (&radv_info->address_to_prefix_index, prefix_addr,
2883 /* old_value */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002884 pool_put (radv_info->adv_prefixes_pool, prefix);
2885
Dave Barachd7cb1b52016-12-09 09:52:16 -05002886 radv_info->initial_adverts_sent =
2887 radv_info->initial_adverts_count - 1;
2888 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002889 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002890 radv_info->last_radv_time = 0;
2891 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002892 }
2893
2894 /* adding or changing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002895 if (!prefix)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002896 {
2897 /* add */
2898 u32 pi;
2899 pool_get (radv_info->adv_prefixes_pool, prefix);
2900 pi = prefix - radv_info->adv_prefixes_pool;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002901 mhash_set (&radv_info->address_to_prefix_index, prefix_addr, pi,
2902 /* old_value */ 0);
2903
2904 memset (prefix, 0x0, sizeof (ip6_radv_prefix_t));
2905
Ed Warnickecb9cada2015-12-08 15:45:58 -07002906 prefix->prefix_len = prefix_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002907 clib_memcpy (&prefix->prefix, prefix_addr, sizeof (ip6_address_t));
2908
Ed Warnickecb9cada2015-12-08 15:45:58 -07002909 /* initialize default values */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002910 prefix->adv_on_link_flag = 1; /* L bit set */
2911 prefix->adv_autonomous_flag = 1; /* A bit set */
2912 prefix->adv_valid_lifetime_in_secs = DEF_ADV_VALID_LIFETIME;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002913 prefix->adv_pref_lifetime_in_secs = DEF_ADV_PREF_LIFETIME;
2914 prefix->enabled = 1;
2915 prefix->decrement_lifetime_flag = 1;
2916 prefix->deprecated_prefix_flag = 1;
2917
Dave Barachd7cb1b52016-12-09 09:52:16 -05002918 if (off_link == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002919 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002920 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002921 /* insert prefix into routing table as a connected prefix */
2922 }
2923
Dave Barachd7cb1b52016-12-09 09:52:16 -05002924 if (use_default)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002925 goto restart;
2926 }
2927 else
2928 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002929
2930 if (prefix->prefix_len != prefix_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002931 return VNET_API_ERROR_INVALID_VALUE_2;
2932
Dave Barachd7cb1b52016-12-09 09:52:16 -05002933 if (off_link != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002934 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002935 /* FIXME - Should the DP do this or the CP ? */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002936 /* remove from routing table if already there */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002937 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002938 }
2939
Dave Barachd7cb1b52016-12-09 09:52:16 -05002940 if ((val_lifetime == ~0) || (pref_lifetime == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002941 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002942 prefix->adv_valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002943 prefix->adv_pref_lifetime_in_secs = ~0;
2944 prefix->decrement_lifetime_flag = 0;
2945 }
2946 else
2947 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002948 prefix->adv_valid_lifetime_in_secs = val_lifetime;;
2949 prefix->adv_pref_lifetime_in_secs = pref_lifetime;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002950 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002951
Ed Warnickecb9cada2015-12-08 15:45:58 -07002952 /* copy remaining */
2953 prefix->enabled = !(no_advertise != 0);
2954 prefix->adv_on_link_flag = !((off_link != 0) || (no_onlink != 0));
2955 prefix->adv_autonomous_flag = !(no_autoconfig != 0);
2956
Dave Barachd7cb1b52016-12-09 09:52:16 -05002957 restart:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002958 /* restart */
2959 /* fill in the expiration times */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002960 prefix->valid_lifetime_expires =
2961 now + prefix->adv_valid_lifetime_in_secs;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002962 prefix->pref_lifetime_expires = now + prefix->adv_pref_lifetime_in_secs;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002963
2964 radv_info->initial_adverts_sent = radv_info->initial_adverts_count - 1;
2965 radv_info->next_multicast_time = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002966 radv_info->last_multicast_time = vlib_time_now (vm);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002967 radv_info->last_radv_time = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002968 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002969 return (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002970}
2971
2972clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05002973ip6_neighbor_cmd (vlib_main_t * vm, unformat_input_t * main_input,
2974 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002975{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002976 vnet_main_t *vnm = vnet_get_main ();
2977 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
2978 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002979 u8 is_no = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002980 u8 suppress = 0, managed = 0, other = 0;
2981 u8 suppress_ll_option = 0, send_unicast = 0, cease = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002982 u8 use_lifetime = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002983 u32 sw_if_index, ra_lifetime = 0, ra_initial_count =
2984 0, ra_initial_interval = 0;
2985 u32 ra_max_interval = 0, ra_min_interval = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002986
Dave Barachd7cb1b52016-12-09 09:52:16 -05002987 unformat_input_t _line_input, *line_input = &_line_input;
2988 vnet_sw_interface_t *sw_if0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002989
2990 int add_radv_info = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002991 __attribute__ ((unused)) ip6_radv_t *radv_info = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002992 ip6_address_t ip6_addr;
2993 u32 addr_len;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002994
Ed Warnickecb9cada2015-12-08 15:45:58 -07002995
2996 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002997 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002998 return 0;
2999
3000 /* get basic radv info for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003001 if (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003002 {
3003
Dave Barachd7cb1b52016-12-09 09:52:16 -05003004 if (unformat_user (line_input,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003005 unformat_vnet_sw_interface, vnm, &sw_if_index))
3006 {
3007 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003008 ethernet_interface_t *eth_if0 = 0;
3009
Ed Warnickecb9cada2015-12-08 15:45:58 -07003010 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003011 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
3012 eth_if0 =
3013 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
3014
3015 if (!eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003016 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003017 error =
3018 clib_error_return (0, "Interface must be of ethernet type");
Ed Warnickecb9cada2015-12-08 15:45:58 -07003019 goto done;
3020 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003021
Ed Warnickecb9cada2015-12-08 15:45:58 -07003022 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003023 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3024 sw_if_index, ~0);
3025
Ed Warnickecb9cada2015-12-08 15:45:58 -07003026 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003027
3028 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003029 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003030 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003031 }
3032 else
3033 {
3034 error = clib_error_return (0, "unknown interface %U'",
3035 format_unformat_error, line_input);
3036 goto done;
3037 }
3038 }
3039 else
3040 {
3041 error = clib_error_return (0, "invalid interface name %U'",
3042 format_unformat_error, line_input);
3043 goto done;
3044 }
3045 }
3046
3047 /* get the rest of the command */
3048 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3049 {
3050 if (unformat (line_input, "no"))
Dave Barachd7cb1b52016-12-09 09:52:16 -05003051 is_no = 1;
3052 else if (unformat (line_input, "prefix %U/%d",
3053 unformat_ip6_address, &ip6_addr, &addr_len))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003054 {
3055 add_radv_info = 0;
3056 break;
3057 }
3058 else if (unformat (line_input, "ra-managed-config-flag"))
3059 {
3060 managed = 1;
3061 break;
3062 }
3063 else if (unformat (line_input, "ra-other-config-flag"))
3064 {
3065 other = 1;
3066 break;
3067 }
Chris Luke33879c92016-06-28 19:54:21 -04003068 else if (unformat (line_input, "ra-suppress") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003069 unformat (line_input, "ra-surpress"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003070 {
Chris Luke33879c92016-06-28 19:54:21 -04003071 suppress = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003072 break;
3073 }
Chris Luke33879c92016-06-28 19:54:21 -04003074 else if (unformat (line_input, "ra-suppress-link-layer") ||
Dave Barachd7cb1b52016-12-09 09:52:16 -05003075 unformat (line_input, "ra-surpress-link-layer"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003076 {
Chris Luke33879c92016-06-28 19:54:21 -04003077 suppress_ll_option = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003078 break;
3079 }
3080 else if (unformat (line_input, "ra-send-unicast"))
3081 {
3082 send_unicast = 1;
3083 break;
3084 }
3085 else if (unformat (line_input, "ra-lifetime"))
3086 {
3087 if (!unformat (line_input, "%d", &ra_lifetime))
Billy McFalla9a20e72017-02-15 11:39:12 -05003088 {
3089 error = unformat_parse_error (line_input);
3090 goto done;
3091 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003092 use_lifetime = 1;
3093 break;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003094 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003095 else if (unformat (line_input, "ra-initial"))
3096 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003097 if (!unformat
3098 (line_input, "%d %d", &ra_initial_count, &ra_initial_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003099 {
3100 error = unformat_parse_error (line_input);
3101 goto done;
3102 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003103 break;
3104 }
3105 else if (unformat (line_input, "ra-interval"))
3106 {
3107 if (!unformat (line_input, "%d", &ra_max_interval))
Billy McFalla9a20e72017-02-15 11:39:12 -05003108 {
3109 error = unformat_parse_error (line_input);
3110 goto done;
3111 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003112
3113 if (!unformat (line_input, "%d", &ra_min_interval))
3114 ra_min_interval = 0;
3115 break;
3116 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003117 else if (unformat (line_input, "ra-cease"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003118 {
3119 cease = 1;
3120 break;
3121 }
3122 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003123 {
3124 error = unformat_parse_error (line_input);
3125 goto done;
3126 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003127 }
3128
Dave Barachd7cb1b52016-12-09 09:52:16 -05003129 if (add_radv_info)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003130 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003131 ip6_neighbor_ra_config (vm, sw_if_index,
3132 suppress, managed, other,
3133 suppress_ll_option, send_unicast, cease,
3134 use_lifetime, ra_lifetime,
3135 ra_initial_count, ra_initial_interval,
3136 ra_max_interval, ra_min_interval, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003137 }
3138 else
3139 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003140 u32 valid_lifetime_in_secs = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003141 u32 pref_lifetime_in_secs = 0;
3142 u8 use_prefix_default_values = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003143 u8 no_advertise = 0;
3144 u8 off_link = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003145 u8 no_autoconfig = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003146 u8 no_onlink = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003147
3148 /* get the rest of the command */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003149 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003150 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003151 if (unformat (line_input, "default"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003152 {
3153 use_prefix_default_values = 1;
3154 break;
3155 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003156 else if (unformat (line_input, "infinite"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003157 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003158 valid_lifetime_in_secs = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003159 pref_lifetime_in_secs = ~0;
3160 break;
3161 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003162 else if (unformat (line_input, "%d %d", &valid_lifetime_in_secs,
3163 &pref_lifetime_in_secs))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003164 break;
3165 else
3166 break;
3167 }
3168
3169
3170 /* get the rest of the command */
3171 while (!use_prefix_default_values &&
3172 unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3173 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003174 if (unformat (line_input, "no-advertise"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003175 no_advertise = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003176 else if (unformat (line_input, "off-link"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003177 off_link = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003178 else if (unformat (line_input, "no-autoconfig"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003179 no_autoconfig = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003180 else if (unformat (line_input, "no-onlink"))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003181 no_onlink = 1;
3182 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003183 {
3184 error = unformat_parse_error (line_input);
3185 goto done;
3186 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003187 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003188
3189 ip6_neighbor_ra_prefix (vm, sw_if_index,
3190 &ip6_addr, addr_len,
3191 use_prefix_default_values,
3192 valid_lifetime_in_secs,
3193 pref_lifetime_in_secs,
3194 no_advertise,
3195 off_link, no_autoconfig, no_onlink, is_no);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003196 }
3197
Billy McFalla9a20e72017-02-15 11:39:12 -05003198done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003199 unformat_free (line_input);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003200
Ed Warnickecb9cada2015-12-08 15:45:58 -07003201 return error;
3202}
3203
Chris Lukebfd32fd2016-06-24 20:38:06 -04003204static void
Dave Barachd7cb1b52016-12-09 09:52:16 -05003205ip6_print_addrs (vlib_main_t * vm, u32 * addrs)
Chris Lukebfd32fd2016-06-24 20:38:06 -04003206{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003207 ip_lookup_main_t *lm = &ip6_main.lookup_main;
Chris Lukebfd32fd2016-06-24 20:38:06 -04003208 u32 i;
3209
3210 for (i = 0; i < vec_len (addrs); i++)
3211 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003212 ip_interface_address_t *a =
3213 pool_elt_at_index (lm->if_address_pool, addrs[i]);
3214 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003215
3216 vlib_cli_output (vm, "\t\t%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05003217 format_ip6_address, address, a->address_length);
Chris Lukebfd32fd2016-06-24 20:38:06 -04003218 }
3219}
3220
Ed Warnickecb9cada2015-12-08 15:45:58 -07003221static clib_error_t *
3222show_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003223 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003224{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003225 vnet_main_t *vnm = vnet_get_main ();
3226 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3227 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003228 u32 sw_if_index;
3229
3230 sw_if_index = ~0;
3231
Dave Barachd7cb1b52016-12-09 09:52:16 -05003232 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003233 {
3234 u32 ri;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003235
Dave Barachd7cb1b52016-12-09 09:52:16 -05003236 /* look up the radv_t information for this interface */
3237 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3238 sw_if_index, ~0);
3239
3240 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3241
3242 if (ri != ~0)
3243 {
3244 ip_lookup_main_t *lm = &ip6_main.lookup_main;
3245 ip6_radv_t *radv_info;
3246 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3247
3248 vlib_cli_output (vm, "%U is admin %s\n",
3249 format_vnet_sw_interface_name, vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003250 vnet_get_sw_interface (vnm, sw_if_index),
Dave Barachd7cb1b52016-12-09 09:52:16 -05003251 (vnet_sw_interface_is_admin_up (vnm, sw_if_index) ?
3252 "up" : "down"));
3253
Chris Lukebfd32fd2016-06-24 20:38:06 -04003254 u32 ai;
3255 u32 *link_scope = 0, *global_scope = 0;
3256 u32 *local_scope = 0, *unknown_scope = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003257 ip_interface_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003258
Dave Barachd7cb1b52016-12-09 09:52:16 -05003259 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
3260 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003261 ai = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
3262
Dave Barachd7cb1b52016-12-09 09:52:16 -05003263 while (ai != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003264 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003265 a = pool_elt_at_index (lm->if_address_pool, ai);
3266 ip6_address_t *address =
3267 ip_interface_address_get_address (lm, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003268
Chris Lukebfd32fd2016-06-24 20:38:06 -04003269 if (ip6_address_is_link_local_unicast (address))
3270 vec_add1 (link_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003271 else if (ip6_address_is_global_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003272 vec_add1 (global_scope, ai);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003273 else if (ip6_address_is_local_unicast (address))
Chris Lukebfd32fd2016-06-24 20:38:06 -04003274 vec_add1 (local_scope, ai);
3275 else
3276 vec_add1 (unknown_scope, ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003277
3278 ai = a->next_this_sw_interface;
3279 }
3280
Dave Barachd7cb1b52016-12-09 09:52:16 -05003281 if (vec_len (link_scope))
3282 {
3283 vlib_cli_output (vm, "\tLink-local address(es):\n");
3284 ip6_print_addrs (vm, link_scope);
3285 vec_free (link_scope);
3286 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003287
Dave Barachd7cb1b52016-12-09 09:52:16 -05003288 if (vec_len (local_scope))
3289 {
3290 vlib_cli_output (vm, "\tLocal unicast address(es):\n");
3291 ip6_print_addrs (vm, local_scope);
3292 vec_free (local_scope);
3293 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003294
Dave Barachd7cb1b52016-12-09 09:52:16 -05003295 if (vec_len (global_scope))
3296 {
3297 vlib_cli_output (vm, "\tGlobal unicast address(es):\n");
3298 ip6_print_addrs (vm, global_scope);
3299 vec_free (global_scope);
3300 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003301
Dave Barachd7cb1b52016-12-09 09:52:16 -05003302 if (vec_len (unknown_scope))
3303 {
3304 vlib_cli_output (vm, "\tOther-scope address(es):\n");
3305 ip6_print_addrs (vm, unknown_scope);
3306 vec_free (unknown_scope);
3307 }
Chris Lukebfd32fd2016-06-24 20:38:06 -04003308
Neale Ranns53da2212018-02-24 02:11:19 -08003309 vlib_cli_output (vm, "\tLink-local address(es):\n");
3310 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3311 &radv_info->link_local_address);
3312
Ed Warnickecb9cada2015-12-08 15:45:58 -07003313 vlib_cli_output (vm, "\tJoined group address(es):\n");
3314 ip6_mldp_group_t *m;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003315 /* *INDENT-OFF* */
3316 pool_foreach (m, radv_info->mldp_group_pool,
3317 ({
3318 vlib_cli_output (vm, "\t\t%U\n", format_ip6_address,
3319 &m->mcast_address);
3320 }));
3321 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003322
3323 vlib_cli_output (vm, "\tAdvertised Prefixes:\n");
Dave Barachd7cb1b52016-12-09 09:52:16 -05003324 ip6_radv_prefix_t *p;
3325 /* *INDENT-OFF* */
3326 pool_foreach (p, radv_info->adv_prefixes_pool,
3327 ({
3328 vlib_cli_output (vm, "\t\tprefix %U, length %d\n",
3329 format_ip6_address, &p->prefix, p->prefix_len);
3330 }));
3331 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003332
Dave Barachd7cb1b52016-12-09 09:52:16 -05003333 vlib_cli_output (vm, "\tMTU is %d\n", radv_info->adv_link_mtu);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003334 vlib_cli_output (vm, "\tICMP error messages are unlimited\n");
3335 vlib_cli_output (vm, "\tICMP redirects are disabled\n");
3336 vlib_cli_output (vm, "\tICMP unreachables are not sent\n");
3337 vlib_cli_output (vm, "\tND DAD is disabled\n");
3338 //vlib_cli_output (vm, "\tND reachable time is %d milliseconds\n",);
3339 vlib_cli_output (vm, "\tND advertised reachable time is %d\n",
3340 radv_info->adv_neighbor_reachable_time_in_msec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003341 vlib_cli_output (vm,
3342 "\tND advertised retransmit interval is %d (msec)\n",
3343 radv_info->
3344 adv_time_in_msec_between_retransmitted_neighbor_solicitations);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003345
3346 u32 ra_interval = radv_info->max_radv_interval;
3347 u32 ra_interval_min = radv_info->min_radv_interval;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003348 vlib_cli_output (vm,
3349 "\tND router advertisements are sent every %d seconds (min interval is %d)\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003350 ra_interval, ra_interval_min);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003351 vlib_cli_output (vm,
3352 "\tND router advertisements live for %d seconds\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003353 radv_info->adv_router_lifetime_in_sec);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003354 vlib_cli_output (vm,
3355 "\tHosts %s stateless autoconfig for addresses\n",
3356 (radv_info->adv_managed_flag) ? "use" :
3357 " don't use");
3358 vlib_cli_output (vm, "\tND router advertisements sent %d\n",
3359 radv_info->n_advertisements_sent);
3360 vlib_cli_output (vm, "\tND router solicitations received %d\n",
3361 radv_info->n_solicitations_rcvd);
3362 vlib_cli_output (vm, "\tND router solicitations dropped %d\n",
3363 radv_info->n_solicitations_dropped);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003364 }
3365 else
3366 {
Chris Lukebfd32fd2016-06-24 20:38:06 -04003367 error = clib_error_return (0, "IPv6 not enabled on interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003368 format_unformat_error, input);
3369
3370 }
3371 }
3372 return error;
3373}
3374
Billy McFall0683c9c2016-10-13 08:27:31 -04003375/*?
3376 * This command is used to display various IPv6 attributes on a given
3377 * interface.
3378 *
3379 * @cliexpar
3380 * Example of how to display IPv6 settings:
3381 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
3382 * GigabitEthernet2/0/0 is admin up
3383 * Link-local address(es):
3384 * fe80::ab8/64
3385 * Joined group address(es):
3386 * ff02::1
3387 * ff02::2
3388 * ff02::16
3389 * ff02::1:ff00:ab8
3390 * Advertised Prefixes:
3391 * prefix fe80::fe:28ff:fe9c:75b3, length 64
3392 * MTU is 1500
3393 * ICMP error messages are unlimited
3394 * ICMP redirects are disabled
3395 * ICMP unreachables are not sent
3396 * ND DAD is disabled
3397 * ND advertised reachable time is 0
3398 * ND advertised retransmit interval is 0 (msec)
3399 * ND router advertisements are sent every 200 seconds (min interval is 150)
3400 * ND router advertisements live for 600 seconds
3401 * Hosts use stateless autoconfig for addresses
3402 * ND router advertisements sent 19336
3403 * ND router solicitations received 0
3404 * ND router solicitations dropped 0
3405 * @cliexend
3406 * Example of output if IPv6 is not enabled on the interface:
3407 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
3408 * show ip6 interface: IPv6 not enabled on interface
3409 * @cliexend
3410?*/
3411/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003412VLIB_CLI_COMMAND (show_ip6_interface_command, static) =
3413{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003414 .path = "show ip6 interface",
3415 .function = show_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04003416 .short_help = "show ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003417};
Billy McFall0683c9c2016-10-13 08:27:31 -04003418/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003419
3420clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05003421disable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003422{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003423 clib_error_t *error = 0;
3424 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003425 u32 ri;
3426
3427 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003428 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3429 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003430 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003431
Ed Warnickecb9cada2015-12-08 15:45:58 -07003432 /* if not created - do nothing */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003433 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003434 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003435 ip6_radv_t *radv_info;
3436
3437 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003438
3439 /* check radv_info ref count for other ip6 addresses on this interface */
Wojciech Dec7bc73102017-02-14 16:24:28 +01003440 /* This implicitly excludes the link local address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003441 if (radv_info->ref_count == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003442 {
3443 /* essentially "disables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08003444 ip6_ll_prefix_t ilp = {
3445 .ilp_addr = radv_info->link_local_address,
3446 .ilp_sw_if_index = sw_if_index,
3447 };
3448 ip6_ll_table_entry_delete (&ilp);
3449 ip6_sw_interface_enable_disable (sw_if_index, 0);
Neale Ranns4008ac92017-02-13 23:20:04 -08003450 ip6_mfib_interface_enable_disable (sw_if_index, 0);
Neale Ranns53da2212018-02-24 02:11:19 -08003451 ip6_neighbor_sw_interface_add_del (vnet_get_main (), sw_if_index,
3452 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003453 }
3454 }
3455 return error;
3456}
3457
3458int
Dave Barachd7cb1b52016-12-09 09:52:16 -05003459ip6_interface_enabled (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003460{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003461 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3462 u32 ri = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003463
Dave Barachd7cb1b52016-12-09 09:52:16 -05003464 /* look up the radv_t information for this interface */
3465 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3466 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003467
Dave Barachd7cb1b52016-12-09 09:52:16 -05003468 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07003469
Dave Barachd7cb1b52016-12-09 09:52:16 -05003470 return ri != ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003471}
3472
Dave Barachd7cb1b52016-12-09 09:52:16 -05003473clib_error_t *
3474enable_ip6_interface (vlib_main_t * vm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003475{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003476 clib_error_t *error = 0;
3477 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003478 u32 ri;
3479 int is_add = 1;
3480
3481 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003482 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index, sw_if_index,
3483 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003484
Dave Barachd7cb1b52016-12-09 09:52:16 -05003485 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3486
3487 /* if not created yet */
3488 if (ri == ~0)
3489 {
3490 vnet_main_t *vnm = vnet_get_main ();
3491 vnet_sw_interface_t *sw_if0;
3492
3493 sw_if0 = vnet_get_sup_sw_interface (vnm, sw_if_index);
3494 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
3495 {
3496 ethernet_interface_t *eth_if0;
3497
3498 eth_if0 =
3499 ethernet_get_interface (&ethernet_main, sw_if0->hw_if_index);
3500 if (eth_if0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003501 {
3502 /* create radv_info. for this interface. This holds all the info needed for router adverts */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003503 ri =
3504 ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003505
Dave Barachd7cb1b52016-12-09 09:52:16 -05003506 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003507 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003508 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003509 ip6_address_t link_local_address;
3510
Dave Barachd7cb1b52016-12-09 09:52:16 -05003511 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003512
Dave Barachd7cb1b52016-12-09 09:52:16 -05003513 ip6_link_local_address_from_ethernet_mac_address
3514 (&link_local_address, eth_if0->address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003515
3516 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index);
Pavel Kotucek8dc80202017-08-15 13:52:22 +02003517 if (sw_if0->type == VNET_SW_INTERFACE_TYPE_SUB ||
3518 sw_if0->type == VNET_SW_INTERFACE_TYPE_P2P)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003519 {
3520 /* make up an interface id */
3521 md5_context_t m;
3522 u8 digest[16];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003523
Ed Warnickecb9cada2015-12-08 15:45:58 -07003524 link_local_address.as_u64[0] = radv_info->randomizer;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003525
Ed Warnickecb9cada2015-12-08 15:45:58 -07003526 md5_init (&m);
3527 md5_add (&m, &link_local_address, 16);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003528 md5_finish (&m, digest);
3529
3530 clib_memcpy (&link_local_address, digest, 16);
3531
Ed Warnickecb9cada2015-12-08 15:45:58 -07003532 radv_info->randomizer = link_local_address.as_u64[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003533
3534 link_local_address.as_u64[0] =
3535 clib_host_to_net_u64 (0xFE80000000000000ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003536 /* clear u bit */
3537 link_local_address.as_u8[8] &= 0xfd;
3538 }
Neale Ranns53da2212018-02-24 02:11:19 -08003539 {
3540 ip6_ll_prefix_t ilp = {
3541 .ilp_addr = link_local_address,
3542 .ilp_sw_if_index = sw_if_index,
3543 };
Dave Barachd7cb1b52016-12-09 09:52:16 -05003544
Neale Ranns53da2212018-02-24 02:11:19 -08003545 ip6_ll_table_entry_update (&ilp, FIB_ROUTE_PATH_LOCAL);
3546 }
Neale Ranns4008ac92017-02-13 23:20:04 -08003547
Ed Warnickecb9cada2015-12-08 15:45:58 -07003548 /* essentially "enables" ipv6 on this interface */
Neale Ranns53da2212018-02-24 02:11:19 -08003549 ip6_mfib_interface_enable_disable (sw_if_index, 1);
3550 ip6_sw_interface_enable_disable (sw_if_index, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003551
Neale Ranns53da2212018-02-24 02:11:19 -08003552 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003553 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003554 radv_info->link_local_address = link_local_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003555 }
3556 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003557 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003558 }
3559 }
3560 return error;
3561}
3562
Neale Ranns53da2212018-02-24 02:11:19 -08003563int
3564ip6_get_ll_address (u32 sw_if_index, ip6_address_t * addr)
3565{
3566 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3567 ip6_radv_t *radv_info;
3568 u32 ri;
3569
3570 if (vec_len (nm->if_radv_pool_index_by_sw_if_index) < sw_if_index)
3571 return 0;
3572
3573 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
3574
3575 if (ri == ~0)
3576 return 0;
3577
3578 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3579 *addr = radv_info->link_local_address;
3580
3581 return (!0);
3582}
3583
Ed Warnickecb9cada2015-12-08 15:45:58 -07003584static clib_error_t *
3585enable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003586 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003587{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003588 vnet_main_t *vnm = vnet_get_main ();
3589 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003590 u32 sw_if_index;
3591
3592 sw_if_index = ~0;
3593
Dave Barachd7cb1b52016-12-09 09:52:16 -05003594 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003595 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003596 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003597 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003598 else
3599 {
3600 error = clib_error_return (0, "unknown interface\n'",
3601 format_unformat_error, input);
3602
3603 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003604 return error;
3605}
3606
Billy McFall0683c9c2016-10-13 08:27:31 -04003607/*?
3608 * This command is used to enable IPv6 on a given interface.
3609 *
3610 * @cliexpar
3611 * Example of how enable IPv6 on a given interface:
3612 * @cliexcmd{enable ip6 interface GigabitEthernet2/0/0}
3613?*/
3614/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003615VLIB_CLI_COMMAND (enable_ip6_interface_command, static) =
3616{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003617 .path = "enable ip6 interface",
3618 .function = enable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04003619 .short_help = "enable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003620};
Billy McFall0683c9c2016-10-13 08:27:31 -04003621/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003622
3623static clib_error_t *
3624disable_ip6_interface_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003625 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003626{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003627 vnet_main_t *vnm = vnet_get_main ();
3628 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003629 u32 sw_if_index;
3630
3631 sw_if_index = ~0;
3632
Dave Barachd7cb1b52016-12-09 09:52:16 -05003633 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003634 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003635 error = disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003636 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05003637 else
3638 {
3639 error = clib_error_return (0, "unknown interface\n'",
3640 format_unformat_error, input);
3641
3642 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003643 return error;
3644}
3645
Billy McFall0683c9c2016-10-13 08:27:31 -04003646/*?
3647 * This command is used to disable IPv6 on a given interface.
3648 *
3649 * @cliexpar
3650 * Example of how disable IPv6 on a given interface:
3651 * @cliexcmd{disable ip6 interface GigabitEthernet2/0/0}
3652?*/
3653/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003654VLIB_CLI_COMMAND (disable_ip6_interface_command, static) =
3655{
Billy McFall0683c9c2016-10-13 08:27:31 -04003656 .path = "disable ip6 interface",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003657 .function = disable_ip6_interface_cmd,
Billy McFall0683c9c2016-10-13 08:27:31 -04003658 .short_help = "disable ip6 interface <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003659};
Billy McFall0683c9c2016-10-13 08:27:31 -04003660/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003661
Billy McFall0683c9c2016-10-13 08:27:31 -04003662/*?
3663 * This command is used to configure the neighbor discovery
3664 * parameters on a given interface. Use the '<em>show ip6 interface</em>'
3665 * command to display some of the current neighbor discovery parameters
3666 * on a given interface. This command has three formats:
3667 *
3668 *
3669 * <b>Format 1 - Router Advertisement Options:</b> (Only one can be entered in a single command)
3670 *
3671 * '<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>'
3672 *
3673 * Where:
3674 *
3675 * <em>[no] ra-managed-config-flag</em> - Advertises in ICMPv6
3676 * router-advertisement messages to use stateful address
3677 * auto-configuration to obtain address information (sets the M-bit).
3678 * Default is the M-bit is not set and the '<em>no</em>' option
3679 * returns it to this default state.
3680 *
3681 * <em>[no] ra-other-config-flag</em> - Indicates in ICMPv6
3682 * router-advertisement messages that hosts use stateful auto
3683 * configuration to obtain nonaddress related information (sets
3684 * the O-bit). Default is the O-bit is not set and the '<em>no</em>'
3685 * option returns it to this default state.
3686 *
3687 * <em>[no] ra-suppress</em> - Disables sending ICMPv6 router-advertisement
3688 * messages. The '<em>no</em>' option implies to enable sending ICMPv6
3689 * router-advertisement messages.
3690 *
3691 * <em>[no] ra-suppress-link-layer</em> - Indicates not to include the
3692 * optional source link-layer address in the ICMPv6 router-advertisement
3693 * messages. Default is to include the optional source link-layer address
3694 * and the '<em>no</em>' option returns it to this default state.
3695 *
3696 * <em>[no] ra-send-unicast</em> - Use the source address of the
3697 * router-solicitation message if availiable. The default is to use
3698 * multicast address of all nodes, and the '<em>no</em>' option returns
3699 * it to this default state.
3700 *
3701 * <em>[no] ra-lifetime <lifetime></em> - Advertises the lifetime of a
3702 * default router in ICMPv6 router-advertisement messages. The range is
3703 * from 0 to 9000 seconds. '<em><lifetime></em>' must be greater than
3704 * '<em><max-interval></em>'. The default value is 600 seconds and the
3705 * '<em>no</em>' option returns it to this default value.
3706 *
3707 * <em>[no] ra-initial <cnt> <interval></em> - Number of initial ICMPv6
3708 * router-advertisement messages sent and the interval between each
3709 * message. Range for count is 1 - 3 and default is 3. Range for interval
3710 * is 1 to 16 seconds, and default is 16 seconds. The '<em>no</em>' option
3711 * returns both to their default value.
3712 *
3713 * <em>[no] ra-interval <max-interval> [<min-interval>]</em> - Configures the
3714 * interval between sending ICMPv6 router-advertisement messages. The
3715 * range for max-interval is from 4 to 200 seconds. min-interval can not
3716 * be more than 75% of max-interval. If not set, min-interval will be
3717 * set to 75% of max-interval. The range for min-interval is from 3 to
3718 * 150 seconds. The '<em>no</em>' option returns both to their default
3719 * value.
3720 *
3721 * <em>[no] ra-cease</em> - Cease sending ICMPv6 router-advertisement messages.
3722 * The '<em>no</em>' options implies to start (or restart) sending
3723 * ICMPv6 router-advertisement messages.
3724 *
3725 *
3726 * <b>Format 2 - Prefix Options:</b>
3727 *
3728 * '<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>'
3729 *
3730 * Where:
3731 *
3732 * <em>no</em> - All additional flags are ignored and the prefix is deleted.
3733 *
3734 * <em><valid-lifetime> <pref-lifetime></em> - '<em><valid-lifetime></em>' is the
3735 * length of time in seconds during what the prefix is valid for the purpose of
3736 * on-link determination. Range is 7203 to 2592000 seconds and default is 2592000
3737 * seconds (30 days). '<em><pref-lifetime></em>' is the prefered-lifetime and is the
3738 * length of time in seconds during what addresses generated from the prefix remain
3739 * preferred. Range is 0 to 604800 seconds and default is 604800 seconds (7 days).
3740 *
3741 * <em>infinite</em> - Both '<em><valid-lifetime></em>' and '<em><<pref-lifetime></em>'
3742 * are inifinte, no timeout.
3743 *
3744 * <em>no-advertise</em> - Do not send full router address in prefix
3745 * advertisement. Default is to advertise (i.e. - This flag is off by default).
3746 *
3747 * <em>off-link</em> - Prefix is off-link, clear L-bit in packet. Default is on-link
3748 * (i.e. - This flag is off and L-bit in packet is set by default and this prefix can
3749 * be used for on-link determination). '<em>no-onlink</em>' also controls the L-bit.
3750 *
3751 * <em>no-autoconfig</em> - Do not use prefix for autoconfiguration, clear A-bit in packet.
3752 * Default is autoconfig (i.e. - This flag is off and A-bit in packet is set by default.
3753 *
3754 * <em>no-onlink</em> - Do not use prefix for onlink determination, clear L-bit in packet.
3755 * Default is on-link (i.e. - This flag is off and L-bit in packet is set by default and
3756 * this prefix can be used for on-link determination). '<em>off-link</em>' also controls
3757 * the L-bit.
3758 *
3759 *
3760 * <b>Format 3: - Default of Prefix:</b>
3761 *
3762 * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> default</b></em>'
3763 *
3764 * When a new prefix is added (or existing one is being overwritten) <em>default</em>
3765 * uses default values for the prefix. If <em>no</em> is used, the <em>default</em>
3766 * is ignored and the prefix is deleted.
3767 *
3768 *
3769 * @cliexpar
3770 * Example of how set a router advertisement option:
3771 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 ra-interval 100 20}
3772 * Example of how to add a prefix:
3773 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 prefix fe80::fe:28ff:fe9c:75b3/64 infinite no-advertise}
3774 * Example of how to delete a prefix:
3775 * @cliexcmd{ip6 nd GigabitEthernet2/0/0 no prefix fe80::fe:28ff:fe9c:75b3/64}
3776?*/
3777/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003778VLIB_CLI_COMMAND (ip6_nd_command, static) =
3779{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003780 .path = "ip6 nd",
Billy McFall0683c9c2016-10-13 08:27:31 -04003781 .short_help = "ip6 nd <interface> ...",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003782 .function = ip6_neighbor_cmd,
3783};
Billy McFall0683c9c2016-10-13 08:27:31 -04003784/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003785
3786clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05003787set_ip6_link_local_address (vlib_main_t * vm,
Neale Ranns75152282017-01-09 01:00:45 -08003788 u32 sw_if_index, ip6_address_t * address)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003789{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003790 clib_error_t *error = 0;
3791 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003792 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003793 ip6_radv_t *radv_info;
3794 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07003795
Dave Barachd7cb1b52016-12-09 09:52:16 -05003796 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003797 {
3798 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_LINK_LOCAL;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003799 return (error = clib_error_return (0, "address not link-local",
3800 format_unformat_error));
Ed Warnickecb9cada2015-12-08 15:45:58 -07003801 }
3802
3803 /* call enable ipv6 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003804 enable_ip6_interface (vm, sw_if_index);
3805
Ed Warnickecb9cada2015-12-08 15:45:58 -07003806 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003807
3808 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003809 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003810 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003811
3812 /* save if link local address (overwrite default) */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003813
Ed Warnickecb9cada2015-12-08 15:45:58 -07003814 /* delete the old one */
3815 error = ip6_add_del_interface_address (vm, sw_if_index,
3816 &radv_info->link_local_address,
Neale Ranns75152282017-01-09 01:00:45 -08003817 128, 1 /* is_del */ );
Dave Barachd7cb1b52016-12-09 09:52:16 -05003818
3819 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003820 {
3821 /* add the new one */
3822 error = ip6_add_del_interface_address (vm, sw_if_index,
Neale Ranns75152282017-01-09 01:00:45 -08003823 address, 128,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003824 0 /* is_del */ );
3825
3826 if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003827 {
3828 radv_info->link_local_address = *address;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003829 }
3830 }
3831 }
3832 else
3833 {
3834 vnm->api_errno = VNET_API_ERROR_IP6_NOT_ENABLED;
3835 error = clib_error_return (0, "ip6 not enabled for interface",
3836 format_unformat_error);
3837 }
3838 return error;
3839}
Dave Barachd7cb1b52016-12-09 09:52:16 -05003840
Ed Warnickecb9cada2015-12-08 15:45:58 -07003841clib_error_t *
3842set_ip6_link_local_address_cmd (vlib_main_t * vm,
3843 unformat_input_t * input,
3844 vlib_cli_command_t * cmd)
3845{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003846 vnet_main_t *vnm = vnet_get_main ();
3847 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003848 u32 sw_if_index;
3849 ip6_address_t ip6_addr;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003850
3851 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003852 {
3853 /* get the rest of the command */
3854 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3855 {
Neale Ranns75152282017-01-09 01:00:45 -08003856 if (unformat (input, "%U", unformat_ip6_address, &ip6_addr))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003857 break;
3858 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05003859 return (unformat_parse_error (input));
Ed Warnickecb9cada2015-12-08 15:45:58 -07003860 }
3861 }
Neale Ranns75152282017-01-09 01:00:45 -08003862 error = set_ip6_link_local_address (vm, sw_if_index, &ip6_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003863 return error;
3864}
3865
Billy McFall0683c9c2016-10-13 08:27:31 -04003866/*?
3867 * This command is used to assign an IPv6 Link-local address to an
3868 * interface. This command will enable IPv6 on an interface if it
3869 * is not already enabled. Use the '<em>show ip6 interface</em>' command
3870 * to display the assigned Link-local address.
3871 *
3872 * @cliexpar
3873 * Example of how to assign an IPv6 Link-local address to an interface:
Neale Ranns75152282017-01-09 01:00:45 -08003874 * @cliexcmd{set ip6 link-local address GigabitEthernet2/0/0 FE80::AB8}
Billy McFall0683c9c2016-10-13 08:27:31 -04003875?*/
3876/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003877VLIB_CLI_COMMAND (set_ip6_link_local_address_command, static) =
3878{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003879 .path = "set ip6 link-local address",
Neale Ranns75152282017-01-09 01:00:45 -08003880 .short_help = "set ip6 link-local address <interface> <ip6-address>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003881 .function = set_ip6_link_local_address_cmd,
3882};
Billy McFall0683c9c2016-10-13 08:27:31 -04003883/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003884
Neale Ranns87df12d2017-02-18 08:16:41 -08003885/**
3886 * @brief callback when an interface address is added or deleted
3887 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003888static void
3889ip6_neighbor_add_del_interface_address (ip6_main_t * im,
3890 uword opaque,
3891 u32 sw_if_index,
3892 ip6_address_t * address,
3893 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003894 u32 if_address_index, u32 is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003895{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003896 vnet_main_t *vnm = vnet_get_main ();
3897 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003898 u32 ri;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003899 vlib_main_t *vm = vnm->vlib_main;
3900 ip6_radv_t *radv_info;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003901 ip6_address_t a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003902
3903 /* create solicited node multicast address for this interface adddress */
3904 ip6_set_solicited_node_multicast_address (&a, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003905
Ed Warnickecb9cada2015-12-08 15:45:58 -07003906 a.as_u8[0xd] = address->as_u8[0xd];
3907 a.as_u8[0xe] = address->as_u8[0xe];
3908 a.as_u8[0xf] = address->as_u8[0xf];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003909
3910 if (!is_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003911 {
3912 /* try to create radv_info - does nothing if ipv6 already enabled */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003913 enable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003914
3915 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003916 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3917 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003918 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05003919 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003920 {
3921 /* get radv_info */
3922 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3923
3924 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003925 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003926 radv_info->ref_count++;
3927
Neale Ranns87df12d2017-02-18 08:16:41 -08003928 ip6_neighbor_add_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003929 }
3930 }
3931 else
3932 {
3933
3934 /* delete */
3935 /* look up the radv_t information for this interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003936 vec_validate_init_empty (nm->if_radv_pool_index_by_sw_if_index,
3937 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003938 ri = nm->if_radv_pool_index_by_sw_if_index[sw_if_index];
Wojciech Dec7bc73102017-02-14 16:24:28 +01003939
Dave Barachd7cb1b52016-12-09 09:52:16 -05003940 if (ri != ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003941 {
3942 /* get radv_info */
3943 radv_info = pool_elt_at_index (nm->if_radv_pool, ri);
3944
Neale Ranns87df12d2017-02-18 08:16:41 -08003945 ip6_neighbor_del_mld_prefix (radv_info, &a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003946
3947 /* if interface up send MLDP "report" */
3948 radv_info->all_routers_mcast = 0;
3949
3950 /* add address */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003951 if (!ip6_address_is_link_local_unicast (address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003952 radv_info->ref_count--;
3953 }
Wojciech Dec7bc73102017-02-14 16:24:28 +01003954 /* Ensure that IPv6 is disabled, and LL removed after ref_count reaches 0 */
3955 disable_ip6_interface (vm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003956 }
3957}
3958
Dave Barachd7cb1b52016-12-09 09:52:16 -05003959clib_error_t *
3960ip6_set_neighbor_limit (u32 neighbor_limit)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003961{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003962 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003963
3964 nm->limit_neighbor_cache_size = neighbor_limit;
3965 return 0;
3966}
3967
Neale Ranns15002542017-09-10 04:39:11 -07003968static void
3969ip6_neighbor_table_bind (ip6_main_t * im,
3970 uword opaque,
3971 u32 sw_if_index,
3972 u32 new_fib_index, u32 old_fib_index)
3973{
3974 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3975 ip6_neighbor_t *n = NULL;
3976 u32 i, *to_re_add = 0;
3977
3978 /* *INDENT-OFF* */
3979 pool_foreach (n, nm->neighbor_pool,
3980 ({
3981 if (n->key.sw_if_index == sw_if_index)
3982 vec_add1 (to_re_add, n - nm->neighbor_pool);
3983 }));
3984 /* *INDENT-ON* */
3985
3986 for (i = 0; i < vec_len (to_re_add); i++)
3987 {
3988 n = pool_elt_at_index (nm->neighbor_pool, to_re_add[i]);
3989 ip6_neighbor_adj_fib_remove (n, old_fib_index);
3990 ip6_neighbor_adj_fib_add (n, new_fib_index);
3991 }
3992 vec_free (to_re_add);
3993}
3994
Dave Barachd7cb1b52016-12-09 09:52:16 -05003995static clib_error_t *
3996ip6_neighbor_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003997{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003998 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
3999 ip6_main_t *im = &ip6_main;
4000
Ed Warnickecb9cada2015-12-08 15:45:58 -07004001 mhash_init (&nm->neighbor_index_by_key,
4002 /* value size */ sizeof (uword),
4003 /* key size */ sizeof (ip6_neighbor_key_t));
4004
Dave Barachd7cb1b52016-12-09 09:52:16 -05004005 icmp6_register_type (vm, ICMP6_neighbor_solicitation,
4006 ip6_icmp_neighbor_solicitation_node.index);
4007 icmp6_register_type (vm, ICMP6_neighbor_advertisement,
4008 ip6_icmp_neighbor_advertisement_node.index);
4009 icmp6_register_type (vm, ICMP6_router_solicitation,
4010 ip6_icmp_router_solicitation_node.index);
4011 icmp6_register_type (vm, ICMP6_router_advertisement,
4012 ip6_icmp_router_advertisement_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07004013
4014 /* handler node for ip6 neighbor discovery events and timers */
4015 vlib_register_node (vm, &ip6_icmp_neighbor_discovery_event_node);
4016
4017 /* add call backs */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004018 ip6_add_del_interface_address_callback_t cb;
4019 memset (&cb, 0x0, sizeof (ip6_add_del_interface_address_callback_t));
4020
Ed Warnickecb9cada2015-12-08 15:45:58 -07004021 /* when an interface address changes... */
4022 cb.function = ip6_neighbor_add_del_interface_address;
4023 cb.function_opaque = 0;
4024 vec_add1 (im->add_del_interface_address_callbacks, cb);
4025
Neale Ranns15002542017-09-10 04:39:11 -07004026 ip6_table_bind_callback_t cbt;
4027 cbt.function = ip6_neighbor_table_bind;
4028 cbt.function_opaque = 0;
4029 vec_add1 (im->table_bind_callbacks, cbt);
4030
Ed Warnickecb9cada2015-12-08 15:45:58 -07004031 mhash_init (&nm->pending_resolutions_by_address,
4032 /* value size */ sizeof (uword),
4033 /* key size */ sizeof (ip6_address_t));
4034
John Lo1edfba92016-08-27 01:11:57 -04004035 mhash_init (&nm->mac_changes_by_address,
4036 /* value size */ sizeof (uword),
4037 /* key size */ sizeof (ip6_address_t));
4038
Ed Warnickecb9cada2015-12-08 15:45:58 -07004039 /* default, configurable */
4040 nm->limit_neighbor_cache_size = 50000;
4041
Eyal Baric125ecc2017-09-20 11:29:17 +03004042 nm->wc_ip6_nd_publisher_node = (uword) ~ 0;
4043
Ed Warnickecb9cada2015-12-08 15:45:58 -07004044#if 0
4045 /* $$$$ Hack fix for today */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004046 vec_validate_init_empty
4047 (im->discover_neighbor_next_index_by_hw_if_index, 32, 0 /* drop */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004048#endif
4049
Ed Warnickecb9cada2015-12-08 15:45:58 -07004050 return 0;
4051}
4052
4053VLIB_INIT_FUNCTION (ip6_neighbor_init);
4054
4055
Dave Barachd7cb1b52016-12-09 09:52:16 -05004056void
4057vnet_register_ip6_neighbor_resolution_event (vnet_main_t * vnm,
4058 void *address_arg,
4059 uword node_index,
4060 uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004061{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004062 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4063 ip6_address_t *address = address_arg;
4064 uword *p;
4065 pending_resolution_t *pr;
4066
Ed Warnickecb9cada2015-12-08 15:45:58 -07004067 pool_get (nm->pending_resolutions, pr);
4068
4069 pr->next_index = ~0;
4070 pr->node_index = node_index;
4071 pr->type_opaque = type_opaque;
4072 pr->data = data;
4073
4074 p = mhash_get (&nm->pending_resolutions_by_address, address);
4075 if (p)
4076 {
4077 /* Insert new resolution at the head of the list */
4078 pr->next_index = p[0];
4079 mhash_unset (&nm->pending_resolutions_by_address, address, 0);
4080 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05004081
4082 mhash_set (&nm->pending_resolutions_by_address, address,
4083 pr - nm->pending_resolutions, 0 /* old value */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07004084}
4085
Dave Barachd7cb1b52016-12-09 09:52:16 -05004086int
4087vnet_add_del_ip6_nd_change_event (vnet_main_t * vnm,
4088 void *data_callback,
4089 u32 pid,
4090 void *address_arg,
4091 uword node_index,
4092 uword type_opaque, uword data, int is_add)
John Lo1edfba92016-08-27 01:11:57 -04004093{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004094 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4095 ip6_address_t *address = address_arg;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004096
Eyal Barif9f40652017-04-01 03:55:08 +03004097 /* Try to find an existing entry */
4098 u32 *first = (u32 *) mhash_get (&nm->mac_changes_by_address, address);
4099 u32 *p = first;
4100 pending_resolution_t *mc;
4101 while (p && *p != ~0)
4102 {
4103 mc = pool_elt_at_index (nm->mac_changes, *p);
4104 if (mc->node_index == node_index && mc->type_opaque == type_opaque
4105 && mc->pid == pid)
4106 break;
4107 p = &mc->next_index;
4108 }
4109
4110 int found = p && *p != ~0;
John Lo1edfba92016-08-27 01:11:57 -04004111 if (is_add)
4112 {
Eyal Barif9f40652017-04-01 03:55:08 +03004113 if (found)
4114 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
4115
John Lo1edfba92016-08-27 01:11:57 -04004116 pool_get (nm->mac_changes, mc);
Eyal Barif9f40652017-04-01 03:55:08 +03004117 *mc = (pending_resolution_t)
4118 {
4119 .next_index = ~0,.node_index = node_index,.type_opaque =
4120 type_opaque,.data = data,.data_callback = data_callback,.pid =
4121 pid,};
John Lo1edfba92016-08-27 01:11:57 -04004122
Eyal Barif9f40652017-04-01 03:55:08 +03004123 /* Insert new resolution at the end of the list */
4124 u32 new_idx = mc - nm->mac_changes;
John Lo1edfba92016-08-27 01:11:57 -04004125 if (p)
Eyal Barif9f40652017-04-01 03:55:08 +03004126 p[0] = new_idx;
4127 else
4128 mhash_set (&nm->mac_changes_by_address, address, new_idx, 0);
John Lo1edfba92016-08-27 01:11:57 -04004129 }
4130 else
4131 {
Eyal Barif9f40652017-04-01 03:55:08 +03004132 if (!found)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004133 return VNET_API_ERROR_NO_SUCH_ENTRY;
John Lo1edfba92016-08-27 01:11:57 -04004134
Eyal Barif9f40652017-04-01 03:55:08 +03004135 /* Clients may need to clean up pool entries, too */
4136 void (*fp) (u32, u8 *) = data_callback;
4137 if (fp)
4138 (*fp) (mc->data, 0 /* no new mac addrs */ );
John Lo1edfba92016-08-27 01:11:57 -04004139
Eyal Barif9f40652017-04-01 03:55:08 +03004140 /* Remove the entry from the list and delete the entry */
4141 *p = mc->next_index;
4142 pool_put (nm->mac_changes, mc);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004143
Eyal Barif9f40652017-04-01 03:55:08 +03004144 /* Remove from hash if we deleted the last entry */
4145 if (*p == ~0 && p == first)
4146 mhash_unset (&nm->mac_changes_by_address, address, 0);
John Lo1edfba92016-08-27 01:11:57 -04004147 }
Eyal Barif9f40652017-04-01 03:55:08 +03004148 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004149}
4150
Dave Barachd7cb1b52016-12-09 09:52:16 -05004151int
4152vnet_ip6_nd_term (vlib_main_t * vm,
4153 vlib_node_runtime_t * node,
4154 vlib_buffer_t * p0,
4155 ethernet_header_t * eth,
Eyal Baria0623f82017-03-30 03:05:06 +03004156 ip6_header_t * ip, u32 sw_if_index, u16 bd_index)
John Lo1edfba92016-08-27 01:11:57 -04004157{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004158 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4159 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
John Lo1edfba92016-08-27 01:11:57 -04004160
4161 ndh = ip6_next_header (ip);
4162 if (ndh->icmp.type != ICMP6_neighbor_solicitation &&
4163 ndh->icmp.type != ICMP6_neighbor_advertisement)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004164 return 0;
John Lo1edfba92016-08-27 01:11:57 -04004165
4166 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
4167 (p0->flags & VLIB_BUFFER_IS_TRACED)))
4168 {
4169 u8 *t0 = vlib_add_trace (vm, node, p0,
4170 sizeof (icmp6_input_trace_t));
4171 clib_memcpy (t0, ip, sizeof (icmp6_input_trace_t));
4172 }
4173
4174 /* Check if anyone want ND events for L2 BDs */
Eyal Baric125ecc2017-09-20 11:29:17 +03004175 if (PREDICT_FALSE
4176 (nm->wc_ip6_nd_publisher_node != (uword) ~ 0
4177 && !ip6_address_is_link_local_unicast (&ip->src_address)))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004178 {
Eyal Baric125ecc2017-09-20 11:29:17 +03004179 vnet_nd_wc_publish (sw_if_index, eth->src_address, &ip->src_address);
John Lo1edfba92016-08-27 01:11:57 -04004180 }
4181
4182 /* Check if MAC entry exsist for solicited target IP */
4183 if (ndh->icmp.type == ICMP6_neighbor_solicitation)
4184 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05004185 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
John Lo1edfba92016-08-27 01:11:57 -04004186 l2_bridge_domain_t *bd_config;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004187 u8 *macp;
John Lo1edfba92016-08-27 01:11:57 -04004188
4189 opt = (void *) (ndh + 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004190 if ((opt->header.type !=
John Lo1edfba92016-08-27 01:11:57 -04004191 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address) ||
4192 (opt->header.n_data_u64s != 1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05004193 return 0; /* source link layer address option not present */
4194
John Lo1edfba92016-08-27 01:11:57 -04004195 bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004196 macp =
4197 (u8 *) hash_get_mem (bd_config->mac_by_ip6, &ndh->target_address);
John Lo1edfba92016-08-27 01:11:57 -04004198 if (macp)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004199 { /* found ip-mac entry, generate eighbor advertisement response */
John Lo1edfba92016-08-27 01:11:57 -04004200 int bogus_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004201 vlib_node_runtime_t *error_node =
4202 vlib_node_get_runtime (vm, ip6_icmp_input_node.index);
John Lo1edfba92016-08-27 01:11:57 -04004203 ip->dst_address = ip->src_address;
4204 ip->src_address = ndh->target_address;
4205 ip->hop_limit = 255;
4206 opt->header.type =
Dave Barachd7cb1b52016-12-09 09:52:16 -05004207 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
John Lo1edfba92016-08-27 01:11:57 -04004208 clib_memcpy (opt->ethernet_address, macp, 6);
4209 ndh->icmp.type = ICMP6_neighbor_advertisement;
4210 ndh->advertisement_flags = clib_host_to_net_u32
Dave Barachd7cb1b52016-12-09 09:52:16 -05004211 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED |
4212 ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
John Lo1edfba92016-08-27 01:11:57 -04004213 ndh->icmp.checksum = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05004214 ndh->icmp.checksum =
4215 ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip, &bogus_length);
4216 clib_memcpy (eth->dst_address, eth->src_address, 6);
4217 clib_memcpy (eth->src_address, macp, 6);
4218 vlib_error_count (vm, error_node->node_index,
John Lo1edfba92016-08-27 01:11:57 -04004219 ICMP6_ERROR_NEIGHBOR_ADVERTISEMENTS_TX, 1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004220 return 1;
4221 }
John Lo1edfba92016-08-27 01:11:57 -04004222 }
4223
4224 return 0;
4225
4226}
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004227
Neale Ranns3f844d02017-02-18 00:03:54 -08004228int
4229ip6_neighbor_proxy_add_del (u32 sw_if_index, ip6_address_t * addr, u8 is_del)
4230{
4231 u32 fib_index;
4232
4233 fib_prefix_t pfx = {
4234 .fp_len = 128,
4235 .fp_proto = FIB_PROTOCOL_IP6,
4236 .fp_addr = {
4237 .ip6 = *addr,
4238 },
4239 };
4240 ip46_address_t nh = {
4241 .ip6 = *addr,
4242 };
4243
4244 fib_index = ip6_fib_table_get_index_for_sw_if_index (sw_if_index);
4245
4246 if (~0 == fib_index)
4247 return VNET_API_ERROR_NO_SUCH_FIB;
4248
4249 if (is_del)
4250 {
4251 fib_table_entry_path_remove (fib_index,
4252 &pfx,
4253 FIB_SOURCE_IP6_ND_PROXY,
Neale Rannsda78f952017-05-24 09:15:43 -07004254 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004255 &nh,
4256 sw_if_index,
4257 ~0, 1, FIB_ROUTE_PATH_FLAG_NONE);
4258 /* flush the ND cache of this address if it's there */
4259 vnet_unset_ip6_ethernet_neighbor (vlib_get_main (),
4260 sw_if_index, addr, NULL, 0);
4261 }
4262 else
4263 {
4264 fib_table_entry_path_add (fib_index,
4265 &pfx,
4266 FIB_SOURCE_IP6_ND_PROXY,
4267 FIB_ENTRY_FLAG_NONE,
Neale Rannsda78f952017-05-24 09:15:43 -07004268 DPO_PROTO_IP6,
Neale Ranns3f844d02017-02-18 00:03:54 -08004269 &nh,
4270 sw_if_index,
4271 ~0, 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
4272 }
4273 return (0);
4274}
4275
4276static clib_error_t *
4277set_ip6_nd_proxy_cmd (vlib_main_t * vm,
4278 unformat_input_t * input, vlib_cli_command_t * cmd)
4279{
4280 vnet_main_t *vnm = vnet_get_main ();
4281 clib_error_t *error = 0;
4282 ip6_address_t addr;
4283 u32 sw_if_index;
4284 u8 is_del = 0;
4285
4286 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
4287 {
4288 /* get the rest of the command */
4289 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
4290 {
4291 if (unformat (input, "%U", unformat_ip6_address, &addr))
4292 break;
4293 else if (unformat (input, "delete") || unformat (input, "del"))
4294 is_del = 1;
4295 else
4296 return (unformat_parse_error (input));
4297 }
4298 }
4299
4300 ip6_neighbor_proxy_add_del (sw_if_index, &addr, is_del);
4301
4302 return error;
4303}
4304
4305/* *INDENT-OFF* */
4306VLIB_CLI_COMMAND (set_ip6_nd_proxy_command, static) =
4307{
4308 .path = "set ip6 nd proxy",
4309 .short_help = "set ip6 nd proxy <HOST> <INTERFACE>",
4310 .function = set_ip6_nd_proxy_cmd,
4311};
4312/* *INDENT-ON* */
4313
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004314void
Neale Ranns3be6b282016-12-20 14:24:01 +00004315ethernet_ndp_change_mac (u32 sw_if_index)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004316{
Dave Barachd7cb1b52016-12-09 09:52:16 -05004317 ip6_neighbor_main_t *nm = &ip6_neighbor_main;
4318 ip6_neighbor_t *n;
Neale Rannsc819fc62018-02-16 02:44:05 -08004319 adj_index_t ai;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004320
4321 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05004322 pool_foreach (n, nm->neighbor_pool,
4323 ({
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004324 if (n->key.sw_if_index == sw_if_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -05004325 {
Neale Rannsb80c5362016-10-08 13:03:40 +01004326 adj_nbr_walk_nh6 (sw_if_index,
4327 &n->key.ip6_address,
4328 ip6_nd_mk_complete_walk, n);
Dave Barachd7cb1b52016-12-09 09:52:16 -05004329 }
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004330 }));
4331 /* *INDENT-ON* */
Neale Rannsc819fc62018-02-16 02:44:05 -08004332
4333 ai = adj_glean_get (FIB_PROTOCOL_IP6, sw_if_index);
4334
4335 if (ADJ_INDEX_INVALID != ai)
4336 adj_glean_update_rewrite (ai);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02004337}
Dave Barachd7cb1b52016-12-09 09:52:16 -05004338
John Lo8b81cb42017-06-26 01:40:20 -04004339void
4340send_ip6_na (vlib_main_t * vm, vnet_hw_interface_t * hi)
4341{
4342 ip6_main_t *i6m = &ip6_main;
4343 u32 sw_if_index = hi->sw_if_index;
4344 ip6_address_t *ip6_addr = ip6_interface_first_address (i6m, sw_if_index);
4345 if (ip6_addr)
4346 {
4347 clib_warning
4348 ("Sending unsolicitated NA IP6 address %U on sw_if_idex %d",
4349 format_ip6_address, ip6_addr, sw_if_index);
4350
4351 /* Form unsolicited neighbor advertisement packet from NS pkt template */
4352 int bogus_length;
4353 u32 bi = 0;
4354 icmp6_neighbor_solicitation_header_t *h =
4355 vlib_packet_template_get_packet (vm,
4356 &i6m->discover_neighbor_packet_template,
4357 &bi);
4358 ip6_set_reserved_multicast_address (&h->ip.dst_address,
4359 IP6_MULTICAST_SCOPE_link_local,
4360 IP6_MULTICAST_GROUP_ID_all_hosts);
4361 h->ip.src_address = ip6_addr[0];
4362 h->neighbor.icmp.type = ICMP6_neighbor_advertisement;
4363 h->neighbor.target_address = ip6_addr[0];
4364 h->neighbor.advertisement_flags = clib_host_to_net_u32
4365 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
4366 clib_memcpy (h->link_layer_option.ethernet_address,
4367 hi->hw_address, vec_len (hi->hw_address));
4368 h->neighbor.icmp.checksum =
4369 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
4370 ASSERT (bogus_length == 0);
4371
4372 /* Setup MAC header with IP6 Etype and mcast DMAC */
4373 vlib_buffer_t *b = vlib_get_buffer (vm, bi);
4374 vlib_buffer_advance (b, -sizeof (ethernet_header_t));
4375 ethernet_header_t *e = vlib_buffer_get_current (b);
4376 e->type = clib_host_to_net_u16 (ETHERNET_TYPE_IP6);
4377 clib_memcpy (e->src_address, hi->hw_address, sizeof (e->src_address));
4378 ip6_multicast_ethernet_address (e->dst_address,
4379 IP6_MULTICAST_GROUP_ID_all_hosts);
4380
4381 /* Send unsolicited ND advertisement packet out the specified interface */
4382 vnet_buffer (b)->sw_if_index[VLIB_RX] =
4383 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
4384 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
4385 u32 *to_next = vlib_frame_vector_args (f);
4386 to_next[0] = bi;
4387 f->n_vectors = 1;
4388 vlib_put_frame_to_node (vm, hi->output_node_index, f);
4389 }
4390}
4391
Dave Barachd7cb1b52016-12-09 09:52:16 -05004392/*
4393 * fd.io coding-style-patch-verification: ON
4394 *
4395 * Local Variables:
4396 * eval: (c-set-style "gnu")
4397 * End:
4398 */