FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
ip6_forward.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  * ip/ip6_forward.c: IP v6 forwarding
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/vnet.h>
41 #include <vnet/ip/ip.h>
42 #include <vnet/ip/ip_frag.h>
43 #include <vnet/ip/ip6_link.h>
44 #include <vnet/ethernet/ethernet.h> /* for ethernet_header_t */
45 #include <vnet/srp/srp.h> /* for srp_hw_interface_class */
46 #include <vppinfra/cache.h>
47 #include <vnet/fib/fib_urpf_list.h> /* for FIB uRPF check */
48 #include <vnet/fib/ip6_fib.h>
49 #include <vnet/mfib/ip6_mfib.h>
51 #include <vnet/dpo/classify_dpo.h>
53 #include <vnet/pg/pg.h>
54 
55 #ifndef CLIB_MARCH_VARIANT
57 #endif
58 #include <vnet/ip/ip6_forward.h>
59 #include <vnet/interface_output.h>
60 
61 /* Flag used by IOAM code. Classifier sets it pop-hop-by-hop checks it */
62 #define OI_DECAP 0x80000000
63 
64 static void
67  u32 fib_index,
68  ip6_address_t * address, u32 address_length)
69 {
70  ip_lookup_main_t *lm = &im->lookup_main;
71  ip_interface_prefix_t *if_prefix;
72 
73  /* *INDENT-OFF* */
75  .prefix = {
76  .fp_len = address_length,
77  .fp_proto = FIB_PROTOCOL_IP6,
78  .fp_addr.ip6 = {
79  .as_u64 = {
80  address->as_u64[0] & im->fib_masks[address_length].as_u64[0],
81  address->as_u64[1] & im->fib_masks[address_length].as_u64[1],
82  },
83  },
84  },
85  .sw_if_index = sw_if_index,
86  };
87  /* *INDENT-ON* */
88 
89  /* If prefix already set on interface, just increment ref count & return */
90  if_prefix = ip_get_interface_prefix (lm, &key);
91  if (if_prefix)
92  {
93  if_prefix->ref_count += 1;
94  return;
95  }
96 
97  /* New prefix - allocate a pool entry, initialize it, add to the hash */
98  pool_get (lm->if_prefix_pool, if_prefix);
99  if_prefix->ref_count = 1;
100  clib_memcpy (&if_prefix->key, &key, sizeof (key));
102  if_prefix - lm->if_prefix_pool, 0 /* old value */ );
103 
104  /* length < 128 - add glean */
105  if (address_length < 128)
106  {
107  /* set the glean route for the prefix */
108  fib_table_entry_update_one_path (fib_index, &key.prefix,
113  /* No next-hop address */
114  NULL, sw_if_index,
115  /* invalid FIB index */
116  ~0, 1,
117  /* no out-label stack */
119  }
120 }
121 
122 static void
124  ip6_main_t * im, u32 fib_index,
126 {
127  ip_lookup_main_t *lm = &im->lookup_main;
128  ip6_address_t *address = ip_interface_address_get_address (lm, a);
129  fib_prefix_t pfx = {
130  .fp_len = a->address_length,
131  .fp_proto = FIB_PROTOCOL_IP6,
132  .fp_addr.ip6 = *address,
133  };
134 
135  /* set special routes for the prefix if needed */
137  address, a->address_length);
138 
139  pfx.fp_len = 128;
141  {
144  if (classify_table_index != (u32) ~ 0)
145  {
146  dpo_id_t dpo = DPO_INVALID;
147 
148  dpo_set (&dpo,
149  DPO_CLASSIFY,
152 
154  &pfx,
156  FIB_ENTRY_FLAG_NONE, &dpo);
157  dpo_reset (&dpo);
158  }
159  }
160 
161  fib_table_entry_update_one_path (fib_index, &pfx,
166  &pfx.fp_addr,
167  sw_if_index, ~0,
168  1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
169 }
170 
171 static void
174  u32 fib_index,
175  ip6_address_t * address, u32 address_length)
176 {
177  ip_lookup_main_t *lm = &im->lookup_main;
178  ip_interface_prefix_t *if_prefix;
179 
180  /* *INDENT-OFF* */
182  .prefix = {
183  .fp_len = address_length,
184  .fp_proto = FIB_PROTOCOL_IP6,
185  .fp_addr.ip6 = {
186  .as_u64 = {
187  address->as_u64[0] & im->fib_masks[address_length].as_u64[0],
188  address->as_u64[1] & im->fib_masks[address_length].as_u64[1],
189  },
190  },
191  },
192  .sw_if_index = sw_if_index,
193  };
194  /* *INDENT-ON* */
195 
196  if_prefix = ip_get_interface_prefix (lm, &key);
197  if (!if_prefix)
198  {
199  clib_warning ("Prefix not found while deleting %U",
200  format_ip4_address_and_length, address, address_length);
201  return;
202  }
203 
204  /* If not deleting last intf addr in prefix, decrement ref count & return */
205  if_prefix->ref_count -= 1;
206  if (if_prefix->ref_count > 0)
207  return;
208 
209  /* length <= 128, delete glean route */
210  if (address_length <= 128)
211  {
212  /* remove glean route for prefix */
213  fib_table_entry_delete (fib_index, &key.prefix, FIB_SOURCE_INTERFACE);
214  }
215 
216  mhash_unset (&lm->prefix_to_if_prefix_index, &key, 0 /* old_value */ );
217  pool_put (lm->if_prefix_pool, if_prefix);
218 }
219 
220 static void
222  u32 fib_index,
223  ip6_address_t * address, u32 address_length)
224 {
225  fib_prefix_t pfx = {
226  .fp_len = 128,
227  .fp_proto = FIB_PROTOCOL_IP6,
228  .fp_addr.ip6 = *address,
229  };
230 
231  /* delete special routes for the prefix if needed */
233  address, address_length);
234 
235  fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
236 }
237 
238 #ifndef CLIB_MARCH_VARIANT
239 void
241 {
242  ip6_main_t *im = &ip6_main;
243  vnet_main_t *vnm = vnet_get_main ();
245 
246  vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0);
247 
248  /*
249  * enable/disable only on the 1<->0 transition
250  */
251  if (is_enable)
252  {
253  if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index])
254  return;
255  }
256  else
257  {
258  /* The ref count is 0 when an address is removed from an interface that has
259  * no address - this is not a ciritical error */
260  if (0 == im->ip_enabled_by_sw_if_index[sw_if_index] ||
261  0 != --im->ip_enabled_by_sw_if_index[sw_if_index])
262  return;
263  }
264 
265  vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
266  !is_enable, 0, 0);
267 
268  vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
269  sw_if_index, !is_enable, 0, 0);
270 
271  if (is_enable)
272  hi->l3_if_count++;
273  else if (hi->l3_if_count)
274  hi->l3_if_count--;
275 }
276 
277 /* get first interface address */
278 ip6_address_t *
280 {
281  ip_lookup_main_t *lm = &im->lookup_main;
282  ip_interface_address_t *ia = 0;
283  ip6_address_t *result = 0;
284 
285  /* *INDENT-OFF* */
287  1 /* honor unnumbered */,
288  ({
289  ip6_address_t * a = ip_interface_address_get_address (lm, ia);
290  result = a;
291  break;
292  }));
293  /* *INDENT-ON* */
294  return result;
295 }
296 
297 clib_error_t *
300  ip6_address_t * address,
301  u32 address_length, u32 is_del)
302 {
303  vnet_main_t *vnm = vnet_get_main ();
304  ip6_main_t *im = &ip6_main;
305  ip_lookup_main_t *lm = &im->lookup_main;
306  clib_error_t *error = NULL;
307  u32 if_address_index;
308  ip6_address_fib_t ip6_af, *addr_fib = 0;
309  const ip6_address_t *ll_addr;
310 
312  if (error)
313  return error;
314 
316  {
317  if (address_length != 128)
318  {
319  vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
320  return
322  ("prefix length of link-local address must be 128");
323  }
324  if (!is_del)
325  {
326  int rv;
327 
329 
330  if (rv)
331  {
332  vnm->api_errno = rv;
333  return clib_error_create ("address not assignable");
334  }
335  }
336  else
337  {
339  if (ip6_address_is_equal (ll_addr, address))
340  {
341  vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_DELETABLE;
342  return clib_error_create ("address not deletable");
343  }
344  else
345  {
346  vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
347  return clib_error_create ("address not found");
348  }
349  }
350 
351  return (NULL);
352  }
353 
354  ip6_addr_fib_init (&ip6_af, address,
355  vec_elt (im->fib_index_by_sw_if_index, sw_if_index));
356  vec_add1 (addr_fib, ip6_af);
357 
358  /* *INDENT-OFF* */
359  if (!is_del)
360  {
361  /* When adding an address check that it does not conflict
362  with an existing address on any interface in this table. */
364  vnet_sw_interface_t *sif;
365 
367  {
368  if (im->fib_index_by_sw_if_index[sw_if_index] ==
369  im->fib_index_by_sw_if_index[sif->sw_if_index])
370  {
372  (&im->lookup_main, ia, sif->sw_if_index,
373  0 /* honor unnumbered */ ,
374  ({
375  ip6_address_t * x =
376  ip_interface_address_get_address
377  (&im->lookup_main, ia);
378 
379  if (ip6_destination_matches_route
380  (im, address, x, ia->address_length) ||
381  ip6_destination_matches_route (im,
382  x,
383  address,
384  address_length))
385  {
386  /* an intf may have >1 addr from the same prefix */
387  if ((sw_if_index == sif->sw_if_index) &&
388  (ia->address_length == address_length) &&
389  !ip6_address_is_equal (x, address))
390  continue;
391 
392  if (ia->flags & IP_INTERFACE_ADDRESS_FLAG_STALE)
393  /* if the address we're comparing against is stale
394  * then the CP has not added this one back yet, maybe
395  * it never will, so we have to assume it won't and
396  * ignore it. if it does add it back, then it will fail
397  * because this one is now present */
398  continue;
399 
400  /* error if the length or intf was different */
401  vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
402  error = clib_error_create
403  ("failed to add %U which conflicts with %U for interface %U",
404  format_ip6_address_and_length, address,
405  address_length,
406  format_ip6_address_and_length, x,
407  ia->address_length,
408  format_vnet_sw_if_index_name, vnm,
409  sif->sw_if_index);
410  goto done;
411  }
412  }));
413  }
414  }
415  }
416  /* *INDENT-ON* */
417 
418  if_address_index = ip_interface_address_find (lm, addr_fib, address_length);
419 
420  if (is_del)
421  {
422  if (~0 == if_address_index)
423  {
424  vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
425  error = clib_error_create ("%U not found for interface %U",
426  lm->format_address_and_length,
427  addr_fib, address_length,
429  sw_if_index);
430  goto done;
431  }
432 
433  error = ip_interface_address_del (lm, vnm, if_address_index, addr_fib,
434  address_length, sw_if_index);
435  if (error)
436  goto done;
437  }
438  else
439  {
440  if (~0 != if_address_index)
441  {
443 
444  ia = pool_elt_at_index (lm->if_address_pool, if_address_index);
445 
447  {
448  if (ia->sw_if_index == sw_if_index)
449  {
450  /* re-adding an address during the replace action.
451  * consdier this the update. clear the flag and
452  * we're done */
454  goto done;
455  }
456  else
457  {
458  /* The prefix is moving from one interface to another.
459  * delete the stale and add the new */
461  ia->sw_if_index,
462  address, address_length, 1);
463  ia = NULL;
465  addr_fib, address_length,
466  &if_address_index);
467  }
468  }
469  else
470  {
471  vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
473  ("Prefix %U already found on interface %U",
474  lm->format_address_and_length, addr_fib, address_length,
476  }
477  }
478  else
480  addr_fib, address_length,
481  &if_address_index);
482  }
483 
484  if (error)
485  goto done;
486 
488  if (!is_del)
490 
491  /* intf addr routes are added/deleted on admin up/down */
493  {
494  if (is_del)
496  im, ip6_af.fib_index, address,
497  address_length);
498  else
500  im, ip6_af.fib_index,
501  pool_elt_at_index (lm->if_address_pool,
502  if_address_index));
503  }
504 
506  vec_foreach (cb, im->add_del_interface_address_callbacks)
507  cb->function (im, cb->function_opaque, sw_if_index,
508  address, address_length, if_address_index, is_del);
509 
510  if (is_del)
512 
513 done:
514  vec_free (addr_fib);
515  return error;
516 }
517 
518 #endif
519 
520 static clib_error_t *
522 {
523  ip6_main_t *im = &ip6_main;
525  ip6_address_t *a;
526  u32 is_admin_up, fib_index;
527 
529  lookup_main.if_address_pool_index_by_sw_if_index,
530  sw_if_index, ~0);
531 
532  is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
533 
534  fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index);
535 
536  /* *INDENT-OFF* */
537  foreach_ip_interface_address (&im->lookup_main, ia, sw_if_index,
538  0 /* honor unnumbered */,
539  ({
540  a = ip_interface_address_get_address (&im->lookup_main, ia);
541  if (is_admin_up)
542  ip6_add_interface_routes (vnm, sw_if_index,
543  im, fib_index,
544  ia);
545  else
546  ip6_del_interface_routes (sw_if_index, im, fib_index,
547  a, ia->address_length);
548  }));
549  /* *INDENT-ON* */
550 
551  return 0;
552 }
553 
555 
556 /* Built-in ip6 unicast rx feature path definition */
557 /* *INDENT-OFF* */
558 VNET_FEATURE_ARC_INIT (ip6_unicast, static) =
559 {
560  .arc_name = "ip6-unicast",
561  .start_nodes = VNET_FEATURES ("ip6-input"),
562  .last_in_arc = "ip6-lookup",
563  .arc_index_ptr = &ip6_main.lookup_main.ucast_feature_arc_index,
564 };
565 
566 VNET_FEATURE_INIT (ip6_flow_classify, static) =
567 {
568  .arc_name = "ip6-unicast",
569  .node_name = "ip6-flow-classify",
570  .runs_before = VNET_FEATURES ("ip6-inacl"),
571 };
572 
573 VNET_FEATURE_INIT (ip6_inacl, static) =
574 {
575  .arc_name = "ip6-unicast",
576  .node_name = "ip6-inacl",
577  .runs_before = VNET_FEATURES ("ip6-policer-classify"),
578 };
579 
580 VNET_FEATURE_INIT (ip6_policer_classify, static) =
581 {
582  .arc_name = "ip6-unicast",
583  .node_name = "ip6-policer-classify",
584  .runs_before = VNET_FEATURES ("ipsec6-input-feature"),
585 };
586 
587 VNET_FEATURE_INIT (ip6_ipsec, static) =
588 {
589  .arc_name = "ip6-unicast",
590  .node_name = "ipsec6-input-feature",
591  .runs_before = VNET_FEATURES ("l2tp-decap"),
592 };
593 
594 VNET_FEATURE_INIT (ip6_l2tp, static) =
595 {
596  .arc_name = "ip6-unicast",
597  .node_name = "l2tp-decap",
598  .runs_before = VNET_FEATURES ("vpath-input-ip6"),
599 };
600 
601 VNET_FEATURE_INIT (ip6_vpath, static) =
602 {
603  .arc_name = "ip6-unicast",
604  .node_name = "vpath-input-ip6",
605  .runs_before = VNET_FEATURES ("ip6-vxlan-bypass"),
606 };
607 
608 VNET_FEATURE_INIT (ip6_vxlan_bypass, static) =
609 {
610  .arc_name = "ip6-unicast",
611  .node_name = "ip6-vxlan-bypass",
612  .runs_before = VNET_FEATURES ("ip6-lookup"),
613 };
614 
615 VNET_FEATURE_INIT (ip6_not_enabled, static) =
616 {
617  .arc_name = "ip6-unicast",
618  .node_name = "ip6-not-enabled",
619  .runs_before = VNET_FEATURES ("ip6-lookup"),
620 };
621 
622 VNET_FEATURE_INIT (ip6_lookup, static) =
623 {
624  .arc_name = "ip6-unicast",
625  .node_name = "ip6-lookup",
626  .runs_before = 0, /*last feature*/
627 };
628 
629 /* Built-in ip6 multicast rx feature path definition (none now) */
630 VNET_FEATURE_ARC_INIT (ip6_multicast, static) =
631 {
632  .arc_name = "ip6-multicast",
633  .start_nodes = VNET_FEATURES ("ip6-input"),
634  .last_in_arc = "ip6-mfib-forward-lookup",
635  .arc_index_ptr = &ip6_main.lookup_main.mcast_feature_arc_index,
636 };
637 
638 VNET_FEATURE_INIT (ip6_vpath_mc, static) = {
639  .arc_name = "ip6-multicast",
640  .node_name = "vpath-input-ip6",
641  .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
642 };
643 
644 VNET_FEATURE_INIT (ip6_not_enabled_mc, static) = {
645  .arc_name = "ip6-multicast",
646  .node_name = "ip6-not-enabled",
647  .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
648 };
649 
650 VNET_FEATURE_INIT (ip6_mc_lookup, static) = {
651  .arc_name = "ip6-multicast",
652  .node_name = "ip6-mfib-forward-lookup",
653  .runs_before = 0, /* last feature */
654 };
655 
656 /* Built-in ip4 tx feature path definition */
657 VNET_FEATURE_ARC_INIT (ip6_output, static) =
658 {
659  .arc_name = "ip6-output",
660  .start_nodes = VNET_FEATURES ("ip6-rewrite", "ip6-midchain", "ip6-dvr-dpo"),
661  .last_in_arc = "interface-output",
663 };
664 
665 VNET_FEATURE_INIT (ip6_outacl, static) = {
666  .arc_name = "ip6-output",
667  .node_name = "ip6-outacl",
668  .runs_before = VNET_FEATURES ("ipsec6-output-feature"),
669 };
670 
671 VNET_FEATURE_INIT (ip6_ipsec_output, static) = {
672  .arc_name = "ip6-output",
673  .node_name = "ipsec6-output-feature",
674  .runs_before = VNET_FEATURES ("interface-output"),
675 };
676 
677 VNET_FEATURE_INIT (ip6_interface_output, static) = {
678  .arc_name = "ip6-output",
679  .node_name = "interface-output",
680  .runs_before = 0, /* not before any other features */
681 };
682 /* *INDENT-ON* */
683 
684 static clib_error_t *
686 {
687  ip6_main_t *im = &ip6_main;
688 
689  vec_validate_init_empty (im->fib_index_by_sw_if_index, sw_if_index, ~0);
690  vec_validate_init_empty (im->mfib_index_by_sw_if_index, sw_if_index, ~0);
691 
692  if (is_add)
693  {
694  /* Fill in lookup tables with default table (0). */
695  im->fib_index_by_sw_if_index[sw_if_index] = 0;
696  im->mfib_index_by_sw_if_index[sw_if_index] = 0;
697  }
698  else
699  {
700  /* Ensure that IPv6 is disabled */
701  ip6_main_t *im6 = &ip6_main;
702  ip_lookup_main_t *lm6 = &im6->lookup_main;
703  ip_interface_address_t *ia = 0;
704  ip6_address_t *address;
706 
708  /* *INDENT-OFF* */
710  ({
713  }));
714  /* *INDENT-ON* */
716  }
717 
718  vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
719  is_add, 0, 0);
720 
721  vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
722  sw_if_index, is_add, 0, 0);
723 
724  return /* no error */ 0;
725 }
726 
728 
732 {
733  return ip6_lookup_inline (vm, node, frame);
734 }
735 
736 static u8 *format_ip6_lookup_trace (u8 * s, va_list * args);
737 
738 /* *INDENT-OFF* */
740 {
741  .name = "ip6-lookup",
742  .vector_size = sizeof (u32),
743  .format_trace = format_ip6_lookup_trace,
744  .n_next_nodes = IP6_LOOKUP_N_NEXT,
745  .next_nodes = IP6_LOOKUP_NEXT_NODES,
746 };
747 /* *INDENT-ON* */
748 
752 {
754  u32 n_left, *from;
756  ip6_main_t *im = &ip6_main;
759 
761  n_left = frame->n_vectors;
762  next = nexts;
763 
765 
766  while (n_left >= 4)
767  {
768  const load_balance_t *lb0, *lb1;
769  const ip6_header_t *ip0, *ip1;
770  u32 lbi0, hc0, lbi1, hc1;
771  const dpo_id_t *dpo0, *dpo1;
772 
773  /* Prefetch next iteration. */
774  {
775  vlib_prefetch_buffer_header (b[2], STORE);
776  vlib_prefetch_buffer_header (b[3], STORE);
777 
778  CLIB_PREFETCH (b[2]->data, sizeof (ip0[0]), STORE);
779  CLIB_PREFETCH (b[3]->data, sizeof (ip0[0]), STORE);
780  }
781 
782  ip0 = vlib_buffer_get_current (b[0]);
783  ip1 = vlib_buffer_get_current (b[1]);
784  lbi0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
785  lbi1 = vnet_buffer (b[1])->ip.adj_index[VLIB_TX];
786 
787  lb0 = load_balance_get (lbi0);
788  lb1 = load_balance_get (lbi1);
789 
790  /*
791  * this node is for via FIBs we can re-use the hash value from the
792  * to node if present.
793  * We don't want to use the same hash value at each level in the recursion
794  * graph as that would lead to polarisation
795  */
796  hc0 = hc1 = 0;
797 
798  if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
799  {
800  if (PREDICT_TRUE (vnet_buffer (b[0])->ip.flow_hash))
801  {
802  hc0 = vnet_buffer (b[0])->ip.flow_hash =
803  vnet_buffer (b[0])->ip.flow_hash >> 1;
804  }
805  else
806  {
807  hc0 = vnet_buffer (b[0])->ip.flow_hash =
809  }
811  (lb0, (hc0 & (lb0->lb_n_buckets_minus_1)));
812  }
813  else
814  {
815  dpo0 = load_balance_get_bucket_i (lb0, 0);
816  }
817  if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
818  {
819  if (PREDICT_TRUE (vnet_buffer (b[1])->ip.flow_hash))
820  {
821  hc1 = vnet_buffer (b[1])->ip.flow_hash =
822  vnet_buffer (b[1])->ip.flow_hash >> 1;
823  }
824  else
825  {
826  hc1 = vnet_buffer (b[1])->ip.flow_hash =
828  }
830  (lb1, (hc1 & (lb1->lb_n_buckets_minus_1)));
831  }
832  else
833  {
834  dpo1 = load_balance_get_bucket_i (lb1, 0);
835  }
836 
837  next[0] = dpo0->dpoi_next_node;
838  next[1] = dpo1->dpoi_next_node;
839 
840  /* Only process the HBH Option Header if explicitly configured to do so */
841  if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
842  {
843  next[0] = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
845  }
846  /* Only process the HBH Option Header if explicitly configured to do so */
847  if (PREDICT_FALSE (ip1->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
848  {
849  next[1] = (dpo_is_adj (dpo1) && im->hbh_enabled) ?
851  }
852 
853  vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
854  vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
855 
857  (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, b[0]));
859  (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, b[1]));
860 
861  b += 2;
862  next += 2;
863  n_left -= 2;
864  }
865 
866  while (n_left > 0)
867  {
868  const load_balance_t *lb0;
869  const ip6_header_t *ip0;
870  const dpo_id_t *dpo0;
871  u32 lbi0, hc0;
872 
873  ip0 = vlib_buffer_get_current (b[0]);
874  lbi0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
875 
876  lb0 = load_balance_get (lbi0);
877 
878  hc0 = 0;
879  if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
880  {
881  if (PREDICT_TRUE (vnet_buffer (b[0])->ip.flow_hash))
882  {
883  hc0 = vnet_buffer (b[0])->ip.flow_hash =
884  vnet_buffer (b[0])->ip.flow_hash >> 1;
885  }
886  else
887  {
888  hc0 = vnet_buffer (b[0])->ip.flow_hash =
890  }
892  (lb0, (hc0 & (lb0->lb_n_buckets_minus_1)));
893  }
894  else
895  {
896  dpo0 = load_balance_get_bucket_i (lb0, 0);
897  }
898 
899  next[0] = dpo0->dpoi_next_node;
900  vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
901 
902  /* Only process the HBH Option Header if explicitly configured to do so */
903  if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
904  {
905  next[0] = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
907  }
908 
910  (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, b[0]));
911 
912  b += 1;
913  next += 1;
914  n_left -= 1;
915  }
916 
918 
919  if (node->flags & VLIB_NODE_FLAG_TRACE)
921 
922  return frame->n_vectors;
923 }
924 
925 /* *INDENT-OFF* */
927 {
928  .name = "ip6-load-balance",
929  .vector_size = sizeof (u32),
930  .sibling_of = "ip6-lookup",
931  .format_trace = format_ip6_lookup_trace,
932 };
933 /* *INDENT-ON* */
934 
935 typedef struct
936 {
937  /* Adjacency taken. */
941 
942  /* Packet data, possibly *after* rewrite. */
943  u8 packet_data[128 - 1 * sizeof (u32)];
944 }
946 
947 #ifndef CLIB_MARCH_VARIANT
948 u8 *
949 format_ip6_forward_next_trace (u8 * s, va_list * args)
950 {
951  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
952  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
953  ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
954  u32 indent = format_get_indent (s);
955 
956  s = format (s, "%Ufib:%d adj:%d flow:%d",
957  format_white_space, indent,
958  t->fib_index, t->adj_index, t->flow_hash);
959  s = format (s, "\n%U%U",
960  format_white_space, indent,
961  format_ip6_header, t->packet_data, sizeof (t->packet_data));
962  return s;
963 }
964 #endif
965 
966 static u8 *
967 format_ip6_lookup_trace (u8 * s, va_list * args)
968 {
969  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
970  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
971  ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
972  u32 indent = format_get_indent (s);
973 
974  s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x",
975  t->fib_index, t->adj_index, t->flow_hash);
976  s = format (s, "\n%U%U",
977  format_white_space, indent,
978  format_ip6_header, t->packet_data, sizeof (t->packet_data));
979  return s;
980 }
981 
982 
983 static u8 *
984 format_ip6_rewrite_trace (u8 * s, va_list * args)
985 {
986  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
987  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
988  ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
989  u32 indent = format_get_indent (s);
990 
991  s = format (s, "tx_sw_if_index %d adj-idx %d : %U flow hash: 0x%08x",
994  s = format (s, "\n%U%U",
995  format_white_space, indent,
997  t->packet_data, sizeof (t->packet_data));
998  return s;
999 }
1000 
1001 /* Common trace function for all ip6-forward next nodes. */
1002 #ifndef CLIB_MARCH_VARIANT
1003 void
1006  vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index)
1007 {
1008  u32 *from, n_left;
1009  ip6_main_t *im = &ip6_main;
1010 
1011  n_left = frame->n_vectors;
1013 
1014  while (n_left >= 4)
1015  {
1016  u32 bi0, bi1;
1017  vlib_buffer_t *b0, *b1;
1018  ip6_forward_next_trace_t *t0, *t1;
1019 
1020  /* Prefetch next iteration. */
1023 
1024  bi0 = from[0];
1025  bi1 = from[1];
1026 
1027  b0 = vlib_get_buffer (vm, bi0);
1028  b1 = vlib_get_buffer (vm, bi1);
1029 
1030  if (b0->flags & VLIB_BUFFER_IS_TRACED)
1031  {
1032  t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
1033  t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
1034  t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
1035  t0->fib_index =
1036  (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
1037  (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
1038  vec_elt (im->fib_index_by_sw_if_index,
1040 
1043  sizeof (t0->packet_data));
1044  }
1045  if (b1->flags & VLIB_BUFFER_IS_TRACED)
1046  {
1047  t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
1048  t1->adj_index = vnet_buffer (b1)->ip.adj_index[which_adj_index];
1049  t1->flow_hash = vnet_buffer (b1)->ip.flow_hash;
1050  t1->fib_index =
1051  (vnet_buffer (b1)->sw_if_index[VLIB_TX] !=
1052  (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] :
1053  vec_elt (im->fib_index_by_sw_if_index,
1055 
1058  sizeof (t1->packet_data));
1059  }
1060  from += 2;
1061  n_left -= 2;
1062  }
1063 
1064  while (n_left >= 1)
1065  {
1066  u32 bi0;
1067  vlib_buffer_t *b0;
1069 
1070  bi0 = from[0];
1071 
1072  b0 = vlib_get_buffer (vm, bi0);
1073 
1074  if (b0->flags & VLIB_BUFFER_IS_TRACED)
1075  {
1076  t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
1077  t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
1078  t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
1079  t0->fib_index =
1080  (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
1081  (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
1082  vec_elt (im->fib_index_by_sw_if_index,
1084 
1087  sizeof (t0->packet_data));
1088  }
1089  from += 1;
1090  n_left -= 1;
1091  }
1092 }
1093 
1094 /* Compute TCP/UDP/ICMP6 checksum in software. */
1095 u16
1097  ip6_header_t * ip0, int *bogus_lengthp)
1098 {
1099  ip_csum_t sum0 = 0;
1100  u16 payload_length, payload_length_host_byte_order;
1101  u32 i;
1102  u32 headers_size = sizeof (ip0[0]);
1103  u8 *data_this_buffer;
1104  u8 next_hdr = ip0->protocol;
1105 
1106  ASSERT (bogus_lengthp);
1107  *bogus_lengthp = 0;
1108 
1109  payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
1110  data_this_buffer = (u8 *) (ip0 + 1);
1111  payload_length = ip0->payload_length;
1112 
1113  /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets)
1114  * or UDP-Ping packets */
1115  if (PREDICT_FALSE (next_hdr == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
1116  {
1117  u32 skip_bytes;
1118  ip6_hop_by_hop_ext_t *ext_hdr =
1119  (ip6_hop_by_hop_ext_t *) data_this_buffer;
1120 
1121  /* validate really icmp6 next */
1122  ASSERT ((ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
1123  || (ext_hdr->next_hdr == IP_PROTOCOL_UDP));
1124 
1125  skip_bytes = 8 * (1 + ext_hdr->n_data_u64s);
1126  data_this_buffer = (void *) ((u8 *) data_this_buffer + skip_bytes);
1127 
1128  payload_length_host_byte_order -= skip_bytes;
1129  headers_size += skip_bytes;
1130 
1131  /* pseudo-header adjustments:
1132  * exclude ext header bytes from payload length
1133  * use payload IP proto rather than ext header IP proto
1134  */
1135  payload_length = clib_host_to_net_u16 (payload_length_host_byte_order);
1136  next_hdr = ext_hdr->next_hdr;
1137  }
1138 
1139  /* Initialize checksum with ip pseudo-header. */
1140  sum0 = payload_length + clib_host_to_net_u16 (next_hdr);
1141 
1142  for (i = 0; i < ARRAY_LEN (ip0->src_address.as_uword); i++)
1143  {
1144  sum0 = ip_csum_with_carry
1145  (sum0, clib_mem_unaligned (&ip0->src_address.as_uword[i], uword));
1146  sum0 = ip_csum_with_carry
1147  (sum0, clib_mem_unaligned (&ip0->dst_address.as_uword[i], uword));
1148  }
1149 
1150  if (p0)
1151  return ip_calculate_l4_checksum (vm, p0, sum0,
1152  payload_length_host_byte_order,
1153  (u8 *) ip0, headers_size, NULL);
1154  else
1155  return ip_calculate_l4_checksum (vm, 0, sum0,
1156  payload_length_host_byte_order, NULL, 0,
1157  data_this_buffer);
1158 }
1159 
1160 u32
1162 {
1164  udp_header_t *udp0;
1165  u16 sum16;
1166  int bogus_length;
1167 
1168  /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) */
1169  ASSERT (ip0->protocol == IP_PROTOCOL_TCP
1170  || ip0->protocol == IP_PROTOCOL_ICMP6
1171  || ip0->protocol == IP_PROTOCOL_UDP
1172  || ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS);
1173 
1174  udp0 = (void *) (ip0 + 1);
1175  if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0)
1176  {
1177  p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1178  | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1179  return p0->flags;
1180  }
1181 
1182  sum16 = ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0, &bogus_length);
1183 
1184  p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1185  | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT));
1186 
1187  return p0->flags;
1188 }
1189 #endif
1190 
1191 /**
1192  * @brief returns number of links on which src is reachable.
1193  */
1194 always_inline int
1196 {
1197  const load_balance_t *lb0;
1198  index_t lbi;
1199  u32 fib_index;
1200 
1201  fib_index = vec_elt (im->fib_index_by_sw_if_index,
1203  fib_index =
1204  (vnet_buffer (b)->sw_if_index[VLIB_TX] == (u32) ~ 0) ?
1205  fib_index : vnet_buffer (b)->sw_if_index[VLIB_TX];
1206 
1207  lbi = ip6_fib_table_fwding_lookup (fib_index, &i->src_address);
1208  lb0 = load_balance_get (lbi);
1209 
1210  return (fib_urpf_check_size (lb0->lb_urpf));
1211 }
1212 
1215  u32 * udp_offset0)
1216 {
1217  u32 proto0;
1218  proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_UDP, udp_offset0);
1219  if (proto0 != IP_PROTOCOL_UDP)
1220  {
1221  proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_TCP, udp_offset0);
1222  proto0 = (proto0 == IP_PROTOCOL_TCP) ? proto0 : 0;
1223  }
1224  return proto0;
1225 }
1226 
1227 /* *INDENT-OFF* */
1228 VNET_FEATURE_ARC_INIT (ip6_local) =
1229 {
1230  .arc_name = "ip6-local",
1231  .start_nodes = VNET_FEATURES ("ip6-local"),
1232 };
1233 /* *INDENT-ON* */
1234 
1237 {
1238 
1239  u16 payload_length_host_byte_order;
1240  u32 n_this_buffer, n_bytes_left;
1242  u32 headers_size = sizeof (ip0[0]);
1243  u8 *data_this_buffer;
1244 
1245 
1246  data_this_buffer = (u8 *) (ip0 + 1);
1247 
1248  ip6_hop_by_hop_ext_t *ext_hdr = (ip6_hop_by_hop_ext_t *) data_this_buffer;
1249 
1250  /* validate really icmp6 next */
1251 
1252  if (!(ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
1253  || (ext_hdr->next_hdr == IP_PROTOCOL_UDP))
1254  return 0;
1255 
1256 
1257  payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
1258  n_bytes_left = n_this_buffer = payload_length_host_byte_order;
1259 
1260 
1261  u32 n_ip_bytes_this_buffer =
1262  p0->current_length - (((u8 *) ip0 - p0->data) - p0->current_data);
1263  if (n_this_buffer + headers_size > n_ip_bytes_this_buffer)
1264  {
1265  n_this_buffer = p0->current_length > headers_size ?
1266  n_ip_bytes_this_buffer - headers_size : 0;
1267  }
1268 
1269  n_bytes_left -= n_this_buffer;
1270  n_bytes_left -= p0->total_length_not_including_first_buffer;
1271 
1272  if (n_bytes_left == 0)
1273  return 0;
1274  else
1275  return 1;
1276 }
1277 
1278 
1281  vlib_frame_t * frame, int head_of_feature_arc)
1282 {
1283  ip6_main_t *im = &ip6_main;
1284  ip_lookup_main_t *lm = &im->lookup_main;
1285  u32 *from, n_left_from;
1286  vlib_node_runtime_t *error_node =
1288  u8 arc_index = vnet_feat_arc_ip6_local.feature_arc_index;
1291 
1293  n_left_from = frame->n_vectors;
1294 
1295  if (node->flags & VLIB_NODE_FLAG_TRACE)
1297 
1299  b = bufs;
1300  next = nexts;
1301 
1302  while (n_left_from > 2)
1303  {
1304  /* Prefetch next iteration. */
1305  if (n_left_from >= 6)
1306  {
1307  vlib_prefetch_buffer_header (b[4], STORE);
1308  vlib_prefetch_buffer_header (b[5], STORE);
1309  vlib_prefetch_buffer_data (b[2], LOAD);
1310  vlib_prefetch_buffer_data (b[3], LOAD);
1311  }
1312 
1313  ip6_error_t error[2];
1314  error[0] = IP6_ERROR_UNKNOWN_PROTOCOL;
1315  error[1] = IP6_ERROR_UNKNOWN_PROTOCOL;
1316 
1317  ip6_header_t *ip[2];
1318  ip[0] = vlib_buffer_get_current (b[0]);
1319  ip[1] = vlib_buffer_get_current (b[1]);
1320 
1321  if (head_of_feature_arc)
1322  {
1323  vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1324  vnet_buffer (b[1])->l3_hdr_offset = b[1]->current_data;
1325 
1326  u8 type[2];
1327  type[0] = lm->builtin_protocol_by_ip_protocol[ip[0]->protocol];
1328  type[1] = lm->builtin_protocol_by_ip_protocol[ip[1]->protocol];
1329 
1330  u32 flags[2];
1331  flags[0] = b[0]->flags;
1332  flags[1] = b[1]->flags;
1333 
1334  vnet_buffer_oflags_t oflags[2];
1335  oflags[0] = vnet_buffer (b[0])->oflags;
1336  oflags[1] = vnet_buffer (b[1])->oflags;
1337 
1338  u32 l4_offload[2];
1339  l4_offload[0] = (flags[0] & VNET_BUFFER_F_OFFLOAD) &&
1340  (oflags[0] & (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
1341  VNET_BUFFER_OFFLOAD_F_UDP_CKSUM));
1342  l4_offload[1] = (flags[1] & VNET_BUFFER_F_OFFLOAD) &&
1343  (oflags[1] & (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
1344  VNET_BUFFER_OFFLOAD_F_UDP_CKSUM));
1345 
1346  u32 good_l4_csum[2];
1347  good_l4_csum[0] =
1348  (flags[0] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) | l4_offload[0];
1349  good_l4_csum[1] =
1350  (flags[1] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) | l4_offload[1];
1351 
1352  u32 udp_offset[2] = { };
1353  u8 is_tcp_udp[2];
1354  is_tcp_udp[0] =
1355  ip6_next_proto_is_tcp_udp (b[0], ip[0], &udp_offset[0]);
1356  is_tcp_udp[1] =
1357  ip6_next_proto_is_tcp_udp (b[1], ip[1], &udp_offset[1]);
1358  i16 len_diff[2] = { 0 };
1359  if (PREDICT_TRUE (is_tcp_udp[0]))
1360  {
1361  udp_header_t *udp =
1362  (udp_header_t *) ((u8 *) ip[0] + udp_offset[0]);
1363  good_l4_csum[0] |= type[0] == IP_BUILTIN_PROTOCOL_UDP
1364  && udp->checksum == 0;
1365  /* optimistically verify UDP length. */
1366  u16 ip_len, udp_len;
1367  ip_len = clib_net_to_host_u16 (ip[0]->payload_length);
1368  udp_len = clib_net_to_host_u16 (udp->length);
1369  len_diff[0] = ip_len - udp_len;
1370  }
1371  if (PREDICT_TRUE (is_tcp_udp[1]))
1372  {
1373  udp_header_t *udp =
1374  (udp_header_t *) ((u8 *) ip[1] + udp_offset[1]);
1375  good_l4_csum[1] |= type[1] == IP_BUILTIN_PROTOCOL_UDP
1376  && udp->checksum == 0;
1377  /* optimistically verify UDP length. */
1378  u16 ip_len, udp_len;
1379  ip_len = clib_net_to_host_u16 (ip[1]->payload_length);
1380  udp_len = clib_net_to_host_u16 (udp->length);
1381  len_diff[1] = ip_len - udp_len;
1382  }
1383 
1384  good_l4_csum[0] |= type[0] == IP_BUILTIN_PROTOCOL_UNKNOWN;
1385  good_l4_csum[1] |= type[1] == IP_BUILTIN_PROTOCOL_UNKNOWN;
1386 
1387  len_diff[0] = type[0] == IP_BUILTIN_PROTOCOL_UDP ? len_diff[0] : 0;
1388  len_diff[1] = type[1] == IP_BUILTIN_PROTOCOL_UDP ? len_diff[1] : 0;
1389 
1390  u8 need_csum[2];
1391  need_csum[0] = type[0] != IP_BUILTIN_PROTOCOL_UNKNOWN
1392  && !good_l4_csum[0]
1393  && !(flags[0] & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1394  need_csum[1] = type[1] != IP_BUILTIN_PROTOCOL_UNKNOWN
1395  && !good_l4_csum[1]
1396  && !(flags[1] & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1397  if (PREDICT_FALSE (need_csum[0]))
1398  {
1400  good_l4_csum[0] = flags[0] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
1401  error[0] = IP6_ERROR_UNKNOWN_PROTOCOL;
1402  }
1403  else
1404  {
1405  if (ip6_tcp_udp_icmp_bad_length (vm, b[0]))
1406  error[0] = IP6_ERROR_BAD_LENGTH;
1407  }
1408  if (PREDICT_FALSE (need_csum[1]))
1409  {
1411  good_l4_csum[1] = flags[1] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
1412  error[1] = IP6_ERROR_UNKNOWN_PROTOCOL;
1413  }
1414  else
1415  {
1416  if (ip6_tcp_udp_icmp_bad_length (vm, b[1]))
1417  error[1] = IP6_ERROR_BAD_LENGTH;
1418  }
1419 
1420 
1421  error[0] = len_diff[0] < 0 ? IP6_ERROR_UDP_LENGTH : error[0];
1422 
1423  error[1] = len_diff[1] < 0 ? IP6_ERROR_UDP_LENGTH : error[1];
1424 
1425  STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1426  IP6_ERROR_UDP_CHECKSUM,
1427  "Wrong IP6 errors constants");
1428  STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1429  IP6_ERROR_ICMP_CHECKSUM,
1430  "Wrong IP6 errors constants");
1431 
1432  error[0] =
1433  !good_l4_csum[0] ? IP6_ERROR_UDP_CHECKSUM + type[0] : error[0];
1434  error[1] =
1435  !good_l4_csum[1] ? IP6_ERROR_UDP_CHECKSUM + type[1] : error[1];
1436 
1437  /* Drop packets from unroutable hosts. */
1438  /* If this is a neighbor solicitation (ICMP), skip source RPF check */
1439  u8 unroutable[2];
1440  unroutable[0] = error[0] == IP6_ERROR_UNKNOWN_PROTOCOL
1443  unroutable[1] = error[1] == IP6_ERROR_UNKNOWN_PROTOCOL
1446  if (PREDICT_FALSE (unroutable[0]))
1447  {
1448  error[0] =
1449  !ip6_urpf_loose_check (im, b[0],
1450  ip[0]) ? IP6_ERROR_SRC_LOOKUP_MISS
1451  : error[0];
1452  }
1453  if (PREDICT_FALSE (unroutable[1]))
1454  {
1455  error[1] =
1456  !ip6_urpf_loose_check (im, b[1],
1457  ip[1]) ? IP6_ERROR_SRC_LOOKUP_MISS
1458  : error[1];
1459  }
1460 
1461  vnet_buffer (b[0])->ip.fib_index =
1462  vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1463  vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1464  vnet_buffer (b[0])->ip.fib_index;
1465  vnet_buffer (b[1])->ip.fib_index =
1466  vnet_buffer (b[1])->sw_if_index[VLIB_TX] != ~0 ?
1467  vnet_buffer (b[1])->sw_if_index[VLIB_TX] :
1468  vnet_buffer (b[1])->ip.fib_index;
1469  } /* head_of_feature_arc */
1470 
1471  next[0] = lm->local_next_by_ip_protocol[ip[0]->protocol];
1472  next[0] =
1473  error[0] != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[0];
1474  next[1] = lm->local_next_by_ip_protocol[ip[1]->protocol];
1475  next[1] =
1476  error[1] != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[1];
1477 
1478  b[0]->error = error_node->errors[error[0]];
1479  b[1]->error = error_node->errors[error[1]];
1480 
1481  if (head_of_feature_arc)
1482  {
1483  u8 ip6_unknown[2];
1484  ip6_unknown[0] = error[0] == (u8) IP6_ERROR_UNKNOWN_PROTOCOL;
1485  ip6_unknown[1] = error[1] == (u8) IP6_ERROR_UNKNOWN_PROTOCOL;
1486  if (PREDICT_TRUE (ip6_unknown[0]))
1487  {
1488  u32 next32 = next[0];
1490  vnet_buffer (b[0])->sw_if_index
1491  [VLIB_RX], &next32, b[0]);
1492  next[0] = next32;
1493  }
1494  if (PREDICT_TRUE (ip6_unknown[1]))
1495  {
1496  u32 next32 = next[1];
1498  vnet_buffer (b[1])->sw_if_index
1499  [VLIB_RX], &next32, b[1]);
1500  next[1] = next32;
1501  }
1502  }
1503 
1504  /* next */
1505  b += 2;
1506  next += 2;
1507  n_left_from -= 2;
1508  }
1509 
1510  while (n_left_from)
1511  {
1512  u8 error;
1513  error = IP6_ERROR_UNKNOWN_PROTOCOL;
1514 
1515  ip6_header_t *ip;
1516  ip = vlib_buffer_get_current (b[0]);
1517 
1518  if (head_of_feature_arc)
1519  {
1520  vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1521  u8 type = lm->builtin_protocol_by_ip_protocol[ip->protocol];
1522 
1523  u32 flags = b[0]->flags;
1524 
1525  vnet_buffer_oflags_t oflags = vnet_buffer (b[0])->oflags;
1526 
1527  u32 l4_offload = (flags & VNET_BUFFER_F_OFFLOAD) &&
1528  (oflags & (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
1529  VNET_BUFFER_OFFLOAD_F_UDP_CKSUM));
1530 
1531  u32 good_l4_csum =
1532  (flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) | l4_offload;
1533  u32 udp_offset;
1534  i16 len_diff = 0;
1535  u8 is_tcp_udp = ip6_next_proto_is_tcp_udp (b[0], ip, &udp_offset);
1536  if (PREDICT_TRUE (is_tcp_udp))
1537  {
1538  udp_header_t *udp = (udp_header_t *) ((u8 *) ip + udp_offset);
1539  /* Don't verify UDP checksum for packets with explicit zero checksum. */
1540  good_l4_csum |= type == IP_BUILTIN_PROTOCOL_UDP
1541  && udp->checksum == 0;
1542  /* optimistically verify UDP length. */
1543  u16 ip_len, udp_len;
1544  ip_len = clib_net_to_host_u16 (ip->payload_length);
1545  udp_len = clib_net_to_host_u16 (udp->length);
1546  len_diff = ip_len - udp_len;
1547  }
1548 
1549  good_l4_csum |= type == IP_BUILTIN_PROTOCOL_UNKNOWN;
1550  len_diff = type == IP_BUILTIN_PROTOCOL_UDP ? len_diff : 0;
1551 
1552  u8 need_csum = type != IP_BUILTIN_PROTOCOL_UNKNOWN &&
1553  !good_l4_csum &&
1554  !(flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1555  if (PREDICT_FALSE (need_csum))
1556  {
1558  good_l4_csum = flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
1559  error = IP6_ERROR_UNKNOWN_PROTOCOL;
1560  }
1561  else
1562  {
1563  if (ip6_tcp_udp_icmp_bad_length (vm, b[0]))
1564  error = IP6_ERROR_BAD_LENGTH;
1565  }
1566 
1567 
1568 
1569  error = len_diff < 0 ? IP6_ERROR_UDP_LENGTH : error;
1570  STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1571  IP6_ERROR_UDP_CHECKSUM,
1572  "Wrong IP6 errors constants");
1573  STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1574  IP6_ERROR_ICMP_CHECKSUM,
1575  "Wrong IP6 errors constants");
1576 
1577  error = !good_l4_csum ? IP6_ERROR_UDP_CHECKSUM + type : error;
1578 
1579  /* Drop packets from unroutable hosts. */
1580  /* If this is a neighbor solicitation (ICMP), skip source RPF check */
1581  u8 unroutable = error == IP6_ERROR_UNKNOWN_PROTOCOL
1583  && !ip6_address_is_link_local_unicast (&ip->src_address);
1584  if (PREDICT_FALSE (unroutable))
1585  {
1586  error =
1587  !ip6_urpf_loose_check (im, b[0],
1588  ip) ? IP6_ERROR_SRC_LOOKUP_MISS :
1589  error;
1590  }
1591 
1592  vnet_buffer (b[0])->ip.fib_index =
1593  vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1594  vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1595  vnet_buffer (b[0])->ip.fib_index;
1596  } /* head_of_feature_arc */
1597 
1598  next[0] = lm->local_next_by_ip_protocol[ip->protocol];
1599  next[0] =
1600  error != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[0];
1601 
1602  b[0]->error = error_node->errors[error];
1603 
1604  if (head_of_feature_arc)
1605  {
1606  if (PREDICT_TRUE (error == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1607  {
1608  u32 next32 = next[0];
1610  vnet_buffer (b[0])->sw_if_index
1611  [VLIB_RX], &next32, b[0]);
1612  next[0] = next32;
1613  }
1614  }
1615 
1616  /* next */
1617  b += 1;
1618  next += 1;
1619  n_left_from -= 1;
1620  }
1621 
1623  return frame->n_vectors;
1624 }
1625 
1627  vlib_frame_t * frame)
1628 {
1629  return ip6_local_inline (vm, node, frame, 1 /* head of feature arc */ );
1630 }
1631 
1632 /* *INDENT-OFF* */
1634 {
1635  .name = "ip6-local",
1636  .vector_size = sizeof (u32),
1637  .format_trace = format_ip6_forward_next_trace,
1638  .n_next_nodes = IP_LOCAL_N_NEXT,
1639  .next_nodes =
1640  {
1641  [IP_LOCAL_NEXT_DROP] = "ip6-drop",
1642  [IP_LOCAL_NEXT_PUNT] = "ip6-punt",
1643  [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip6-udp-lookup",
1644  [IP_LOCAL_NEXT_ICMP] = "ip6-icmp-input",
1645  [IP_LOCAL_NEXT_REASSEMBLY] = "ip6-full-reassembly",
1646  },
1647 };
1648 /* *INDENT-ON* */
1649 
1652  vlib_frame_t * frame)
1653 {
1654  return ip6_local_inline (vm, node, frame, 0 /* head of feature arc */ );
1655 }
1656 
1657 /* *INDENT-OFF* */
1659  .name = "ip6-local-end-of-arc",
1660  .vector_size = sizeof (u32),
1661 
1662  .format_trace = format_ip6_forward_next_trace,
1663  .sibling_of = "ip6-local",
1664 };
1665 
1666 VNET_FEATURE_INIT (ip6_local_end_of_arc, static) = {
1667  .arc_name = "ip6-local",
1668  .node_name = "ip6-local-end-of-arc",
1669  .runs_before = 0, /* not before any other features */
1670 };
1671 /* *INDENT-ON* */
1672 
1673 #ifdef CLIB_MARCH_VARIANT
1675 #else
1676 void
1678 {
1680  ip6_main_t *im = &ip6_main;
1681  ip_lookup_main_t *lm = &im->lookup_main;
1682 
1686 }
1687 
1688 void
1690 {
1691  ip6_main_t *im = &ip6_main;
1692  ip_lookup_main_t *lm = &im->lookup_main;
1693 
1696 }
1697 #endif
1698 
1699 typedef enum
1700 {
1706 
1707 /**
1708  * This bits of an IPv6 address to mask to construct a multicast
1709  * MAC address
1710  */
1711 #define IP6_MCAST_ADDR_MASK 0xffffffff
1712 
1713 always_inline void
1715  u16 adj_packet_bytes, bool is_locally_generated,
1716  u32 * next, u8 is_midchain, u32 * error)
1717 {
1718  if (adj_packet_bytes >= 1280 && packet_bytes > adj_packet_bytes)
1719  {
1720  if (is_locally_generated)
1721  {
1722  /* IP fragmentation */
1723  ip_frag_set_vnet_buffer (b, adj_packet_bytes,
1724  (is_midchain ?
1728  *error = IP6_ERROR_MTU_EXCEEDED;
1729  }
1730  else
1731  {
1732  *error = IP6_ERROR_MTU_EXCEEDED;
1733  icmp6_error_set_vnet_buffer (b, ICMP6_packet_too_big, 0,
1734  adj_packet_bytes);
1736  }
1737  }
1738 }
1739 
1743  vlib_frame_t * frame,
1744  int do_counters, int is_midchain, int is_mcast)
1745 {
1748  u32 n_left_from, n_left_to_next, *to_next, next_index;
1749  vlib_node_runtime_t *error_node =
1751 
1752  n_left_from = frame->n_vectors;
1753  next_index = node->cached_next_index;
1755 
1756  while (n_left_from > 0)
1757  {
1758  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1759 
1760  while (n_left_from >= 4 && n_left_to_next >= 2)
1761  {
1762  const ip_adjacency_t *adj0, *adj1;
1763  vlib_buffer_t *p0, *p1;
1764  ip6_header_t *ip0, *ip1;
1765  u32 pi0, rw_len0, next0, error0, adj_index0;
1766  u32 pi1, rw_len1, next1, error1, adj_index1;
1767  u32 tx_sw_if_index0, tx_sw_if_index1;
1768  bool is_locally_originated0, is_locally_originated1;
1769 
1770  /* Prefetch next iteration. */
1771  {
1772  vlib_buffer_t *p2, *p3;
1773 
1774  p2 = vlib_get_buffer (vm, from[2]);
1775  p3 = vlib_get_buffer (vm, from[3]);
1776 
1777  vlib_prefetch_buffer_header (p2, LOAD);
1778  vlib_prefetch_buffer_header (p3, LOAD);
1779 
1782 
1783  CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
1784  CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
1785  }
1786 
1787  pi0 = to_next[0] = from[0];
1788  pi1 = to_next[1] = from[1];
1789 
1790  from += 2;
1791  n_left_from -= 2;
1792  to_next += 2;
1793  n_left_to_next -= 2;
1794 
1795  p0 = vlib_get_buffer (vm, pi0);
1796  p1 = vlib_get_buffer (vm, pi1);
1797 
1798  adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1799  adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
1800 
1801  ip0 = vlib_buffer_get_current (p0);
1802  ip1 = vlib_buffer_get_current (p1);
1803 
1804  error0 = error1 = IP6_ERROR_NONE;
1805  next0 = next1 = IP6_REWRITE_NEXT_DROP;
1806 
1807  is_locally_originated0 =
1808  p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1809  if (PREDICT_TRUE (!is_locally_originated0))
1810  {
1811  i32 hop_limit0 = ip0->hop_limit;
1812 
1813  /* Input node should have reject packets with hop limit 0. */
1814  ASSERT (ip0->hop_limit > 0);
1815 
1816  hop_limit0 -= 1;
1817 
1818  ip0->hop_limit = hop_limit0;
1819 
1820  /*
1821  * If the hop count drops below 1 when forwarding, generate
1822  * an ICMP response.
1823  */
1824  if (PREDICT_FALSE (hop_limit0 <= 0))
1825  {
1826  error0 = IP6_ERROR_TIME_EXPIRED;
1828  vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1829  icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1830  ICMP6_time_exceeded_ttl_exceeded_in_transit,
1831  0);
1832  }
1833  }
1834 
1835  is_locally_originated1 =
1836  p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1837  if (PREDICT_TRUE (!is_locally_originated1))
1838  {
1839  i32 hop_limit1 = ip1->hop_limit;
1840 
1841  /* Input node should have reject packets with hop limit 0. */
1842  ASSERT (ip1->hop_limit > 0);
1843 
1844  hop_limit1 -= 1;
1845 
1846  ip1->hop_limit = hop_limit1;
1847 
1848  /*
1849  * If the hop count drops below 1 when forwarding, generate
1850  * an ICMP response.
1851  */
1852  if (PREDICT_FALSE (hop_limit1 <= 0))
1853  {
1854  error1 = IP6_ERROR_TIME_EXPIRED;
1856  vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1857  icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded,
1858  ICMP6_time_exceeded_ttl_exceeded_in_transit,
1859  0);
1860  }
1861  }
1862 
1863  adj0 = adj_get (adj_index0);
1864  adj1 = adj_get (adj_index1);
1865 
1866  rw_len0 = adj0[0].rewrite_header.data_bytes;
1867  rw_len1 = adj1[0].rewrite_header.data_bytes;
1868  vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
1869  vnet_buffer (p1)->ip.save_rewrite_length = rw_len1;
1870 
1871  if (do_counters)
1872  {
1875  thread_index, adj_index0, 1,
1876  vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1879  thread_index, adj_index1, 1,
1880  vlib_buffer_length_in_chain (vm, p1) + rw_len1);
1881  }
1882 
1883  /* Check MTU of outgoing interface. */
1884  u16 ip0_len =
1885  clib_net_to_host_u16 (ip0->payload_length) +
1886  sizeof (ip6_header_t);
1887  u16 ip1_len =
1888  clib_net_to_host_u16 (ip1->payload_length) +
1889  sizeof (ip6_header_t);
1890  if (p0->flags & VNET_BUFFER_F_GSO)
1891  ip0_len = gso_mtu_sz (p0);
1892  if (p1->flags & VNET_BUFFER_F_GSO)
1893  ip1_len = gso_mtu_sz (p1);
1894 
1895  ip6_mtu_check (p0, ip0_len,
1896  adj0[0].rewrite_header.max_l3_packet_bytes,
1897  is_locally_originated0, &next0, is_midchain,
1898  &error0);
1899  ip6_mtu_check (p1, ip1_len,
1900  adj1[0].rewrite_header.max_l3_packet_bytes,
1901  is_locally_originated1, &next1, is_midchain,
1902  &error1);
1903  /* Don't adjust the buffer for hop count issue; icmp-error node
1904  * wants to see the IP header */
1905  if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1906  {
1907  p0->current_data -= rw_len0;
1908  p0->current_length += rw_len0;
1909  tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
1910  vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1911  next0 = adj0[0].rewrite_header.next_index;
1912  if (PREDICT_FALSE
1913  (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1915  (lm->output_feature_arc_index, tx_sw_if_index0, &next0, p0,
1916  adj0->ia_cfg_index);
1917  }
1918  else
1919  {
1920  p0->error = error_node->errors[error0];
1921  }
1922  if (PREDICT_TRUE (error1 == IP6_ERROR_NONE))
1923  {
1924  p1->current_data -= rw_len1;
1925  p1->current_length += rw_len1;
1926 
1927  tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index;
1928  vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1;
1929  next1 = adj1[0].rewrite_header.next_index;
1930 
1931  if (PREDICT_FALSE
1932  (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1934  (lm->output_feature_arc_index, tx_sw_if_index1, &next1, p1,
1935  adj1->ia_cfg_index);
1936  }
1937  else
1938  {
1939  p1->error = error_node->errors[error1];
1940  }
1941 
1942  if (is_midchain)
1943  {
1944  /* before we paint on the next header, update the L4
1945  * checksums if required, since there's no offload on a tunnel */
1946  vnet_calc_checksums_inline (vm, p0, 0 /* is_ip4 */ ,
1947  1 /* is_ip6 */ );
1948  vnet_calc_checksums_inline (vm, p1, 0 /* is_ip4 */ ,
1949  1 /* is_ip6 */ );
1950 
1951  /* Guess we are only writing on ipv6 header. */
1952  vnet_rewrite_two_headers (adj0[0], adj1[0],
1953  ip0, ip1, sizeof (ip6_header_t));
1954  }
1955  else
1956  /* Guess we are only writing on simple Ethernet header. */
1957  vnet_rewrite_two_headers (adj0[0], adj1[0],
1958  ip0, ip1, sizeof (ethernet_header_t));
1959 
1960  if (is_midchain)
1961  {
1962  if (adj0->sub_type.midchain.fixup_func)
1963  adj0->sub_type.midchain.fixup_func
1964  (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
1965  if (adj1->sub_type.midchain.fixup_func)
1966  adj1->sub_type.midchain.fixup_func
1967  (vm, adj1, p1, adj1->sub_type.midchain.fixup_data);
1968  }
1969  if (is_mcast)
1970  {
1971  /*
1972  * copy bytes from the IP address into the MAC rewrite
1973  */
1975  adj0->
1976  rewrite_header.dst_mcast_offset,
1977  &ip0->dst_address.as_u32[3],
1978  (u8 *) ip0);
1980  adj1->
1981  rewrite_header.dst_mcast_offset,
1982  &ip1->dst_address.as_u32[3],
1983  (u8 *) ip1);
1984  }
1985 
1987  to_next, n_left_to_next,
1988  pi0, pi1, next0, next1);
1989  }
1990 
1991  while (n_left_from > 0 && n_left_to_next > 0)
1992  {
1993  ip_adjacency_t *adj0;
1994  vlib_buffer_t *p0;
1995  ip6_header_t *ip0;
1996  u32 pi0, rw_len0;
1997  u32 adj_index0, next0, error0;
1998  u32 tx_sw_if_index0;
1999  bool is_locally_originated0;
2000 
2001  pi0 = to_next[0] = from[0];
2002 
2003  p0 = vlib_get_buffer (vm, pi0);
2004 
2005  adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
2006 
2007  adj0 = adj_get (adj_index0);
2008 
2009  ip0 = vlib_buffer_get_current (p0);
2010 
2011  error0 = IP6_ERROR_NONE;
2012  next0 = IP6_REWRITE_NEXT_DROP;
2013 
2014  /* Check hop limit */
2015  is_locally_originated0 =
2016  p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
2017  if (PREDICT_TRUE (!is_locally_originated0))
2018  {
2019  i32 hop_limit0 = ip0->hop_limit;
2020 
2021  ASSERT (ip0->hop_limit > 0);
2022 
2023  hop_limit0 -= 1;
2024 
2025  ip0->hop_limit = hop_limit0;
2026 
2027  if (PREDICT_FALSE (hop_limit0 <= 0))
2028  {
2029  /*
2030  * If the hop count drops below 1 when forwarding, generate
2031  * an ICMP response.
2032  */
2033  error0 = IP6_ERROR_TIME_EXPIRED;
2035  vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
2036  icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
2037  ICMP6_time_exceeded_ttl_exceeded_in_transit,
2038  0);
2039  }
2040  }
2041 
2042  if (is_midchain)
2043  {
2044  vnet_calc_checksums_inline (vm, p0, 0 /* is_ip4 */ ,
2045  1 /* is_ip6 */ );
2046 
2047  /* Guess we are only writing on ip6 header. */
2048  vnet_rewrite_one_header (adj0[0], ip0, sizeof (ip6_header_t));
2049  }
2050  else
2051  /* Guess we are only writing on simple Ethernet header. */
2052  vnet_rewrite_one_header (adj0[0], ip0,
2053  sizeof (ethernet_header_t));
2054 
2055  /* Update packet buffer attributes/set output interface. */
2056  rw_len0 = adj0[0].rewrite_header.data_bytes;
2057  vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
2058 
2059  if (do_counters)
2060  {
2063  thread_index, adj_index0, 1,
2064  vlib_buffer_length_in_chain (vm, p0) + rw_len0);
2065  }
2066 
2067  /* Check MTU of outgoing interface. */
2068  u16 ip0_len =
2069  clib_net_to_host_u16 (ip0->payload_length) +
2070  sizeof (ip6_header_t);
2071  if (p0->flags & VNET_BUFFER_F_GSO)
2072  ip0_len = gso_mtu_sz (p0);
2073 
2074  ip6_mtu_check (p0, ip0_len,
2075  adj0[0].rewrite_header.max_l3_packet_bytes,
2076  is_locally_originated0, &next0, is_midchain,
2077  &error0);
2078  /* Don't adjust the buffer for hop count issue; icmp-error node
2079  * wants to see the IP header */
2080  if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
2081  {
2082  p0->current_data -= rw_len0;
2083  p0->current_length += rw_len0;
2084 
2085  tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
2086 
2087  vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
2088  next0 = adj0[0].rewrite_header.next_index;
2089 
2090  if (PREDICT_FALSE
2091  (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
2093  (lm->output_feature_arc_index, tx_sw_if_index0, &next0, p0,
2094  adj0->ia_cfg_index);
2095  }
2096  else
2097  {
2098  p0->error = error_node->errors[error0];
2099  }
2100 
2101  if (is_midchain)
2102  {
2103  if (adj0->sub_type.midchain.fixup_func)
2104  adj0->sub_type.midchain.fixup_func
2105  (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
2106  }
2107  if (is_mcast)
2108  {
2110  adj0->
2111  rewrite_header.dst_mcast_offset,
2112  &ip0->dst_address.as_u32[3],
2113  (u8 *) ip0);
2114  }
2115 
2116  from += 1;
2117  n_left_from -= 1;
2118  to_next += 1;
2119  n_left_to_next -= 1;
2120 
2122  to_next, n_left_to_next,
2123  pi0, next0);
2124  }
2125 
2126  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2127  }
2128 
2129  /* Need to do trace after rewrites to pick up new packet data. */
2130  if (node->flags & VLIB_NODE_FLAG_TRACE)
2132 
2133  return frame->n_vectors;
2134 }
2135 
2139  vlib_frame_t * frame,
2140  int do_counters, int is_midchain, int is_mcast)
2141 {
2142  return ip6_rewrite_inline_with_gso (vm, node, frame, do_counters,
2143  is_midchain, is_mcast);
2144 }
2145 
2148  vlib_frame_t * frame)
2149 {
2150  if (adj_are_counters_enabled ())
2151  return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2152  else
2153  return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
2154 }
2155 
2158  vlib_frame_t * frame)
2159 {
2160  if (adj_are_counters_enabled ())
2161  return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2162  else
2163  return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
2164 }
2165 
2168  vlib_frame_t * frame)
2169 {
2170  if (adj_are_counters_enabled ())
2171  return ip6_rewrite_inline (vm, node, frame, 1, 0, 1);
2172  else
2173  return ip6_rewrite_inline (vm, node, frame, 0, 0, 1);
2174 }
2175 
2178  vlib_frame_t * frame)
2179 {
2180  if (adj_are_counters_enabled ())
2181  return ip6_rewrite_inline (vm, node, frame, 1, 1, 0);
2182  else
2183  return ip6_rewrite_inline (vm, node, frame, 0, 1, 0);
2184 }
2185 
2188  vlib_frame_t * frame)
2189 {
2190  if (adj_are_counters_enabled ())
2191  return ip6_rewrite_inline (vm, node, frame, 1, 1, 1);
2192  else
2193  return ip6_rewrite_inline (vm, node, frame, 0, 1, 1);
2194 }
2195 
2196 /* *INDENT-OFF* */
2198 {
2199  .name = "ip6-midchain",
2200  .vector_size = sizeof (u32),
2201  .format_trace = format_ip6_forward_next_trace,
2202  .sibling_of = "ip6-rewrite",
2203  };
2204 
2206 {
2207  .name = "ip6-rewrite",
2208  .vector_size = sizeof (u32),
2209  .format_trace = format_ip6_rewrite_trace,
2210  .n_next_nodes = IP6_REWRITE_N_NEXT,
2211  .next_nodes =
2212  {
2213  [IP6_REWRITE_NEXT_DROP] = "ip6-drop",
2214  [IP6_REWRITE_NEXT_ICMP_ERROR] = "ip6-icmp-error",
2215  [IP6_REWRITE_NEXT_FRAGMENT] = "ip6-frag",
2216  },
2217 };
2218 
2220  .name = "ip6-rewrite-bcast",
2221  .vector_size = sizeof (u32),
2222 
2223  .format_trace = format_ip6_rewrite_trace,
2224  .sibling_of = "ip6-rewrite",
2225 };
2226 
2228 {
2229  .name = "ip6-rewrite-mcast",
2230  .vector_size = sizeof (u32),
2231  .format_trace = format_ip6_rewrite_trace,
2232  .sibling_of = "ip6-rewrite",
2233 };
2234 
2235 
2237 {
2238  .name = "ip6-mcast-midchain",
2239  .vector_size = sizeof (u32),
2240  .format_trace = format_ip6_rewrite_trace,
2241  .sibling_of = "ip6-rewrite",
2242 };
2243 
2244 /* *INDENT-ON* */
2245 
2246 /*
2247  * Hop-by-Hop handling
2248  */
2249 #ifndef CLIB_MARCH_VARIANT
2251 #endif /* CLIB_MARCH_VARIANT */
2252 
2253 #define foreach_ip6_hop_by_hop_error \
2254 _(PROCESSED, "pkts with ip6 hop-by-hop options") \
2255 _(FORMAT, "incorrectly formatted hop-by-hop options") \
2256 _(UNKNOWN_OPTION, "unknown ip6 hop-by-hop options")
2257 
2258 /* *INDENT-OFF* */
2259 typedef enum
2260 {
2261 #define _(sym,str) IP6_HOP_BY_HOP_ERROR_##sym,
2263 #undef _
2266 /* *INDENT-ON* */
2267 
2268 /*
2269  * Primary h-b-h handler trace support
2270  * We work pretty hard on the problem for obvious reasons
2271  */
2272 typedef struct
2273 {
2276  u8 option_data[256];
2278 
2280 
2282 #define _(sym,string) string,
2284 #undef _
2285 };
2286 
2287 #ifndef CLIB_MARCH_VARIANT
2288 u8 *
2289 format_ip6_hop_by_hop_ext_hdr (u8 * s, va_list * args)
2290 {
2291  ip6_hop_by_hop_header_t *hbh0 = va_arg (*args, ip6_hop_by_hop_header_t *);
2292  int total_len = va_arg (*args, int);
2293  ip6_hop_by_hop_option_t *opt0, *limit0;
2295  u8 type0;
2296  s = format (s, "IP6_HOP_BY_HOP: next protocol %d len %d total %d",
2297  hbh0->protocol, (hbh0->length + 1) << 3, total_len);
2298 
2299  opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2300  limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + total_len);
2301 
2302  while (opt0 < limit0)
2303  {
2304  type0 = opt0->type;
2305  switch (type0)
2306  {
2307  case 0: /* Pad, just stop */
2308  opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0 + 1);
2309  break;
2310 
2311  default:
2312  if (hm->trace[type0])
2313  {
2314  s = (*hm->trace[type0]) (s, opt0);
2315  }
2316  else
2317  {
2318  s = format (s, "\n unrecognized option %d length %d", type0,
2319  opt0->length);
2320  }
2321  opt0 =
2322  (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2323  sizeof (ip6_hop_by_hop_option_t));
2324  break;
2325  }
2326  }
2327  return s;
2328 }
2329 #endif
2330 
2331 static u8 *
2332 format_ip6_hop_by_hop_trace (u8 * s, va_list * args)
2333 {
2334  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2335  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2336  ip6_hop_by_hop_trace_t *t = va_arg (*args, ip6_hop_by_hop_trace_t *);
2338  ip6_hop_by_hop_option_t *opt0, *limit0;
2340 
2341  u8 type0;
2342 
2343  hbh0 = (ip6_hop_by_hop_header_t *) t->option_data;
2344 
2345  s = format (s, "IP6_HOP_BY_HOP: next index %d len %d traced %d",
2346  t->next_index, (hbh0->length + 1) << 3, t->trace_len);
2347 
2348  opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2349  limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0) + t->trace_len;
2350 
2351  while (opt0 < limit0)
2352  {
2353  type0 = opt0->type;
2354  switch (type0)
2355  {
2356  case 0: /* Pad, just stop */
2357  opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2358  break;
2359 
2360  default:
2361  if (hm->trace[type0])
2362  {
2363  s = (*hm->trace[type0]) (s, opt0);
2364  }
2365  else
2366  {
2367  s = format (s, "\n unrecognized option %d length %d", type0,
2368  opt0->length);
2369  }
2370  opt0 =
2371  (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2372  sizeof (ip6_hop_by_hop_option_t));
2373  break;
2374  }
2375  }
2376  return s;
2377 }
2378 
2381  ip6_header_t * ip0,
2382  ip6_hop_by_hop_header_t * hbh0,
2383  ip6_hop_by_hop_option_t * opt0,
2384  ip6_hop_by_hop_option_t * limit0, u32 * next0)
2385 {
2387  u8 type0;
2388  u8 error0 = 0;
2389 
2390  while (opt0 < limit0)
2391  {
2392  type0 = opt0->type;
2393  switch (type0)
2394  {
2395  case 0: /* Pad1 */
2396  opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2397  continue;
2398  case 1: /* PadN */
2399  break;
2400  default:
2401  if (hm->options[type0])
2402  {
2403  if ((*hm->options[type0]) (b0, ip0, opt0) < 0)
2404  {
2405  error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2406  return (error0);
2407  }
2408  }
2409  else
2410  {
2411  /* Unrecognized mandatory option, check the two high order bits */
2412  switch (opt0->type & HBH_OPTION_TYPE_HIGH_ORDER_BITS)
2413  {
2415  break;
2417  error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2418  *next0 = IP_LOOKUP_NEXT_DROP;
2419  break;
2421  error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2422  *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2423  icmp6_error_set_vnet_buffer (b0, ICMP6_parameter_problem,
2424  ICMP6_parameter_problem_unrecognized_option,
2425  (u8 *) opt0 - (u8 *) ip0);
2426  break;
2428  error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2429  if (!ip6_address_is_multicast (&ip0->dst_address))
2430  {
2431  *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2433  ICMP6_parameter_problem,
2434  ICMP6_parameter_problem_unrecognized_option,
2435  (u8 *) opt0 - (u8 *) ip0);
2436  }
2437  else
2438  {
2439  *next0 = IP_LOOKUP_NEXT_DROP;
2440  }
2441  break;
2442  }
2443  return (error0);
2444  }
2445  }
2446  opt0 =
2447  (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2448  sizeof (ip6_hop_by_hop_option_t));
2449  }
2450  return (error0);
2451 }
2452 
2453 /*
2454  * Process the Hop-by-Hop Options header
2455  */
2458  vlib_frame_t * frame)
2459 {
2460  vlib_node_runtime_t *error_node =
2463  u32 n_left_from, *from, *to_next;
2465 
2467  n_left_from = frame->n_vectors;
2468  next_index = node->cached_next_index;
2469 
2470  while (n_left_from > 0)
2471  {
2472  u32 n_left_to_next;
2473 
2474  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2475 
2476  while (n_left_from >= 4 && n_left_to_next >= 2)
2477  {
2478  u32 bi0, bi1;
2479  vlib_buffer_t *b0, *b1;
2480  u32 next0, next1;
2481  ip6_header_t *ip0, *ip1;
2482  ip6_hop_by_hop_header_t *hbh0, *hbh1;
2483  ip6_hop_by_hop_option_t *opt0, *limit0, *opt1, *limit1;
2484  u8 error0 = 0, error1 = 0;
2485 
2486  /* Prefetch next iteration. */
2487  {
2488  vlib_buffer_t *p2, *p3;
2489 
2490  p2 = vlib_get_buffer (vm, from[2]);
2491  p3 = vlib_get_buffer (vm, from[3]);
2492 
2493  vlib_prefetch_buffer_header (p2, LOAD);
2494  vlib_prefetch_buffer_header (p3, LOAD);
2495 
2496  CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2497  CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2498  }
2499 
2500  /* Speculatively enqueue b0, b1 to the current next frame */
2501  to_next[0] = bi0 = from[0];
2502  to_next[1] = bi1 = from[1];
2503  from += 2;
2504  to_next += 2;
2505  n_left_from -= 2;
2506  n_left_to_next -= 2;
2507 
2508  b0 = vlib_get_buffer (vm, bi0);
2509  b1 = vlib_get_buffer (vm, bi1);
2510 
2511  /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2512  u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
2513  ip_adjacency_t *adj0 = adj_get (adj_index0);
2514  u32 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
2515  ip_adjacency_t *adj1 = adj_get (adj_index1);
2516 
2517  /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2518  next0 = adj0->lookup_next_index;
2519  next1 = adj1->lookup_next_index;
2520 
2521  ip0 = vlib_buffer_get_current (b0);
2522  ip1 = vlib_buffer_get_current (b1);
2523  hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2524  hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
2525  opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2526  opt1 = (ip6_hop_by_hop_option_t *) (hbh1 + 1);
2527  limit0 =
2528  (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2529  ((hbh0->length + 1) << 3));
2530  limit1 =
2531  (ip6_hop_by_hop_option_t *) ((u8 *) hbh1 +
2532  ((hbh1->length + 1) << 3));
2533 
2534  /*
2535  * Basic validity checks
2536  */
2537  if ((hbh0->length + 1) << 3 >
2538  clib_net_to_host_u16 (ip0->payload_length))
2539  {
2540  error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2541  next0 = IP_LOOKUP_NEXT_DROP;
2542  goto outdual;
2543  }
2544  /* Scan the set of h-b-h options, process ones that we understand */
2545  error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2546 
2547  if ((hbh1->length + 1) << 3 >
2548  clib_net_to_host_u16 (ip1->payload_length))
2549  {
2550  error1 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2551  next1 = IP_LOOKUP_NEXT_DROP;
2552  goto outdual;
2553  }
2554  /* Scan the set of h-b-h options, process ones that we understand */
2555  error1 = ip6_scan_hbh_options (b1, ip1, hbh1, opt1, limit1, &next1);
2556 
2557  outdual:
2558  /* Has the classifier flagged this buffer for special treatment? */
2559  if (PREDICT_FALSE
2560  ((error0 == 0)
2561  && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2562  next0 = hm->next_override;
2563 
2564  /* Has the classifier flagged this buffer for special treatment? */
2565  if (PREDICT_FALSE
2566  ((error1 == 0)
2567  && (vnet_buffer (b1)->l2_classify.opaque_index & OI_DECAP)))
2568  next1 = hm->next_override;
2569 
2570  if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
2571  {
2572  if (b0->flags & VLIB_BUFFER_IS_TRACED)
2573  {
2575  vlib_add_trace (vm, node, b0, sizeof (*t));
2576  u32 trace_len = (hbh0->length + 1) << 3;
2577  t->next_index = next0;
2578  /* Capture the h-b-h option verbatim */
2579  trace_len =
2580  trace_len <
2581  ARRAY_LEN (t->option_data) ? trace_len :
2582  ARRAY_LEN (t->option_data);
2583  t->trace_len = trace_len;
2584  clib_memcpy_fast (t->option_data, hbh0, trace_len);
2585  }
2586  if (b1->flags & VLIB_BUFFER_IS_TRACED)
2587  {
2589  vlib_add_trace (vm, node, b1, sizeof (*t));
2590  u32 trace_len = (hbh1->length + 1) << 3;
2591  t->next_index = next1;
2592  /* Capture the h-b-h option verbatim */
2593  trace_len =
2594  trace_len <
2595  ARRAY_LEN (t->option_data) ? trace_len :
2596  ARRAY_LEN (t->option_data);
2597  t->trace_len = trace_len;
2598  clib_memcpy_fast (t->option_data, hbh1, trace_len);
2599  }
2600 
2601  }
2602 
2603  b0->error = error_node->errors[error0];
2604  b1->error = error_node->errors[error1];
2605 
2606  /* verify speculative enqueue, maybe switch current next frame */
2608  n_left_to_next, bi0, bi1, next0,
2609  next1);
2610  }
2611 
2612  while (n_left_from > 0 && n_left_to_next > 0)
2613  {
2614  u32 bi0;
2615  vlib_buffer_t *b0;
2616  u32 next0;
2617  ip6_header_t *ip0;
2619  ip6_hop_by_hop_option_t *opt0, *limit0;
2620  u8 error0 = 0;
2621 
2622  /* Speculatively enqueue b0 to the current next frame */
2623  bi0 = from[0];
2624  to_next[0] = bi0;
2625  from += 1;
2626  to_next += 1;
2627  n_left_from -= 1;
2628  n_left_to_next -= 1;
2629 
2630  b0 = vlib_get_buffer (vm, bi0);
2631  /*
2632  * Default use the next_index from the adjacency.
2633  * A HBH option rarely redirects to a different node
2634  */
2635  u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
2636  ip_adjacency_t *adj0 = adj_get (adj_index0);
2637  next0 = adj0->lookup_next_index;
2638 
2639  ip0 = vlib_buffer_get_current (b0);
2640  hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2641  opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2642  limit0 =
2643  (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2644  ((hbh0->length + 1) << 3));
2645 
2646  /*
2647  * Basic validity checks
2648  */
2649  if ((hbh0->length + 1) << 3 >
2650  clib_net_to_host_u16 (ip0->payload_length))
2651  {
2652  error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2653  next0 = IP_LOOKUP_NEXT_DROP;
2654  goto out0;
2655  }
2656 
2657  /* Scan the set of h-b-h options, process ones that we understand */
2658  error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2659 
2660  out0:
2661  /* Has the classifier flagged this buffer for special treatment? */
2662  if (PREDICT_FALSE
2663  ((error0 == 0)
2664  && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2665  next0 = hm->next_override;
2666 
2667  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2668  {
2670  vlib_add_trace (vm, node, b0, sizeof (*t));
2671  u32 trace_len = (hbh0->length + 1) << 3;
2672  t->next_index = next0;
2673  /* Capture the h-b-h option verbatim */
2674  trace_len =
2675  trace_len <
2676  ARRAY_LEN (t->option_data) ? trace_len :
2677  ARRAY_LEN (t->option_data);
2678  t->trace_len = trace_len;
2679  clib_memcpy_fast (t->option_data, hbh0, trace_len);
2680  }
2681 
2682  b0->error = error_node->errors[error0];
2683 
2684  /* verify speculative enqueue, maybe switch current next frame */
2686  n_left_to_next, bi0, next0);
2687  }
2688  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2689  }
2690  return frame->n_vectors;
2691 }
2692 
2693 /* *INDENT-OFF* */
2695 {
2696  .name = "ip6-hop-by-hop",
2697  .sibling_of = "ip6-lookup",
2698  .vector_size = sizeof (u32),
2699  .format_trace = format_ip6_hop_by_hop_trace,
2702  .error_strings = ip6_hop_by_hop_error_strings,
2703  .n_next_nodes = 0,
2704 };
2705 /* *INDENT-ON* */
2706 
2707 static clib_error_t *
2709 {
2711  clib_memset (hm->options, 0, sizeof (hm->options));
2712  clib_memset (hm->trace, 0, sizeof (hm->trace));
2714  return (0);
2715 }
2716 
2718 
2719 #ifndef CLIB_MARCH_VARIANT
2720 void
2722 {
2724 
2725  hm->next_override = next;
2726 }
2727 
2728 int
2731  ip6_hop_by_hop_option_t * opt),
2732  u8 * trace (u8 * s, ip6_hop_by_hop_option_t * opt))
2733 {
2734  ip6_main_t *im = &ip6_main;
2736 
2737  ASSERT ((u32) option < ARRAY_LEN (hm->options));
2738 
2739  /* Already registered */
2740  if (hm->options[option])
2741  return (-1);
2742 
2743  hm->options[option] = options;
2744  hm->trace[option] = trace;
2745 
2746  /* Set global variable */
2747  im->hbh_enabled = 1;
2748 
2749  return (0);
2750 }
2751 
2752 int
2754 {
2755  ip6_main_t *im = &ip6_main;
2757 
2758  ASSERT ((u32) option < ARRAY_LEN (hm->options));
2759 
2760  /* Not registered */
2761  if (!hm->options[option])
2762  return (-1);
2763 
2764  hm->options[option] = NULL;
2765  hm->trace[option] = NULL;
2766 
2767  /* Disable global knob if this was the last option configured */
2768  int i;
2769  bool found = false;
2770  for (i = 0; i < 256; i++)
2771  {
2772  if (hm->options[option])
2773  {
2774  found = true;
2775  break;
2776  }
2777  }
2778  if (!found)
2779  im->hbh_enabled = 0;
2780 
2781  return (0);
2782 }
2783 
2784 /* Global IP6 main. */
2786 #endif
2787 
2788 static clib_error_t *
2790 {
2791  ip6_main_t *im = &ip6_main;
2793  uword i;
2794 
2796  return error;
2797 
2798  for (i = 0; i < ARRAY_LEN (im->fib_masks); i++)
2799  {
2800  u32 j, i0, i1;
2801 
2802  i0 = i / 32;
2803  i1 = i % 32;
2804 
2805  for (j = 0; j < i0; j++)
2806  im->fib_masks[i].as_u32[j] = ~0;
2807 
2808  if (i1)
2809  im->fib_masks[i].as_u32[i0] =
2810  clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
2811  }
2812 
2813  ip_lookup_init (&im->lookup_main, /* is_ip6 */ 1);
2814 
2815  /* Create FIB with index 0 and table id of 0. */
2820 
2821  {
2822  pg_node_t *pn;
2823  pn = pg_get_node (ip6_lookup_node.index);
2825  }
2826 
2827  /* Unless explicitly configured, don't process HBH options */
2828  im->hbh_enabled = 0;
2829 
2830  return error;
2831 }
2832 
2834 
2835 static clib_error_t *
2837  unformat_input_t * input,
2838  vlib_cli_command_t * cmd)
2839 {
2840  int matched = 0;
2841  u32 table_id = 0;
2842  u32 flow_hash_config = 0;
2843  int rv;
2844 
2845  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2846  {
2847  if (unformat (input, "table %d", &table_id))
2848  matched = 1;
2849 #define _(a, b, v) \
2850  else if (unformat (input, #a)) \
2851  { \
2852  flow_hash_config |= v; \
2853  matched = 1; \
2854  }
2856 #undef _
2857  else
2858  break;
2859  }
2860 
2861  if (matched == 0)
2862  return clib_error_return (0, "unknown input `%U'",
2863  format_unformat_error, input);
2864 
2865  rv = ip_flow_hash_set (AF_IP6, table_id, flow_hash_config);
2866  switch (rv)
2867  {
2868  case 0:
2869  break;
2870 
2871  case -1:
2872  return clib_error_return (0, "no such FIB table %d", table_id);
2873 
2874  default:
2875  clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config);
2876  break;
2877  }
2878 
2879  return 0;
2880 }
2881 
2882 /*?
2883  * Configure the set of IPv6 fields used by the flow hash.
2884  *
2885  * @cliexpar
2886  * @parblock
2887  * Example of how to set the flow hash on a given table:
2888  * @cliexcmd{set ip6 flow-hash table 8 dst sport dport proto}
2889  *
2890  * Example of display the configured flow hash:
2891  * @cliexstart{show ip6 fib}
2892  * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto
2893  * @::/0
2894  * unicast-ip6-chain
2895  * [@0]: dpo-load-balance: [index:5 buckets:1 uRPF:5 to:[0:0]]
2896  * [0] [@0]: dpo-drop ip6
2897  * fe80::/10
2898  * unicast-ip6-chain
2899  * [@0]: dpo-load-balance: [index:10 buckets:1 uRPF:10 to:[0:0]]
2900  * [0] [@2]: dpo-receive
2901  * ff02::1/128
2902  * unicast-ip6-chain
2903  * [@0]: dpo-load-balance: [index:8 buckets:1 uRPF:8 to:[0:0]]
2904  * [0] [@2]: dpo-receive
2905  * ff02::2/128
2906  * unicast-ip6-chain
2907  * [@0]: dpo-load-balance: [index:7 buckets:1 uRPF:7 to:[0:0]]
2908  * [0] [@2]: dpo-receive
2909  * ff02::16/128
2910  * unicast-ip6-chain
2911  * [@0]: dpo-load-balance: [index:9 buckets:1 uRPF:9 to:[0:0]]
2912  * [0] [@2]: dpo-receive
2913  * ff02::1:ff00:0/104
2914  * unicast-ip6-chain
2915  * [@0]: dpo-load-balance: [index:6 buckets:1 uRPF:6 to:[0:0]]
2916  * [0] [@2]: dpo-receive
2917  * ipv6-VRF:8, fib_index 1, flow hash: dst sport dport proto
2918  * @::/0
2919  * unicast-ip6-chain
2920  * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
2921  * [0] [@0]: dpo-drop ip6
2922  * @::a:1:1:0:4/126
2923  * unicast-ip6-chain
2924  * [@0]: dpo-load-balance: [index:27 buckets:1 uRPF:26 to:[0:0]]
2925  * [0] [@4]: ipv6-glean: af_packet0
2926  * @::a:1:1:0:7/128
2927  * unicast-ip6-chain
2928  * [@0]: dpo-load-balance: [index:28 buckets:1 uRPF:27 to:[0:0]]
2929  * [0] [@2]: dpo-receive: @::a:1:1:0:7 on af_packet0
2930  * fe80::/10
2931  * unicast-ip6-chain
2932  * [@0]: dpo-load-balance: [index:26 buckets:1 uRPF:25 to:[0:0]]
2933  * [0] [@2]: dpo-receive
2934  * fe80::fe:3eff:fe3e:9222/128
2935  * unicast-ip6-chain
2936  * [@0]: dpo-load-balance: [index:29 buckets:1 uRPF:28 to:[0:0]]
2937  * [0] [@2]: dpo-receive: fe80::fe:3eff:fe3e:9222 on af_packet0
2938  * ff02::1/128
2939  * unicast-ip6-chain
2940  * [@0]: dpo-load-balance: [index:24 buckets:1 uRPF:23 to:[0:0]]
2941  * [0] [@2]: dpo-receive
2942  * ff02::2/128
2943  * unicast-ip6-chain
2944  * [@0]: dpo-load-balance: [index:23 buckets:1 uRPF:22 to:[0:0]]
2945  * [0] [@2]: dpo-receive
2946  * ff02::16/128
2947  * unicast-ip6-chain
2948  * [@0]: dpo-load-balance: [index:25 buckets:1 uRPF:24 to:[0:0]]
2949  * [0] [@2]: dpo-receive
2950  * ff02::1:ff00:0/104
2951  * unicast-ip6-chain
2952  * [@0]: dpo-load-balance: [index:22 buckets:1 uRPF:21 to:[0:0]]
2953  * [0] [@2]: dpo-receive
2954  * @cliexend
2955  * @endparblock
2956 ?*/
2957 /* *INDENT-OFF* */
2959  .path = "set ip6 flow-hash",
2960  .short_help = "set ip6 flow-hash table <table-id> [src] [dst] [sport] "
2961  "[dport] [proto] [reverse] [flowlabel]",
2962  .function = set_ip6_flow_hash_command_fn,
2963 };
2964 /* *INDENT-ON* */
2965 
2966 static clib_error_t *
2968  unformat_input_t * input, vlib_cli_command_t * cmd)
2969 {
2970  ip6_main_t *im = &ip6_main;
2971  ip_lookup_main_t *lm = &im->lookup_main;
2972  int i;
2973 
2974  vlib_cli_output (vm, "Protocols handled by ip6_local");
2975  for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++)
2976  {
2978  {
2979 
2981  ip6_local_node.index)->
2982  next_nodes[lm->local_next_by_ip_protocol[i]];
2984  node_index);
2985  }
2986  }
2987  return 0;
2988 }
2989 
2990 
2991 
2992 /*?
2993  * Display the set of protocols handled by the local IPv6 stack.
2994  *
2995  * @cliexpar
2996  * Example of how to display local protocol table:
2997  * @cliexstart{show ip6 local}
2998  * Protocols handled by ip6_local
2999  * 17
3000  * 43
3001  * 58
3002  * 115
3003  * @cliexend
3004 ?*/
3005 /* *INDENT-OFF* */
3007 {
3008  .path = "show ip6 local",
3009  .function = show_ip6_local_command_fn,
3010  .short_help = "show ip6 local",
3011 };
3012 /* *INDENT-ON* */
3013 
3014 #ifndef CLIB_MARCH_VARIANT
3015 int
3017 {
3018  vnet_main_t *vnm = vnet_get_main ();
3020  ip6_main_t *ipm = &ip6_main;
3021  ip_lookup_main_t *lm = &ipm->lookup_main;
3023  ip6_address_t *if_addr;
3024 
3026  return VNET_API_ERROR_NO_MATCHING_INTERFACE;
3027 
3028  if (table_index != ~0 && pool_is_free_index (cm->tables, table_index))
3029  return VNET_API_ERROR_NO_SUCH_ENTRY;
3030 
3033 
3034  if_addr = ip6_interface_first_address (ipm, sw_if_index);
3035 
3036  if (NULL != if_addr)
3037  {
3038  fib_prefix_t pfx = {
3039  .fp_len = 128,
3040  .fp_proto = FIB_PROTOCOL_IP6,
3041  .fp_addr.ip6 = *if_addr,
3042  };
3043  u32 fib_index;
3044 
3046  sw_if_index);
3047  if (table_index != (u32) ~ 0)
3048  {
3049  dpo_id_t dpo = DPO_INVALID;
3050  dpo_set (&dpo,
3051  DPO_CLASSIFY,
3052  DPO_PROTO_IP6,
3053  classify_dpo_create (DPO_PROTO_IP6, table_index));
3055  &pfx,
3057  FIB_ENTRY_FLAG_NONE, &dpo);
3058  dpo_reset (&dpo);
3059  }
3060  else
3061  {
3062  fib_table_entry_special_remove (fib_index,
3063  &pfx, FIB_SOURCE_CLASSIFY);
3064  }
3065  }
3066 
3067  return 0;
3068 }
3069 #endif
3070 
3071 static clib_error_t *
3073  unformat_input_t * input,
3074  vlib_cli_command_t * cmd)
3075 {
3076  u32 table_index = ~0;
3077  int table_index_set = 0;
3078  u32 sw_if_index = ~0;
3079  int rv;
3080 
3081  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3082  {
3083  if (unformat (input, "table-index %d", &table_index))
3084  table_index_set = 1;
3085  else if (unformat (input, "intfc %U", unformat_vnet_sw_interface,
3086  vnet_get_main (), &sw_if_index))
3087  ;
3088  else
3089  break;
3090  }
3091 
3092  if (table_index_set == 0)
3093  return clib_error_return (0, "classify table-index must be specified");
3094 
3095  if (sw_if_index == ~0)
3096  return clib_error_return (0, "interface / subif must be specified");
3097 
3098  rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index);
3099 
3100  switch (rv)
3101  {
3102  case 0:
3103  break;
3104 
3105  case VNET_API_ERROR_NO_MATCHING_INTERFACE:
3106  return clib_error_return (0, "No such interface");
3107 
3108  case VNET_API_ERROR_NO_SUCH_ENTRY:
3109  return clib_error_return (0, "No such classifier table");
3110  }
3111  return 0;
3112 }
3113 
3114 /*?
3115  * Assign a classification table to an interface. The classification
3116  * table is created using the '<em>classify table</em>' and '<em>classify session</em>'
3117  * commands. Once the table is create, use this command to filter packets
3118  * on an interface.
3119  *
3120  * @cliexpar
3121  * Example of how to assign a classification table to an interface:
3122  * @cliexcmd{set ip6 classify intfc GigabitEthernet2/0/0 table-index 1}
3123 ?*/
3124 /* *INDENT-OFF* */
3126 {
3127  .path = "set ip6 classify",
3128  .short_help =
3129  "set ip6 classify intfc <interface> table-index <classify-idx>",
3130  .function = set_ip6_classify_command_fn,
3131 };
3132 /* *INDENT-ON* */
3133 
3134 /*
3135  * fd.io coding-style-patch-verification: ON
3136  *
3137  * Local Variables:
3138  * eval: (c-set-style "gnu")
3139  * End:
3140  */
ip_interface_address_t::sw_if_index
u32 sw_if_index
Definition: lookup.h:95
IP_INTERFACE_ADDRESS_FLAG_STALE
@ IP_INTERFACE_ADDRESS_FLAG_STALE
Definition: lookup.h:67
ip6_hop_by_hop_option_t::length
u8 length
Definition: ip6_hop_by_hop_packet.h:40
ip6_del_interface_routes
static void ip6_del_interface_routes(u32 sw_if_index, ip6_main_t *im, u32 fib_index, ip6_address_t *address, u32 address_length)
Definition: ip6_forward.c:221
HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST
#define HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST
Definition: ip6_hop_by_hop_packet.h:35
ip6_address_is_link_local_unicast
static uword ip6_address_is_link_local_unicast(const ip6_address_t *a)
Definition: ip6_packet.h:253
ip6_main
ip6_main_t ip6_main
Definition: ip6_forward.c:2785
ip6_address_is_equal
static uword ip6_address_is_equal(const ip6_address_t *a, const ip6_address_t *b)
Definition: ip6_packet.h:167
adj_are_counters_enabled
static int adj_are_counters_enabled(void)
Get the global configuration option for enabling per-adj counters.
Definition: adj.h:485
ip6_hop_by_hop_option_t::type
u8 type
Definition: ip6_hop_by_hop_packet.h:38
dpo_id_t_::dpoi_next_node
u16 dpoi_next_node
The next VLIB node to follow.
Definition: dpo.h:186
im
vnet_interface_main_t * im
Definition: interface_output.c:415
ip_lookup_main_t::if_prefix_pool
ip_interface_prefix_t * if_prefix_pool
Pool of prefixes containing addresses assigned to interfaces.
Definition: lookup.h:134
ip_lookup_main_t::prefix_to_if_prefix_index
mhash_t prefix_to_if_prefix_index
Hash table mapping prefix to index in interface prefix pool.
Definition: lookup.h:137
udp_header_t::length
u16 length
Definition: udp_packet.h:51
ip6_lookup
static u32 ip6_lookup(gid_ip6_table_t *db, u32 vni, ip_prefix_t *key)
Definition: gid_dictionary.c:260
trace
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
Definition: vlib_api_cli.c:870
load_balance_t_::lb_n_buckets
u16 lb_n_buckets
number of buckets in the load-balance.
Definition: load_balance.h:116
ip_interface_prefix_t::key
ip_interface_prefix_key_t key
Definition: lookup.h:80
ip6_hop_by_hop_main
ip6_hop_by_hop_main_t ip6_hop_by_hop_main
Definition: ip6_forward.c:2250
while
while(n_left_from > 0)
Definition: nat44_ei_hairpinning.c:419
ip_interface_address_get_address
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: ip_interface.h:43
ip6_local_end_of_arc_node
vlib_node_registration_t ip6_local_end_of_arc_node
(constructor) VLIB_REGISTER_NODE (ip6_local_end_of_arc_node)
Definition: ip6_forward.c:1658
dpo_id_t_::dpoi_index
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:190
DPO_INVALID
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:204
bihash_template.c
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:495
fib_table_entry_special_dpo_add
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 'special' entry to the FIB that links to the DPO passed A special entry is an entry that the FI...
Definition: fib_table.c:324
bufs
vlib_buffer_t * bufs[VLIB_FRAME_SIZE]
Definition: nat44_ei_out2in.c:717
foreach_ip_interface_address
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: ip_interface.h:57
vnet_sw_interface_t
Definition: interface.h:869
ip6_mcast_midchain_node
vlib_node_registration_t ip6_mcast_midchain_node
(constructor) VLIB_REGISTER_NODE (ip6_mcast_midchain_node)
Definition: ip6_forward.c:2236
vlib_prefetch_buffer_header
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:231
frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: nat44_ei.c:3048
vnet_set_ip6_classify_intfc
int vnet_set_ip6_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 table_index)
Definition: ip6_forward.c:3016
icmp6_error_set_vnet_buffer
void icmp6_error_set_vnet_buffer(vlib_buffer_t *b, u8 type, u8 code, u32 data)
Definition: icmp6.c:451
gso_mtu_sz
#define gso_mtu_sz(b)
Definition: buffer.h:515
ip6_tcp_udp_icmp_bad_length
static_always_inline u8 ip6_tcp_udp_icmp_bad_length(vlib_main_t *vm, vlib_buffer_t *p0)
Definition: ip6_forward.c:1236
vlib_node_add_next
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1177
ip_lookup_main_t::ucast_feature_arc_index
u8 ucast_feature_arc_index
Definition: lookup.h:144
clib_memcpy
#define clib_memcpy(d, s, n)
Definition: string.h:197
fib_table_entry_delete
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:900
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
IP6_HOP_BY_HOP_N_ERROR
@ IP6_HOP_BY_HOP_N_ERROR
Definition: ip6_forward.c:2264
fib_table_entry_update_one_path
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:819
pg.h
load_balance_map.h
vlib_get_buffer
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:111
format_ip6_header
format_function_t format_ip6_header
Definition: format.h:95
srp.h
IP6_LOOKUP_NEXT_NODES
#define IP6_LOOKUP_NEXT_NODES
Definition: adj.h:122
pow2_mask
static uword pow2_mask(uword x)
Definition: clib.h:252
ip6_sw_interface_add_del
static clib_error_t * ip6_sw_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
Definition: ip6_forward.c:685
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
fib_urpf_check_size
static int fib_urpf_check_size(index_t ui)
Data-Plane function to check the size of an uRPF list, (i.e.
Definition: fib_urpf_list.h:137
ip_interface_prefix_t::ref_count
u16 ref_count
Definition: lookup.h:83
format_ip_adjacency
format_function_t format_ip_adjacency
Definition: format.h:58
ip6_hop_by_hop_init
static clib_error_t * ip6_hop_by_hop_init(vlib_main_t *vm)
Definition: ip6_forward.c:2708
IP6_LOOKUP_NEXT_POP_HOP_BY_HOP
@ IP6_LOOKUP_NEXT_POP_HOP_BY_HOP
Definition: adj.h:104
ip6_sw_interface_enable_disable
void ip6_sw_interface_enable_disable(u32 sw_if_index, u32 is_enable)
Definition: ip6_forward.c:240
ip6_header_t::protocol
u8 protocol
Definition: ip6_packet.h:304
vlib_get_buffers
vlib_get_buffers(vm, from, b, n_left_from)
next
u16 * next
Definition: nat44_ei_out2in.c:718
show_ip6_local
static vlib_cli_command_t show_ip6_local
(constructor) VLIB_CLI_COMMAND (show_ip6_local)
Definition: ip6_forward.c:3006
VLIB_NODE_TYPE_INTERNAL
@ VLIB_NODE_TYPE_INTERNAL
Definition: node.h:72
IP_LOCAL_N_NEXT
@ IP_LOCAL_N_NEXT
Definition: lookup.h:116
IP6_REWRITE_NEXT_ICMP_ERROR
@ IP6_REWRITE_NEXT_ICMP_ERROR
Definition: ip6_forward.c:1702
ip_interface_address_t::address_length
u16 address_length
Definition: lookup.h:98
VLIB_FRAME_SIZE
#define VLIB_FRAME_SIZE
Definition: node.h:368
ip6_forward_next_trace
void ip6_forward_next_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, vlib_rx_or_tx_t which_adj_index)
Definition: ip6_forward.c:1004
node
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
ip6_header_t::hop_limit
u8 hop_limit
Definition: ip6_packet.h:307
VNET_FEATURE_INIT
VNET_FEATURE_INIT(ip6_flow_classify, static)
load_balance_t_::lb_hash_config
flow_hash_config_t lb_hash_config
the hash config to use when selecting a bucket.
Definition: load_balance.h:161
unformat_pg_ip6_header
unformat_function_t unformat_pg_ip6_header
Definition: format.h:97
vnet_classify_main
vnet_classify_main_t vnet_classify_main
Definition: vnet_classify.c:32
ip6_add_interface_prefix_routes
static void ip6_add_interface_prefix_routes(ip6_main_t *im, u32 sw_if_index, u32 fib_index, ip6_address_t *address, u32 address_length)
Definition: ip6_forward.c:65
vnet_buffer_oflags_t
vnet_buffer_oflags_t
Definition: buffer.h:119
FIB_ENTRY_FLAG_ATTACHED
@ FIB_ENTRY_FLAG_ATTACHED
Definition: fib_entry.h:114
mfib_table_find_or_create_and_lock
u32 mfib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id, mfib_source_t src)
Get the index of the FIB for a Table-ID.
Definition: mfib_table.c:613
clib_error_return
#define clib_error_return(e, args...)
Definition: error.h:99
HBH_OPTION_TYPE_SKIP_UNKNOWN
#define HBH_OPTION_TYPE_SKIP_UNKNOWN
Definition: ip6_hop_by_hop_packet.h:32
u8
#define u8
Padding.
Definition: clib.h:121
vlib_cli_command_t::path
char * path
Definition: cli.h:96
FORMAT_IP_ADJACENCY_NONE
@ FORMAT_IP_ADJACENCY_NONE
Definition: format.h:53
IP_BUILTIN_PROTOCOL_UNKNOWN
@ IP_BUILTIN_PROTOCOL_UNKNOWN
Definition: ip_packet.h:67
vnet_interface_main_t
Definition: interface.h:990
ip6_forward_next_trace_t
Definition: ip6_forward.c:935
HBH_OPTION_TYPE_DISCARD_UNKNOWN
#define HBH_OPTION_TYPE_DISCARD_UNKNOWN
Definition: ip6_hop_by_hop_packet.h:33
ip6_add_interface_routes
static void ip6_add_interface_routes(vnet_main_t *vnm, u32 sw_if_index, ip6_main_t *im, u32 fib_index, ip_interface_address_t *a)
Definition: ip6_forward.c:123
OI_DECAP
#define OI_DECAP
Definition: ip6_forward.c:62
u16
unsigned short u16
Definition: types.h:57
load_balance_main_t_::lbm_via_counters
vlib_combined_counter_main_t lbm_via_counters
Definition: load_balance.h:47
fib_prefix_t_::fp_len
u16 fp_len
The mask length.
Definition: fib_types.h:206
VNET_REWRITE_HAS_FEATURES
@ VNET_REWRITE_HAS_FEATURES
This adjacency/interface has output features configured.
Definition: rewrite.h:57
vlib_call_init_function
#define vlib_call_init_function(vm, x)
Definition: init.h:259
VNET_SW_INTERFACE_FLAG_ADMIN_UP
@ VNET_SW_INTERFACE_FLAG_ADMIN_UP
Definition: interface.h:844
pool_put
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:305
ip_lookup_main_t::classify_table_index_by_sw_if_index
u32 * classify_table_index_by_sw_if_index
First table index to use for this interface, ~0 => none.
Definition: lookup.h:140
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
VLIB_RX
@ VLIB_RX
Definition: defs.h:46
node_index
node node_index
Definition: interface_output.c:440
IP6_LOOKUP_NEXT_HOP_BY_HOP
@ IP6_LOOKUP_NEXT_HOP_BY_HOP
Definition: adj.h:102
ip_interface_prefix_t
Definition: lookup.h:77
ip6_mtu_check
static void ip6_mtu_check(vlib_buffer_t *b, u16 packet_bytes, u16 adj_packet_bytes, bool is_locally_generated, u32 *next, u8 is_midchain, u32 *error)
Definition: ip6_forward.c:1714
ip6_hop_by_hop_option_t
Definition: ip6_hop_by_hop_packet.h:29
vlib_buffer_enqueue_to_next
vlib_buffer_enqueue_to_next(vm, node, from,(u16 *) nexts, frame->n_vectors)
hi
vl_api_ip4_address_t hi
Definition: arp.api:37
set_ip6_flow_hash_command
static vlib_cli_command_t set_ip6_flow_hash_command
(constructor) VLIB_CLI_COMMAND (set_ip6_flow_hash_command)
Definition: ip6_forward.c:2958
unformat_input_t
struct _unformat_input_t unformat_input_t
vnet_calc_checksums_inline
static_always_inline void vnet_calc_checksums_inline(vlib_main_t *vm, vlib_buffer_t *b, int is_ip4, int is_ip6)
Definition: interface_output.h:83
classify_dpo_create
index_t classify_dpo_create(dpo_proto_t proto, u32 classify_table_index)
Definition: classify_dpo.c:48
vlib_frame_t
Definition: node.h:372
ip_interface_address_add
clib_error_t * ip_interface_address_add(ip_lookup_main_t *lm, u32 sw_if_index, void *addr_fib, u32 address_length, u32 *result_if_address_index)
Definition: ip_interface.c:36
ip_calculate_l4_checksum
static u16 ip_calculate_l4_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip_csum_t sum0, u32 payload_length, u8 *iph, u32 ip_header_size, u8 *l4h)
Definition: ip.h:184
ip6_hop_by_hop_header_t
Definition: ip6_hop_by_hop_packet.h:18
vlib_buffer_length_in_chain
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
Definition: buffer_funcs.h:433
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
udp_header_t
Definition: udp_packet.h:45
ethernet.h
error
Definition: cJSON.c:88
ip6_local_inline
static uword ip6_local_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int head_of_feature_arc)
Definition: ip6_forward.c:1280
ip6_sw_interface_admin_up_down
static clib_error_t * ip6_sw_interface_admin_up_down(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
Definition: ip6_forward.c:521
key
typedef key
Definition: ipsec_types.api:91
i32
signed int i32
Definition: types.h:77
pg_node_t
Definition: pg.h:332
vnet_feature_arc_start_w_cfg_index
static_always_inline void * vnet_feature_arc_start_w_cfg_index(u8 arc, u32 sw_if_index, u32 *next, vlib_buffer_t *b, u32 cfg_index)
Definition: feature.h:285
ip_frag_set_vnet_buffer
void ip_frag_set_vnet_buffer(vlib_buffer_t *b, u16 mtu, u8 next_index, u8 flags)
Definition: ip_frag.c:238
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(ip6_sw_interface_admin_up_down)
ip6_mfib.h
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
pool_is_free_index
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:302
IP6_REWRITE_N_NEXT
@ IP6_REWRITE_N_NEXT
Definition: ip6_forward.c:1704
vec_elt
#define vec_elt(v, i)
Get vector value at index i.
Definition: vec_bootstrap.h:210
ip6_midchain_node
vlib_node_registration_t ip6_midchain_node
(constructor) VLIB_REGISTER_NODE (ip6_midchain_node)
Definition: ip6_forward.c:2197
ip6_hbh_set_next_override
void ip6_hbh_set_next_override(uword next)
Definition: ip6_forward.c:2721
CLIB_PREFETCH
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:76
vnet_sw_interface_t::sw_if_index
u32 sw_if_index
Definition: interface.h:876
i16
signed short i16
Definition: types.h:46
vlib_buffer_t::current_data
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:119
fib_table_entry_special_remove
void fib_table_entry_special_remove(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source)
Remove a 'special' entry from the FIB.
Definition: fib_table.c:424
vlib_node_runtime_t::errors
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:460
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
format_ip_adjacency_packet_data
format_function_t format_ip_adjacency_packet_data
Definition: format.h:59
load_balance_main
load_balance_main_t load_balance_main
The one instance of load-balance main.
Definition: load_balance.c:59
set_ip6_classify_command_fn
static clib_error_t * set_ip6_classify_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: ip6_forward.c:3072
load_balance_get_fwd_bucket
static const dpo_id_t * load_balance_get_fwd_bucket(const load_balance_t *lb, u16 bucket)
Definition: load_balance_map.h:94
IP_LOCAL_NEXT_ICMP
@ IP_LOCAL_NEXT_ICMP
Definition: lookup.h:114
clib_error_create
#define clib_error_create(args...)
Definition: error.h:96
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
ip6_address_is_multicast
static uword ip6_address_is_multicast(const ip6_address_t *a)
Definition: ip6_packet.h:121
vlib_buffer_t::error
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
IP_LOOKUP_NEXT_DROP
@ IP_LOOKUP_NEXT_DROP
Adjacency to drop this packet.
Definition: adj.h:53
ip6_rewrite_inline
static uword ip6_rewrite_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int do_counters, int is_midchain, int is_mcast)
Definition: ip6_forward.c:2137
VLIB_NODE_FN
#define VLIB_NODE_FN(node)
Definition: node.h:202
ip6_mfib_interface_enable_disable
void ip6_mfib_interface_enable_disable(u32 sw_if_index, int is_enable)
Add/remove the interface from the accepting list of the special MFIB entries.
Definition: ip6_mfib.c:234
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
vnet_sw_interface_update_unnumbered
int vnet_sw_interface_update_unnumbered(u32 unnumbered_sw_if_index, u32 ip_sw_if_index, u8 enable)
Definition: interface.c:1661
ip_lookup_init
void ip_lookup_init(ip_lookup_main_t *lm, u32 is_ip6)
Definition: lookup.c:75
FIB_SOURCE_INTERFACE
@ FIB_SOURCE_INTERFACE
Route added as a result of interface configuration.
Definition: fib_source.h:59
ip_adjacency_t_::lookup_next_index
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:337
ip6_compute_flow_hash
static u32 ip6_compute_flow_hash(const ip6_header_t *ip, flow_hash_config_t flow_hash_config)
Definition: ip6_inlines.h:49
pg_node_t::unformat_edit
unformat_function_t * unformat_edit
Definition: pg.h:335
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
ip6_rewrite_node
vlib_node_registration_t ip6_rewrite_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_node)
Definition: ip6_forward.c:2205
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:441
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
ip_lookup_main_t::mcast_feature_arc_index
u8 mcast_feature_arc_index
Feature arc indices.
Definition: lookup.h:143
VLIB_NODE_FLAG_TRACE
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:291
ip6_add_del_interface_address_callback_t
Definition: ip6.h:94
IP_LOCAL_NEXT_REASSEMBLY
@ IP_LOCAL_NEXT_REASSEMBLY
Definition: lookup.h:115
fib_table_find_or_create_and_lock
u32 fib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id, fib_source_t src)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1170
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
ARRAY_LEN
#define ARRAY_LEN(x)
Definition: clib.h:70
foreach_flow_hash_bit
@ foreach_flow_hash_bit
Definition: ip_flow_hash.h:49
vlib_frame_vector_args
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:301
unformat_check_input
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163
ip6_hbh_unregister_option
int ip6_hbh_unregister_option(u8 option)
Definition: ip6_forward.c:2753
interface_output.h
FIB_ENTRY_FLAG_NONE
@ FIB_ENTRY_FLAG_NONE
Definition: fib_entry.h:112
index_t
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:43
ip_flow_hash_set
int ip_flow_hash_set(ip_address_family_t af, u32 table_id, u32 flow_hash_config)
Definition: ip.c:192
static_always_inline
#define static_always_inline
Definition: clib.h:112
ip6_hop_by_hop_node
vlib_node_registration_t ip6_hop_by_hop_node
(constructor) VLIB_REGISTER_NODE (ip6_hop_by_hop_node)
Definition: ip6_forward.c:2694
ip6_hop_by_hop_trace_t::trace_len
u32 trace_len
Definition: ip6_forward.c:2275
vlib_prefetch_buffer_with_index
#define vlib_prefetch_buffer_with_index(vm, bi, type)
Prefetch buffer metadata by buffer index The first 64 bytes of buffer contains most header informatio...
Definition: buffer_funcs.h:507
HBH_OPTION_TYPE_HIGH_ORDER_BITS
#define HBH_OPTION_TYPE_HIGH_ORDER_BITS
Definition: ip6_hop_by_hop_packet.h:36
uword
u64 uword
Definition: types.h:112
pg_get_node
static pg_node_t * pg_get_node(uword node_index)
Definition: pg.h:391
if
if(node->flags &VLIB_NODE_FLAG_TRACE) vnet_interface_output_trace(vm
MFIB_SOURCE_DEFAULT_ROUTE
@ MFIB_SOURCE_DEFAULT_ROUTE
Definition: mfib_types.h:177
ethernet_header_t
Definition: packet.h:52
vlib_rx_or_tx_t
vlib_rx_or_tx_t
Definition: defs.h:44
arc_index
u8 arc_index
Definition: nat44_ei_hairpinning.c:593
clib_mem_unaligned
#define clib_mem_unaligned(pointer, type)
Definition: types.h:155
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:215
ip6_tcp_udp_icmp_compute_checksum
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
Definition: ip6_forward.c:1096
vlib_get_node
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:86
load_balance_get_bucket_i
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
Definition: load_balance.h:229
ip_get_interface_prefix
static ip_interface_prefix_t * ip_get_interface_prefix(ip_lookup_main_t *lm, ip_interface_prefix_key_t *k)
Definition: ip_interface.h:50
ip6_header_t::dst_address
ip6_address_t dst_address
Definition: ip6_packet.h:310
IP_BUILTIN_PROTOCOL_UDP
@ IP_BUILTIN_PROTOCOL_UDP
Definition: ip_packet.h:65
cm
vnet_feature_config_main_t * cm
Definition: nat44_ei_hairpinning.c:594
format_unformat_error
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
pool_get
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:255
FIB_SOURCE_CLASSIFY
@ FIB_SOURCE_CLASSIFY
Classify.
Definition: fib_source.h:49
IP_FRAG_NEXT_IP_REWRITE
@ IP_FRAG_NEXT_IP_REWRITE
Definition: ip_frag.h:51
ip6_locate_header
static int ip6_locate_header(vlib_buffer_t *p0, ip6_header_t *ip0, int find_hdr_type, u32 *offset)
Definition: ip6_inlines.h:137
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
address
manual_print typedef address
Definition: ip_types.api:96
VLIB_CLI_COMMAND
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
vnet_feature_init
static clib_error_t * vnet_feature_init(vlib_main_t *vm)
Definition: feature.c:50
IP6_MCAST_ADDR_MASK
#define IP6_MCAST_ADDR_MASK
This bits of an IPv6 address to mask to construct a multicast MAC address.
Definition: ip6_forward.c:1711
ip_adjacency_t_
IP unicast adjacency.
Definition: adj.h:235
FIB_PROTOCOL_IP4
@ FIB_PROTOCOL_IP4
Definition: fib_types.h:36
ip_interface_prefix_key_t
Definition: lookup.h:70
STATIC_ASSERT
#define STATIC_ASSERT(truth,...)
Definition: error_bootstrap.h:111
ip6_lookup_init
static clib_error_t * ip6_lookup_init(vlib_main_t *vm)
Definition: ip6_forward.c:2789
CLIB_CACHE_LINE_BYTES
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:58
FIB_ENTRY_FLAG_LOCAL
@ FIB_ENTRY_FLAG_LOCAL
Definition: fib_entry.h:117
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
vlib_cli_output
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:716
ip6_rewrite_mcast_node
vlib_node_registration_t ip6_rewrite_mcast_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_mcast_node)
Definition: ip6_forward.c:2227
ip6_forward_next_trace_t::flow_hash
u32 flow_hash
Definition: ip6_forward.c:939
vnet_interface_main_t::sw_interfaces
vnet_sw_interface_t * sw_interfaces
Definition: interface.h:1015
function
u8 function
Definition: pci_types.api:23
ip6_fib_table_fwding_lookup
static u32 ip6_fib_table_fwding_lookup(u32 fib_index, const ip6_address_t *dst)
Definition: ip6_fib.h:115
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
fib_prefix_t_::fp_addr
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:225
vnet_sw_interface_is_admin_up
static uword vnet_sw_interface_is_admin_up(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:265
ip6_hop_by_hop_main_t::options
int(* options[256])(vlib_buffer_t *b, ip6_header_t *ip, ip6_hop_by_hop_option_t *opt)
Definition: ip6.h:305
ip6_hop_by_hop_error_strings
static char * ip6_hop_by_hop_error_strings[]
Definition: ip6_forward.c:2281
ip6_forward_next_trace_t::adj_index
u32 adj_index
Definition: ip6_forward.c:938
ip_frag.h
udp_header_t::checksum
u16 checksum
Definition: udp_packet.h:55
VNET_SW_INTERFACE_ADD_DEL_FUNCTION
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(ip6_sw_interface_add_del)
vnet_main_t::api_errno
vnet_api_error_t api_errno
Definition: vnet.h:109
set_ip6_classify_command
static vlib_cli_command_t set_ip6_classify_command
(constructor) VLIB_CLI_COMMAND (set_ip6_classify_command)
Definition: ip6_forward.c:3125
ip6_forward_next_trace_t::packet_data
u8 packet_data[128 - 1 *sizeof(u32)]
Definition: ip6_forward.c:943
IP_LOOKUP_NEXT_ICMP_ERROR
@ IP_LOOKUP_NEXT_ICMP_ERROR
This packets needs to go to ICMP error.
Definition: adj.h:79
data
u8 data[128]
Definition: ipsec_types.api:95
ip6_hop_by_hop_trace_t::next_index
u32 next_index
Definition: ip6_forward.c:2274
IP6_REWRITE_NEXT_DROP
@ IP6_REWRITE_NEXT_DROP
Definition: ip6_forward.c:1701
ip_lookup_next_t
ip_lookup_next_t
An adjacency is a representation of an attached L3 peer.
Definition: adj.h:50
ip6_rewrite_next_t
ip6_rewrite_next_t
Definition: ip6_forward.c:1699
vnet_hw_interface_t
Definition: interface.h:638
vnet_main_t
Definition: vnet.h:76
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
ip_adjacency_t_::sub_type
union ip_adjacency_t_::@144 sub_type
vnet_sw_interface_supports_addressing
clib_error_t * vnet_sw_interface_supports_addressing(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:1338
ip6_forward.h
IPv6 Forwarding.
ip6_urpf_loose_check
static int ip6_urpf_loose_check(ip6_main_t *im, vlib_buffer_t *b, ip6_header_t *i)
returns number of links on which src is reachable.
Definition: ip6_forward.c:1195
vlib_validate_buffer_enqueue_x1
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:224
ip6_input_node
vlib_node_registration_t ip6_input_node
(constructor) VLIB_REGISTER_NODE (ip6_input_node)
Definition: ip6_input.c:231
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
format_ip6_hop_by_hop_ext_hdr
u8 * format_ip6_hop_by_hop_ext_hdr(u8 *s, va_list *args)
Definition: ip6_forward.c:2289
format_ip6_hop_by_hop_trace
static u8 * format_ip6_hop_by_hop_trace(u8 *s, va_list *args)
Definition: ip6_forward.c:2332
HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP
#define HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP
Definition: ip6_hop_by_hop_packet.h:34
format_vlib_node_name
format_function_t format_vlib_node_name
Definition: node_funcs.h:1235
format_ip6_forward_next_trace
u8 * format_ip6_forward_next_trace(u8 *s, va_list *args)
Definition: ip6_forward.c:949
FIB_ENTRY_FLAG_CONNECTED
@ FIB_ENTRY_FLAG_CONNECTED
Definition: fib_entry.h:113
set_ip6_flow_hash_command_fn
static clib_error_t * set_ip6_flow_hash_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: ip6_forward.c:2836
ip6_add_del_interface_address
clib_error_t * ip6_add_del_interface_address(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *address, u32 address_length, u32 is_del)
Definition: ip6_forward.c:298
format_vnet_sw_if_index_name
format_function_t format_vnet_sw_if_index_name
Definition: interface_funcs.h:458
ip6_load_balance_node
vlib_node_registration_t ip6_load_balance_node
(constructor) VLIB_REGISTER_NODE (ip6_load_balance_node)
Definition: ip6_forward.c:926
ip6_hop_by_hop_main_t::trace
u8 *(* trace[256])(u8 *s, ip6_hop_by_hop_option_t *opt)
Definition: ip6.h:307
unformat_vnet_sw_interface
unformat_function_t unformat_vnet_sw_interface
Definition: interface_funcs.h:462
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
cache.h
adjacency_counters
vlib_combined_counter_main_t adjacency_counters
Adjacency packet counters.
Definition: adj.c:26
ip6_rewrite_bcast_node
vlib_node_registration_t ip6_rewrite_bcast_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_bcast_node)
Definition: ip6_forward.c:2219
vlib_combined_counter_main_t
A collection of combined counters.
Definition: counter.h:203
format_get_indent
static u32 format_get_indent(u8 *s)
Definition: format.h:72
FIB_SOURCE_DEFAULT_ROUTE
@ FIB_SOURCE_DEFAULT_ROUTE
The default route source.
Definition: fib_source.h:134
vec_validate_init_empty
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header,...
Definition: vec.h:570
vlib_put_next_frame
vlib_put_next_frame(vm, node, next_index, 0)
ip_csum_with_carry
static ip_csum_t ip_csum_with_carry(ip_csum_t sum, ip_csum_t x)
Definition: ip_packet.h:248
fib_table_get_index_for_sw_if_index
u32 fib_table_get_index_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the index of the FIB bound to the interface.
Definition: fib_table.c:1003
DPO_PROTO_IP6
@ DPO_PROTO_IP6
Definition: dpo.h:65
FIB_ROUTE_PATH_FLAG_NONE
@ FIB_ROUTE_PATH_FLAG_NONE
Definition: fib_types.h:332
ip.h
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
vnet_get_sup_hw_interface
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:92
fib_urpf_list.h
options
static struct option options[]
Definition: main.c:52
protocol
vl_api_ip_proto_t protocol
Definition: lb_types.api:72
ip6_hop_by_hop_trace_t::option_data
u8 option_data[256]
Definition: ip6_forward.c:2276
table_id
u32 table_id
Definition: wireguard.api:102
IP_BUILTIN_PROTOCOL_ICMP
@ IP_BUILTIN_PROTOCOL_ICMP
Definition: ip_packet.h:66
FIB_PROTOCOL_IP6
@ FIB_PROTOCOL_IP6
Definition: fib_types.h:37
ip6_hop_by_hop_header_t::length
u8 length
Definition: ip6_hop_by_hop_packet.h:26
ip_adjacency_t_::ia_cfg_index
u32 ia_cfg_index
feature [arc] config index
Definition: adj.h:247
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
load_balance_get
static load_balance_t * load_balance_get(index_t lbi)
Definition: load_balance.h:220
n_left
u32 n_left
Definition: interface_output.c:1096
ip6_scan_hbh_options
static u8 ip6_scan_hbh_options(vlib_buffer_t *b0, ip6_header_t *ip0, ip6_hop_by_hop_header_t *hbh0, ip6_hop_by_hop_option_t *opt0, ip6_hop_by_hop_option_t *limit0, u32 *next0)
Definition: ip6_forward.c:2380
ip6_hop_by_hop_error_t
ip6_hop_by_hop_error_t
Definition: ip6_forward.c:2259
ip6_unregister_protocol
void ip6_unregister_protocol(u32 protocol)
Definition: ip6_forward.c:1689
vnet_classify_main_t
struct _vnet_classify_main vnet_classify_main_t
Definition: vnet_classify.h:61
AF_IP6
@ AF_IP6
Definition: ip_types.h:24
IP_LOCAL_NEXT_UDP_LOOKUP
@ IP_LOCAL_NEXT_UDP_LOOKUP
Definition: lookup.h:113
ip6_hop_by_hop_main_t::next_override
uword next_override
Definition: ip6.h:308
ip6_main_t::lookup_main
ip_lookup_main_t lookup_main
Definition: ip6.h:112
vlib_node_get_runtime
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:116
ip6_header_t
Definition: ip6_packet.h:294
IP6_LOOKUP_N_NEXT
@ IP6_LOOKUP_N_NEXT
Definition: adj.h:105
ip6_main_t
Definition: ip6.h:110
foreach_ip6_hop_by_hop_error
#define foreach_ip6_hop_by_hop_error
Definition: ip6_forward.c:2253
vnet_classify.h
ip6_addr_fib_init
static void ip6_addr_fib_init(ip6_address_fib_t *addr_fib, const ip6_address_t *address, u32 fib_index)
Definition: ip6_packet.h:74
ip6_hop_by_hop_main_t
Definition: ip6.h:302
vnet_feature_enable_disable
int vnet_feature_enable_disable(const char *arc_name, const char *node_name, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
Definition: pnat_test_stubs.h:50
IP_LOCAL_NEXT_DROP
@ IP_LOCAL_NEXT_DROP
Definition: lookup.h:111
ip6_fib.h
ip_lookup_main_t
Definition: lookup.h:121
format_ip6_rewrite_trace
static u8 * format_ip6_rewrite_trace(u8 *s, va_list *args)
Definition: ip6_forward.c:984
vnet_rewrite_two_headers
#define vnet_rewrite_two_headers(rw0, rw1, p0, p1, most_likely_size)
Definition: rewrite.h:222
ip6_header_t::src_address
ip6_address_t src_address
Definition: ip6_packet.h:310
format_ip6_lookup_trace
static u8 * format_ip6_lookup_trace(u8 *s, va_list *args)
Definition: ip6_forward.c:967
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
ip_interface_address_del
clib_error_t * ip_interface_address_del(ip_lookup_main_t *lm, vnet_main_t *vnm, u32 address_index, void *addr_fib, u32 address_length, u32 sw_if_index)
Definition: ip_interface.c:94
vlib_node_t
Definition: node.h:247
ip_lookup_main_t::local_next_by_ip_protocol
u8 local_next_by_ip_protocol[256]
Table mapping ip protocol to ip[46]-local node next index.
Definition: lookup.h:158
vlib_add_trace
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:628
ip6_next_proto_is_tcp_udp
static u8 ip6_next_proto_is_tcp_udp(vlib_buffer_t *p0, ip6_header_t *ip0, u32 *udp_offset0)
Definition: ip6_forward.c:1214
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
VNET_FEATURES
#define VNET_FEATURES(...)
Definition: feature.h:470
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
a
a
Definition: bitmap.h:525
vlib_buffer_get_current
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
ip
vl_api_address_t ip
Definition: l2.api:558
ip_interface_address_find
u32 ip_interface_address_find(ip_lookup_main_t *lm, void *addr_fib, u32 address_length)
Definition: ip_interface.c:24
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
ip_csum_t
uword ip_csum_t
Definition: ip_packet.h:245
vnet_ip_mcast_fixup_header
static void vnet_ip_mcast_fixup_header(u32 dst_mcast_mask, u32 dst_mcast_offset, u32 *addr, u8 *packet0)
Definition: rewrite.h:228
ip6_forward_next_trace_t::fib_index
u32 fib_index
Definition: ip6_forward.c:940
dpo_is_adj
int dpo_is_adj(const dpo_id_t *dpo)
Return TRUE is the DPO is any type of adjacency.
Definition: dpo.c:282
vlib_buffer_t::data
u8 data[]
Packet data.
Definition: buffer.h:204
ip_lookup_main_t::builtin_protocol_by_ip_protocol
u8 builtin_protocol_by_ip_protocol[256]
IP_BUILTIN_PROTOCOL_{TCP,UDP,ICMP,OTHER} by protocol in IP header.
Definition: lookup.h:161
i
int i
Definition: flowhash_template.h:376
ip6_hop_by_hop_header_t::protocol
u8 protocol
Definition: ip6_hop_by_hop_packet.h:21
vnet_rewrite_one_header
#define vnet_rewrite_one_header(rw0, p0, most_likely_size)
Definition: rewrite.h:218
ip6_del_interface_prefix_routes
static void ip6_del_interface_prefix_routes(ip6_main_t *im, u32 sw_if_index, u32 fib_index, ip6_address_t *address, u32 address_length)
Definition: ip6_forward.c:172
ip6_error_t
ip6_error_t
Definition: ip6_error.h:90
vnet_feature_arc_start
static_always_inline void vnet_feature_arc_start(u8 arc, u32 sw_if_index, u32 *next0, vlib_buffer_t *b0)
Definition: feature.h:302
clib_warning
#define clib_warning(format, args...)
Definition: error.h:59
ip6_lookup_node
vlib_node_registration_t ip6_lookup_node
(constructor) VLIB_REGISTER_NODE (ip6_lookup_node)
Definition: ip6_forward.c:739
dpo_id_t_
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:172
nexts
u16 nexts[VLIB_FRAME_SIZE]
Definition: nat44_ei_out2in.c:718
ip6_hbh_register_option
int ip6_hbh_register_option(u8 option, int options(vlib_buffer_t *b, ip6_header_t *ip, ip6_hop_by_hop_option_t *opt), u8 *trace(u8 *s, ip6_hop_by_hop_option_t *opt))
Definition: ip6_forward.c:2729
rv
int __clib_unused rv
Definition: application.c:491
DPO_CLASSIFY
@ DPO_CLASSIFY
Definition: dpo.h:115
format_ip4_address_and_length
format_function_t format_ip4_address_and_length
Definition: format.h:74
load_balance_t_::lb_n_buckets_minus_1
u16 lb_n_buckets_minus_1
number of buckets in the load-balance - 1.
Definition: load_balance.h:121
vlib_validate_buffer_enqueue_x2
#define vlib_validate_buffer_enqueue_x2(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, next0, next1)
Finish enqueueing two buffers forward in the graph.
Definition: buffer_node.h:70
ip_interface_address_t
Definition: lookup.h:89
load_balance_t_
The FIB DPO provieds;.
Definition: load_balance.h:106
clib_prefetch_store
static_always_inline void clib_prefetch_store(void *p)
Definition: cache.h:98
vlib_buffer_t::pre_data
u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]
Space for inserting data before buffer start.
Definition: buffer.h:201
vnet.h
dpo_set
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:188
load_balance_t_::lb_urpf
index_t lb_urpf
This is the index of the uRPF list for this LB.
Definition: load_balance.h:156
ip6_header_t::payload_length
u16 payload_length
Definition: ip6_packet.h:301
ip6_hop_by_hop_trace_t
Definition: ip6_forward.c:2272
IP6_REWRITE_NEXT_FRAGMENT
@ IP6_REWRITE_NEXT_FRAGMENT
Definition: ip6_forward.c:1703
vlib_node_runtime_t
Definition: node.h:454
src_address
vl_api_address_union_t src_address
Definition: ip_types.api:122
vlib_cli_command_t
Definition: cli.h:92
from
from
Definition: nat44_ei_hairpinning.c:415
PREDICT_TRUE
#define PREDICT_TRUE(x)
Definition: clib.h:125
ip6_interface_first_address
ip6_address_t * ip6_interface_first_address(ip6_main_t *im, u32 sw_if_index)
get first IPv6 interface address
Definition: ip6_forward.c:279
VNET_FEATURE_ARC_INIT
VNET_FEATURE_ARC_INIT(ip6_unicast, static)
vlib_buffer_t::total_length_not_including_first_buffer
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:176
ip6_tcp_udp_icmp_validate_checksum
u32 ip6_tcp_udp_icmp_validate_checksum(vlib_main_t *vm, vlib_buffer_t *p0)
Definition: ip6_forward.c:1161
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
vlib_get_next_frame
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:395
ip6_lookup_inline
static uword ip6_lookup_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: ip6_forward.h:56
VLIB_TX
@ VLIB_TX
Definition: defs.h:47
ip_interface_address_t::flags
ip_interface_address_flags_t flags
Definition: lookup.h:101
ip6_local_node
vlib_node_registration_t ip6_local_node
(constructor) VLIB_REGISTER_NODE (ip6_local_node)
Definition: ip6_forward.c:1633
ip6_register_protocol
void ip6_register_protocol(u32 protocol, u32 node_index)
Definition: ip6_forward.c:1677
dpo_reset
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:234
show_ip6_local_command_fn
static clib_error_t * show_ip6_local_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: ip6_forward.c:2967
adj_get
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:470
n_left_from
n_left_from
Definition: nat44_ei_hairpinning.c:416
ip6_rewrite_inline_with_gso
static uword ip6_rewrite_inline_with_gso(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int do_counters, int is_midchain, int is_mcast)
Definition: ip6_forward.c:1741
mhash_unset
__clib_export uword mhash_unset(mhash_t *h, void *key, uword *old_value)
Definition: mhash.c:346
classify_dpo.h
IP_LOCAL_NEXT_PUNT
@ IP_LOCAL_NEXT_PUNT
Definition: lookup.h:112
fib_prefix_t_
Aggregate type for a prefix.
Definition: fib_types.h:202
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
ip_lookup_main_t::output_feature_arc_index
u8 output_feature_arc_index
Definition: lookup.h:145
vnet_main_t::interface_main
vnet_interface_main_t interface_main
Definition: vnet.h:81
vlib_increment_combined_counter
vlib_increment_combined_counter(ccm, ti, sw_if_index, n_buffers, n_bytes)
format_white_space
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:129
vlib_prefetch_buffer_data
#define vlib_prefetch_buffer_data(b, type)
Definition: buffer.h:232
IP_FRAG_NEXT_IP_REWRITE_MIDCHAIN
@ IP_FRAG_NEXT_IP_REWRITE_MIDCHAIN
Definition: ip_frag.h:52
UNFORMAT_END_OF_INPUT
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
mhash_set
static uword mhash_set(mhash_t *h, void *key, uword new_value, uword *old_value)
Definition: mhash.h:117
vlib_buffer_t::flags
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,...
Definition: buffer.h:133
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
VLIB_REGISTER_NODE
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
ip_adjacency_t_::midchain
struct ip_adjacency_t_::@144::@146 midchain
IP_LOOKUP_NEXT_MIDCHAIN.
classify_table_index
u32 classify_table_index
Definition: fib_types.api:68
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105