blob: 1a6122fc9d3c8721c086eee72409a675b36f8104 [file] [log] [blame]
Juraj Sloboda0012fcc2018-05-17 12:05:27 +02001/*
2 * Copyright (c) 2018 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Juraj Slobodac0374232018-02-01 15:18:49 +010016#include <vnet/vnet.h>
17#include <vlibmemory/api.h>
18#include <vnet/vnet_msg_enum.h>
19#include <vnet/ip/ip6.h>
Juraj Sloboda52574522018-05-03 10:03:50 +020020#include <vnet/ethernet/ethernet.h>
21#include <vnet/ip/ip6_neighbor.h>
Juraj Sloboda0012fcc2018-05-17 12:05:27 +020022#include <vnet/fib/fib_table.h>
Juraj Slobodac0374232018-02-01 15:18:49 +010023#include <signal.h>
24#include <math.h>
25
26#define vl_typedefs /* define message structures */
27#include <vnet/vnet_all_api_h.h>
28#undef vl_typedefs
29
30#define vl_endianfun /* define message structures */
31#include <vnet/vnet_all_api_h.h>
32#undef vl_endianfun
33
34#include <vlibapi/api_helper_macros.h>
35
36#define foreach_rd_cp_msg \
37_(IP6_ND_ADDRESS_AUTOCONFIG, ip6_nd_address_autoconfig)
38
Juraj Slobodac0374232018-02-01 15:18:49 +010039typedef struct
40{
41 u32 sw_if_index;
42 u8 address_length;
43 ip6_address_t address;
44 f64 due_time;
45} slaac_address_t;
46
47typedef struct
48{
49 u32 sw_if_index;
50 ip6_address_t router_address;
51 f64 due_time;
52} default_route_t;
53
54typedef struct
55{
56 u8 enabled;
57 u8 install_default_routes;
58} interface_config_t;
59
60typedef struct
61{
62 u8 enabled;
63 u8 events_on;
64
65 interface_config_t *config_by_sw_if_index;
66 slaac_address_t *slaac_address_pool;
67 default_route_t *default_route_pool;
68
69 /* binary API client */
70 u8 api_connected;
71 svm_queue_t *vl_input_queue;
72 u32 my_client_index;
Juraj Slobodac0374232018-02-01 15:18:49 +010073
Juraj Slobodac65770d2018-05-15 11:43:56 +020074 /* logging */
75 vlib_log_class_t log_class;
76
Juraj Slobodac0374232018-02-01 15:18:49 +010077 /* convenience */
78 vlib_main_t *vlib_main;
79 vnet_main_t *vnet_main;
80 api_main_t *api_main;
81 u32 node_index;
82} rd_cp_main_t;
83
84rd_cp_main_t rd_cp_main;
85
86enum
87{
88 RD_CP_EVENT_INTERRUPT,
89};
90
91#define vl_api_ip6_nd_address_autoconfig_t_print vl_noop_handler
92
93static void
Juraj Slobodac0374232018-02-01 15:18:49 +010094router_solicitation_start_stop (u32 sw_if_index, u8 start)
95{
96 rd_cp_main_t *rm = &rd_cp_main;
Juraj Sloboda52574522018-05-03 10:03:50 +020097 icmp6_send_router_solicitation_params_t params = { 0, };
Juraj Slobodac0374232018-02-01 15:18:49 +010098
Juraj Slobodac0374232018-02-01 15:18:49 +010099 if (start)
100 {
Juraj Sloboda52574522018-05-03 10:03:50 +0200101 params.irt = 1;
102 params.mrt = 120;
Juraj Slobodac0374232018-02-01 15:18:49 +0100103 }
Juraj Slobodac0374232018-02-01 15:18:49 +0100104
Juraj Sloboda52574522018-05-03 10:03:50 +0200105 icmp6_send_router_solicitation (rm->vlib_main, sw_if_index, !start,
106 &params);
Juraj Slobodac0374232018-02-01 15:18:49 +0100107}
108
109static void interrupt_process (void);
110
111static int
112add_slaac_address (vlib_main_t * vm, u32 sw_if_index, u8 address_length,
113 ip6_address_t * address, f64 due_time)
114{
115 rd_cp_main_t *rm = &rd_cp_main;
116 slaac_address_t *slaac_address;
Juraj Sloboda52574522018-05-03 10:03:50 +0200117 clib_error_t *rv = 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100118
119 pool_get (rm->slaac_address_pool, slaac_address);
120
121 slaac_address->sw_if_index = sw_if_index;
122 slaac_address->address_length = address_length;
123 slaac_address->address = *address;
124 slaac_address->due_time = due_time;
125
Juraj Sloboda52574522018-05-03 10:03:50 +0200126 rv =
127 ip6_add_del_interface_address (vm, sw_if_index, &slaac_address->address,
128 address_length, 0);
Juraj Slobodac0374232018-02-01 15:18:49 +0100129
Juraj Sloboda52574522018-05-03 10:03:50 +0200130 return rv != 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100131}
132
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200133static void
Juraj Slobodac0374232018-02-01 15:18:49 +0100134add_default_route (vlib_main_t * vm, u32 sw_if_index,
135 ip6_address_t * next_hop_address, f64 due_time)
136{
137 rd_cp_main_t *rm = &rd_cp_main;
138 default_route_t *default_route;
Juraj Slobodac0374232018-02-01 15:18:49 +0100139
140 pool_get (rm->default_route_pool, default_route);
141
142 default_route->sw_if_index = sw_if_index;
143 default_route->router_address = *next_hop_address;
144 default_route->due_time = due_time;
145
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200146 {
147 u32 fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP6,
148 default_route->
149 sw_if_index);
150 fib_prefix_t pfx = {
151 .fp_proto = FIB_PROTOCOL_IP6,
152 };
153 ip46_address_t nh = {
154 .ip6 = default_route->router_address,
155 };
156 fib_table_entry_update_one_path (fib_index, &pfx,
157 FIB_SOURCE_API,
158 FIB_ENTRY_FLAG_NONE,
159 DPO_PROTO_IP6,
160 &nh,
161 default_route->sw_if_index,
162 0, 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
163 }
Juraj Slobodac0374232018-02-01 15:18:49 +0100164}
165
Juraj Slobodac0374232018-02-01 15:18:49 +0100166static int
167remove_slaac_address (vlib_main_t * vm, slaac_address_t * slaac_address)
168{
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200169 rd_cp_main_t *rm = &rd_cp_main;
Juraj Sloboda52574522018-05-03 10:03:50 +0200170 clib_error_t *rv = 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100171
Juraj Sloboda52574522018-05-03 10:03:50 +0200172 rv = ip6_add_del_interface_address (vm, slaac_address->sw_if_index,
173 &slaac_address->address,
174 slaac_address->address_length, 1);
Juraj Slobodac0374232018-02-01 15:18:49 +0100175
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200176 pool_put (rm->slaac_address_pool, slaac_address);
177
Juraj Sloboda52574522018-05-03 10:03:50 +0200178 return rv != 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100179}
180
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200181static void
Juraj Slobodac0374232018-02-01 15:18:49 +0100182remove_default_route (vlib_main_t * vm, default_route_t * default_route)
183{
184 rd_cp_main_t *rm = &rd_cp_main;
Juraj Slobodac0374232018-02-01 15:18:49 +0100185
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200186 {
187 u32 fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP6,
188 default_route->
189 sw_if_index);
190 fib_prefix_t pfx = {
191 .fp_proto = FIB_PROTOCOL_IP6,
192 };
193 ip46_address_t nh = {
194 .ip6 = default_route->router_address,
195 };
196 fib_table_entry_path_remove (fib_index, &pfx,
197 FIB_SOURCE_API,
198 DPO_PROTO_IP6,
199 &nh,
200 default_route->sw_if_index,
201 0, 1, FIB_ROUTE_PATH_FLAG_NONE);
202 }
Juraj Slobodac0374232018-02-01 15:18:49 +0100203
Juraj Sloboda0012fcc2018-05-17 12:05:27 +0200204 pool_put (rm->default_route_pool, default_route);
Juraj Slobodac0374232018-02-01 15:18:49 +0100205}
206
207static u32
208get_interface_mac_address (u32 sw_if_index, u8 mac[])
209{
210 rd_cp_main_t *rm = &rd_cp_main;
Juraj Sloboda52574522018-05-03 10:03:50 +0200211 vnet_sw_interface_t *si;
212 ethernet_interface_t *eth_if = 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100213
Juraj Sloboda52574522018-05-03 10:03:50 +0200214 if (!vnet_sw_interface_is_api_valid (rm->vnet_main, sw_if_index))
215 {
Juraj Slobodac65770d2018-05-15 11:43:56 +0200216 vlib_log_warn (rm->log_class, "Invalid sw_if_index");
Juraj Sloboda52574522018-05-03 10:03:50 +0200217 return 1;
218 }
Juraj Slobodac0374232018-02-01 15:18:49 +0100219
Juraj Sloboda52574522018-05-03 10:03:50 +0200220 si = vnet_get_sup_sw_interface (rm->vnet_main, sw_if_index);
221 if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
222 eth_if = ethernet_get_interface (&ethernet_main, si->hw_if_index);
Juraj Slobodac0374232018-02-01 15:18:49 +0100223
Juraj Slobodac65770d2018-05-15 11:43:56 +0200224 if (!eth_if)
225 {
226 vlib_log_warn (rm->log_class, "Failed to get hardware interface");
227 return 1;
228 }
229
Dave Barach178cf492018-11-13 16:34:13 -0500230 clib_memcpy_fast (mac, eth_if->address, 6);
Juraj Slobodac0374232018-02-01 15:18:49 +0100231
Juraj Sloboda52574522018-05-03 10:03:50 +0200232 return 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100233}
234
235static u32
236ip6_enable (u32 sw_if_index)
237{
238 rd_cp_main_t *rm = &rd_cp_main;
Juraj Sloboda52574522018-05-03 10:03:50 +0200239 clib_error_t *rv;
Juraj Slobodac0374232018-02-01 15:18:49 +0100240
Juraj Sloboda52574522018-05-03 10:03:50 +0200241 rv = enable_ip6_interface (rm->vlib_main, sw_if_index);
Juraj Slobodac0374232018-02-01 15:18:49 +0100242
Juraj Sloboda52574522018-05-03 10:03:50 +0200243 return rv != 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100244}
245
246static u8
247ip6_prefixes_equal (ip6_address_t * prefix1, ip6_address_t * prefix2, u8 len)
248{
249 if (len >= 64)
250 {
251 if (prefix1->as_u64[0] != prefix2->as_u64[0])
252 return 0;
253 if (len == 64)
254 return 1;
255 return prefix1->as_u64[1] >> (128 - len) ==
256 prefix2->as_u64[1] >> (128 - len);
257 }
258 return prefix1->as_u64[0] >> (64 - len) == prefix2->as_u64[0] >> (64 - len);
259}
260
261#define PREFIX_FLAG_A (1 << 6)
262#define PREFIX_FLAG_L (1 << 7)
263
Juraj Sloboda52574522018-05-03 10:03:50 +0200264static clib_error_t *
265ip6_ra_report_handler (void *data)
Juraj Slobodac0374232018-02-01 15:18:49 +0100266{
267 rd_cp_main_t *rm = &rd_cp_main;
268 vlib_main_t *vm = rm->vlib_main;
Juraj Sloboda52574522018-05-03 10:03:50 +0200269 clib_error_t *error = 0;
270 ra_report_t *r = data;
Juraj Slobodac0374232018-02-01 15:18:49 +0100271 interface_config_t *if_config;
272 default_route_t *default_route;
273 slaac_address_t *slaac_address;
274 u32 sw_if_index;
275 u16 router_lifetime_in_sec;
276 u32 n_prefixes;
Juraj Sloboda52574522018-05-03 10:03:50 +0200277 ra_report_prefix_info_t *prefix;
Juraj Slobodac0374232018-02-01 15:18:49 +0100278 u8 mac[6];
279 f64 current_time;
280 u32 i;
281
282 current_time = vlib_time_now (vm);
283
Juraj Sloboda52574522018-05-03 10:03:50 +0200284 sw_if_index = r->sw_if_index;
Juraj Slobodac0374232018-02-01 15:18:49 +0100285
Juraj Sloboda52574522018-05-03 10:03:50 +0200286 if (sw_if_index >= vec_len (rm->config_by_sw_if_index))
287 return 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100288 if_config = &rm->config_by_sw_if_index[sw_if_index];
289
290 if (if_config->install_default_routes)
291 {
Juraj Sloboda52574522018-05-03 10:03:50 +0200292 router_lifetime_in_sec = r->router_lifetime_in_sec;
Juraj Slobodac0374232018-02-01 15:18:49 +0100293 u8 route_already_present = 0;
294 /* *INDENT-OFF* */
295 pool_foreach (default_route, rm->default_route_pool,
296 ({
297 if (default_route->sw_if_index != sw_if_index)
298 ;
299 else if (0 != memcmp (&default_route->router_address,
Juraj Sloboda52574522018-05-03 10:03:50 +0200300 r->router_address, 16))
Juraj Slobodac0374232018-02-01 15:18:49 +0100301 ;
302 else
303 {
304 route_already_present = 1;
305 goto default_route_pool_foreach_out;
306 }
307 }));
308 /* *INDENT-ON* */
309 default_route_pool_foreach_out:
310
311 if (!route_already_present)
312 {
313 if (router_lifetime_in_sec != 0)
Juraj Sloboda52574522018-05-03 10:03:50 +0200314 add_default_route (vm, sw_if_index, (void *) r->router_address,
Juraj Slobodac0374232018-02-01 15:18:49 +0100315 current_time + router_lifetime_in_sec);
316 }
317 else
318 {
319 if (router_lifetime_in_sec != 0)
320 default_route->due_time = current_time + router_lifetime_in_sec;
321 else
322 remove_default_route (vm, default_route);
323 }
324 }
325
326 if (get_interface_mac_address (sw_if_index, mac) != 0)
327 {
Juraj Slobodac65770d2018-05-15 11:43:56 +0200328 vlib_log_warn (rm->log_class, "Error getting MAC address");
Juraj Sloboda52574522018-05-03 10:03:50 +0200329 return clib_error_return (0, "Error getting MAC address");
Juraj Slobodac0374232018-02-01 15:18:49 +0100330 }
331
332 if (!if_config->enabled)
Juraj Sloboda52574522018-05-03 10:03:50 +0200333 return 0;
Juraj Slobodac0374232018-02-01 15:18:49 +0100334
Juraj Sloboda52574522018-05-03 10:03:50 +0200335 n_prefixes = vec_len (r->prefixes);
Juraj Slobodac0374232018-02-01 15:18:49 +0100336 for (i = 0; i < n_prefixes; i++)
337 {
338 ip6_address_t *dst_address;
339 u8 prefix_length;
340 u32 valid_time;
341 u32 preferred_time;
342 f64 due_time;
343
Juraj Sloboda52574522018-05-03 10:03:50 +0200344 prefix = &r->prefixes[i];
Juraj Slobodac0374232018-02-01 15:18:49 +0100345
346 if (!(prefix->flags & PREFIX_FLAG_A))
347 continue;
348
Juraj Sloboda52574522018-05-03 10:03:50 +0200349 dst_address = &prefix->dst_address;
Juraj Slobodac0374232018-02-01 15:18:49 +0100350 prefix_length = prefix->dst_address_length;
351
352 if (ip6_address_is_link_local_unicast (dst_address))
353 continue;
354
Juraj Sloboda52574522018-05-03 10:03:50 +0200355 valid_time = prefix->valid_time;
356 preferred_time = prefix->preferred_time;
Juraj Slobodac0374232018-02-01 15:18:49 +0100357
358 if (preferred_time > valid_time)
359 continue;
360
361 if (prefix_length != 64)
362 continue;
363
364 u8 address_already_present = 0;
365 /* *INDENT-OFF* */
366 pool_foreach (slaac_address, rm->slaac_address_pool,
367 ({
368 if (slaac_address->sw_if_index != sw_if_index)
369 ;
370 else if (slaac_address->address_length != prefix_length)
371 ;
372 else if (!ip6_prefixes_equal (&slaac_address->address, dst_address,
373 prefix_length))
374 ;
375 else
376 {
377 address_already_present = 1;
378 goto slaac_address_pool_foreach_out;
379 }
380 }));
381 /* *INDENT-ON* */
382 slaac_address_pool_foreach_out:
383
384 if (address_already_present)
385 {
386 f64 remaining_life_time = slaac_address->due_time - current_time;
387 if (valid_time > 2 * 60 * 60 || valid_time > remaining_life_time)
388 slaac_address->due_time = current_time + valid_time;
389 else if (remaining_life_time > 2 * 60 * 60)
390 slaac_address->due_time = current_time + 2 * 60 * 60;
391 continue;
392 }
393
394 if (valid_time == 0)
395 continue;
396
397 due_time = current_time + valid_time;
398
399 ip6_address_t addr;
400 addr.as_u64[0] = dst_address->as_u64[0];
401 /* Invert the "u" bit */
402 addr.as_u8[8] = mac[0] ^ (1 << 1);
403 addr.as_u8[9] = mac[1];
404 addr.as_u8[10] = mac[2];
405 addr.as_u8[11] = 0xFF;
406 addr.as_u8[12] = 0xFE;
407 addr.as_u8[13] = mac[3];
408 addr.as_u8[14] = mac[4];
409 addr.as_u8[15] = mac[5];
410
411 add_slaac_address (vm, sw_if_index, prefix_length, &addr, due_time);
412 }
413
414 interrupt_process ();
Juraj Sloboda52574522018-05-03 10:03:50 +0200415
416 return error;
Juraj Slobodac0374232018-02-01 15:18:49 +0100417}
418
Juraj Sloboda52574522018-05-03 10:03:50 +0200419VNET_IP6_NEIGHBOR_RA_FUNCTION (ip6_ra_report_handler);
420
Juraj Slobodac0374232018-02-01 15:18:49 +0100421static uword
422rd_cp_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
423{
Juraj Slobodac0374232018-02-01 15:18:49 +0100424 uword *event_data = 0;
425 rd_cp_main_t *rm = &rd_cp_main;
426 slaac_address_t *slaac_address;
427 default_route_t *default_route;
428 f64 sleep_time = 1e9;
Juraj Slobodac0374232018-02-01 15:18:49 +0100429 f64 current_time;
430 f64 due_time;
431
432 while (1)
433 {
Juraj Sloboda52574522018-05-03 10:03:50 +0200434 vlib_process_wait_for_event_or_clock (vm, sleep_time);
435 vlib_process_get_events (vm, &event_data);
Juraj Slobodac0374232018-02-01 15:18:49 +0100436
437 vec_reset_length (event_data);
438
439 current_time = vlib_time_now (vm);
440 do
441 {
442 due_time = current_time + 1e9;
443 /* *INDENT-OFF* */
444 pool_foreach (slaac_address, rm->slaac_address_pool,
445 ({
446 if (slaac_address->due_time > current_time)
447 {
448 if (slaac_address->due_time < due_time)
449 due_time = slaac_address->due_time;
450 }
451 else
452 {
453 remove_slaac_address (vm, slaac_address);
454 /* make sure ip6 stays enabled */
455 ip6_enable (slaac_address->sw_if_index);
456 }
457 }));
458 pool_foreach (default_route, rm->default_route_pool,
459 ({
460 if (default_route->due_time > current_time)
461 {
462 if (default_route->due_time < due_time)
463 due_time = default_route->due_time;
464 }
465 else
466 remove_default_route (vm, default_route);
467 }));
468 /* *INDENT-ON* */
469 current_time = vlib_time_now (vm);
470 }
471 while (due_time < current_time);
472
473 sleep_time = due_time - current_time;
474 }
475
476 return 0;
477}
478
479/* *INDENT-OFF* */
480VLIB_REGISTER_NODE (rd_cp_process_node) = {
481 .function = rd_cp_process,
482 .type = VLIB_NODE_TYPE_PROCESS,
483 .name = "rd-cp-process",
484};
485/* *INDENT-ON* */
486
487static void
488interrupt_process (void)
489{
490 rd_cp_main_t *rm = &rd_cp_main;
491 vlib_main_t *vm = rm->vlib_main;
492
493 vlib_process_signal_event (vm, rd_cp_process_node.index,
494 RD_CP_EVENT_INTERRUPT, 0);
495}
496
497static int
Juraj Slobodac0374232018-02-01 15:18:49 +0100498set_address_autoconfig (u32 sw_if_index, u8 enable, u8 install_default_routes)
499{
500 rd_cp_main_t *rm = &rd_cp_main;
501 vlib_main_t *vm = rm->vlib_main;
502 vnet_main_t *vnm = rm->vnet_main;
503 interface_config_t *if_config;
504 interface_config_t empty_config = { 0, 0 };
505 slaac_address_t *slaac_address;
506 default_route_t *default_route;
507
508 if (!enable)
509 install_default_routes = 0;
510
Juraj Slobodac0374232018-02-01 15:18:49 +0100511 if (!vnet_sw_interface_is_api_valid (vnm, sw_if_index))
512 {
Juraj Slobodac65770d2018-05-15 11:43:56 +0200513 vlib_log_warn (rm->log_class, "Invalid sw_if_index");
Juraj Slobodac0374232018-02-01 15:18:49 +0100514 return 1;
515 }
516
517 if (!rm->enabled)
518 {
Juraj Slobodac0374232018-02-01 15:18:49 +0100519 /* process kickoff */
520 interrupt_process ();
Juraj Slobodac0374232018-02-01 15:18:49 +0100521 rm->enabled = 1;
522 }
523
524 vec_validate_init_empty (rm->config_by_sw_if_index, sw_if_index,
525 empty_config);
526 if_config = &rm->config_by_sw_if_index[sw_if_index];
527
528 if (!if_config->enabled && enable)
529 ip6_enable (sw_if_index);
530
531 if ((!if_config->enabled && enable)
532 || (!if_config->install_default_routes && install_default_routes))
533 router_solicitation_start_stop (sw_if_index, 1);
534 else if (if_config->enabled && !enable)
535 router_solicitation_start_stop (sw_if_index, 0);
536
537 if (if_config->enabled && !enable)
538 {
539 /* *INDENT-OFF* */
540 pool_foreach (slaac_address, rm->slaac_address_pool,
541 ({
542 remove_slaac_address (vm, slaac_address);
543 }));
544 /* *INDENT-ON* */
545 }
546 if (if_config->install_default_routes && !install_default_routes)
547 {
548 /* *INDENT-OFF* */
549 pool_foreach (default_route, rm->default_route_pool,
550 ({
551 remove_default_route (vm, default_route);
552 }));
553 /* *INDENT-ON* */
554 }
555
556 if_config->enabled = enable;
557 if_config->install_default_routes = install_default_routes;
558
559 return 0;
560}
561
562static clib_error_t *
563ip6_nd_address_autoconfig (vlib_main_t * vm,
564 unformat_input_t * input, vlib_cli_command_t * cmd)
565{
566 rd_cp_main_t *rm = &rd_cp_main;
567 vnet_main_t *vnm = rm->vnet_main;
568 clib_error_t *error = 0;
569 u32 sw_if_index = ~0;
570 u8 enable = 1;
571 u8 default_route = 0;
572
573 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
574 {
575 if (unformat
576 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
577 ;
578 if (unformat (input, "default-route"))
579 default_route = 1;
580 if (unformat (input, "disable"))
581 enable = 0;
582 else
583 break;
584 }
585
586 if (sw_if_index != ~0)
587 {
588 if (set_address_autoconfig (sw_if_index, enable, default_route) != 0)
589 error = clib_error_return (0, "Invalid sw_if_index");
590 }
591 else
592 error = clib_error_return (0, "Missing sw_if_index");
593
594 return error;
595}
596
597/*?
598 * This command is used to enable ND address autoconfiguration
599 * on particular interface including setting up default routes.
600 *
601 * @cliexpar
602 * @parblock
603 * Example of how to enable ND address autoconfiguration:
604 * @cliexcmd{ip6 nd address autoconfig GigabitEthernet2/0/0}
605 * Example of how to enable ND address autoconfiguration
606 * with setting up default routes:
607 * @cliexcmd{ip6 nd address autoconfig GigabitEthernet2/0/0 default-route}
608 * Example of how to disable ND address autoconfiguration:
609 * @cliexcmd{ip6 nd address autoconfig GigabitEthernet2/0/0 disable}
610 * @endparblock
611?*/
612/* *INDENT-OFF* */
613VLIB_CLI_COMMAND (ip6_nd_address_autoconfig_command, static) = {
614 .path = "ip6 nd address autoconfig",
615 .short_help = "ip6 nd address autoconfig <interface> [default-route|disable]",
616 .function = ip6_nd_address_autoconfig,
617};
618/* *INDENT-ON* */
619
620static void
621vl_api_ip6_nd_address_autoconfig_t_handler (vl_api_ip6_nd_address_autoconfig_t
622 * mp)
623{
624 vl_api_ip6_nd_address_autoconfig_reply_t *rmp;
625 u32 sw_if_index;
626 int rv = 0;
627
628 VALIDATE_SW_IF_INDEX (mp);
629
630 sw_if_index = ntohl (mp->sw_if_index);
631
632 rv =
633 set_address_autoconfig (sw_if_index, mp->enable,
634 mp->install_default_routes);
635
636 BAD_SW_IF_INDEX_LABEL;
637
638 REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY);
639}
640
641#define vl_msg_name_crc_list
642#include <vnet/ip/rd_cp.api.h>
643#undef vl_msg_name_crc_list
644
645static void
646setup_message_id_table (api_main_t * am)
647{
648#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
649 foreach_vl_msg_name_crc_rd_cp;
650#undef _
651}
652
653static clib_error_t *
654rd_cp_init (vlib_main_t * vm)
655{
656 rd_cp_main_t *rm = &rd_cp_main;
657 api_main_t *am = &api_main;
658
659 rm->vlib_main = vm;
660 rm->vnet_main = vnet_get_main ();
661 rm->api_main = am;
662 rm->node_index = rd_cp_process_node.index;
663
Juraj Slobodac65770d2018-05-15 11:43:56 +0200664 rm->log_class = vlib_log_register_class ("rd_cp", 0);
665
Juraj Slobodac0374232018-02-01 15:18:49 +0100666#define _(N,n) \
667 vl_msg_api_set_handlers(VL_API_##N, #n, \
668 vl_api_##n##_t_handler, \
669 vl_noop_handler, \
670 vl_api_##n##_t_endian, \
671 vl_api_##n##_t_print, \
672 sizeof(vl_api_##n##_t), 0/* do NOT trace! */);
673 foreach_rd_cp_msg;
674#undef _
675
Juraj Slobodac0374232018-02-01 15:18:49 +0100676 /*
677 * Set up the (msg_name, crc, message-id) table
678 */
679 setup_message_id_table (am);
680
681 return 0;
682}
683
684VLIB_INIT_FUNCTION (rd_cp_init);
685
686/*
687 * fd.io coding-style-patch-verification: ON
688 *
689 * Local Variables:
690 * eval: (c-set-style "gnu")
691 * End:
692 */