FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
lookup.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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  * ip/ip_lookup.c: ip4/6 adjacency and lookup table managment
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #include <vnet/ip/ip.h>
41 #include <vnet/adj/adj.h>
42 #include <vnet/fib/fib_table.h>
43 #include <vnet/fib/ip4_fib.h>
44 #include <vnet/fib/ip6_fib.h>
45 #include <vnet/mpls/mpls.h>
46 #include <vnet/mfib/mfib_table.h>
47 #include <vnet/dpo/drop_dpo.h>
48 #include <vnet/dpo/classify_dpo.h>
49 #include <vnet/dpo/punt_dpo.h>
50 #include <vnet/dpo/receive_dpo.h>
51 #include <vnet/dpo/ip_null_dpo.h>
52 #include <vnet/dpo/l3_proxy_dpo.h>
53 #include <vnet/ip/ip6_neighbor.h>
54 #include <vnet/ethernet/arp.h>
55 
56 /**
57  * @file
58  * @brief IPv4 and IPv6 adjacency and lookup table managment.
59  *
60  */
61 
65  void *addr_fib,
66  u32 address_length,
67  u32 is_del, u32 * result_if_address_index)
68 {
69  vnet_main_t *vnm = vnet_get_main ();
70  ip_interface_address_t *a, *prev, *next;
71  uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
72 
74  sw_if_index, ~0);
75  a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
76 
77  /* Verify given length. */
78  if ((a && (address_length != a->address_length)) ||
79  (address_length == 0) ||
80  (lm->is_ip6 && address_length > 128) ||
81  (!lm->is_ip6 && address_length > 32))
82  {
83  vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
84  return clib_error_create
85  ("%U wrong length (expected %d) for interface %U",
86  lm->format_address_and_length, addr_fib,
87  address_length, a ? a->address_length : -1,
88  format_vnet_sw_if_index_name, vnm, sw_if_index);
89  }
90 
91  if (is_del)
92  {
93  if (!a)
94  {
95  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
96  vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
97  return clib_error_create ("%U not found for interface %U",
99  addr_fib, address_length,
101  }
102 
103  if (a->prev_this_sw_interface != ~0)
104  {
105  prev =
109  }
110  if (a->next_this_sw_interface != ~0)
111  {
112  next =
116 
117  if (a->prev_this_sw_interface == ~0)
120  }
121 
122  if ((a->next_this_sw_interface == ~0)
123  && (a->prev_this_sw_interface == ~0))
125 
127  /* old_value */ 0);
128  pool_put (lm->if_address_pool, a);
129 
130  if (result_if_address_index)
131  *result_if_address_index = ~0;
132  }
133 
134  else if (!a)
135  {
136  u32 pi; /* previous index */
137  u32 ai;
138  u32 hi; /* head index */
139 
140  pool_get (lm->if_address_pool, a);
141  clib_memset (a, ~0, sizeof (a[0]));
142  ai = a - lm->if_address_pool;
143 
145  prev = 0;
146  while (pi != (u32) ~ 0)
147  {
148  prev = pool_elt_at_index (lm->if_address_pool, pi);
149  pi = prev->next_this_sw_interface;
150  }
151  pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
152 
154  addr_fib, ai, /* old_value */ 0);
155  a->address_length = address_length;
157  a->flags = 0;
158  a->prev_this_sw_interface = pi;
159  a->next_this_sw_interface = ~0;
160  if (prev)
161  prev->next_this_sw_interface = ai;
162 
164  (hi != ~0) ? hi : ai;
165  if (result_if_address_index)
166  *result_if_address_index = ai;
167  }
168  else
169  {
170  if (sw_if_index != a->sw_if_index)
171  {
172  if (result_if_address_index)
173  *result_if_address_index = ~0;
174  vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
175  return clib_error_create
176  ("Prefix %U already found on interface %U",
177  lm->format_address_and_length, addr_fib, address_length,
179  }
180 
181  if (result_if_address_index)
182  *result_if_address_index = a - lm->if_address_pool;
183  }
184 
185  return /* no error */ 0;
186 }
187 
188 static clib_error_t *
190 {
192  lookup_main.if_address_pool_index_by_sw_if_index,
193  sw_if_index, ~0);
195  lookup_main.if_address_pool_index_by_sw_if_index,
196  sw_if_index, ~0);
197 
198  return (NULL);
199 }
200 
202 
203 void
205 {
206  if (!lm->fib_result_n_bytes)
207  lm->fib_result_n_bytes = sizeof (uword);
208 
209  lm->is_ip6 = is_ip6;
210  if (is_ip6)
211  {
214  sizeof (ip6_address_fib_t));
215  }
216  else
217  {
220  sizeof (ip4_address_fib_t));
221  }
222 
223  {
224  int i;
225 
226  /* Setup all IP protocols to be punted and builtin-unknown. */
227  for (i = 0; i < 256; i++)
228  {
231  }
232 
234  lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
235  IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
236  lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
238  lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
239  IP_PROTOCOL_ICMP] =
241  }
242 }
243 
244 u8 *
245 format_ip_flow_hash_config (u8 * s, va_list * args)
246 {
247  flow_hash_config_t flow_hash_config = va_arg (*args, u32);
248 
249 #define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
251 #undef _
252 
253  return s;
254 }
255 
256 u8 *
257 format_ip_adjacency_packet_data (u8 * s, va_list * args)
258 {
259  u32 adj_index = va_arg (*args, u32);
260  u8 *packet_data = va_arg (*args, u8 *);
261  u32 n_packet_data_bytes = va_arg (*args, u32);
262  ip_adjacency_t *adj = adj_get (adj_index);
263 
264  switch (adj->lookup_next_index)
265  {
268  s =
269  format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
270  break;
271 
272  default:
273  break;
274  }
275 
276  return s;
277 }
278 
279 static uword
280 unformat_dpo (unformat_input_t * input, va_list * args)
281 {
282  dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
283  fib_protocol_t fp = va_arg (*args, int);
285 
286  proto = fib_proto_to_dpo (fp);
287 
288  if (unformat (input, "drop"))
289  dpo_copy (dpo, drop_dpo_get (proto));
290  else if (unformat (input, "punt"))
291  dpo_copy (dpo, punt_dpo_get (proto));
292  else if (unformat (input, "local"))
293  receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
294  else if (unformat (input, "null-send-unreach"))
296  else if (unformat (input, "null-send-prohibit"))
298  else if (unformat (input, "null"))
300  else if (unformat (input, "classify"))
301  {
303 
304  if (!unformat (input, "%d", &classify_table_index))
305  {
306  clib_warning ("classify adj must specify table index");
307  return 0;
308  }
309 
310  dpo_set (dpo, DPO_CLASSIFY, proto,
311  classify_dpo_create (proto, classify_table_index));
312  }
313  else
314  return 0;
315 
316  return 1;
317 }
318 
319 const ip46_address_t zero_addr = {
320  .as_u64 = {
321  0, 0},
322 };
323 
324 static clib_error_t *
326  unformat_input_t * main_input, vlib_cli_command_t * cmd)
327 {
328  unformat_input_t _line_input, *line_input = &_line_input;
329  u32 table_id, is_del, fib_index, payload_proto;
330  dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
331  fib_route_path_t *rpaths = NULL, rpath;
332  fib_prefix_t *prefixs = NULL, pfx;
333  clib_error_t *error = NULL;
334  f64 count;
335  int i;
336 
337  is_del = 0;
338  table_id = 0;
339  count = 1;
340  clib_memset (&pfx, 0, sizeof (pfx));
341 
342  /* Get a line of input. */
343  if (!unformat_user (main_input, unformat_line_input, line_input))
344  return 0;
345 
346  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
347  {
348  clib_memset (&rpath, 0, sizeof (rpath));
349 
350  if (unformat (line_input, "table %d", &table_id))
351  ;
352  else if (unformat (line_input, "count %f", &count))
353  ;
354 
355  else if (unformat (line_input, "%U/%d",
356  unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
357  {
358  payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
359  vec_add1 (prefixs, pfx);
360  }
361  else if (unformat (line_input, "%U/%d",
362  unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
363  {
364  payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
365  vec_add1 (prefixs, pfx);
366  }
367  else if (unformat (line_input, "via %U",
368  unformat_fib_route_path, &rpath, &payload_proto))
369  {
370  vec_add1 (rpaths, rpath);
371  }
372  else if (vec_len (prefixs) > 0 &&
373  unformat (line_input, "via %U",
374  unformat_dpo, &dpo, prefixs[0].fp_proto))
375  {
376  vec_add1 (dpos, dpo);
377  }
378  else if (unformat (line_input, "del"))
379  is_del = 1;
380  else if (unformat (line_input, "add"))
381  is_del = 0;
382  else
383  {
384  error = unformat_parse_error (line_input);
385  goto done;
386  }
387  }
388 
389  if (vec_len (prefixs) == 0)
390  {
391  error =
392  clib_error_return (0, "expected ip4/ip6 destination address/length.");
393  goto done;
394  }
395 
396  if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
397  {
398  error = clib_error_return (0, "expected paths.");
399  goto done;
400  }
401 
402  if (~0 == table_id)
403  {
404  /*
405  * if no table_id is passed we will manipulate the default
406  */
407  fib_index = 0;
408  }
409  else
410  {
411  fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
412 
413  if (~0 == fib_index)
414  {
415  error = clib_error_return (0, "Nonexistent table id %d", table_id);
416  goto done;
417  }
418  }
419 
420  for (i = 0; i < vec_len (prefixs); i++)
421  {
422  if (is_del && 0 == vec_len (rpaths))
423  {
424  fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
425  }
426  else if (!is_del && 1 == vec_len (dpos))
427  {
429  &prefixs[i],
432  &dpos[0]);
433  dpo_reset (&dpos[0]);
434  }
435  else if (vec_len (dpos) > 0)
436  {
437  error =
439  "Load-balancing over multiple special adjacencies is unsupported");
440  goto done;
441  }
442  else if (0 < vec_len (rpaths))
443  {
444  u32 k, n, incr;
445  ip46_address_t dst = prefixs[i].fp_addr;
446  f64 t[2];
447  n = count;
448  t[0] = vlib_time_now (vm);
449  incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
450  prefixs[i].fp_len);
451 
452  for (k = 0; k < n; k++)
453  {
454  fib_prefix_t rpfx = {
455  .fp_len = prefixs[i].fp_len,
456  .fp_proto = prefixs[i].fp_proto,
457  .fp_addr = dst,
458  };
459 
460  if (is_del)
461  fib_table_entry_path_remove2 (fib_index,
462  &rpfx, FIB_SOURCE_CLI, rpaths);
463  else
464  fib_table_entry_path_add2 (fib_index,
465  &rpfx,
467  FIB_ENTRY_FLAG_NONE, rpaths);
468 
469  if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
470  {
471  dst.ip4.as_u32 =
472  clib_host_to_net_u32 (incr +
473  clib_net_to_host_u32 (dst.
474  ip4.as_u32));
475  }
476  else
477  {
478  int bucket = (incr < 64 ? 0 : 1);
479  dst.ip6.as_u64[bucket] =
480  clib_host_to_net_u64 (incr +
481  clib_net_to_host_u64 (dst.ip6.as_u64
482  [bucket]));
483  }
484  }
485 
486  t[1] = vlib_time_now (vm);
487  if (count > 1)
488  vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
489  }
490  else
491  {
492  error = clib_error_return (0, "Don't understand what you want...");
493  goto done;
494  }
495  }
496 
497 done:
498  vec_free (dpos);
499  vec_free (prefixs);
500  vec_free (rpaths);
501  unformat_free (line_input);
502  return error;
503 }
504 
505 clib_error_t *
507  unformat_input_t * main_input,
508  vlib_cli_command_t * cmd, fib_protocol_t fproto)
509 {
510  unformat_input_t _line_input, *line_input = &_line_input;
511  clib_error_t *error = NULL;
512  u32 table_id, is_add;
513  u8 *name = NULL;
514 
515  is_add = 1;
516  table_id = ~0;
517 
518  /* Get a line of input. */
519  if (!unformat_user (main_input, unformat_line_input, line_input))
520  return 0;
521 
522  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
523  {
524  if (unformat (line_input, "%d", &table_id))
525  ;
526  else if (unformat (line_input, "del"))
527  is_add = 0;
528  else if (unformat (line_input, "add"))
529  is_add = 1;
530  else if (unformat (line_input, "name %s", &name))
531  ;
532  else
533  {
534  error = unformat_parse_error (line_input);
535  goto done;
536  }
537  }
538 
539  if (~0 == table_id)
540  {
541  error = clib_error_return (0, "No table id");
542  goto done;
543  }
544  else if (0 == table_id)
545  {
546  error = clib_error_return (0, "Can't change the default table");
547  goto done;
548  }
549  else
550  {
551  if (is_add)
552  {
553  ip_table_create (fproto, table_id, 0, name);
554  }
555  else
556  {
557  ip_table_delete (fproto, table_id, 0);
558  }
559  }
560 
561 done:
562  unformat_free (line_input);
563  return error;
564 }
565 
566 clib_error_t *
568  unformat_input_t * main_input, vlib_cli_command_t * cmd)
569 {
570  return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
571 }
572 
573 clib_error_t *
575  unformat_input_t * main_input, vlib_cli_command_t * cmd)
576 {
577  return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
578 }
579 
580 /* *INDENT-OFF* */
581 VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
582  .path = "ip",
583  .short_help = "Internet protocol (IP) commands",
584 };
585 /* *INDENT-ON* */
586 
587 /* *INDENT-OFF* */
588 VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
589  .path = "ip6",
590  .short_help = "Internet protocol version 6 (IPv6) commands",
591 };
592 /* *INDENT-ON* */
593 
594 /* *INDENT-OFF* */
595 VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
596  .path = "show ip",
597  .short_help = "Internet protocol (IP) show commands",
598 };
599 /* *INDENT-ON* */
600 
601 /* *INDENT-OFF* */
602 VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
603  .path = "show ip6",
604  .short_help = "Internet protocol version 6 (IPv6) show commands",
605 };
606 /* *INDENT-ON* */
607 
608 /*?
609  * This command is used to add or delete IPv4 or IPv6 routes. All
610  * IP Addresses ('<em><dst-ip-addr>/<width></em>',
611  * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
612  * can be IPv4 or IPv6, but all must be of the same form in a single
613  * command. To display the current set of routes, use the commands
614  * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
615  *
616  * @cliexpar
617  * Example of how to add a straight forward static route:
618  * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
619  * Example of how to delete a straight forward static route:
620  * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
621  * Mainly for route add/del performance testing, one can add or delete
622  * multiple routes by adding 'count N' to the previous item:
623  * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0}
624  * Add multiple routes for the same destination to create equal-cost multipath:
625  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
626  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
627  * For unequal-cost multipath, specify the desired weights. This
628  * combination of weights results in 3/4 of the traffic following the
629  * second path, 1/4 following the first path:
630  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
631  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
632  * To add a route to a particular FIB table (VRF), use:
633  * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
634  ?*/
635 /* *INDENT-OFF* */
636 VLIB_CLI_COMMAND (ip_route_command, static) = {
637  .path = "ip route",
638  .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] via [next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]",
639  .function = vnet_ip_route_cmd,
640  .is_mp_safe = 1,
641 };
642 
643 /* *INDENT-ON* */
644 /*?
645  * This command is used to add or delete IPv4 Tables. All
646  * Tables must be explicitly added before that can be used. Creating a
647  * table will add both unicast and multicast FIBs
648  *
649  ?*/
650 /* *INDENT-OFF* */
651 VLIB_CLI_COMMAND (ip4_table_command, static) = {
652  .path = "ip table",
653  .short_help = "ip table [add|del] <table-id>",
654  .function = vnet_ip4_table_cmd,
655  .is_mp_safe = 1,
656 };
657 /* *INDENT-ON* */
658 
659 /* *INDENT-ON* */
660 /*?
661  * This command is used to add or delete IPv4 Tables. All
662  * Tables must be explicitly added before that can be used. Creating a
663  * table will add both unicast and multicast FIBs
664  *
665  ?*/
666 /* *INDENT-OFF* */
667 VLIB_CLI_COMMAND (ip6_table_command, static) = {
668  .path = "ip6 table",
669  .short_help = "ip6 table [add|del] <table-id>",
670  .function = vnet_ip6_table_cmd,
671  .is_mp_safe = 1,
672 };
673 
674 static clib_error_t *
676  unformat_input_t * input,
677  vlib_cli_command_t * cmd,
678  fib_protocol_t fproto)
679 {
680  vnet_main_t *vnm = vnet_get_main ();
681  clib_error_t *error = 0;
683  int rv;
684 
685  sw_if_index = ~0;
686 
687  if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
688  {
689  error = clib_error_return (0, "unknown interface `%U'",
690  format_unformat_error, input);
691  goto done;
692  }
693 
694  if (unformat (input, "%d", &table_id))
695  ;
696  else
697  {
698  error = clib_error_return (0, "expected table id `%U'",
699  format_unformat_error, input);
700  goto done;
701  }
702 
703  rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
704 
705  if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
706  {
707  error = clib_error_return (0, "IP addresses are still present on %U",
709  vnet_get_main(),
710  sw_if_index);
711  }
712  else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
713  {
714  error = clib_error_return (0, "no such table %d", table_id);
715  }
716  else if (0 != rv)
717  {
718  error = clib_error_return (0, "unknown error");
719  }
720 
721  done:
722  return error;
723 }
724 
725 static clib_error_t *
727  unformat_input_t * input,
728  vlib_cli_command_t * cmd)
729 {
730  return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
731 }
732 
733 static clib_error_t *
735  unformat_input_t * input,
736  vlib_cli_command_t * cmd)
737 {
738  return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
739 }
740 
741 /*?
742  * Place the indicated interface into the supplied IPv4 FIB table (also known
743  * as a VRF). The FIB table must be created using "ip table add" already. To
744  * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
745  * FIB table will only be displayed if a route has been added to the table, or
746  * an IP Address is assigned to an interface in the table (which adds a route
747  * automatically).
748  *
749  * @note IP addresses added after setting the interface IP table are added to
750  * the indicated FIB table. If an IP address is added prior to changing the
751  * table then this is an error. The control plane must remove these addresses
752  * first and then change the table. VPP will not automatically move the
753  * addresses from the old to the new table as it does not know the validity
754  * of such a change.
755  *
756  * @cliexpar
757  * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
758  * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
759  ?*/
760 /* *INDENT-OFF* */
761 VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
762 {
763  .path = "set interface ip table",
764  .function = ip4_table_bind_cmd,
765  .short_help = "set interface ip table <interface> <table-id>",
766 };
767 /* *INDENT-ON* */
768 
769 /*?
770  * Place the indicated interface into the supplied IPv6 FIB table (also known
771  * as a VRF). The FIB table must be created using "ip6 table add" already. To
772  * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
773  * FIB table will only be displayed if a route has been added to the table, or
774  * an IP Address is assigned to an interface in the table (which adds a route
775  * automatically).
776  *
777  * @note IP addresses added after setting the interface IP table are added to
778  * the indicated FIB table. If an IP address is added prior to changing the
779  * table then this is an error. The control plane must remove these addresses
780  * first and then change the table. VPP will not automatically move the
781  * addresses from the old to the new table as it does not know the validity
782  * of such a change.
783  *
784  * @cliexpar
785  * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
786  * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
787  ?*/
788 /* *INDENT-OFF* */
789 VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
790 {
791  .path = "set interface ip6 table",
792  .function = ip6_table_bind_cmd,
793  .short_help = "set interface ip6 table <interface> <table-id>"
794 };
795 /* *INDENT-ON* */
796 
797 clib_error_t *
799  unformat_input_t * main_input, vlib_cli_command_t * cmd)
800 {
801  unformat_input_t _line_input, *line_input = &_line_input;
802  fib_route_path_t rpath, *rpaths = NULL;
803  clib_error_t *error = NULL;
804  u32 table_id, is_del, payload_proto;
805  mfib_prefix_t pfx;
806  u32 fib_index;
807  mfib_entry_flags_t eflags = 0;
808  u32 gcount, scount, ss, gg, incr;
809  f64 timet[2];
811 
812  gcount = scount = 1;
813  is_del = 0;
814  table_id = 0;
815  clib_memset (&pfx, 0, sizeof (pfx));
816  clib_memset (&rpath, 0, sizeof (rpath));
817  rpath.frp_sw_if_index = ~0;
818 
819  /* Get a line of input. */
820  if (!unformat_user (main_input, unformat_line_input, line_input))
821  return 0;
822 
823  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
824  {
825  if (unformat (line_input, "table %d", &table_id))
826  ;
827  else if (unformat (line_input, "del"))
828  is_del = 1;
829  else if (unformat (line_input, "add"))
830  is_del = 0;
831  else if (unformat (line_input, "rpf-id %d", &rpf_id))
832  ;
833  else if (unformat (line_input, "scount %d", &scount))
834  ;
835  else if (unformat (line_input, "gcount %d", &gcount))
836  ;
837  else if (unformat (line_input, "%U %U",
839  &pfx.fp_src_addr.ip4,
841  {
843  pfx.fp_len = 64;
844  }
845  else if (unformat (line_input, "%U %U",
847  &pfx.fp_src_addr.ip6,
849  {
851  pfx.fp_len = 256;
852  }
853  else if (unformat (line_input, "%U/%d",
855  &pfx.fp_grp_addr.ip4, &pfx.fp_len))
856  {
857  clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
859  }
860  else if (unformat (line_input, "%U/%d",
862  &pfx.fp_grp_addr.ip6, &pfx.fp_len))
863  {
864  clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
866  }
867  else if (unformat (line_input, "%U",
869  {
870  clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
872  pfx.fp_len = 32;
873  }
874  else if (unformat (line_input, "%U",
876  {
877  clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
879  pfx.fp_len = 128;
880  }
881  else if (unformat (line_input, "via local Forward"))
882  {
883  clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
884  rpath.frp_sw_if_index = ~0;
885  rpath.frp_weight = 1;
887  /*
888  * set the path proto appropriately for the prefix
889  */
890  rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
892  }
893  else if (unformat (line_input, "via %U",
894  unformat_fib_route_path, &rpath, &payload_proto))
895  {
896  vec_add1 (rpaths, rpath);
897  }
898  else if (unformat (line_input, "%U",
900  ;
901  else if (unformat (line_input, "%U",
902  unformat_mfib_entry_flags, &eflags))
903  ;
904  else
905  {
906  error = unformat_parse_error (line_input);
907  goto done;
908  }
909  }
910 
911  if (~0 == table_id)
912  {
913  /*
914  * if no table_id is passed we will manipulate the default
915  */
916  fib_index = 0;
917  }
918  else
919  {
920  fib_index = mfib_table_find (pfx.fp_proto, table_id);
921 
922  if (~0 == fib_index)
923  {
924  error = clib_error_return (0, "Nonexistent table id %d", table_id);
925  goto done;
926  }
927  }
928 
929  timet[0] = vlib_time_now (vm);
930 
931  if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
932  {
933  incr = 1 << (32 - (pfx.fp_len % 32));
934  }
935  else
936  {
937  incr = 1 << (128 - (pfx.fp_len % 128));
938  }
939 
940  for (ss = 0; ss < scount; ss++)
941  {
942  for (gg = 0; gg < gcount; gg++)
943  {
944  if (is_del && 0 == vec_len (rpaths))
945  {
946  /* no path provided => route delete */
947  mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
948  }
949  else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
950  {
951  mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
952  rpf_id, eflags);
953  }
954  else
955  {
956  if (is_del)
957  mfib_table_entry_path_remove (fib_index,
958  &pfx, MFIB_SOURCE_CLI, rpaths);
959  else
960  mfib_table_entry_path_update (fib_index,
961  &pfx, MFIB_SOURCE_CLI, rpaths);
962  }
963 
964  if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
965  {
966  pfx.fp_grp_addr.ip4.as_u32 =
967  clib_host_to_net_u32 (incr +
968  clib_net_to_host_u32 (pfx.
969  fp_grp_addr.ip4.
970  as_u32));
971  }
972  else
973  {
974  int bucket = (incr < 64 ? 0 : 1);
975  pfx.fp_grp_addr.ip6.as_u64[bucket] =
976  clib_host_to_net_u64 (incr +
977  clib_net_to_host_u64 (pfx.
978  fp_grp_addr.ip6.as_u64
979  [bucket]));
980 
981  }
982  }
983  if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
984  {
985  pfx.fp_src_addr.ip4.as_u32 =
986  clib_host_to_net_u32 (1 +
987  clib_net_to_host_u32 (pfx.fp_src_addr.
988  ip4.as_u32));
989  }
990  else
991  {
992  pfx.fp_src_addr.ip6.as_u64[1] =
993  clib_host_to_net_u64 (1 +
994  clib_net_to_host_u64 (pfx.fp_src_addr.
995  ip6.as_u64[1]));
996  }
997  }
998 
999  timet[1] = vlib_time_now (vm);
1000 
1001  if (scount > 1 || gcount > 1)
1002  vlib_cli_output (vm, "%.6e routes/sec",
1003  (scount * gcount) / (timet[1] - timet[0]));
1004 
1005 done:
1006  vec_free (rpaths);
1007  unformat_free (line_input);
1008 
1009  return error;
1010 }
1011 
1012 /*?
1013  * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1014  * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1015  * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1016  * can be IPv4 or IPv6, but all must be of the same form in a single
1017  * command. To display the current set of routes, use the commands
1018  * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1019  * The full set of support flags for interfaces and route is shown via;
1020  * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1021  * respectively.
1022  * @cliexpar
1023  * Example of how to add a forwarding interface to a route (and create the
1024  * route if it does not exist)
1025  * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1026  * Example of how to add an accepting interface to a route (and create the
1027  * route if it does not exist)
1028  * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1029  * Example of changing the route's flags to send signals via the API
1030  * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1031 
1032  ?*/
1033 /* *INDENT-OFF* */
1034 VLIB_CLI_COMMAND (ip_mroute_command, static) =
1035 {
1036  .path = "ip mroute",
1037  .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [rpf-id <ID>] [via <next-hop-ip-addr> [<interface>],",
1038  .function = vnet_ip_mroute_cmd,
1039  .is_mp_safe = 1,
1040 };
1041 /* *INDENT-ON* */
1042 
1043 /*
1044  * The next two routines address a longstanding script hemorrhoid.
1045  * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1046  * or dependent route-adds will simply fail.
1047  */
1048 static clib_error_t *
1050  int retry_count)
1051 {
1052  vnet_main_t *vnm = vnet_get_main ();
1053  clib_error_t *e;
1054  int i;
1055  int resolved = 0;
1056  uword event_type;
1057  uword *event_data = 0;
1058 
1060 
1061  if (retry_count > 0)
1063  (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
1064  1 /* event */ , 0 /* data */ );
1065 
1066  for (i = 0; i < retry_count; i++)
1067  {
1068  /* The interface may be down, etc. */
1069  e = ip6_probe_neighbor (vm, a, sw_if_index, 0);
1070 
1071  if (e)
1072  return e;
1073 
1075  event_type = vlib_process_get_events (vm, &event_data);
1076  switch (event_type)
1077  {
1078  case 1: /* resolved... */
1079  vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1080  resolved = 1;
1081  goto done;
1082 
1083  case ~0: /* timeout */
1084  break;
1085 
1086  default:
1087  clib_warning ("unknown event_type %d", event_type);
1088  }
1089  vec_reset_length (event_data);
1090  }
1091 
1092 done:
1093 
1094  if (!resolved)
1095  return clib_error_return (0, "Resolution failed for %U",
1096  format_ip6_address, a);
1097  return 0;
1098 }
1099 
1100 static clib_error_t *
1102  int retry_count)
1103 {
1104  vnet_main_t *vnm = vnet_get_main ();
1105  clib_error_t *e;
1106  int i;
1107  int resolved = 0;
1108  uword event_type;
1109  uword *event_data = 0;
1110 
1112 
1113  if (retry_count > 0)
1115  (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
1116  1 /* event */ , 0 /* data */ );
1117 
1118  for (i = 0; i < retry_count; i++)
1119  {
1120  /* The interface may be down, etc. */
1121  e = ip4_probe_neighbor (vm, a, sw_if_index, 0);
1122 
1123  if (e)
1124  return e;
1125 
1127  event_type = vlib_process_get_events (vm, &event_data);
1128  switch (event_type)
1129  {
1130  case 1: /* resolved... */
1131  vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1132  resolved = 1;
1133  goto done;
1134 
1135  case ~0: /* timeout */
1136  break;
1137 
1138  default:
1139  clib_warning ("unknown event_type %d", event_type);
1140  }
1141  vec_reset_length (event_data);
1142  }
1143 
1144 done:
1145 
1146  vec_reset_length (event_data);
1147 
1148  if (!resolved)
1149  return clib_error_return (0, "Resolution failed for %U",
1150  format_ip4_address, a);
1151  return 0;
1152 }
1153 
1154 static clib_error_t *
1156  unformat_input_t * input, vlib_cli_command_t * cmd)
1157 {
1158  vnet_main_t *vnm = vnet_get_main ();
1159  unformat_input_t _line_input, *line_input = &_line_input;
1160  ip4_address_t a4;
1161  ip6_address_t a6;
1162  clib_error_t *error = 0;
1163  u32 sw_if_index = ~0;
1164  int retry_count = 3;
1165  int is_ip4 = 1;
1166  int address_set = 0;
1167 
1168  /* Get a line of input. */
1169  if (!unformat_user (input, unformat_line_input, line_input))
1170  return 0;
1171 
1172  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1173  {
1174  if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1175  &sw_if_index))
1176  ;
1177  else if (unformat (line_input, "retry %d", &retry_count))
1178  ;
1179 
1180  else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
1181  address_set++;
1182  else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
1183  {
1184  address_set++;
1185  is_ip4 = 0;
1186  }
1187  else
1188  {
1189  error = clib_error_return (0, "unknown input '%U'",
1190  format_unformat_error, line_input);
1191  goto done;
1192  }
1193  }
1194 
1195  if (sw_if_index == ~0)
1196  {
1197  error = clib_error_return (0, "Interface required, not set.");
1198  goto done;
1199  }
1200  if (address_set == 0)
1201  {
1202  error = clib_error_return (0, "ip address required, not set.");
1203  goto done;
1204  }
1205  if (address_set > 1)
1206  {
1207  error = clib_error_return (0, "Multiple ip addresses not supported.");
1208  goto done;
1209  }
1210 
1211  if (is_ip4)
1212  error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
1213  else
1214  error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1215 
1216 done:
1217  unformat_free (line_input);
1218 
1219  return error;
1220 }
1221 
1222 /*?
1223  * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1224  * attempts IPv6 neighbor discovery depending on the supplied IP address
1225  * format.
1226  *
1227  * @note This command will not immediately affect the indicated FIB; it
1228  * is not suitable for use in establishing a FIB entry prior to adding
1229  * recursive FIB entries. As in: don't use it in a script to probe a
1230  * gateway prior to adding a default route. It won't work. Instead,
1231  * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1232  * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1233  *
1234  * @cliexpar
1235  * Example of probe for an IPv4 address:
1236  * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1237 ?*/
1238 /* *INDENT-OFF* */
1239 VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1240  .path = "ip probe-neighbor",
1241  .function = probe_neighbor_address,
1242  .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
1243  .is_mp_safe = 1,
1244 };
1245 /* *INDENT-ON* */
1246 
1247 clib_error_t *
1249 {
1250  u32 fib_index;
1251 
1252  if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1253  return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1254  "invalid sw_if_index");
1255 
1256  fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1257  args->sw_if_index);
1258  if (args->is_add)
1259  {
1260  dpo_id_t proxy_dpo = DPO_INVALID;
1261  l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1262  args->sw_if_index, &proxy_dpo);
1264  &args->prefix,
1266  FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1267  dpo_reset (&proxy_dpo);
1268  }
1269  else
1270  {
1271  fib_table_entry_special_remove (fib_index, &args->prefix,
1273  }
1274  return 0;
1275 }
1276 
1277 u8
1279 {
1280  u32 fib_index;
1281  fib_node_index_t fei;
1282  const dpo_id_t *dpo;
1283  l3_proxy_dpo_t *l3p;
1284  load_balance_t *lb0;
1285 
1287  sw_if_index);
1288  if (fib_index == ~0)
1289  return 0;
1290 
1291  fei = fib_table_lookup_exact_match (fib_index, pfx);
1292  if (fei == FIB_NODE_INDEX_INVALID)
1293  return 0;
1294 
1296  lb0 = load_balance_get (dpo->dpoi_index);
1297  dpo = load_balance_get_bucket_i (lb0, 0);
1298  if (dpo->dpoi_type != DPO_L3_PROXY)
1299  return 0;
1300 
1301  l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1302  return (l3p->l3p_sw_if_index == sw_if_index);
1303 }
1304 
1305 typedef struct ip_container_proxy_walk_ctx_t_
1306 {
1308  void *ctx;
1310 
1311 static fib_table_walk_rc_t
1313 {
1315  const fib_prefix_t *pfx;
1316  const dpo_id_t *dpo;
1317  load_balance_t *lb;
1318  l3_proxy_dpo_t *l3p;
1319 
1320  pfx = fib_entry_get_prefix (fei);
1322  {
1324  lb = load_balance_get (dpo->dpoi_index);
1325  dpo = load_balance_get_bucket_i (lb, 0);
1326  l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1327  ctx->cb (pfx, l3p->l3p_sw_if_index, ctx->ctx);
1328  }
1329 
1330  return FIB_TABLE_WALK_CONTINUE;
1331 }
1332 
1333 void
1335 {
1336  fib_table_t *fib_table;
1338  .cb = cb,
1339  .ctx = ctx,
1340  };
1341 
1342  /* *INDENT-OFF* */
1343  pool_foreach (fib_table, ip4_main.fibs,
1344  ({
1345  fib_table_walk(fib_table->ft_index,
1346  FIB_PROTOCOL_IP4,
1347  ip_container_proxy_fib_table_walk,
1348  &wctx);
1349  }));
1350  pool_foreach (fib_table, ip6_main.fibs,
1351  ({
1352  fib_table_walk(fib_table->ft_index,
1353  FIB_PROTOCOL_IP6,
1354  ip_container_proxy_fib_table_walk,
1355  &wctx);
1356  }));
1357  /* *INDENT-ON* */
1358 }
1359 
1360 clib_error_t *
1362  unformat_input_t * main_input, vlib_cli_command_t * cmd)
1363 {
1364  unformat_input_t _line_input, *line_input = &_line_input;
1365  fib_prefix_t pfx;
1366  u32 is_del, addr_set = 0;
1367  vnet_main_t *vnm;
1368  u32 sw_if_index;
1369 
1370  vnm = vnet_get_main ();
1371  is_del = 0;
1372  sw_if_index = ~0;
1373  clib_memset (&pfx, 0, sizeof (pfx));
1374 
1375  /* Get a line of input. */
1376  if (!unformat_user (main_input, unformat_line_input, line_input))
1377  return 0;
1378 
1379  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1380  {
1381  if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1382  {
1383  pfx.fp_proto = FIB_PROTOCOL_IP4;
1384  pfx.fp_len = 32;
1385  addr_set = 1;
1386  }
1387  else if (unformat (line_input, "%U",
1388  unformat_ip6_address, &pfx.fp_addr.ip6))
1389  {
1390  pfx.fp_proto = FIB_PROTOCOL_IP6;
1391  pfx.fp_len = 128;
1392  addr_set = 1;
1393  }
1394  else if (unformat (line_input, "%U",
1395  unformat_vnet_sw_interface, vnm, &sw_if_index))
1396  ;
1397  else if (unformat (line_input, "del"))
1398  is_del = 1;
1399  else
1400  {
1401  unformat_free (line_input);
1402  return (clib_error_return (0, "unknown input '%U'",
1403  format_unformat_error, line_input));
1404  }
1405  }
1406 
1407  if (~0 == sw_if_index || !addr_set)
1408  {
1409  unformat_free (line_input);
1410  vlib_cli_output (vm, "interface and address must be set");
1411  return 0;
1412  }
1413 
1415  .prefix = pfx,
1416  .sw_if_index = sw_if_index,
1417  .is_add = !is_del,
1418  };
1420  unformat_free (line_input);
1421  return (NULL);
1422 }
1423 
1424 /* *INDENT-OFF* */
1425 VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1426  .path = "ip container",
1427  .function = ip_container_cmd,
1428  .short_help = "ip container <address> <interface>",
1429  .is_mp_safe = 1,
1430 };
1431 /* *INDENT-ON* */
1432 
1433 clib_error_t *
1435  vlib_cli_command_t * cmd)
1436 {
1437  unformat_input_t _line_input, *line_input = &_line_input;
1438  vnet_main_t *vnm = vnet_get_main ();
1439  fib_prefix_t pfx;
1440  u32 sw_if_index = ~0;
1441  u8 has_proxy;
1442 
1443  if (!unformat_user (main_input, unformat_line_input, line_input))
1444  return 0;
1445  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1446  {
1447  if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1448  {
1449  pfx.fp_proto = FIB_PROTOCOL_IP4;
1450  pfx.fp_len = 32;
1451  }
1452  else if (unformat (line_input, "%U",
1453  unformat_ip6_address, &pfx.fp_addr.ip6))
1454  {
1455  pfx.fp_proto = FIB_PROTOCOL_IP6;
1456  pfx.fp_len = 128;
1457  }
1458  else if (unformat (line_input, "%U",
1459  unformat_vnet_sw_interface, vnm, &sw_if_index))
1460  ;
1461  else
1462  {
1463  unformat_free (line_input);
1464  return (clib_error_return (0, "unknown input '%U'",
1465  format_unformat_error, line_input));
1466  }
1467  }
1468 
1469  if (~0 == sw_if_index)
1470  {
1471  unformat_free (line_input);
1472  vlib_cli_output (vm, "no interface");
1473  return (clib_error_return (0, "no interface"));
1474  }
1475 
1476  has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1477  vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1478 
1479  unformat_free (line_input);
1480  return 0;
1481 }
1482 
1483 /* *INDENT-OFF* */
1484 VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1485  .path = "show ip container",
1486  .function = show_ip_container_cmd_fn,
1487  .short_help = "show ip container <address> <interface>",
1488  .is_mp_safe = 1,
1489 };
1490 /* *INDENT-ON* */
1491 
1492 /*
1493  * fd.io coding-style-patch-verification: ON
1494  *
1495  * Local Variables:
1496  * eval: (c-set-style "gnu")
1497  * End:
1498  */
static clib_error_t * ip6_probe_neighbor_wait(vlib_main_t *vm, ip6_address_t *a, u32 sw_if_index, int retry_count)
Definition: lookup.c:1049
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:212
void mfib_table_entry_delete(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source)
Delete a FIB entry.
Definition: mfib_table.c:491
clib_error_t * vnet_ip4_table_cmd(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd)
Definition: lookup.c:567
vmrglw vmrglh hi
void ip_null_dpo_add_and_lock(dpo_proto_t proto, ip_null_dpo_action_t action, dpo_id_t *dpo)
Definition: ip_null_dpo.c:78
ip46_address_t frp_addr
The next-hop address.
Definition: fib_types.h:495
Continue on to the next entry.
Definition: fib_table.h:868
void ip_table_create(fib_protocol_t fproto, u32 table_id, u8 is_api, const u8 *name)
Definition: ip_api.c:719
ip46_address_t fp_src_addr
Definition: mfib_types.h:47
void receive_dpo_add_or_lock(dpo_proto_t proto, u32 sw_if_index, const ip46_address_t *nh_addr, dpo_id_t *dpo)
Definition: receive_dpo.c:62
fib_node_index_t fib_table_lookup_exact_match(u32 fib_index, const fib_prefix_t *prefix)
Perfom an exact match in the non-forwarding table.
Definition: fib_table.c:95
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:673
enum mfib_entry_flags_t_ mfib_entry_flags_t
a
Definition: bitmap.h:538
static uword unformat_dpo(unformat_input_t *input, va_list *args)
Definition: lookup.c:280
A representation of a path as described by a route producer.
Definition: fib_types.h:479
uword unformat_mfib_itf_flags(unformat_input_t *input, va_list *args)
Definition: mfib_types.c:198
ip_interface_address_t * if_address_pool
Pool of addresses that are assigned to interfaces.
Definition: lookup.h:125
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static clib_error_t * ip4_probe_neighbor_wait(vlib_main_t *vm, ip4_address_t *a, u32 sw_if_index, int retry_count)
Definition: lookup.c:1101
fib_node_index_t mfib_table_entry_path_update(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source, const fib_route_path_t *rpath)
Add n paths to an entry (aka route) in the FIB.
Definition: mfib_table.c:323
uword unformat_fib_route_path(unformat_input_t *input, va_list *args)
Unformat a fib_route_path_t from CLI input.
Definition: fib_types.c:434
u32 frp_mitf_flags
MFIB interface flags.
Definition: fib_types.h:548
Multicast Adjacency.
Definition: adj.h:82
#define NULL
Definition: clib.h:58
uword mhash_unset(mhash_t *h, void *key, uword *old_value)
Definition: mhash.c:346
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:258
ip_container_proxy_cb_t cb
Definition: lookup.c:1307
IP unicast adjacency.
Definition: adj.h:221
const dpo_id_t * fib_entry_contribute_ip_forwarding(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:507
fib_node_index_t fib_table_entry_path_add2(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, fib_route_path_t *rpaths)
Add n paths to an entry (aka route) in the FIB.
Definition: fib_table.c:567
This packet is to be rewritten and forwarded to the next processing node.
Definition: adj.h:73
From the CLI.
Definition: fib_entry.h:83
void dpo_copy(dpo_id_t *dst, const dpo_id_t *src)
atomic copy a data-plane object.
Definition: dpo.c:262
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
int i
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
const fib_prefix_t * fib_entry_get_prefix(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1681
fib_node_index_t mfib_table_entry_update(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source, fib_rpf_id_t rpf_id, mfib_entry_flags_t entry_flags)
Add a new (with no replication) or lock an existing entry.
Definition: mfib_table.c:235
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
dpo_proto_t frp_proto
The protocol of the address below.
Definition: fib_types.h:484
unformat_function_t unformat_vnet_sw_interface
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
The data-path object representing L3 proxy.
Definition: l3_proxy_dpo.h:27
static clib_error_t * vnet_ip_route_cmd(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd)
Definition: lookup.c:325
mhash_t address_to_if_address_index
Hash table mapping address to index in interface address pool.
Definition: lookup.h:128
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
static clib_error_t * ip_table_bind_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd, fib_protocol_t fproto)
Definition: lookup.c:675
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
int ip_table_bind(fib_protocol_t fproto, u32 sw_if_index, u32 table_id, u8 is_api)
const dpo_id_t * drop_dpo_get(dpo_proto_t proto)
Definition: drop_dpo.c:25
format_function_t format_ip4_address
Definition: format.h:75
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:433
static clib_error_t * ip6_table_bind_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: lookup.c:734
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:493
unformat_function_t unformat_ip4_address
Definition: format.h:70
u32 frp_sw_if_index
The interface.
Definition: fib_types.h:519
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
#define MFIB_RPF_ID_NONE
Definition: fib_types.h:402
format_function_t format_ip6_address_and_length
Definition: format.h:94
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:516
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:407
clib_error_t * vnet_ip_container_proxy_add_del(vnet_ip_container_proxy_args_t *args)
Definition: lookup.c:1248
struct _vnet_ip_container_proxy_args vnet_ip_container_proxy_args_t
Aggregrate type for a prefix.
Definition: fib_types.h:203
u8 * format_hex_bytes(u8 *s, va_list *va)
Definition: std-formats.c:84
const dpo_id_t * punt_dpo_get(dpo_proto_t proto)
Definition: punt_dpo.c:25
#define clib_error_return(e, args...)
Definition: error.h:99
unsigned int u32
Definition: types.h:88
#define clib_error_create(args...)
Definition: error.h:96
enum dpo_proto_t_ dpo_proto_t
Data path protocol.
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1075
u16 fp_len
The mask length.
Definition: fib_types.h:207
clib_error_t * ip6_probe_neighbor(vlib_main_t *vm, ip6_address_t *dst, u32 sw_if_index, u8 refresh)
Definition: ip6_forward.c:1469
Definition: fib_entry.h:281
unformat_function_t unformat_line_input
Definition: format.h:283
u32 l3p_sw_if_index
The Software interface index on which traffic is l3_proxyd.
Definition: l3_proxy_dpo.h:38
vnet_api_error_t api_errno
Definition: vnet.h:78
u32 rpf_id
Definition: fib_types.api:119
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
int(* ip_container_proxy_cb_t)(const fib_prefix_t *pfx, u32 sw_if_index, void *ctx)
Definition: lookup.h:241
format_function_t format_vnet_sw_interface_name
Definition: fib_entry.h:285
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
void vnet_register_ip6_neighbor_resolution_event(vnet_main_t *vnm, void *address_arg, uword node_index, uword type_opaque, uword data)
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
index_t classify_dpo_create(dpo_proto_t proto, u32 classify_table_index)
Definition: classify_dpo.c:43
dpo_type_t dpoi_type
the type
Definition: dpo.h:174
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
Definition: load_balance.h:229
struct _unformat_input_t unformat_input_t
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
The FIB DPO provieds;.
Definition: load_balance.h:106
u8 local_next_by_ip_protocol[256]
Table mapping ip protocol to ip[46]-local node next index.
Definition: lookup.h:153
clib_error_t * ip_container_cmd(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd)
Definition: lookup.c:1361
static uword mhash_set(mhash_t *h, void *key, uword new_value, uword *old_value)
Definition: mhash.h:117
vl_api_address_t dst
Definition: gre.api:52
u8 name[64]
Definition: memclnt.api:152
clib_error_t * ip4_probe_neighbor(vlib_main_t *vm, ip4_address_t *dst, u32 sw_if_index, u8 refresh)
Definition: ip4_forward.c:2052
clib_error_t * vnet_ip_table_cmd(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd, fib_protocol_t fproto)
Definition: lookup.c:506
clib_error_t * vnet_ip_mroute_cmd(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd)
Definition: lookup.c:798
unformat_function_t unformat_ip6_address
Definition: format.h:91
u32 classify_table_index
Definition: fib_types.api:68
int fib_entry_is_sourced(fib_node_index_t fib_entry_index, fib_source_t source)
uword unformat_mfib_entry_flags(unformat_input_t *input, va_list *args)
Definition: mfib_types.c:218
void fib_table_entry_path_remove2(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_route_path_t *rpaths)
Remove n paths to an entry (aka route) in the FIB.
Definition: fib_table.c:611
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
void mhash_init(mhash_t *h, uword n_value_bytes, uword n_key_bytes)
Definition: mhash.c:168
format_function_t format_ip6_address
Definition: format.h:93
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
Definition: node_funcs.h:391
vlib_main_t * vm
Definition: buffer.c:312
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
struct ip_container_proxy_walk_ctx_t_ ip_container_proxy_walk_ctx_t
void fib_table_entry_delete(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source)
Delete a FIB entry.
Definition: fib_table.c:864
void ip_table_delete(fib_protocol_t fproto, u32 table_id, u8 is_api)
Definition: ip_api.c:597
#define clib_warning(format, args...)
Definition: error.h:59
static fib_table_walk_rc_t ip_container_proxy_fib_table_walk(fib_node_index_t fei, void *arg)
Definition: lookup.c:1312
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
void ip_lookup_init(ip_lookup_main_t *lm, u32 is_ip6)
Definition: lookup.c:204
void ip_container_proxy_walk(ip_container_proxy_cb_t cb, void *ctx)
Definition: lookup.c:1334
void vnet_register_ip4_arp_resolution_event(vnet_main_t *vnm, void *address_arg, uword node_index, uword type_opaque, uword data)
Definition: arp.c:843
void dpo_set(dpo_id_t *dpo, dpo_type_t type, dpo_proto_t proto, index_t index)
Set/create a DPO ID The DPO will be locked.
Definition: dpo.c:186
Aggregrate type for a prefix.
Definition: mfib_types.h:24
u8 builtin_protocol_by_ip_protocol[256]
IP_BUILTIN_PROTOCOL_{TCP,UDP,ICMP,OTHER} by protocol in IP header.
Definition: lookup.h:156
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
#define foreach_flow_hash_bit
Definition: lookup.h:72
u32 * if_address_pool_index_by_sw_if_index
Head of doubly linked list of interface addresses for each software interface.
Definition: lookup.h:132
fib_node_index_t fib_table_entry_special_dpo_add(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
Add a &#39;special&#39; entry to the FIB that links to the DPO passed A special entry is an entry that the FI...
Definition: fib_table.c:307
u32 fib_table_get_table_id_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the Table-ID of the FIB bound to the interface.
Definition: fib_table.c:1051
#define ASSERT(truth)
static uword * mhash_get(mhash_t *h, const void *key)
Definition: mhash.h:110
ip6_main_t ip6_main
Definition: ip6_forward.c:2671
static load_balance_t * load_balance_get(index_t lbi)
Definition: load_balance.h:220
fib_route_path_flags_t frp_flags
flags on the path
Definition: fib_types.h:589
size_t count
Definition: vapi.c:47
dpo_proto_t fib_proto_to_dpo(fib_protocol_t fib_proto)
Definition: fib_types.c:237
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:84
static l3_proxy_dpo_t * l3_proxy_dpo_get(index_t index)
Definition: l3_proxy_dpo.h:58
#define unformat_parse_error(input)
Definition: format.h:269
static clib_error_t * ip4_table_bind_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: lookup.c:726
fib_protocol_t fp_proto
protocol type
Definition: mfib_types.h:33
static uword vnet_sw_interface_is_api_valid(vnet_main_t *vnm, u32 sw_if_index)
clib_error_t * vnet_ip6_table_cmd(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd)
Definition: lookup.c:574
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:186
static clib_error_t * ip_sw_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
Definition: lookup.c:189
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
A for-us/local path.
Definition: fib_types.h:332
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:236
u32 mfib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: mfib_table.c:553
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:163
A route the is being &#39;proxied&#39; on behalf of another device.
Definition: fib_entry.h:53
u32 is_ip6
1 for ip6; 0 for ip4.
Definition: lookup.h:147
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:197
clib_error_t * ip_interface_address_add_del(ip_lookup_main_t *lm, u32 sw_if_index, void *addr_fib, u32 address_length, u32 is_del, u32 *result_if_address_index)
Definition: lookup.c:63
clib_error_t * show_ip_container_cmd_fn(vlib_main_t *vm, unformat_input_t *main_input, vlib_cli_command_t *cmd)
Definition: lookup.c:1434
static uword vlib_in_process_context(vlib_main_t *vm)
Definition: node_funcs.h:385
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:921
#define clib_error_return_code(e, code, flags, args...)
Definition: error.h:93
u8 ip_container_proxy_is_set(fib_prefix_t *pfx, u32 sw_if_index)
Definition: lookup.c:1278
struct fib_table_t_ * fibs
Vector of FIBs.
Definition: ip4.h:110
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:232
u8 * format_ip_flow_hash_config(u8 *s, va_list *args)
Definition: lookup.c:245
static clib_error_t * probe_neighbor_address(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: lookup.c:1155
u8 * format_ip_adjacency_packet_data(u8 *s, va_list *args)
Definition: lookup.c:257
u16 fp_len
The mask length.
Definition: mfib_types.h:28
u32 table_id
Definition: fib_types.api:118
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:486
void mfib_table_entry_path_remove(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source, const fib_route_path_t *rpath)
Remove n paths to an entry (aka route) in the FIB.
Definition: mfib_table.c:405
u8 frp_weight
[un]equal cost path weight
Definition: fib_types.h:579
struct fib_table_t_ * fibs
Definition: ip6.h:182
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:768
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(ip_sw_interface_add_del)
void l3_proxy_dpo_add_or_lock(dpo_proto_t proto, u32 sw_if_index, dpo_id_t *dpo)
Definition: l3_proxy_dpo.c:56
const ip46_address_t zero_addr
Definition: lookup.c:319
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
u32 fib_result_n_bytes
Number of bytes in a fib result.
Definition: lookup.h:144
vl_api_fib_path_nh_proto_t proto
Definition: fib_types.api:125
ip46_address_t fp_grp_addr
The address type is not deriveable from the fp_addr member.
Definition: mfib_types.h:46
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:171
A protocol Independent FIB table.
Definition: fib_table.h:69
format_function_t * format_address_and_length
Either format_ip4_address_and_length or format_ip6_address_and_length.
Definition: lookup.h:150
format_function_t format_ip4_address_and_length
Definition: format.h:76