FD.io VPP  v17.04-9-g99c0734
Vector Packet Processing
ip4_fib.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 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/fib/fib_table.h>
17 #include <vnet/fib/fib_entry.h>
18 #include <vnet/fib/ip4_fib.h>
19 
20 /*
21  * A table of pefixes to be added to tables and the sources for them
22  */
28 
29 static const ip4_fib_table_special_prefix_t ip4_specials[] = {
30  {
31  /* 0.0.0.0/0*/
32  .ift_prefix = {
33  .fp_addr = {
34  .ip4.data_u32 = 0,
35  },
36  .fp_len = 0,
37  .fp_proto = FIB_PROTOCOL_IP4,
38  },
39  .ift_source = FIB_SOURCE_DEFAULT_ROUTE,
40  .ift_flag = FIB_ENTRY_FLAG_DROP,
41  },
42  {
43  /* 0.0.0.0/32*/
44  .ift_prefix = {
45  .fp_addr = {
46  .ip4.data_u32 = 0,
47  },
48  .fp_len = 32,
49  .fp_proto = FIB_PROTOCOL_IP4,
50  },
51  .ift_source = FIB_SOURCE_DEFAULT_ROUTE,
52  .ift_flag = FIB_ENTRY_FLAG_DROP,
53  },
54  {
55  /*
56  * 240.0.0.0/4
57  * drop class E
58  */
59  .ift_prefix = {
60  .fp_addr = {
61  .ip4.data_u32 = 0xf0000000,
62  },
63  .fp_len = 4,
64  .fp_proto = FIB_PROTOCOL_IP4,
65  },
66  .ift_source = FIB_SOURCE_SPECIAL,
67  .ift_flag = FIB_ENTRY_FLAG_DROP,
68 
69  },
70  {
71  /*
72  * 224.0.0.0/4
73  * drop all mcast
74  */
75  .ift_prefix = {
76  .fp_addr = {
77  .ip4.data_u32 = 0xe0000000,
78  },
79  .fp_len = 4,
80  .fp_proto = FIB_PROTOCOL_IP4,
81  },
82  .ift_source = FIB_SOURCE_SPECIAL,
83  .ift_flag = FIB_ENTRY_FLAG_DROP,
84  },
85  {
86  /*
87  * 255.255.255.255/32
88  * drop, but we'll allow it to be usurped by the likes of DHCP
89  */
90  .ift_prefix = {
91  .fp_addr = {
92  .ip4.data_u32 = 0xffffffff,
93  },
94  .fp_len = 32,
95  .fp_proto = FIB_PROTOCOL_IP4,
96  },
97  .ift_source = FIB_SOURCE_DEFAULT_ROUTE,
98  .ift_flag = FIB_ENTRY_FLAG_DROP,
99  }
100 };
101 
102 
103 static u32
105 {
106  fib_table_t *fib_table;
107 
109  memset(fib_table, 0, sizeof(*fib_table));
110 
111  fib_table->ft_proto = FIB_PROTOCOL_IP4;
112  fib_table->ft_index =
113  fib_table->v4.index =
114  (fib_table - ip4_main.fibs);
115 
116  hash_set (ip4_main.fib_index_by_table_id, table_id, fib_table->ft_index);
117 
118  fib_table->ft_table_id =
119  fib_table->v4.table_id =
120  table_id;
121  fib_table->ft_flow_hash_config =
122  fib_table->v4.flow_hash_config =
124  fib_table->v4.fwd_classify_table_index = ~0;
125  fib_table->v4.rev_classify_table_index = ~0;
126 
128 
129  ip4_mtrie_init(&fib_table->v4.mtrie);
130 
131  /*
132  * add the special entries into the new FIB
133  */
134  int ii;
135 
136  for (ii = 0; ii < ARRAY_LEN(ip4_specials); ii++)
137  {
138  fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
139 
140  prefix.fp_addr.ip4.data_u32 =
141  clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
142 
144  &prefix,
145  ip4_specials[ii].ift_source,
146  ip4_specials[ii].ift_flag);
147  }
148 
149  return (fib_table->ft_index);
150 }
151 
152 void
154 {
155  fib_table_t *fib_table = (fib_table_t*)fib;
156  int ii;
157 
158  /*
159  * remove all the specials we added when the table was created.
160  */
161  for (ii = 0; ii < ARRAY_LEN(ip4_specials); ii++)
162  {
163  fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
164 
165  prefix.fp_addr.ip4.data_u32 =
166  clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
167 
169  &prefix,
170  ip4_specials[ii].ift_source);
171  }
172 
173  /*
174  * validate no more routes.
175  */
176  ASSERT(0 == fib_table->ft_total_route_counts);
178  {
179  ASSERT(0 == fib_table->ft_src_route_counts[ii]);
180  }
181 
182  if (~0 != fib_table->ft_table_id)
183  {
185  }
186  pool_put(ip4_main.fibs, fib_table);
187 }
188 
189 
190 u32
192 {
193  u32 index;
194 
195  index = ip4_fib_index_from_table_id(table_id);
196  if (~0 == index)
197  return ip4_create_fib_with_table_id(table_id);
198 
200 
201  return (index);
202 }
203 
204 u32
206 {
207  return (ip4_create_fib_with_table_id(~0));
208 }
209 
210 u32
212 {
213  if (sw_if_index >= vec_len(ip4_main.fib_index_by_sw_if_index))
214  {
215  /*
216  * This is the case for interfaces that are not yet mapped to
217  * a IP table
218  */
219  return (~0);
220  }
221  return (ip4_main.fib_index_by_sw_if_index[sw_if_index]);
222 }
223 
226 {
227  return (ip4_fib_get(fib_index)->flow_hash_config);
228 }
229 
230 /*
231  * ip4_fib_table_lookup_exact_match
232  *
233  * Exact match prefix lookup
234  */
237  const ip4_address_t *addr,
238  u32 len)
239 {
240  uword * hash, * result;
241  u32 key;
242 
243  hash = fib->fib_entry_by_dst_address[len];
244  key = (addr->data_u32 & ip4_main.fib_masks[len]);
245 
246  result = hash_get(hash, key);
247 
248  if (NULL != result) {
249  return (result[0]);
250  }
251  return (FIB_NODE_INDEX_INVALID);
252 }
253 
254 /*
255  * ip4_fib_table_lookup_adj
256  *
257  * Longest prefix match
258  */
259 index_t
261  const ip4_address_t *addr)
262 {
263  fib_node_index_t fei;
264 
265  fei = ip4_fib_table_lookup(fib, addr, 32);
266 
267  if (FIB_NODE_INDEX_INVALID != fei)
268  {
269  const dpo_id_t *dpo;
270 
272 
273  return (dpo->dpoi_index);
274  }
275  return (INDEX_INVALID);
276 }
277 
278 /*
279  * ip4_fib_table_lookup
280  *
281  * Longest prefix match
282  */
285  const ip4_address_t *addr,
286  u32 len)
287 {
288  uword * hash, * result;
289  i32 mask_len;
290  u32 key;
291 
292  for (mask_len = len; mask_len >= 0; mask_len--)
293  {
294  hash = fib->fib_entry_by_dst_address[mask_len];
295  key = (addr->data_u32 & ip4_main.fib_masks[mask_len]);
296 
297  result = hash_get (hash, key);
298 
299  if (NULL != result) {
300  return (result[0]);
301  }
302  }
303  return (FIB_NODE_INDEX_INVALID);
304 }
305 
306 void
308  const ip4_address_t *addr,
309  u32 len,
310  fib_node_index_t fib_entry_index)
311 {
312  uword * hash, * result;
313  u32 key;
314 
315  key = (addr->data_u32 & ip4_main.fib_masks[len]);
316  hash = fib->fib_entry_by_dst_address[len];
317  result = hash_get (hash, key);
318 
319  if (NULL == result) {
320  /*
321  * adding a new entry
322  */
323  if (NULL == hash) {
324  hash = hash_create (32 /* elts */, sizeof (uword));
326  }
327  hash = hash_set(hash, key, fib_entry_index);
328  fib->fib_entry_by_dst_address[len] = hash;
329  }
330  else
331  {
332  ASSERT(0);
333  }
334 }
335 
336 void
338  const ip4_address_t *addr,
339  u32 len)
340 {
341  uword * hash, * result;
342  u32 key;
343 
344  key = (addr->data_u32 & ip4_main.fib_masks[len]);
345  hash = fib->fib_entry_by_dst_address[len];
346  result = hash_get (hash, key);
347 
348  if (NULL == result)
349  {
350  /*
351  * removing a non-existant entry. i'll allow it.
352  */
353  }
354  else
355  {
356  hash_unset(hash, key);
357  }
358 
359  fib->fib_entry_by_dst_address[len] = hash;
360 }
361 
362 void
364  const ip4_address_t *addr,
365  u32 len,
366  const dpo_id_t *dpo)
367 {
368  ip4_fib_mtrie_add_del_route(fib, *addr, len, dpo->dpoi_index, 0); // ADD
369 }
370 
371 void
373  const ip4_address_t *addr,
374  u32 len,
375  const dpo_id_t *dpo)
376 {
377  ip4_fib_mtrie_add_del_route(fib, *addr, len, dpo->dpoi_index, 1); // DELETE
378 }
379 
380 void
383  void *ctx)
384 {
385  int i;
386 
387  for (i = 0; i < ARRAY_LEN (fib->fib_entry_by_dst_address); i++)
388  {
389  uword * hash = fib->fib_entry_by_dst_address[i];
390 
391  if (NULL != hash)
392  {
393  hash_pair_t * p;
394 
395  hash_foreach_pair (p, hash,
396  ({
397  fn(p->value[0], ctx);
398  }));
399  }
400  }
401 }
402 
403 /**
404  * Walk show context
405  */
407 {
410 
411 static int
413  void *arg)
414 {
415  ip4_fib_show_walk_ctx_t *ctx = arg;
416 
417  vec_add1(ctx->ifsw_indicies, fib_entry_index);
418 
419  return (1);
420 }
421 
422 static void
424  vlib_main_t * vm)
425 {
427  .ifsw_indicies = NULL,
428  };
429  fib_node_index_t *fib_entry_index;
430 
434 
435  vec_foreach(fib_entry_index, ctx.ifsw_indicies)
436  {
437  vlib_cli_output(vm, "%U",
439  *fib_entry_index,
441  }
442 
443  vec_free(ctx.ifsw_indicies);
444 }
445 
446 static void
448  vlib_main_t * vm,
449  ip4_address_t *address,
450  u32 mask_len)
451 {
452  vlib_cli_output(vm, "%U",
454  ip4_fib_table_lookup(fib, address, mask_len),
456 }
457 
458 static clib_error_t *
460  unformat_input_t * input,
461  vlib_cli_command_t * cmd)
462 {
463  ip4_main_t * im4 = &ip4_main;
464  fib_table_t * fib_table;
465  int verbose, matching, mtrie;
466  ip4_address_t matching_address;
467  u32 matching_mask = 32;
468  int i, table_id = -1, fib_index = ~0;
469 
470  verbose = 1;
471  matching = 0;
472  mtrie = 0;
474  {
475  if (unformat (input, "brief") || unformat (input, "summary")
476  || unformat (input, "sum"))
477  verbose = 0;
478 
479  else if (unformat (input, "mtrie"))
480  mtrie = 1;
481 
482  else if (unformat (input, "%U/%d",
483  unformat_ip4_address, &matching_address, &matching_mask))
484  matching = 1;
485 
486  else if (unformat (input, "%U", unformat_ip4_address, &matching_address))
487  matching = 1;
488 
489  else if (unformat (input, "table %d", &table_id))
490  ;
491  else if (unformat (input, "index %d", &fib_index))
492  ;
493  else
494  break;
495  }
496 
497  pool_foreach (fib_table, im4->fibs,
498  ({
499  ip4_fib_t *fib = &fib_table->v4;
500 
501  if (table_id >= 0 && table_id != (int)fib->table_id)
502  continue;
503  if (fib_index != ~0 && fib_index != (int)fib->index)
504  continue;
505 
506  vlib_cli_output (vm, "%U, fib_index %d, flow hash: %U",
507  format_fib_table_name, fib->index, FIB_PROTOCOL_IP4,
508  fib->index,
509  format_ip_flow_hash_config, fib->flow_hash_config);
510 
511  /* Show summary? */
512  if (! verbose)
513  {
514  vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count");
515  for (i = 0; i < ARRAY_LEN (fib->fib_entry_by_dst_address); i++)
516  {
517  uword * hash = fib->fib_entry_by_dst_address[i];
518  uword n_elts = hash_elts (hash);
519  if (n_elts > 0)
520  vlib_cli_output (vm, "%20d%16d", i, n_elts);
521  }
522  continue;
523  }
524 
525  if (!matching)
526  {
527  ip4_fib_table_show_all(fib, vm);
528  }
529  else
530  {
531  ip4_fib_table_show_one(fib, vm, &matching_address, matching_mask);
532  }
533 
534  if (mtrie)
535  vlib_cli_output (vm, "%U", format_ip4_fib_mtrie, &fib->mtrie);
536  }));
537 
538  return 0;
539 }
540 
541 /*?
542  * This command displays the IPv4 FIB Tables (VRF Tables) and the route
543  * entries for each table.
544  *
545  * @note This command will run for a long time when the FIB tables are
546  * comprised of millions of entries. For those senarios, consider displaying
547  * a single table or summary mode.
548  *
549  * @cliexpar
550  * Example of how to display all the IPv4 FIB tables:
551  * @cliexstart{show ip fib}
552  * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
553  * 0.0.0.0/0
554  * unicast-ip4-chain
555  * [@0]: dpo-load-balance: [index:0 buckets:1 uRPF:0 to:[0:0]]
556  * [0] [@0]: dpo-drop ip6
557  * 0.0.0.0/32
558  * unicast-ip4-chain
559  * [@0]: dpo-load-balance: [index:1 buckets:1 uRPF:1 to:[0:0]]
560  * [0] [@0]: dpo-drop ip6
561  * 6.0.1.2/32
562  * unicast-ip4-chain
563  * [@0]: dpo-load-balance: [index:30 buckets:1 uRPF:29 to:[0:0]]
564  * [0] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
565  * 7.0.0.1/32
566  * unicast-ip4-chain
567  * [@0]: dpo-load-balance: [index:31 buckets:4 uRPF:30 to:[0:0]]
568  * [0] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
569  * [1] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
570  * [2] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
571  * [3] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
572  * 224.0.0.0/8
573  * unicast-ip4-chain
574  * [@0]: dpo-load-balance: [index:3 buckets:1 uRPF:3 to:[0:0]]
575  * [0] [@0]: dpo-drop ip6
576  * 240.0.0.0/8
577  * unicast-ip4-chain
578  * [@0]: dpo-load-balance: [index:2 buckets:1 uRPF:2 to:[0:0]]
579  * [0] [@0]: dpo-drop ip6
580  * 255.255.255.255/32
581  * unicast-ip4-chain
582  * [@0]: dpo-load-balance: [index:4 buckets:1 uRPF:4 to:[0:0]]
583  * [0] [@0]: dpo-drop ip6
584  * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
585  * 0.0.0.0/0
586  * unicast-ip4-chain
587  * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
588  * [0] [@0]: dpo-drop ip6
589  * 0.0.0.0/32
590  * unicast-ip4-chain
591  * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
592  * [0] [@0]: dpo-drop ip6
593  * 172.16.1.0/24
594  * unicast-ip4-chain
595  * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
596  * [0] [@4]: ipv4-glean: af_packet0
597  * 172.16.1.1/32
598  * unicast-ip4-chain
599  * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
600  * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
601  * 172.16.1.2/32
602  * unicast-ip4-chain
603  * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
604  * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
605  * 172.16.2.0/24
606  * unicast-ip4-chain
607  * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
608  * [0] [@4]: ipv4-glean: af_packet1
609  * 172.16.2.1/32
610  * unicast-ip4-chain
611  * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
612  * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
613  * 224.0.0.0/8
614  * unicast-ip4-chain
615  * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
616  * [0] [@0]: dpo-drop ip6
617  * 240.0.0.0/8
618  * unicast-ip4-chain
619  * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
620  * [0] [@0]: dpo-drop ip6
621  * 255.255.255.255/32
622  * unicast-ip4-chain
623  * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
624  * [0] [@0]: dpo-drop ip6
625  * @cliexend
626  * Example of how to display a single IPv4 FIB table:
627  * @cliexstart{show ip fib table 7}
628  * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
629  * 0.0.0.0/0
630  * unicast-ip4-chain
631  * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
632  * [0] [@0]: dpo-drop ip6
633  * 0.0.0.0/32
634  * unicast-ip4-chain
635  * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
636  * [0] [@0]: dpo-drop ip6
637  * 172.16.1.0/24
638  * unicast-ip4-chain
639  * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
640  * [0] [@4]: ipv4-glean: af_packet0
641  * 172.16.1.1/32
642  * unicast-ip4-chain
643  * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
644  * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
645  * 172.16.1.2/32
646  * unicast-ip4-chain
647  * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
648  * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
649  * 172.16.2.0/24
650  * unicast-ip4-chain
651  * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
652  * [0] [@4]: ipv4-glean: af_packet1
653  * 172.16.2.1/32
654  * unicast-ip4-chain
655  * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
656  * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
657  * 224.0.0.0/8
658  * unicast-ip4-chain
659  * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
660  * [0] [@0]: dpo-drop ip6
661  * 240.0.0.0/8
662  * unicast-ip4-chain
663  * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
664  * [0] [@0]: dpo-drop ip6
665  * 255.255.255.255/32
666  * unicast-ip4-chain
667  * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
668  * [0] [@0]: dpo-drop ip6
669  * @cliexend
670  * Example of how to display a summary of all IPv4 FIB tables:
671  * @cliexstart{show ip fib summary}
672  * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
673  * Prefix length Count
674  * 0 1
675  * 8 2
676  * 32 4
677  * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
678  * Prefix length Count
679  * 0 1
680  * 8 2
681  * 24 2
682  * 32 4
683  * @cliexend
684  ?*/
685 /* *INDENT-OFF* */
686 VLIB_CLI_COMMAND (ip4_show_fib_command, static) = {
687  .path = "show ip fib",
688  .short_help = "show ip fib [summary] [table <table-id>] [index <fib-id>] [<ip4-addr>[/<mask>]] [mtrie]",
689  .function = ip4_show_fib,
690 };
691 /* *INDENT-ON* */
u8 * format_fib_entry(u8 *s, va_list *args)
Definition: fib_entry.c:93
#define hash_set(h, key, value)
Definition: hash.h:254
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:343
fib_protocol_t ft_proto
Which protocol this table serves.
Definition: fib_table.h:46
#define hash_unset(h, key)
Definition: hash.h:260
void fib_table_lock(u32 fib_index, fib_protocol_t proto)
Release a reference counting lock on the table.
Definition: fib_table.c:1072
u32 table_id
Definition: ip4.h:57
#define FIB_ENTRY_FORMAT_DETAIL
Definition: fib_entry.h:428
#define NULL
Definition: clib.h:55
int(* fib_table_walk_fn_t)(fib_node_index_t fei, void *ctx)
Call back function when walking entries in a FIB table.
Definition: fib_table.h:733
const dpo_id_t * fib_entry_contribute_ip_forwarding(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:432
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:41
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
static clib_error_t * ip4_show_fib(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: ip4_fib.c:459
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:120
static void ip4_fib_table_show_all(ip4_fib_t *fib, vlib_main_t *vm)
Definition: ip4_fib.c:423
static u32 ip4_create_fib_with_table_id(u32 table_id)
Definition: ip4_fib.c:104
u32 index
Definition: ip4.h:60
uword value[0]
Definition: hash.h:164
u32 fwd_classify_table_index
Definition: ip4.h:66
fib_entry_flag_t ift_flag
Definition: ip4_fib.c:26
u32 ip4_fib_table_get_index_for_sw_if_index(u32 sw_if_index)
Definition: ip4_fib.c:211
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:376
unformat_function_t unformat_ip4_address
Definition: format.h:76
void fib_table_entry_special_remove(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source)
Remove a &#39;special&#39; entry from the FIB.
Definition: fib_table.c:388
int i32
Definition: types.h:81
void ip4_fib_mtrie_add_del_route(ip4_fib_t *fib, ip4_address_t dst_address, u32 dst_address_length, u32 adj_index, u32 is_del)
Definition: ip4_mtrie.c:387
Aggregrate type for a prefix.
Definition: fib_types.h:160
static void hash_set_flags(void *v, uword flags)
Definition: hash.h:152
u32 ip4_fib_table_find_or_create_and_lock(u32 table_id)
Get or create an IPv4 fib.
Definition: ip4_fib.c:191
static int ip4_fib_show_walk_cb(fib_node_index_t fib_entry_index, void *arg)
Definition: ip4_fib.c:412
u32 rev_classify_table_index
Definition: ip4.h:67
void ip4_fib_table_destroy(ip4_fib_t *fib)
Definition: ip4_fib.c:153
void ip4_fib_table_entry_remove(ip4_fib_t *fib, const ip4_address_t *addr, u32 len)
Definition: ip4_fib.c:337
int fib_entry_cmp_for_sort(void *i1, void *i2)
Definition: fib_entry.c:1408
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:146
#define hash_get(h, key)
Definition: hash.h:248
uword * fib_entry_by_dst_address[33]
Definition: ip4.h:51
uword * fib_index_by_table_id
Hash table mapping table id to fib index.
Definition: ip4.h:130
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:183
struct _unformat_input_t unformat_input_t
flow_hash_config_t ip4_fib_table_get_flow_hash_config(u32 fib_index)
Definition: ip4_fib.c:225
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:241
u32 ft_total_route_counts
Total route counters.
Definition: fib_table.h:76
void ip4_fib_table_fwding_dpo_update(ip4_fib_t *fib, const ip4_address_t *addr, u32 len, const dpo_id_t *dpo)
Definition: ip4_fib.c:363
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
Definition: pool.h:169
fib_node_index_t ip4_fib_table_lookup(const ip4_fib_t *fib, const ip4_address_t *addr, u32 len)
The IPv4 FIB.
Definition: ip4_fib.c:284
fib_node_index_t fib_table_entry_special_add(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags)
Add a &#39;special&#39; entry to the FIB.
Definition: fib_table.c:369
void ip4_fib_table_entry_insert(ip4_fib_t *fib, const ip4_address_t *addr, u32 len, fib_node_index_t fib_entry_index)
Definition: ip4_fib.c:307
fib_node_index_t ft_index
Index into FIB vector.
Definition: fib_table.h:61
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
void ip4_mtrie_init(ip4_fib_mtrie_t *m)
Definition: ip4_mtrie.c:376
u32 ft_table_id
Table ID (hash key) for this FIB.
Definition: fib_table.h:56
vlib_main_t * vm
Definition: buffer.c:276
u32 ft_flow_hash_config
flow hash configuration
Definition: fib_table.h:66
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:340
#define FOR_EACH_FIB_SOURCE(_item)
Definition: fib_entry.h:156
static ip4_fib_t * ip4_fib_get(u32 index)
Get the FIB at the given index.
Definition: ip4_fib.h:80
Definition: ip4.h:48
fib_node_index_t * ifsw_indicies
Definition: ip4_fib.c:408
Definition: fib_entry.h:230
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
static u32 ip4_fib_index_from_table_id(u32 table_id)
Definition: ip4_fib.h:110
#define ARRAY_LEN(x)
Definition: clib.h:59
void ip4_fib_table_walk(ip4_fib_t *fib, fib_table_walk_fn_t fn, void *ctx)
Walk all entries in a FIB table N.B: This is NOT safe to deletes.
Definition: ip4_fib.c:381
enum fib_entry_flag_t_ fib_entry_flag_t
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
#define hash_create(elts, value_bytes)
Definition: hash.h:658
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
The default route source.
Definition: fib_entry.h:121
IPv4 main type.
Definition: ip4.h:107
Walk show context.
Definition: ip4_fib.c:406
u32 ft_src_route_counts[FIB_SOURCE_MAX]
Per-source route counters.
Definition: fib_table.h:71
#define IP_FLOW_HASH_DEFAULT
Default: 5-tuple without the "reverse" bit.
Definition: lookup.h:152
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:165
u64 uword
Definition: types.h:112
#define FIB_ENTRY_FORMAT_BRIEF
Definition: fib_entry.h:427
format_function_t format_ip4_fib_mtrie
Definition: ip4_mtrie.h:160
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:162
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:29
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
#define hash_foreach_pair(p, v, body)
Iterate over hash pairs.
Definition: hash.h:349
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:47
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:960
ip4_fib_mtrie_t mtrie
Definition: ip4.h:54
Special sources.
Definition: fib_entry.h:40
flow_hash_config_t flow_hash_config
Definition: ip4.h:63
ip4_fib_t v4
Definition: fib_table.h:38
static void ip4_fib_table_show_one(ip4_fib_t *fib, vlib_main_t *vm, ip4_address_t *address, u32 mask_len)
Definition: ip4_fib.c:447
struct ip4_fib_table_special_prefix_t_ ip4_fib_table_special_prefix_t
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1117
struct fib_table_t_ * fibs
Vector of FIBs.
Definition: ip4.h:112
#define vec_foreach(var, vec)
Vector iterator.
index_t ip4_fib_table_lookup_lb(ip4_fib_t *fib, const ip4_address_t *addr)
Definition: ip4_fib.c:260
void ip4_fib_table_fwding_dpo_remove(ip4_fib_t *fib, const ip4_address_t *addr, u32 len, const dpo_id_t *dpo)
Definition: ip4_fib.c:372
vhost_vring_addr_t addr
Definition: vhost-user.h:84
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
u32 ip4_fib_table_create_and_lock(void)
Definition: ip4_fib.c:205
#define HASH_FLAG_NO_AUTO_SHRINK
Definition: hash.h:64
fib_node_index_t ip4_fib_table_lookup_exact_match(const ip4_fib_t *fib, const ip4_address_t *addr, u32 len)
Definition: ip4_fib.c:236
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:577
struct ip4_fib_show_walk_ctx_t_ ip4_fib_show_walk_ctx_t
Walk show context.
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:971
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:169
A protocol Independent FIB table.
Definition: fib_table.h:29
u32 fib_masks[33]
Definition: ip4.h:117