FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
ip6_link.c
Go to the documentation of this file.
1 /*
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 
23 typedef struct ip6_link_delegate_t_
24 {
29 
31  .ild_sw_if_index = ~0,
32 };
33 
34 typedef struct ip6_link_t_
35 {
36  /** interface ip6 is enabled on */
38 
39  /** link-local address - if unset that IP6 is disabled*/
40  ip6_address_t il_ll_addr;
41 
42  /** list of delegates */
44 
45  /** multicast adjacency for this link */
47 
48  /** number of references to IP6 enabled on this link */
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 */
67 
68 /** VFT registered per-delegate type */
70 
71 /** Per interface configs */
73 
74 /** Randomizer */
76 
77 /** Logging */
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 
86 static bool
88 {
89  return (~0 != ild->ild_sw_if_index);
90 }
91 
92 static bool
94 {
95  return (!ip6_address_is_zero (&il->il_ll_addr));
96 }
97 
98 static void
99 ip6_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 
113 static void
114 ip6_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 
125 static ip6_link_t *
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 
141 bool
143 {
144  return (NULL != ip6_link_get (sw_if_index));
145 }
146 
147 
148 int
149 ip6_link_enable (u32 sw_if_index, const ip6_address_t * link_local_addr)
150 {
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",
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 
175 
176  if (NULL == eth)
177  {
178  rv = VNET_API_ERROR_UNSUPPORTED;
179  goto out;
180  }
181 
183 
184  il = &ip6_links[sw_if_index];
185  il->il_locks = 0;
187 
189 
190  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 ||
195  {
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  {
208  eth->address.mac.bytes);
209  }
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 
218  }
219 
220  /* essentially "enables" ipv6 on this interface */
223 
226 
227  /* inform all register clients */
230  {
231  if (NULL != il_delegate_vfts[id].ildv_enable)
233  }
234 
235  rv = 0;
236  }
237  else
238  {
239  rv = VNET_API_ERROR_VALUE_EXIST;
240  }
241 
242  il->il_locks++;
243 
244 out:
245  return (rv);
246 }
247 
248 static void
250 {
251  ip6_link_delegate_t *ild;
252 
253  /* *INDENT-OFF* */
254  FOREACH_IP6_LINK_DELEGATE (ild, il,
255  ({
257  }));
258  /* *INDENT-ON* */
259 
260  vec_free (il->il_delegates);
261  il->il_delegates = NULL;
262 }
263 
264 static void
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",
274  vnet_get_main (), il->il_sw_if_index);
275 
278 
281 
283  adj_unlock (il->il_mcast_adj);
285 }
286 
287 static void
289 {
290  if (NULL == il)
291  return;
292 
293  il->il_locks--;
294 
295  if (0 == il->il_locks)
297 }
298 
299 int
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",
311 
312  ip6_link_unlock (il);
313 
314  return (0);
315 }
316 
317 const ip6_address_t *
319 {
320  const ip6_link_t *il;
321 
322  il = ip6_link_get (sw_if_index);
323 
324  if (NULL == il)
325  return (NULL);
326 
327  return (&il->il_ll_addr);
328 }
329 
332 {
333  const ip6_link_t *il;
334 
335  il = ip6_link_get (sw_if_index);
336 
337  if (NULL == il)
338  return (INDEX_INVALID);
339 
340  return (il->il_mcast_adj);
341 }
342 
343 int
345 {
346  ip6_link_delegate_t *ild;
347  ip6_link_t *il;
348 
349  il = ip6_link_get (sw_if_index);
350 
351  if (NULL == il)
353 
354  ip6_ll_prefix_t ilp = {
355  .ilp_addr = il->il_ll_addr,
356  .ilp_sw_if_index = sw_if_index,
357  };
358 
359  IP6_LINK_INFO ("set-ll: %U -> %U",
362 
367 
368  /* *INDENT-OFF* */
369  FOREACH_IP6_LINK_DELEGATE (ild, il,
370  ({
371  if (NULL != il_delegate_vfts[ild->ild_type].ildv_ll_change)
373  &il->il_ll_addr);
374  }));
375  /* *INDENT-ON* */
376 
377  return (0);
378 }
379 
382 {
384 
385  ASSERT (vft->ildv_disable);
386 
388 
389  il_delegate_vfts[rc] = *vft;
390 
391  return (rc);
392 }
393 
394 index_t
396 {
397  ip6_link_t *il;
398 
399  il = ip6_link_get (sw_if_index);
400 
401  if (NULL == il)
402  return (INDEX_INVALID);
403 
405 
406  if (!ip6_link_delegate_is_init (&il->il_delegates[id]))
407  return (INDEX_INVALID);
408 
409  return (il->il_delegates[id].ild_index);
410 }
411 
412 bool
415 {
416  ip6_link_t *il;
417 
418  il = ip6_link_get (sw_if_index);
419 
420  if (NULL == il)
421  return (false);
422 
424 
426  il->il_delegates[id].ild_type = id;
427  il->il_delegates[id].ild_index = ii;
428 
429  return (true);
430 }
431 
432 void
435 {
436  ip6_link_t *il;
437 
438  il = ip6_link_get (sw_if_index);
439 
440  if (NULL != il)
441  {
442  if (vec_len (il->il_delegates) > id)
443  {
444  clib_memcpy (&il->il_delegates[id],
446  sizeof (il->il_delegates[0]));
447  }
448  }
449 }
450 
451 static void
453  uword opaque,
455  ip6_address_t * address,
456  u32 address_length,
457  u32 if_address_index, u32 is_delete)
458 {
459  const ip6_link_delegate_t *ild;
460  ip6_link_t *il;
461 
463  // only interested in global addresses here
464  return;
465 
466  IP6_LINK_INFO ("addr-%s: %U -> %U",
467  (is_delete ? "del" : "add"),
470 
471  il = ip6_link_get (sw_if_index);
472 
473  if (NULL == il)
474  return;
475 
476  /* *INDENT-OFF* */
477  FOREACH_IP6_LINK_DELEGATE (ild, il,
478  ({
479  if (is_delete)
480  {
481  if (NULL != il_delegate_vfts[ild->ild_type].ildv_addr_del)
483  address, address_length);
484  }
485  else
486  {
487  if (NULL != il_delegate_vfts[ild->ild_type].ildv_addr_add)
489  address, address_length);
490  }
491  }));
492  /* *INDENT-ON* */
493 }
494 
495 static clib_error_t *
497 {
498  if (!is_add)
499  {
500  ip6_link_t *il;
501 
502  il = ip6_link_get (sw_if_index);
503 
504  IP6_LINK_DBG ("link-del: %U",
506  sw_if_index);
507 
508  if (NULL != il)
509  /* force cleanup */
511  }
512 
513  return (NULL);
514 }
515 
517 
518 static clib_error_t *
520 {
522  ip6_link_logger = vlib_log_register_class ("ip6", "link");
523 
524  {
527  };
529  }
530  return (NULL);
531 }
532 
534 
535 
536 static clib_error_t *
538  unformat_input_t * input, vlib_cli_command_t * cmd)
539 {
540  u8 mac[6];
541  ip6_address_t _a, *a = &_a;
542 
543  if (unformat (input, "%U", unformat_ethernet_address, mac))
544  {
546  vlib_cli_output (vm, "Link local address: %U", format_ip6_address, a);
548  vlib_cli_output (vm, "Original MAC address: %U",
550  }
551 
552  return 0;
553 }
554 
555 /*?
556  * This command converts the given MAC Address into an IPv6 link-local
557  * address.
558  *
559  * @cliexpar
560  * Example of how to create an IPv6 link-local address:
561  * @cliexstart{test ip6 link 16:d9:e0:91:79:86}
562  * Link local address: fe80::14d9:e0ff:fe91:7986
563  * Original MAC address: 16:d9:e0:91:79:86
564  * @cliexend
565 ?*/
566 /* *INDENT-OFF* */
568 {
569  .path = "test ip6 link",
570  .function = test_ip6_link_command_fn,
571  .short_help = "test ip6 link <mac-address>",
572 };
573 /* *INDENT-ON* */
574 
575 static u8 *
576 ip6_print_addrs (u8 * s, u32 * addrs)
577 {
579  u32 i;
580 
581  for (i = 0; i < vec_len (addrs); i++)
582  {
584  pool_elt_at_index (lm->if_address_pool, addrs[i]);
585  ip6_address_t *address = ip_interface_address_get_address (lm, a);
586 
587  s = format (s, "%U%U/%d\n",
589  format_ip6_address, address, a->address_length);
590  }
591 
592  return (s);
593 }
594 
595 static u8 *
596 format_ip6_link (u8 * s, va_list * arg)
597 {
598  const ip6_link_t *il = va_arg (*arg, ip6_link_t *);
600  vnet_main_t *vnm = vnet_get_main ();
601 
602  if (!ip6_link_is_enabled_i (il))
603  return (s);
604 
605  s = format (s, "%U is admin %s\n",
609  "up" : "down"));
610 
611  u32 ai;
612  u32 *link_scope = 0, *global_scope = 0;
613  u32 *local_scope = 0, *unknown_scope = 0;
615  const ip6_link_delegate_t *ild;
616 
618  il->il_sw_if_index, ~0);
620 
621  while (ai != (u32) ~ 0)
622  {
623  a = pool_elt_at_index (lm->if_address_pool, ai);
624  ip6_address_t *address = ip_interface_address_get_address (lm, a);
625 
627  vec_add1 (link_scope, ai);
629  vec_add1 (global_scope, ai);
631  vec_add1 (local_scope, ai);
632  else
633  vec_add1 (unknown_scope, ai);
634 
635  ai = a->next_this_sw_interface;
636  }
637 
638  if (vec_len (link_scope))
639  {
640  s = format (s, "%ULink-local address(es):\n", format_white_space, 2);
641  s = ip6_print_addrs (s, link_scope);
642  vec_free (link_scope);
643  }
644 
645  if (vec_len (local_scope))
646  {
647  s = format (s, "%ULocal unicast address(es):\n", format_white_space, 2);
648  s = ip6_print_addrs (s, local_scope);
649  vec_free (local_scope);
650  }
651 
652  if (vec_len (global_scope))
653  {
654  s = format (s, "%UGlobal unicast address(es):\n",
655  format_white_space, 2);
656  s = ip6_print_addrs (s, global_scope);
657  vec_free (global_scope);
658  }
659 
660  if (vec_len (unknown_scope))
661  {
662  s = format (s, "%UOther-scope address(es):\n", format_white_space, 2);
663  s = ip6_print_addrs (s, unknown_scope);
664  vec_free (unknown_scope);
665  }
666 
667  s = format (s, "%ULink-local address(es):\n", format_white_space, 2);
668  s = format (s, "%U%U\n",
670 
671  /* *INDENT-OFF* */
673  ({
674  s = format (s, "%U", il_delegate_vfts[ild->ild_type].ildv_format,
675  ild->ild_index, 2);
676  }));
677  /* *INDENT-ON* */
678 
679  return (s);
680 }
681 
682 static clib_error_t *
684  unformat_input_t * input, vlib_cli_command_t * cmd)
685 {
686  const ip6_link_t *il;
687  vnet_main_t *vnm;
689 
690  vnm = vnet_get_main ();
691  sw_if_index = ~0;
692 
694  {
695  il = ip6_link_get (sw_if_index);
696 
697  if (NULL == il)
698  {
699  vlib_cli_output (vm, "IP6 disabled");
700  return (NULL);
701  }
702  else
703  vlib_cli_output (vm, "%U", format_ip6_link, il);
704  }
705  else
706  {
707  vec_foreach (il, ip6_links)
708  vlib_cli_output (vm, "%U", format_ip6_link, il);
709  }
710 
711  return (NULL);
712 }
713 
714 /*?
715  * This command is used to display various IPv6 attributes on a given
716  * interface.
717  *
718  * @cliexpar
719  * Example of how to display IPv6 settings:
720  * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
721  * GigabitEthernet2/0/0 is admin up
722  * Link-local address(es):
723  * fe80::ab8/64
724  * Joined group address(es):
725  * ff02::1
726  * ff02::2
727  * ff02::16
728  * ff02::1:ff00:ab8
729  * Advertised Prefixes:
730  * prefix fe80::fe:28ff:fe9c:75b3, length 64
731  * MTU is 1500
732  * ICMP error messages are unlimited
733  * ICMP redirects are disabled
734  * ICMP unreachables are not sent
735  * ND DAD is disabled
736  * ND advertised reachable time is 0
737  * ND advertised retransmit interval is 0 (msec)
738  * ND router advertisements are sent every 200 seconds (min interval is 150)
739  * ND router advertisements live for 600 seconds
740  * Hosts use stateless autoconfig for addresses
741  * ND router advertisements sent 19336
742  * ND router solicitations received 0
743  * ND router solicitations dropped 0
744  * @cliexend
745  * Example of output if IPv6 is not enabled on the interface:
746  * @cliexstart{show ip6 interface GigabitEthernet2/0/0}
747  * show ip6 interface: IPv6 not enabled on interface
748  * @cliexend
749 ?*/
750 /* *INDENT-OFF* */
752 {
753  .path = "show ip6 interface",
754  .function = ip6_link_show,
755  .short_help = "show ip6 interface <interface>",
756 };
757 /* *INDENT-ON* */
758 
759 static clib_error_t *
761  unformat_input_t * input, vlib_cli_command_t * cmd)
762 {
763  vnet_main_t *vnm = vnet_get_main ();
764  clib_error_t *error = NULL;
766 
767  sw_if_index = ~0;
768 
770  {
771  if (ip6_link_enable (sw_if_index, NULL))
772  error = clib_error_return (0, "Failed\n");
773  }
774  else
775  {
776  error = clib_error_return (0, "unknown interface\n'",
777  format_unformat_error, input);
778 
779  }
780  return error;
781 }
782 
783 /*?
784  * This command is used to enable IPv6 on a given interface.
785  *
786  * @cliexpar
787  * Example of how enable IPv6 on a given interface:
788  * @cliexcmd{enable ip6 interface GigabitEthernet2/0/0}
789 ?*/
790 /* *INDENT-OFF* */
792 {
793  .path = "enable ip6 interface",
794  .function = enable_ip6_interface_cmd,
795  .short_help = "enable ip6 interface <interface>",
796 };
797 /* *INDENT-ON* */
798 
799 static clib_error_t *
801  unformat_input_t * input, vlib_cli_command_t * cmd)
802 {
803  vnet_main_t *vnm = vnet_get_main ();
804  clib_error_t *error = NULL;
806 
807  sw_if_index = ~0;
808 
810  {
812  error = clib_error_return (0, "Failed\n");
813  }
814  else
815  {
816  error = clib_error_return (0, "unknown interface\n'",
817  format_unformat_error, input);
818 
819  }
820  return error;
821 }
822 
823 /*?
824  * This command is used to disable IPv6 on a given interface.
825  *
826  * @cliexpar
827  * Example of how disable IPv6 on a given interface:
828  * @cliexcmd{disable ip6 interface GigabitEthernet2/0/0}
829 ?*/
830 /* *INDENT-OFF* */
832 {
833  .path = "disable ip6 interface",
834  .function = disable_ip6_interface_cmd,
835  .short_help = "disable ip6 interface <interface>",
836 };
837 /* *INDENT-ON* */
838 
839 /*
840  * fd.io coding-style-patch-verification: ON
841  *
842  * Local Variables:
843  * eval: (c-set-style "gnu")
844  * End:
845  */
ip6_address_is_link_local_unicast
static uword ip6_address_is_link_local_unicast(const ip6_address_t *a)
Definition: ip6_packet.h:253
im
vnet_interface_main_t * im
Definition: interface_output.c:395
unformat_ethernet_address
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
ip_interface_address_get_address
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: ip_interface.h:43
mac
vl_api_mac_address_t mac
Definition: l2.api:559
unformat_user
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
VNET_SW_INTERFACE_TYPE_PIPE
@ VNET_SW_INTERFACE_TYPE_PIPE
Definition: interface.h:768
vnet_sw_interface_t::type
vnet_sw_interface_type_t type
Definition: interface.h:870
vnet_sw_interface_t
Definition: interface.h:868
ip6_address_is_global_unicast
static uword ip6_address_is_global_unicast(const ip6_address_t *a)
Definition: ip6_packet.h:267
clib_memcpy
#define clib_memcpy(d, s, n)
Definition: string.h:197
ADJ_INDEX_INVALID
#define ADJ_INDEX_INVALID
Invalid ADJ index - used when no adj is known likewise blazoned capitals INVALID speak volumes where ...
Definition: adj_types.h:36
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
vlib_log_class_t
u32 vlib_log_class_t
Definition: vlib.h:52
format_ethernet_address
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
ip6_address_is_local_unicast
static uword ip6_address_is_local_unicast(const ip6_address_t *a)
Definition: ip6_packet.h:260
vlib_log_register_class
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
Definition: log.c:339
adj_mcast_add_or_lock
adj_index_t adj_mcast_add_or_lock(fib_protocol_t proto, vnet_link_t link_type, u32 sw_if_index)
Mcast Adjacency.
Definition: adj_mcast.c:51
VNET_SW_INTERFACE_TYPE_SUB
@ VNET_SW_INTERFACE_TYPE_SUB
Definition: interface.h:766
adj_mcast.h
clib_error_return
#define clib_error_return(e, args...)
Definition: error.h:99
vlib_cli_command_t::path
char * path
Definition: cli.h:96
adj_unlock
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:358
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vnet_get_sw_interface
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:58
ip6_ll_table_entry_delete
void ip6_ll_table_entry_delete(const ip6_ll_prefix_t *ilp)
Delete a IP6 link-local entry.
Definition: ip6_ll_table.c:140
ip6_ll_table_entry_update
fib_node_index_t ip6_ll_table_entry_update(const ip6_ll_prefix_t *ilp, fib_route_path_flags_t flags)
Update an entry in the table.
Definition: ip6_ll_table.c:106
unformat_input_t
struct _unformat_input_t unformat_input_t
ip6_ll_table.h
ethernet.h
error
Definition: cJSON.c:88
ip6_mfib.h
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
ip_lookup_main_t::if_address_pool_index_by_sw_if_index
u32 * if_address_pool_index_by_sw_if_index
Head of doubly linked list of interface addresses for each software interface.
Definition: lookup.h:131
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
ip6_mfib_interface_enable_disable
void ip6_mfib_interface_enable_disable(u32 sw_if_index, int is_enable)
Add/remove the interface from the accepting list of the special MFIB entries.
Definition: ip6_mfib.c:234
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
ip6_add_del_interface_address_callback_t
Definition: ip6.h:94
ip6_main_t::add_del_interface_address_callbacks
ip6_add_del_interface_address_callback_t * add_del_interface_address_callbacks
Definition: ip6.h:148
index_t
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:43
uword
u64 uword
Definition: types.h:112
ethernet_interface
Definition: ethernet.h:147
i
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
format_unformat_error
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
mac_address_t_::bytes
u8 bytes[6]
Definition: mac_address.h:25
address
manual_print typedef address
Definition: ip_types.api:96
VLIB_CLI_COMMAND
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
ip6_ll_prefix_t_
Aggregate type for a prefix in the IPv6 Link-local table.
Definition: ip6_ll_types.h:24
ip6_address_copy
static void ip6_address_copy(ip6_address_t *dst, const ip6_address_t *src)
Definition: ip6_packet.h:127
vlib_cli_output
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:716
vnet_sw_interface_is_admin_up
static uword vnet_sw_interface_is_admin_up(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:265
ethernet_get_interface
ethernet_interface_t * ethernet_get_interface(ethernet_main_t *em, u32 hw_if_index)
Definition: interface.c:982
ip6_main
ip6_main_t ip6_main
Definition: ip6_forward.c:2787
id
u8 id[64]
Definition: dhcp.api:160
ethernet_interface_address::mac
mac_address_t mac
Definition: ethernet.h:140
vnet_main_t
Definition: vnet.h:76
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
ip6_add_del_interface_address_callback_t::function
ip6_add_del_interface_address_function_t * function
Definition: ip6.h:96
ethernet_main
ethernet_main_t ethernet_main
Definition: init.c:45
u64
unsigned long u64
Definition: types.h:89
format_vnet_sw_if_index_name
format_function_t format_vnet_sw_if_index_name
Definition: interface_funcs.h:455
unformat_vnet_sw_interface
unformat_function_t unformat_vnet_sw_interface
Definition: interface_funcs.h:459
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
vec_validate_init_empty
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header,...
Definition: vec.h:570
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
FIB_PROTOCOL_IP6
@ FIB_PROTOCOL_IP6
Definition: fib_types.h:37
ip6_address_set_zero
static void ip6_address_set_zero(ip6_address_t *a)
Definition: ip6_packet.h:203
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
ip6_sw_interface_enable_disable
void ip6_sw_interface_enable_disable(u32 sw_if_index, u32 is_enable)
Definition: ip6_forward.c:239
ip6_main_t::lookup_main
ip_lookup_main_t lookup_main
Definition: ip6.h:112
random_u64
static u64 random_u64(u64 *seed)
64-bit random number generator Again, constants courtesy of Donald Knuth.
Definition: random.h:126
ip6_main_t
Definition: ip6.h:110
ip_lookup_main_t
Definition: lookup.h:121
ip_lookup_main_t::if_address_pool
ip_interface_address_t * if_address_pool
Pool of addresses that are assigned to interfaces.
Definition: lookup.h:124
adj_index_t
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
vlib_main_t
Definition: main.h:102
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
a
a
Definition: bitmap.h:544
VNET_LINK_IP6
@ VNET_LINK_IP6
Definition: interface.h:348
ip
vl_api_address_t ip
Definition: l2.api:558
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
format_ip6_address
format_function_t format_ip6_address
Definition: format.h:91
VNET_SW_INTERFACE_TYPE_P2P
@ VNET_SW_INTERFACE_TYPE_P2P
Definition: interface.h:767
ip6_ll_prefix_t_::ilp_addr
ip6_address_t ilp_addr
the IP6 address
Definition: ip6_ll_types.h:34
vnet_sw_interface_t::hw_if_index
u32 hw_if_index
Definition: interface.h:886
rv
int __clib_unused rv
Definition: application.c:491
ip6_address_is_zero
static uword ip6_address_is_zero(const ip6_address_t *a)
Definition: ip6_packet.h:226
ip_interface_address_t
Definition: lookup.h:89
VNET_SW_INTERFACE_TYPE_HARDWARE
@ VNET_SW_INTERFACE_TYPE_HARDWARE
Definition: interface.h:763
vnet_get_sup_sw_interface
static vnet_sw_interface_t * vnet_get_sup_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:81
vlib_cli_command_t
Definition: cli.h:92
clib_cpu_time_now
static u64 clib_cpu_time_now(void)
Definition: time.h:81
INDEX_INVALID
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:49
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
ethernet_interface::address
ethernet_interface_address_t address
Definition: ethernet.h:174
FIB_ROUTE_PATH_LOCAL
@ FIB_ROUTE_PATH_LOCAL
A for-us/local path.
Definition: fib_types.h:344
format_white_space
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:129
format_vnet_sw_interface_name
format_function_t format_vnet_sw_interface_name
Definition: interface_funcs.h:453