FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
ip6_ll_table.c
Go to the documentation of this file.
1 /*
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 
16 #include <vlib/vlib.h>
17 #include <vnet/dpo/drop_dpo.h>
18 #include <vnet/fib/ip6_fib.h>
19 
20 #include <vnet/ip/ip6_ll_table.h>
21 
22 /**
23  * There's only one IP6 link local table
24  */
26 
27 u32
29 {
30  ASSERT (vec_len (ip6_ll_table.ilt_fibs) > sw_if_index);
31 
32  return (ip6_ll_table.ilt_fibs[sw_if_index]);
33 }
34 
37 {
39  &prefix->ilp_addr, 128));
40 }
41 
44 {
46  (ip6_ll_fib_get (prefix->ilp_sw_if_index), &prefix->ilp_addr, 128));
47 }
48 
49 static void
51 {
52  vnet_main_t *vnm = vnet_get_main ();
53  u8 *desc;
54 
55  desc = format (NULL, "IP6-link-local:%U",
57  vnm, vnet_get_sw_interface (vnm, sw_if_index));
58 
59  ip6_ll_table.ilt_fibs[sw_if_index] =
61  FIB_TABLE_FLAG_IP6_LL, desc);
62 
63  /*
64  * leave the default route as a drop, but fix fe::/10 to be a glean
65  * via the interface.
66  */
67  /* *INDENT-OFF* */
68  fib_prefix_t pfx = {
70  .fp_len = 10,
71  .fp_addr = {
72  .ip6 = {
73  .as_u8 = {
74  [0] = 0xFE,
75  [1] = 0x80,
76  }
77  },
78  }
79  };
81  ip6_ll_table.ilt_fibs[sw_if_index],
82  &pfx,
87  NULL,
88  sw_if_index,
89  ~0,
90  1,
91  NULL,
93  /* *INDENT-ON* */
94 }
95 
96 static void
98 {
100  fp->fp_len = 128;
101  fp->fp_addr.ip6 = ilp->ilp_addr;
102  fp->___fp___pad = 0;
103 }
104 
108 {
109  fib_node_index_t ip6_ll_entry_index;
110  fib_route_path_t *rpaths, rpath = {
111  .frp_flags = flags,
112  .frp_sw_if_index = ilp->ilp_sw_if_index,
113  .frp_proto = DPO_PROTO_IP6,
114  };
115  fib_prefix_t fp;
116 
117  vec_validate (ip6_ll_table.ilt_fibs, ilp->ilp_sw_if_index);
118 
119  if (0 == ip6_ll_fib_get (ilp->ilp_sw_if_index))
120  {
122  }
123 
124  rpaths = NULL;
125  vec_add1 (rpaths, rpath);
126 
127  ip6_ll_prefix_to_fib (ilp, &fp);
128  ip6_ll_entry_index =
131  (flags & FIB_ROUTE_PATH_LOCAL ?
133  rpaths);
134  vec_free (rpaths);
135 
136  return (ip6_ll_entry_index);
137 }
138 
139 void
141 {
142  fib_node_index_t ip6_ll_entry_index;
143  u32 fib_index;
144 
145  ip6_ll_entry_index = ip6_ll_table_lookup_exact_match (ilp);
146 
147  if (FIB_NODE_INDEX_INVALID != ip6_ll_entry_index)
148  fib_table_entry_delete_index (ip6_ll_entry_index, FIB_SOURCE_IP6_ND);
149 
150  /*
151  * if there are no ND sourced prefixes left, then we can clean up this FIB
152  */
153  fib_index = ip6_ll_fib_get (ilp->ilp_sw_if_index);
154  if (0 == fib_table_get_num_entries (fib_index,
156  {
158  ip6_ll_table.ilt_fibs[ilp->ilp_sw_if_index] = 0;
159  }
160 }
161 
162 static void
164 {
165  vlib_cli_output (vm, "%U",
167  ip6_ll_table_lookup (ilp),
168  (detail ?
170 }
171 
172 typedef struct ip6_ll_show_ctx_t_
173 {
176 
177 static fib_table_walk_rc_t
178 ip6_ll_table_show_walk (fib_node_index_t fib_entry_index, void *arg)
179 {
180  ip6_ll_show_ctx_t *ctx = arg;
181 
182  vec_add1 (ctx->entries, fib_entry_index);
183 
184  return (FIB_TABLE_WALK_CONTINUE);
185 }
186 
187 static void
189 {
190  fib_node_index_t *fib_entry_index;
192  .entries = NULL,
193  };
194 
197 
198  vec_foreach (fib_entry_index, ctx.entries)
199  {
200  vlib_cli_output (vm, "%U",
202  *fib_entry_index, FIB_ENTRY_FORMAT_BRIEF);
203  }
204 
205  vec_free (ctx.entries);
206 }
207 
208 typedef struct
209 {
210  u32 fib_index;
211  u64 count_by_prefix_length[129];
213 
214 static int
216 {
218  int mask_width;
219 
220  if ((kvp->key[2] >> 32) != ap->fib_index)
221  return (BIHASH_WALK_CONTINUE);
222 
223  mask_width = kvp->key[2] & 0xFF;
224 
226 
227  return (BIHASH_WALK_CONTINUE);
228 }
229 
230 static clib_error_t *
232  unformat_input_t * input, vlib_cli_command_t * cmd)
233 {
235  ip6_main_t *im6 = &ip6_main;
236  fib_table_t *fib_table;
237  int verbose, matching;
238  ip6_address_t matching_address;
239  u32 mask_len = 128;
240  u32 sw_if_index = ~0;
241  int detail = 0;
242  vnet_main_t *vnm = vnet_get_main ();
243  u32 fib_index;
244 
245  verbose = 1;
246  matching = 0;
247 
249  {
250  if (unformat (input, "brief") ||
251  unformat (input, "summary") || unformat (input, "sum"))
252  verbose = 0;
253 
254  else if (unformat (input, "detail") || unformat (input, "det"))
255  detail = 1;
256 
257  else if (unformat (input, "%U/%d",
258  unformat_ip6_address, &matching_address, &mask_len))
259  matching = 1;
260 
261  else
262  if (unformat (input, "%U", unformat_ip6_address, &matching_address))
263  matching = 1;
264  else if (unformat (input, "%U",
265  unformat_vnet_sw_interface, vnm, &sw_if_index))
266  ;
267  else
268  break;
269  }
270 
271  vec_foreach_index (sw_if_index, ip6_ll_table.ilt_fibs)
272  {
273  fib_source_t source;
274  u8 *s = NULL;
275 
276  fib_index = ip6_ll_table.ilt_fibs[sw_if_index];
277 
278  if (0 == fib_index)
279  continue;
280 
281  fib_table = fib_table_get (fib_index, FIB_PROTOCOL_IP6);
282 
283  if (!(fib_table->ft_flags & FIB_TABLE_FLAG_IP6_LL))
284  continue;
285 
286  s = format (s, "%U, fib_index:%d, locks:[",
287  format_fib_table_name, fib_index,
288  FIB_PROTOCOL_IP6, fib_index);
289  vec_foreach_index (source, fib_table->ft_locks)
290  {
291  if (0 != fib_table->ft_locks[source])
292  {
293  s = format (s, "%U:%d, ",
294  format_fib_source, source, fib_table->ft_locks[source]);
295  }
296  }
297  s = format (s, "]");
298  vlib_cli_output (vm, "%v", s);
299  vec_free (s);
300 
301  /* Show summary? */
302  if (!verbose)
303  {
304  clib_bihash_24_8_t *h =
306  int len;
307 
308  vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count");
309 
310  clib_memset (ca, 0, sizeof (*ca));
311  ca->fib_index = fib_index;
312 
313  clib_bihash_foreach_key_value_pair_24_8
315 
316  for (len = 128; len >= 0; len--)
317  {
318  if (ca->count_by_prefix_length[len])
319  vlib_cli_output (vm, "%=20d%=16lld",
320  len, ca->count_by_prefix_length[len]);
321  }
322  continue;
323  }
324 
325  if (!matching)
326  {
327  ip6_ll_table_show_all (vm, fib_index);
328  }
329  else
330  {
331  if (~0 == sw_if_index)
332  {
333  vlib_cli_output (vm, "specify the interface");
334  }
335  else
336  {
337  ip6_ll_prefix_t ilp = {
338  .ilp_addr = matching_address,
339  .ilp_sw_if_index = sw_if_index,
340  };
341  ip6_ll_table_show_one (vm, &ilp, detail);
342  }
343  }
344  };
345 
346  return 0;
347 }
348 
349 /* *INDENT-OFF* */
350 VLIB_CLI_COMMAND (ip6_show_fib_command, static) = {
351  .path = "show ip6-ll",
352  .short_help = "show ip6-ll [summary] [interface] [<ip6-addr>[/<width>]] [detail]",
353  .function = ip6_ll_show_fib,
354 };
355 /* *INDENT-ON* */
356 
357 static clib_error_t *
359 {
360  clib_error_t *error;
361 
363 
364  return (error);
365 }
366 
368 
369 /*
370  * fd.io coding-style-patch-verification: ON
371  *
372  * Local Variables:
373  * eval: (c-set-style "gnu")
374  * End:
375  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:507
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:212
u8 * format_fib_entry(u8 *s, va_list *args)
Definition: fib_entry.c:130
enum fib_source_t_ fib_source_t
The different sources that can create a route.
#define vec_foreach_index(var, v)
Iterate over vector indices.
Continue on to the next entry.
Definition: fib_table.h:916
fib_node_index_t ip6_ll_table_lookup_exact_match(const ip6_ll_prefix_t *prefix)
Perfom an exact match in the non-forwarding table.
Definition: ip6_ll_table.c:43
static void ip6_ll_table_show_all(vlib_main_t *vm, u32 fib_index)
Definition: ip6_ll_table.c:188
A representation of a path as described by a route producer.
Definition: fib_types.h:490
static void ip6_ll_fib_create(u32 sw_if_index)
Definition: ip6_ll_table.c:50
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
The table that stores ALL routes learned by the DP.
Definition: ip6.h:136
#define FIB_ENTRY_FORMAT_DETAIL
Definition: fib_entry.h:360
unsigned long u64
Definition: types.h:89
fib_node_index_t fib_table_entry_update(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, fib_route_path_t *paths)
Update an entry to have a new set of paths.
Definition: fib_table.c:756
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static void ip6_ll_table_show_one(vlib_main_t *vm, ip6_ll_prefix_t *ilp, int detail)
Definition: ip6_ll_table.c:163
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:590
fib_node_index_t ip6_ll_table_lookup(const ip6_ll_prefix_t *prefix)
Perfom a longest prefix match in the non-forwarding table.
Definition: ip6_ll_table.c:36
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
unformat_function_t unformat_vnet_sw_interface
vl_api_prefix_t prefix
Definition: ip.api:144
Definition: fib_entry.h:114
unsigned char u8
Definition: types.h:56
static ip6_ll_table_t ip6_ll_table
There&#39;s only one IP6 link local table.
Definition: ip6_ll_table.c:25
fib_node_index_t fib_table_entry_update_one_path(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, dpo_proto_t next_hop_proto, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_fib_index, u32 next_hop_weight, fib_mpls_label_t *next_hop_labels, fib_route_path_flags_t path_flags)
Update the entry to have just one path.
Definition: fib_table.c:805
static fib_table_walk_rc_t ip6_ll_table_show_walk(fib_node_index_t fib_entry_index, void *arg)
Definition: ip6_ll_table.c:178
fib_node_index_t ip6_fib_table_lookup_exact_match(u32 fib_index, const ip6_address_t *addr, u32 len)
Definition: ip6_fib.c:223
clib_bihash_24_8_t ip6_hash
Definition: ip6.h:147
vl_api_interface_index_t sw_if_index
Definition: gre.api:53
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
Aggregate type for a prefix.
Definition: fib_types.h:203
enum fib_route_path_flags_t_ fib_route_path_flags_t
Path flags from the control plane.
unsigned int u32
Definition: types.h:88
u16 fp_len
The mask length.
Definition: fib_types.h:207
#define vlib_call_init_function(vm, x)
Definition: init.h:270
int fib_entry_cmp_for_sort(void *i1, void *i2)
Definition: fib_entry.c:1623
u32 * ft_locks
per-source number of locks on the table
Definition: fib_table.h:86
Definition: fib_entry.h:112
Definition: fib_entry.h:117
format_function_t format_vnet_sw_interface_name
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
static clib_error_t * ip6_ll_show_fib(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: ip6_ll_table.c:231
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
static void ip6_ll_prefix_to_fib(const ip6_ll_prefix_t *ilp, fib_prefix_t *fp)
Definition: ip6_ll_table.c:97
vec_header_t h
Definition: buffer.c:322
u32 ip6_ll_fib_get(u32 sw_if_index)
For use in the data plane.
Definition: ip6_ll_table.c:28
u32 fib_table_get_num_entries(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Return the number of entries in the FIB added by a given source.
Definition: fib_table.c:1322
ip6_main_t ip6_main
Definition: ip6_forward.c:2784
void fib_table_unlock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Take a reference counting lock on the table.
Definition: fib_table.c:1291
vlib_main_t * vm
Definition: in2out_ed.c:1599
u8 len
Definition: ip_types.api:92
unformat_function_t unformat_ip6_address
Definition: format.h:89
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
u32 flags
Definition: vhost_user.h:248
u8 mask_width
Definition: dhcp.api:204
void fib_table_entry_delete_index(fib_node_index_t fib_entry_index, fib_source_t source)
Delete a FIB entry.
Definition: fib_table.c:910
enum fib_table_walk_rc_t_ fib_table_walk_rc_t
return code controlling how a table walk proceeds
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
u32 ip6_fib_table_create_and_lock(fib_source_t src, fib_table_flags_t flags, u8 *desc)
Definition: ip6_fib.c:113
fib_table_flags_t ft_flags
Table flags.
Definition: fib_table.h:81
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
u32 * ilt_fibs
A vector, indexed by sw_if_index, of unicast IPv6 FIBs.
Definition: ip6_ll_table.h:32
ip6_address_t ilp_addr
the IP6 address
Definition: ip6_ll_types.h:34
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:152
#define ASSERT(truth)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:689
void fib_table_walk(u32 fib_index, fib_protocol_t proto, fib_table_walk_fn_t fn, void *ctx)
Walk all entries in a FIB table N.B: This is NOT safe to deletes.
Definition: fib_table.c:1230
fib_node_index_t * entries
Definition: ip6_ll_table.c:174
u8 * format_fib_source(u8 *s, va_list *args)
Definition: fib_source.c:66
fib_route_path_flags_t frp_flags
flags on the path
Definition: fib_types.h:600
Aggregate type for a prefix in the IPv6 Link-local table.
Definition: ip6_ll_types.h:24
IPv6 ND (seen in the link-local tables)
Definition: fib_source.h:96
ip6_fib_table_instance_t ip6_table[IP6_FIB_NUM_TABLES]
The two FIB tables; fwding and non-fwding.
Definition: ip6.h:174
#define FIB_ENTRY_FORMAT_BRIEF
Definition: fib_entry.h:359
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
A for-us/local path.
Definition: fib_types.h:338
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:1053
u32 ilp_sw_if_index
The interface.
Definition: ip6_ll_types.h:29
void ip6_ll_table_entry_delete(const ip6_ll_prefix_t *ilp)
Delete a IP6 link-local entry.
Definition: ip6_ll_table.c:140
fib_table_t * fib_table_get(fib_node_index_t index, fib_protocol_t proto)
Get a pointer to a FIB table.
Definition: fib_table.c:29
static clib_error_t * ip6_ll_module_init(vlib_main_t *vm)
Definition: ip6_ll_table.c:358
u8 * format_fib_table_name(u8 *s, va_list *ap)
Format the description/name of the table.
Definition: fib_table.c:1334
#define FIB_ENTRY_FORMAT_DETAIL2
Definition: fib_entry.h:361
#define vec_foreach(var, vec)
Vector iterator.
Special sources.
Definition: fib_source.h:42
fib_node_index_t ip6_fib_table_lookup(u32 fib_index, const ip6_address_t *addr, u32 len)
Definition: ip6_fib.c:177
A protocol Independent IP multicast FIB table.
Definition: ip6_ll_table.h:27
static clib_error_t * ip6_lookup_init(vlib_main_t *vm)
Definition: ip6_forward.c:2788
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
Definition: fib_entry.h:119
struct ip6_ll_show_ctx_t_ ip6_ll_show_ctx_t
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:171
A protocol Independent FIB table.
Definition: fib_table.h:71
static int count_routes_in_fib_at_prefix_length(clib_bihash_kv_24_8_t *kvp, void *arg)
Definition: ip6_ll_table.c:215