blob: bd7ad73b695296e47d69c15eafdf82956e1d1c7a [file] [log] [blame]
Neale Rannscbe25aa2019-09-30 10:53:31 +00001/*
2 * Copyright (c) 2019 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
16#include <vnet/ip/ip6_link.h>
17#include <vnet/ip/ip6_ll_table.h>
18
19#include <vnet/ethernet/ethernet.h>
20#include <vnet/mfib/ip6_mfib.h>
21#include <vnet/adj/adj_mcast.h>
22
23typedef struct ip6_link_delegate_t_
24{
25 u32 ild_sw_if_index;
26 ip6_link_delegate_id_t ild_type;
27 index_t ild_index;
28} ip6_link_delegate_t;
29
30const static ip6_link_delegate_t ip6_link_delegate_uninit = {
31 .ild_sw_if_index = ~0,
32};
33
34typedef struct ip6_link_t_
35{
36 /** interface ip6 is enabled on */
37 u32 il_sw_if_index;
38
39 /** link-local address - if unset that IP6 is disabled*/
40 ip6_address_t il_ll_addr;
41
42 /** list of delegates */
43 ip6_link_delegate_t *il_delegates;
44
45 /** multicast adjacency for this link */
46 adj_index_t il_mcast_adj;
47
48 /** number of references to IP6 enabled on this link */
49 u32 il_locks;
50} ip6_link_t;
51
52#define FOREACH_IP6_LINK_DELEGATE(_ild, _il, body) \
53{ \
54 if (NULL != _il) { \
55 vec_foreach (_ild, _il->il_delegates) { \
56 if (ip6_link_delegate_is_init(_ild)) \
57 body; \
58 } \
59 } \
60}
61
62#define FOREACH_IP6_LINK_DELEGATE_ID(_id) \
63 for (_id = 0; _id < il_delegate_id; _id++)
64
65/** last used delegate ID */
66static ip6_link_delegate_id_t il_delegate_id;
67
68/** VFT registered per-delegate type */
69static ip6_link_delegate_vft_t *il_delegate_vfts;
70
71/** Per interface configs */
72static ip6_link_t *ip6_links;
73
74/** Randomizer */
75static u64 il_randomizer;
76
77/** Logging */
78static vlib_log_class_t ip6_link_logger;
79
80#define IP6_LINK_DBG(...) \
81 vlib_log_debug (ip6_link_logger, __VA_ARGS__);
82
83#define IP6_LINK_INFO(...) \
84 vlib_log_notice (ip6_link_logger, __VA_ARGS__);
85
86static bool
87ip6_link_delegate_is_init (const ip6_link_delegate_t * ild)
88{
89 return (~0 != ild->ild_sw_if_index);
90}
91
92static bool
93ip6_link_is_enabled_i (const ip6_link_t * il)
94{
95 return (!ip6_address_is_zero (&il->il_ll_addr));
96}
97
98static void
99ip6_link_local_address_from_mac (ip6_address_t * ip, const u8 * mac)
100{
101 ip->as_u64[0] = clib_host_to_net_u64 (0xFE80000000000000ULL);
102 /* Invert the "u" bit */
103 ip->as_u8[8] = mac[0] ^ (1 << 1);
104 ip->as_u8[9] = mac[1];
105 ip->as_u8[10] = mac[2];
106 ip->as_u8[11] = 0xFF;
107 ip->as_u8[12] = 0xFE;
108 ip->as_u8[13] = mac[3];
109 ip->as_u8[14] = mac[4];
110 ip->as_u8[15] = mac[5];
111}
112
113static void
114ip6_mac_address_from_link_local (u8 * mac, const ip6_address_t * ip)
115{
116 /* Invert the previously inverted "u" bit */
117 mac[0] = ip->as_u8[8] ^ (1 << 1);
118 mac[1] = ip->as_u8[9];
119 mac[2] = ip->as_u8[10];
120 mac[3] = ip->as_u8[13];
121 mac[4] = ip->as_u8[14];
122 mac[5] = ip->as_u8[15];
123}
124
125static ip6_link_t *
126ip6_link_get (u32 sw_if_index)
127{
128 ip6_link_t *il;
129
130 if (sw_if_index >= vec_len (ip6_links))
131 return (NULL);
132
133 il = &ip6_links[sw_if_index];
134
135 if (!ip6_link_is_enabled_i (il))
136 return (NULL);
137
138 return (il);
139}
140
141bool
142ip6_link_is_enabled (u32 sw_if_index)
143{
144 return (NULL != ip6_link_get (sw_if_index));
145}
146
147
148int
Neale Rannsec40a7d2020-04-23 07:36:12 +0000149ip6_link_enable (u32 sw_if_index, const ip6_address_t * link_local_addr)
Neale Rannscbe25aa2019-09-30 10:53:31 +0000150{
151 ip6_link_t *il;
152 int rv;
153
154 il = ip6_link_get (sw_if_index);
155
156 if (NULL == il)
157 {
158 const vnet_sw_interface_t *sw, *sw_sup;
159 const ethernet_interface_t *eth;
160 vnet_main_t *vnm;
161
162 vnm = vnet_get_main ();
163
164 IP6_LINK_INFO ("enable: %U",
165 format_vnet_sw_if_index_name, vnm, sw_if_index);
166
167 sw_sup = vnet_get_sup_sw_interface (vnm, sw_if_index);
168 if (sw_sup->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
169 {
170 rv = VNET_API_ERROR_UNSUPPORTED;
171 goto out;
172 }
173
174 eth = ethernet_get_interface (&ethernet_main, sw_sup->hw_if_index);
175
176 if (NULL == eth)
177 {
178 rv = VNET_API_ERROR_UNSUPPORTED;
179 goto out;
180 }
181
182 vec_validate (ip6_links, sw_if_index);
183
184 il = &ip6_links[sw_if_index];
Neale Rannsc96ac762020-10-12 11:46:53 +0000185 il->il_locks = 0;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000186 il->il_sw_if_index = sw_if_index;
187
188 sw = vnet_get_sup_sw_interface (vnm, sw_if_index);
189
Neale Rannsec40a7d2020-04-23 07:36:12 +0000190 if (NULL != link_local_addr)
191 ip6_address_copy (&il->il_ll_addr, link_local_addr);
192 else if (sw->type == VNET_SW_INTERFACE_TYPE_SUB ||
193 sw->type == VNET_SW_INTERFACE_TYPE_PIPE ||
194 sw->type == VNET_SW_INTERFACE_TYPE_P2P)
Neale Rannscbe25aa2019-09-30 10:53:31 +0000195 {
196 il->il_ll_addr.as_u64[0] =
197 clib_host_to_net_u64 (0xFE80000000000000ULL);
198
199 /* make up an interface id */
200 il->il_ll_addr.as_u64[1] = random_u64 (&il_randomizer);
201
202 /* clear u bit */
203 il->il_ll_addr.as_u8[8] &= 0xfd;
204 }
205 else
206 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200207 ip6_link_local_address_from_mac (&il->il_ll_addr,
208 eth->address.mac.bytes);
Neale Rannscbe25aa2019-09-30 10:53:31 +0000209 }
210
211 {
212 ip6_ll_prefix_t ilp = {
213 .ilp_addr = il->il_ll_addr,
214 .ilp_sw_if_index = sw_if_index,
215 };
216
217 ip6_ll_table_entry_update (&ilp, FIB_ROUTE_PATH_LOCAL);
218 }
219
220 /* essentially "enables" ipv6 on this interface */
221 ip6_mfib_interface_enable_disable (sw_if_index, 1);
222 ip6_sw_interface_enable_disable (sw_if_index, 1);
223
224 il->il_mcast_adj = adj_mcast_add_or_lock (FIB_PROTOCOL_IP6,
225 VNET_LINK_IP6, sw_if_index);
226
227 /* inform all register clients */
228 ip6_link_delegate_id_t id;
229 FOREACH_IP6_LINK_DELEGATE_ID (id)
230 {
231 if (NULL != il_delegate_vfts[id].ildv_enable)
232 il_delegate_vfts[id].ildv_enable (il->il_sw_if_index);
233 }
234
235 rv = 0;
236 }
237 else
238 {
239 rv = VNET_API_ERROR_VALUE_EXIST;
240 }
241
Neale Rannsc96ac762020-10-12 11:46:53 +0000242 il->il_locks++;
243
Neale Rannscbe25aa2019-09-30 10:53:31 +0000244out:
245 return (rv);
246}
247
248static void
249ip6_link_delegate_flush (ip6_link_t * il)
250{
251 ip6_link_delegate_t *ild;
252
Neale Ranns306c3082020-01-01 21:55:41 +0000253 /* *INDENT-OFF* */
254 FOREACH_IP6_LINK_DELEGATE (ild, il,
255 ({
256 il_delegate_vfts[ild->ild_type].ildv_disable(ild->ild_index);
257 }));
258 /* *INDENT-ON* */
Neale Rannscbe25aa2019-09-30 10:53:31 +0000259
260 vec_free (il->il_delegates);
261 il->il_delegates = NULL;
262}
263
264static void
265ip6_link_last_lock_gone (ip6_link_t * il)
266{
267 ip6_ll_prefix_t ilp = {
268 .ilp_addr = il->il_ll_addr,
269 .ilp_sw_if_index = il->il_sw_if_index,
270 };
271
272 IP6_LINK_INFO ("last-lock: %U",
273 format_vnet_sw_if_index_name,
274 vnet_get_main (), il->il_sw_if_index);
275
276 ip6_link_delegate_flush (il);
277 ip6_ll_table_entry_delete (&ilp);
278
279 ip6_mfib_interface_enable_disable (il->il_sw_if_index, 0);
280 ip6_sw_interface_enable_disable (il->il_sw_if_index, 0);
281
282 ip6_address_set_zero (&il->il_ll_addr);
283 adj_unlock (il->il_mcast_adj);
284 il->il_mcast_adj = ADJ_INDEX_INVALID;
285}
286
287static void
288ip6_link_unlock (ip6_link_t * il)
289{
290 if (NULL == il)
291 return;
292
293 il->il_locks--;
294
295 if (0 == il->il_locks)
296 ip6_link_last_lock_gone (il);
297}
298
299int
300ip6_link_disable (u32 sw_if_index)
301{
302 ip6_link_t *il;
303
304 il = ip6_link_get (sw_if_index);
305
306 if (NULL == il)
307 return (VNET_API_ERROR_IP6_NOT_ENABLED);
308
309 IP6_LINK_INFO ("disable: %U",
310 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index);
311
312 ip6_link_unlock (il);
313
314 return (0);
315}
316
317const ip6_address_t *
318ip6_get_link_local_address (u32 sw_if_index)
319{
320 const ip6_link_t *il;
321
322 vec_validate (ip6_links, sw_if_index);
323
324 il = &ip6_links[sw_if_index];
325
326 return (&il->il_ll_addr);
327}
328
329adj_index_t
330ip6_link_get_mcast_adj (u32 sw_if_index)
331{
332 const ip6_link_t *il;
333
334 il = &ip6_links[sw_if_index];
335
336 return (il->il_mcast_adj);
337}
338
339int
340ip6_src_address_for_packet (u32 sw_if_index,
341 const ip6_address_t * dst, ip6_address_t * src)
342{
343 ip_lookup_main_t *lm;
344
345 lm = &ip6_main.lookup_main;
346
347 if (ip6_address_is_link_local_unicast (dst))
348 {
349 ip6_address_copy (src, ip6_get_link_local_address (sw_if_index));
350
351 return (!0);
352 }
353 else
354 {
355 u32 if_add_index =
356 lm->if_address_pool_index_by_sw_if_index[sw_if_index];
357 if (PREDICT_TRUE (if_add_index != ~0))
358 {
359 ip_interface_address_t *if_add =
360 pool_elt_at_index (lm->if_address_pool, if_add_index);
361 ip6_address_t *if_ip =
362 ip_interface_address_get_address (lm, if_add);
363 *src = *if_ip;
364 return (!0);
365 }
366 }
367
368 src->as_u64[0] = 0;
369 src->as_u64[1] = 0;
370
371 return (0);
372}
373
374int
Neale Rannsec40a7d2020-04-23 07:36:12 +0000375ip6_link_set_local_address (u32 sw_if_index, const ip6_address_t * address)
Neale Rannscbe25aa2019-09-30 10:53:31 +0000376{
377 ip6_link_delegate_t *ild;
378 ip6_link_t *il;
379
380 il = ip6_link_get (sw_if_index);
381
382 if (NULL == il)
Neale Rannsec40a7d2020-04-23 07:36:12 +0000383 return ip6_link_enable (sw_if_index, address);
Neale Rannscbe25aa2019-09-30 10:53:31 +0000384
385 ip6_ll_prefix_t ilp = {
386 .ilp_addr = il->il_ll_addr,
387 .ilp_sw_if_index = sw_if_index,
388 };
389
390 IP6_LINK_INFO ("set-ll: %U -> %U",
391 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index,
392 format_ip6_address, address);
393
394 ip6_ll_table_entry_delete (&ilp);
395 ip6_address_copy (&il->il_ll_addr, address);
396 ip6_address_copy (&ilp.ilp_addr, address);
397 ip6_ll_table_entry_update (&ilp, FIB_ROUTE_PATH_LOCAL);
398
399 /* *INDENT-OFF* */
400 FOREACH_IP6_LINK_DELEGATE (ild, il,
401 ({
402 if (NULL != il_delegate_vfts[ild->ild_type].ildv_ll_change)
403 il_delegate_vfts[ild->ild_type].ildv_ll_change(ild->ild_index,
404 &il->il_ll_addr);
405 }));
406 /* *INDENT-ON* */
407
408 return (0);
409}
410
411ip6_link_delegate_id_t
412ip6_link_delegate_register (const ip6_link_delegate_vft_t * vft)
413{
414 ip6_link_delegate_id_t rc = il_delegate_id++;
415
416 ASSERT (vft->ildv_disable);
417
418 vec_validate (il_delegate_vfts, rc);
419
420 il_delegate_vfts[rc] = *vft;
421
422 return (rc);
423}
424
425index_t
426ip6_link_delegate_get (u32 sw_if_index, ip6_link_delegate_id_t id)
427{
428 ip6_link_t *il;
429
430 il = ip6_link_get (sw_if_index);
431
432 if (NULL == il)
433 return (INDEX_INVALID);
434
435 vec_validate_init_empty (il->il_delegates, id, ip6_link_delegate_uninit);
436
437 if (!ip6_link_delegate_is_init (&il->il_delegates[id]))
438 return (INDEX_INVALID);
439
440 return (il->il_delegates[id].ild_index);
441}
442
443bool
444ip6_link_delegate_update (u32 sw_if_index,
445 ip6_link_delegate_id_t id, index_t ii)
446{
447 ip6_link_t *il;
448
449 il = ip6_link_get (sw_if_index);
450
451 if (NULL == il)
452 return (false);
453
454 vec_validate_init_empty (il->il_delegates, id, ip6_link_delegate_uninit);
455
456 il->il_delegates[id].ild_sw_if_index = sw_if_index;
457 il->il_delegates[id].ild_type = id;
458 il->il_delegates[id].ild_index = ii;
459
460 return (true);
461}
462
463void
464ip6_link_delegate_remove (u32 sw_if_index,
465 ip6_link_delegate_id_t id, index_t ii)
466{
467 ip6_link_t *il;
468
469 il = ip6_link_get (sw_if_index);
470
471 if (NULL != il)
472 {
473 if (vec_len (il->il_delegates) > id)
474 {
475 clib_memcpy (&il->il_delegates[id],
476 &ip6_link_delegate_uninit,
477 sizeof (il->il_delegates[0]));
478 }
479 }
480}
481
482static void
483ip6_link_add_del_address (ip6_main_t * im,
484 uword opaque,
485 u32 sw_if_index,
486 ip6_address_t * address,
487 u32 address_length,
488 u32 if_address_index, u32 is_delete)
489{
490 const ip6_link_delegate_t *ild;
491 ip6_link_t *il;
492
493 if (ip6_address_is_link_local_unicast (address))
494 // only interested in global addresses here
495 return;
496
497 IP6_LINK_INFO ("addr-%s: %U -> %U",
498 (is_delete ? "del" : "add"),
499 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index,
500 format_ip6_address, address);
501
502 il = ip6_link_get (sw_if_index);
503
504 if (NULL == il)
505 return;
506
507 /* *INDENT-OFF* */
508 FOREACH_IP6_LINK_DELEGATE (ild, il,
509 ({
510 if (is_delete)
511 {
512 if (NULL != il_delegate_vfts[ild->ild_type].ildv_addr_del)
513 il_delegate_vfts[ild->ild_type].ildv_addr_del(ild->ild_index,
514 address, address_length);
515 }
516 else
517 {
518 if (NULL != il_delegate_vfts[ild->ild_type].ildv_addr_add)
519 il_delegate_vfts[ild->ild_type].ildv_addr_add(ild->ild_index,
520 address, address_length);
521 }
522 }));
523 /* *INDENT-ON* */
524}
525
526static clib_error_t *
527ip6_link_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
528{
529 if (!is_add)
530 {
531 ip6_link_t *il;
532
533 il = ip6_link_get (sw_if_index);
534
535 IP6_LINK_DBG ("link-del: %U",
536 format_vnet_sw_if_index_name, vnet_get_main (),
537 sw_if_index);
538
539 if (NULL != il)
540 /* force cleanup */
541 ip6_link_last_lock_gone (il);
542 }
543
544 return (NULL);
545}
546
547VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip6_link_interface_add_del);
548
549static clib_error_t *
550ip6_link_init (vlib_main_t * vm)
551{
552 il_randomizer = clib_cpu_time_now ();
553 ip6_link_logger = vlib_log_register_class ("ip6", "link");
554
555 {
556 ip6_add_del_interface_address_callback_t cb = {
557 .function = ip6_link_add_del_address,
558 };
559 vec_add1 (ip6_main.add_del_interface_address_callbacks, cb);
560 }
561 return (NULL);
562}
563
564VLIB_INIT_FUNCTION (ip6_link_init);
565
566
567static clib_error_t *
568test_ip6_link_command_fn (vlib_main_t * vm,
569 unformat_input_t * input, vlib_cli_command_t * cmd)
570{
571 u8 mac[6];
572 ip6_address_t _a, *a = &_a;
573
574 if (unformat (input, "%U", unformat_ethernet_address, mac))
575 {
576 ip6_link_local_address_from_mac (a, mac);
577 vlib_cli_output (vm, "Link local address: %U", format_ip6_address, a);
578 ip6_mac_address_from_link_local (mac, a);
579 vlib_cli_output (vm, "Original MAC address: %U",
580 format_ethernet_address, mac);
581 }
582
583 return 0;
584}
585
586/*?
587 * This command converts the given MAC Address into an IPv6 link-local
588 * address.
589 *
590 * @cliexpar
591 * Example of how to create an IPv6 link-local address:
592 * @cliexstart{test ip6 link 16:d9:e0:91:79:86}
593 * Link local address: fe80::14d9:e0ff:fe91:7986
594 * Original MAC address: 16:d9:e0:91:79:86
595 * @cliexend
596?*/
597/* *INDENT-OFF* */
598VLIB_CLI_COMMAND (test_link_command, static) =
599{
600 .path = "test ip6 link",
601 .function = test_ip6_link_command_fn,
602 .short_help = "test ip6 link <mac-address>",
603};
604/* *INDENT-ON* */
605
606static u8 *
607ip6_print_addrs (u8 * s, u32 * addrs)
608{
609 ip_lookup_main_t *lm = &ip6_main.lookup_main;
610 u32 i;
611
612 for (i = 0; i < vec_len (addrs); i++)
613 {
614 ip_interface_address_t *a =
615 pool_elt_at_index (lm->if_address_pool, addrs[i]);
616 ip6_address_t *address = ip_interface_address_get_address (lm, a);
617
618 s = format (s, "%U%U/%d\n",
619 format_white_space, 4,
620 format_ip6_address, address, a->address_length);
621 }
622
623 return (s);
624}
625
626static u8 *
627format_ip6_link (u8 * s, va_list * arg)
628{
629 const ip6_link_t *il = va_arg (*arg, ip6_link_t *);
630 ip_lookup_main_t *lm = &ip6_main.lookup_main;
631 vnet_main_t *vnm = vnet_get_main ();
632
633 if (!ip6_link_is_enabled_i (il))
634 return (s);
635
636 s = format (s, "%U is admin %s\n",
637 format_vnet_sw_interface_name, vnm,
638 vnet_get_sw_interface (vnm, il->il_sw_if_index),
639 (vnet_sw_interface_is_admin_up (vnm, il->il_sw_if_index) ?
640 "up" : "down"));
641
642 u32 ai;
643 u32 *link_scope = 0, *global_scope = 0;
644 u32 *local_scope = 0, *unknown_scope = 0;
645 ip_interface_address_t *a;
646 const ip6_link_delegate_t *ild;
647
648 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
649 il->il_sw_if_index, ~0);
650 ai = lm->if_address_pool_index_by_sw_if_index[il->il_sw_if_index];
651
652 while (ai != (u32) ~ 0)
653 {
654 a = pool_elt_at_index (lm->if_address_pool, ai);
655 ip6_address_t *address = ip_interface_address_get_address (lm, a);
656
657 if (ip6_address_is_link_local_unicast (address))
658 vec_add1 (link_scope, ai);
659 else if (ip6_address_is_global_unicast (address))
660 vec_add1 (global_scope, ai);
661 else if (ip6_address_is_local_unicast (address))
662 vec_add1 (local_scope, ai);
663 else
664 vec_add1 (unknown_scope, ai);
665
666 ai = a->next_this_sw_interface;
667 }
668
669 if (vec_len (link_scope))
670 {
671 s = format (s, "%ULink-local address(es):\n", format_white_space, 2);
672 s = ip6_print_addrs (s, link_scope);
673 vec_free (link_scope);
674 }
675
676 if (vec_len (local_scope))
677 {
678 s = format (s, "%ULocal unicast address(es):\n", format_white_space, 2);
679 s = ip6_print_addrs (s, local_scope);
680 vec_free (local_scope);
681 }
682
683 if (vec_len (global_scope))
684 {
685 s = format (s, "%UGlobal unicast address(es):\n",
686 format_white_space, 2);
687 s = ip6_print_addrs (s, global_scope);
688 vec_free (global_scope);
689 }
690
691 if (vec_len (unknown_scope))
692 {
693 s = format (s, "%UOther-scope address(es):\n", format_white_space, 2);
694 s = ip6_print_addrs (s, unknown_scope);
695 vec_free (unknown_scope);
696 }
697
698 s = format (s, "%ULink-local address(es):\n", format_white_space, 2);
699 s = format (s, "%U%U\n",
700 format_white_space, 4, format_ip6_address, &il->il_ll_addr);
701
702 /* *INDENT-OFF* */
703 FOREACH_IP6_LINK_DELEGATE(ild, il,
704 ({
705 s = format (s, "%U", il_delegate_vfts[ild->ild_type].ildv_format,
706 ild->ild_index, 2);
707 }));
708 /* *INDENT-ON* */
709
710 return (s);
711}
712
713static clib_error_t *
714ip6_link_show (vlib_main_t * vm,
715 unformat_input_t * input, vlib_cli_command_t * cmd)
716{
717 const ip6_link_t *il;
718 vnet_main_t *vnm;
719 u32 sw_if_index;
720
721 vnm = vnet_get_main ();
722 sw_if_index = ~0;
723
724 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
725 {
726 il = ip6_link_get (sw_if_index);
727
728 if (NULL == il)
729 {
730 vlib_cli_output (vm, "IP6 disabled");
731 return (NULL);
732 }
733 else
734 vlib_cli_output (vm, "%U", format_ip6_link, il);
735 }
736 else
737 {
738 vec_foreach (il, ip6_links)
739 vlib_cli_output (vm, "%U", format_ip6_link, il);
740 }
741
742 return (NULL);
743}
744
745/*?
746 * This command is used to display various IPv6 attributes on a given
747 * interface.
748 *
749 * @cliexpar
750 * Example of how to display IPv6 settings:
751 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
752 * GigabitEthernet2/0/0 is admin up
753 * Link-local address(es):
754 * fe80::ab8/64
755 * Joined group address(es):
756 * ff02::1
757 * ff02::2
758 * ff02::16
759 * ff02::1:ff00:ab8
760 * Advertised Prefixes:
761 * prefix fe80::fe:28ff:fe9c:75b3, length 64
762 * MTU is 1500
763 * ICMP error messages are unlimited
764 * ICMP redirects are disabled
765 * ICMP unreachables are not sent
766 * ND DAD is disabled
767 * ND advertised reachable time is 0
768 * ND advertised retransmit interval is 0 (msec)
769 * ND router advertisements are sent every 200 seconds (min interval is 150)
770 * ND router advertisements live for 600 seconds
771 * Hosts use stateless autoconfig for addresses
772 * ND router advertisements sent 19336
773 * ND router solicitations received 0
774 * ND router solicitations dropped 0
775 * @cliexend
776 * Example of output if IPv6 is not enabled on the interface:
777 * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
778 * show ip6 interface: IPv6 not enabled on interface
779 * @cliexend
780?*/
781/* *INDENT-OFF* */
782VLIB_CLI_COMMAND (ip6_link_show_command, static) =
783{
784 .path = "show ip6 interface",
785 .function = ip6_link_show,
786 .short_help = "show ip6 interface <interface>",
787};
788/* *INDENT-ON* */
789
790static clib_error_t *
791enable_ip6_interface_cmd (vlib_main_t * vm,
792 unformat_input_t * input, vlib_cli_command_t * cmd)
793{
794 vnet_main_t *vnm = vnet_get_main ();
795 clib_error_t *error = NULL;
796 u32 sw_if_index;
797
798 sw_if_index = ~0;
799
800 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
801 {
Neale Rannsec40a7d2020-04-23 07:36:12 +0000802 if (ip6_link_enable (sw_if_index, NULL))
Neale Rannscbe25aa2019-09-30 10:53:31 +0000803 error = clib_error_return (0, "Failed\n");
804 }
805 else
806 {
807 error = clib_error_return (0, "unknown interface\n'",
808 format_unformat_error, input);
809
810 }
811 return error;
812}
813
814/*?
815 * This command is used to enable IPv6 on a given interface.
816 *
817 * @cliexpar
818 * Example of how enable IPv6 on a given interface:
819 * @cliexcmd{enable ip6 interface GigabitEthernet2/0/0}
820?*/
821/* *INDENT-OFF* */
822VLIB_CLI_COMMAND (enable_ip6_interface_command, static) =
823{
824 .path = "enable ip6 interface",
825 .function = enable_ip6_interface_cmd,
826 .short_help = "enable ip6 interface <interface>",
827};
828/* *INDENT-ON* */
829
830static clib_error_t *
831disable_ip6_interface_cmd (vlib_main_t * vm,
832 unformat_input_t * input, vlib_cli_command_t * cmd)
833{
834 vnet_main_t *vnm = vnet_get_main ();
835 clib_error_t *error = NULL;
836 u32 sw_if_index;
837
838 sw_if_index = ~0;
839
840 if (unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
841 {
842 if (ip6_link_disable (sw_if_index))
843 error = clib_error_return (0, "Failed\n");
844 }
845 else
846 {
847 error = clib_error_return (0, "unknown interface\n'",
848 format_unformat_error, input);
849
850 }
851 return error;
852}
853
854/*?
855 * This command is used to disable IPv6 on a given interface.
856 *
857 * @cliexpar
858 * Example of how disable IPv6 on a given interface:
859 * @cliexcmd{disable ip6 interface GigabitEthernet2/0/0}
860?*/
861/* *INDENT-OFF* */
862VLIB_CLI_COMMAND (disable_ip6_interface_command, static) =
863{
864 .path = "disable ip6 interface",
865 .function = disable_ip6_interface_cmd,
866 .short_help = "disable ip6 interface <interface>",
867};
868/* *INDENT-ON* */
869
870/*
871 * fd.io coding-style-patch-verification: ON
872 *
873 * Local Variables:
874 * eval: (c-set-style "gnu")
875 * End:
876 */