FD.io VPP  v19.08.3-2-gbabecb413
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 void
215 count_routes_in_fib_at_prefix_length (BVT (clib_bihash_kv) * kvp, void *arg)
216 {
218  int mask_width;
219 
220  if ((kvp->key[2] >> 32) != ap->fib_index)
221  return;
222 
223  mask_width = kvp->key[2] & 0xFF;
224 
226 }
227 
228 static clib_error_t *
230  unformat_input_t * input, vlib_cli_command_t * cmd)
231 {
233  ip6_main_t *im6 = &ip6_main;
234  fib_table_t *fib_table;
235  int verbose, matching;
236  ip6_address_t matching_address;
237  u32 mask_len = 128;
238  u32 sw_if_index = ~0;
239  int detail = 0;
240  vnet_main_t *vnm = vnet_get_main ();
241  u32 fib_index;
242 
243  verbose = 1;
244  matching = 0;
245 
247  {
248  if (unformat (input, "brief") ||
249  unformat (input, "summary") || unformat (input, "sum"))
250  verbose = 0;
251 
252  else if (unformat (input, "detail") || unformat (input, "det"))
253  detail = 1;
254 
255  else if (unformat (input, "%U/%d",
256  unformat_ip6_address, &matching_address, &mask_len))
257  matching = 1;
258 
259  else
260  if (unformat (input, "%U", unformat_ip6_address, &matching_address))
261  matching = 1;
262  else if (unformat (input, "%U",
263  unformat_vnet_sw_interface, vnm, &sw_if_index))
264  ;
265  else
266  break;
267  }
268 
269  vec_foreach_index (sw_if_index, ip6_ll_table.ilt_fibs)
270  {
271  fib_source_t source;
272  u8 *s = NULL;
273 
274  fib_index = ip6_ll_table.ilt_fibs[sw_if_index];
275 
276  if (0 == fib_index)
277  continue;
278 
279  fib_table = fib_table_get (fib_index, FIB_PROTOCOL_IP6);
280 
281  if (!(fib_table->ft_flags & FIB_TABLE_FLAG_IP6_LL))
282  continue;
283 
284  s = format (s, "%U, fib_index:%d, locks:[",
285  format_fib_table_name, fib_index,
286  FIB_PROTOCOL_IP6, fib_index);
287  FOR_EACH_FIB_SOURCE (source)
288  {
289  if (0 != fib_table->ft_locks[source])
290  {
291  s = format (s, "%U:%d, ",
292  format_fib_source, source, fib_table->ft_locks[source]);
293  }
294  }
295  s = format (s, "]");
296  vlib_cli_output (vm, "%v", s);
297  vec_free (s);
298 
299  /* Show summary? */
300  if (!verbose)
301  {
302  clib_bihash_24_8_t *h =
304  int len;
305 
306  vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count");
307 
308  clib_memset (ca, 0, sizeof (*ca));
309  ca->fib_index = fib_index;
310 
311  clib_bihash_foreach_key_value_pair_24_8
313 
314  for (len = 128; len >= 0; len--)
315  {
316  if (ca->count_by_prefix_length[len])
317  vlib_cli_output (vm, "%=20d%=16lld",
318  len, ca->count_by_prefix_length[len]);
319  }
320  continue;
321  }
322 
323  if (!matching)
324  {
325  ip6_ll_table_show_all (vm, fib_index);
326  }
327  else
328  {
329  if (~0 == sw_if_index)
330  {
331  vlib_cli_output (vm, "specify the interface");
332  }
333  else
334  {
335  ip6_ll_prefix_t ilp = {
336  .ilp_addr = matching_address,
337  .ilp_sw_if_index = sw_if_index,
338  };
339  ip6_ll_table_show_one (vm, &ilp, detail);
340  }
341  }
342  };
343 
344  return 0;
345 }
346 
347 /* *INDENT-OFF* */
348 VLIB_CLI_COMMAND (ip6_show_fib_command, static) = {
349  .path = "show ip6-ll",
350  .short_help = "show ip6-ll [summary] [interface] [<ip6-addr>[/<width>]] [detail]",
351  .function = ip6_ll_show_fib,
352 };
353 /* *INDENT-ON* */
354 
355 static clib_error_t *
357 {
358  clib_error_t *error;
359 
361 
362  return (error);
363 }
364 
366 
367 /*
368  * fd.io coding-style-patch-verification: ON
369  *
370  * Local Variables:
371  * eval: (c-set-style "gnu")
372  * End:
373  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
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:141
#define vec_foreach_index(var, v)
Iterate over vector indices.
Continue on to the next entry.
Definition: fib_table.h:868
static void count_routes_in_fib_at_prefix_length(BVT(clib_bihash_kv) *kvp, void *arg)
Definition: ip6_ll_table.c:215
u32 flags
Definition: vhost_user.h:141
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:485
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:134
#define FIB_ENTRY_FORMAT_DETAIL
Definition: fib_entry.h:523
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:739
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:522
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_mprefix_t prefix
Definition: ip.api:456
Definition: fib_entry.h:283
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:788
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:218
clib_bihash_24_8_t ip6_hash
Definition: ip6.h:145
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static BVT(clib_bihash)
Definition: adj_nbr.c:28
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:1631
Definition: fib_entry.h:281
Definition: fib_entry.h:286
IPv6 ND (seen in the link-local tables)
Definition: fib_entry.h:107
format_function_t format_vnet_sw_interface_name
enum fib_source_t_ fib_source_t
The different sources that can create a route.
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
u16 ft_locks[FIB_TABLE_N_LOCKS]
per-source number of locks on the table
Definition: fib_table.h:84
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:229
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
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:1288
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:1253
u8 len
Definition: ip_types.api:90
unformat_function_t unformat_ip6_address
Definition: format.h:91
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
vlib_main_t * vm
Definition: buffer.c:323
u8 * format_fib_source(u8 *s, va_list *args)
Definition: fib_entry.c:101
uint32_t mask_width(const boost::asio::ip::address &addr)
Get the prefix mask length of a host route from the boost address.
Definition: prefix.cpp:273
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:893
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:341
u32 ip6_fib_table_create_and_lock(fib_source_t src, fib_table_flags_t flags, u8 *desc)
Definition: ip6_fib.c:113
#define FOR_EACH_FIB_SOURCE(_item)
Definition: fib_entry.h:191
fib_table_flags_t ft_flags
Table flags.
Definition: fib_table.h:79
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:161
#define ASSERT(truth)
ip6_main_t ip6_main
Definition: ip6_forward.c:2805
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:1213
fib_node_index_t * entries
Definition: ip6_ll_table.c:174
fib_route_path_flags_t frp_flags
flags on the path
Definition: fib_types.h:595
Aggregate type for a prefix in the IPv6 Link-local table.
Definition: ip6_ll_types.h:24
ip6_fib_table_instance_t ip6_table[IP6_FIB_NUM_TABLES]
The two FIB tables; fwding and non-fwding.
Definition: ip6.h:172
#define FIB_ENTRY_FORMAT_BRIEF
Definition: fib_entry.h:522
#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:983
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
Special sources.
Definition: fib_entry.h:45
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:27
static clib_error_t * ip6_ll_module_init(vlib_main_t *vm)
Definition: ip6_ll_table.c:356
u8 * format_fib_table_name(u8 *s, va_list *ap)
Format the description/name of the table.
Definition: fib_table.c:1300
#define FIB_ENTRY_FORMAT_DETAIL2
Definition: fib_entry.h:524
#define vec_foreach(var, vec)
Vector iterator.
fib_node_index_t ip6_fib_table_lookup(u32 fib_index, const ip6_address_t *addr, u32 len)
Definition: ip6_fib.c:172
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:2809
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:288
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:772
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:69