FD.io VPP  v20.09-rc2-28-g3c5414029
Vector Packet Processing
ipip.c
Go to the documentation of this file.
1 /*
2  * ipip.c: ipip
3  *
4  * Copyright (c) 2018 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or aipiped to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <stddef.h>
19 #include <vnet/adj/adj_midchain.h>
20 #include <vnet/ipip/ipip.h>
21 #include <vnet/vnet.h>
22 #include <vnet/adj/adj_nbr.h>
23 #include <vnet/adj/adj_midchain.h>
24 #include <vnet/fib/ip4_fib.h>
25 #include <vnet/fib/ip6_fib.h>
26 #include <vnet/ip/format.h>
27 #include <vnet/ipip/ipip.h>
28 #include <vnet/teib/teib.h>
29 #include <vnet/tunnel/tunnel_dp.h>
30 
32 
33 /* Packet trace structure */
34 typedef struct
35 {
38  ip46_address_t src;
39  ip46_address_t dst;
41 
42 u8 *
43 format_ipip_tx_trace (u8 * s, va_list * args)
44 {
45  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
46  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
47  ipip_tx_trace_t *t = va_arg (*args, ipip_tx_trace_t *);
48 
49  s =
50  format (s, "IPIP: tunnel %d len %d src %U dst %U", t->tunnel_id,
53  return s;
54 }
55 
56 static u8 *
58  vnet_link_t link_type, const void *dst_address)
59 {
60  const ip46_address_t *dst;
63  u8 *rewrite = NULL;
64  ipip_tunnel_t *t;
65 
66  dst = dst_address;
67  t = ipip_tunnel_db_find_by_sw_if_index (sw_if_index);
68 
69  if (!t)
70  /* not one of ours */
71  return (0);
72 
73  switch (t->transport)
74  {
75  case IPIP_TRANSPORT_IP4:
76  vec_validate (rewrite, sizeof (*ip4) - 1);
77  ip4 = (ip4_header_t *) rewrite;
78  ip4->ip_version_and_header_length = 0x45;
79  ip4->ttl = 64;
80  /* fixup ip4 header length, protocol and checksum after-the-fact */
81  ip4->src_address.as_u32 = t->tunnel_src.ip4.as_u32;
82  ip4->dst_address.as_u32 = dst->ip4.as_u32;
83  if (!(t->flags & TUNNEL_ENCAP_DECAP_FLAG_ENCAP_COPY_DSCP))
84  ip4_header_set_dscp (ip4, t->dscp);
85  if (t->flags & TUNNEL_ENCAP_DECAP_FLAG_ENCAP_SET_DF)
86  ip4_header_set_df (ip4);
87 
88  switch (link_type)
89  {
90  case VNET_LINK_IP6:
91  ip4->protocol = IP_PROTOCOL_IPV6;
92  break;
93  case VNET_LINK_IP4:
94  ip4->protocol = IP_PROTOCOL_IP_IN_IP;
95  break;
96  default:
97  break;
98  }
99  ip4->checksum = ip4_header_checksum (ip4);
100  break;
101 
102  case IPIP_TRANSPORT_IP6:
103  vec_validate (rewrite, sizeof (*ip6) - 1);
104  ip6 = (ip6_header_t *) rewrite;
106  clib_host_to_net_u32 (6 << 28);
107  ip6->hop_limit = 64;
108  /* fixup ip6 header length and protocol after-the-fact */
109  ip6->src_address.as_u64[0] = t->tunnel_src.ip6.as_u64[0];
110  ip6->src_address.as_u64[1] = t->tunnel_src.ip6.as_u64[1];
111  ip6->dst_address.as_u64[0] = dst->ip6.as_u64[0];
112  ip6->dst_address.as_u64[1] = dst->ip6.as_u64[1];
113  if (!(t->flags & TUNNEL_ENCAP_DECAP_FLAG_ENCAP_COPY_DSCP))
115 
116  switch (link_type)
117  {
118  case VNET_LINK_IP6:
119  ip6->protocol = IP_PROTOCOL_IPV6;
120  break;
121  case VNET_LINK_IP4:
122  ip6->protocol = IP_PROTOCOL_IP_IN_IP;
123  break;
124  default:
125  break;
126  }
127  break;
128  }
129  return (rewrite);
130 }
131 
132 static void
134  const void *data)
135 {
137  ip4_header_t *ip4;
138 
139  flags = pointer_to_uword (data);
140 
141  ip4 = vlib_buffer_get_current (b);
142  ip4->length = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b));
143  tunnel_encap_fixup_6o4 (flags, ((ip6_header_t *) (ip4 + 1)), ip4);
144 
145  ip4->checksum = ip4_header_checksum (ip4);
146 }
147 
148 static void
150  const void *data)
151 {
153  ip4_header_t *ip4;
154 
155  flags = pointer_to_uword (data);
156 
157  ip4 = vlib_buffer_get_current (b);
158  ip4->length = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b));
159  tunnel_encap_fixup_4o4 (flags, ip4 + 1, ip4);
160 
161  ip4->checksum = ip4_header_checksum (ip4);
162 }
163 
164 static void
166  const void *data)
167 {
169  ip6_header_t *ip6;
170 
171  flags = pointer_to_uword (data);
172 
173  /* Must set locally originated otherwise we're not allowed to
174  fragment the packet later */
175  b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
176 
177  ip6 = vlib_buffer_get_current (b);
178  ip6->payload_length =
179  clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b) -
180  sizeof (*ip6));
181  tunnel_encap_fixup_4o6 (flags, ((ip4_header_t *) (ip6 + 1)), ip6);
182 }
183 
184 static void
186  const ip_adjacency_t * adj, vlib_buffer_t * b, const void *data)
187 {
189  ip6_header_t *ip6;
190 
191  flags = pointer_to_uword (data);
192 
193  /* Must set locally originated otherwise we're not allowed to
194  fragment the packet later */
195  b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
196 
197  ip6 = vlib_buffer_get_current (b);
198  ip6->payload_length =
199  clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b) -
200  sizeof (*ip6));
201  tunnel_encap_fixup_6o6 (flags, ip6 + 1, ip6);
202 }
203 
204 static void
206 {
207  ip_adjacency_t *adj;
208  ipip_tunnel_t *t;
210 
211  adj = adj_get (ai);
212  sw_if_index = adj->rewrite_header.sw_if_index;
213 
214  t = ipip_tunnel_db_find_by_sw_if_index (sw_if_index);
215  if (!t)
216  return;
217 
220  {
222  }
223  else
224  {
225  /* *INDENT-OFF* */
226  fib_prefix_t dst = {
227  .fp_len = t->transport == IPIP_TRANSPORT_IP6 ? 128 : 32,
228  .fp_proto = (t->transport == IPIP_TRANSPORT_IP6 ?
231  .fp_addr = t->tunnel_dst
232  };
233  /* *INDENT-ON* */
234 
235  adj_midchain_delegate_stack (ai, t->fib_index, &dst);
236  }
237 }
238 
239 static adj_walk_rc_t
241 {
242  ipip_tunnel_stack (ai);
243 
244  return (ADJ_WALK_RC_CONTINUE);
245 }
246 
247 static void
249 {
251 
252  /*
253  * walk all the adjacencies on th IPIP interface and restack them
254  */
256  {
257  adj_nbr_walk (gt->sw_if_index, proto, ipip_adj_walk_cb, NULL);
258  }
259 }
260 
263 {
264  if (t->transport == IPIP_TRANSPORT_IP6 && lt == VNET_LINK_IP6)
265  return (ipip66_fixup);
266  if (t->transport == IPIP_TRANSPORT_IP6 && lt == VNET_LINK_IP4)
267  return (ipip46_fixup);
268  if (t->transport == IPIP_TRANSPORT_IP4 && lt == VNET_LINK_IP6)
269  return (ipip64_fixup);
270  if (t->transport == IPIP_TRANSPORT_IP4 && lt == VNET_LINK_IP4)
271  {
272  *aflags = *aflags | ADJ_FLAG_MIDCHAIN_FIXUP_IP4O4_HDR;
273  return (ipip44_fixup);
274  }
275 
276  ASSERT (0);
277  return (ipip44_fixup);
278 }
279 
280 void
282 {
283  adj_midchain_fixup_t fixup;
284  ipip_tunnel_t *t;
285  adj_flags_t af;
286 
287  t = ipip_tunnel_db_find_by_sw_if_index (sw_if_index);
288  if (!t)
289  return;
290 
294 
295  fixup = ipip_get_fixup (t, adj_get_link_type (ai), &af);
297  (ai, fixup,
298  uword_to_pointer (t->flags, void *), af,
299  ipip_build_rewrite (vnm, sw_if_index,
300  adj_get_link_type (ai), &t->tunnel_dst));
301  ipip_tunnel_stack (ai);
302 }
303 
304 typedef struct mipip_walk_ctx_t_
305 {
306  const ipip_tunnel_t *t;
307  const teib_entry_t *ne;
309 
310 static adj_walk_rc_t
312 {
313  adj_midchain_fixup_t fixup;
315  adj_flags_t af;
316 
317  af = ADJ_FLAG_NONE;
318  fixup = ipip_get_fixup (ctx->t, adj_get_link_type (ai), &af);
319 
321  (ai, fixup,
322  uword_to_pointer (ctx->t->flags, void *),
324  ctx->t->sw_if_index,
325  adj_get_link_type (ai),
327  (ctx->ne)->fp_addr));
328 
329  teib_entry_adj_stack (ctx->ne, ai);
330 
331  return (ADJ_WALK_RC_CONTINUE);
332 }
333 
334 static adj_walk_rc_t
336 {
337  adj_midchain_fixup_t fixup;
338  ipip_tunnel_t *t = data;
339  adj_flags_t af;
340 
341  af = ADJ_FLAG_NONE;
342  fixup = ipip_get_fixup (t, adj_get_link_type (ai), &af);
343 
344  adj_nbr_midchain_update_rewrite (ai, fixup, NULL, ADJ_FLAG_NONE, NULL);
345 
347 
348  return (ADJ_WALK_RC_CONTINUE);
349 }
350 
351 void
353 {
355  adj_midchain_fixup_t fixup;
356  ip_adjacency_t *adj;
357  teib_entry_t *ne;
358  ipip_tunnel_t *t;
359  adj_flags_t af;
360  u32 ti;
361 
362  af = ADJ_FLAG_NONE;
363  adj = adj_get (ai);
365  t = pool_elt_at_index (gm->tunnels, ti);
366 
367  ne = teib_entry_find (sw_if_index, &adj->sub_type.nbr.next_hop);
368 
369  if (NULL == ne)
370  {
371  // no TEIB entry to provide the next-hop
372  fixup = ipip_get_fixup (t, adj_get_link_type (ai), &af);
374  (ai, fixup, uword_to_pointer (t->flags, void *), ADJ_FLAG_NONE, NULL);
375  return;
376  }
377 
379  .t = t,
380  .ne = ne
381  };
382  adj_nbr_walk_nh (sw_if_index,
383  adj->ia_nh_proto,
384  &adj->sub_type.nbr.next_hop, mipip_mk_complete_walk, &ctx);
385 }
386 
387 static u8 *
388 format_ipip_tunnel_name (u8 * s, va_list * args)
389 {
390  u32 dev_instance = va_arg (*args, u32);
392  ipip_tunnel_t *t;
393 
394  if (dev_instance >= vec_len (gm->tunnels))
395  return format (s, "<improperly-referenced>");
396 
397  t = pool_elt_at_index (gm->tunnels, dev_instance);
398  return format (s, "ipip%d", t->user_instance);
399 }
400 
401 static u8 *
402 format_ipip_device (u8 * s, va_list * args)
403 {
404  u32 dev_instance = va_arg (*args, u32);
405  CLIB_UNUSED (int verbose) = va_arg (*args, int);
406 
407  s = format (s, "IPIP tunnel: id %d\n", dev_instance);
408  return s;
409 }
410 
411 static clib_error_t *
413 {
415  ipip_tunnel_t *t;
416 
417  hi = vnet_get_hw_interface (vnm, hw_if_index);
418 
420  if (!t)
421  return 0;
422 
424  vnet_hw_interface_set_flags (vnm, hw_if_index,
426  else
427  vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
428 
430 
431  return /* no error */ 0;
432 }
433 
434 static int
436  ip46_address_t * src, ip46_address_t * dst, u8 * is_l2)
437 {
438  ipip_tunnel_t *t;
439 
440  t = ipip_tunnel_db_find_by_sw_if_index (sw_if_index);
441  if (!t)
442  return -1;
443 
444  *src = t->tunnel_src;
445  *dst = t->tunnel_dst;
446  *is_l2 = 0;
447 
448  return (0);
449 }
450 
451 /* *INDENT-OFF* */
452 VNET_DEVICE_CLASS(ipip_device_class) = {
453  .name = "IPIP tunnel device",
454  .format_device_name = format_ipip_tunnel_name,
455  .format_device = format_ipip_device,
456  .format_tx_trace = format_ipip_tx_trace,
457  .admin_up_down_function = ipip_interface_admin_up_down,
458  .ip_tun_desc = ipip_tunnel_desc,
459 #ifdef SOON
460  .clear counter = 0;
461 #endif
462 };
463 
465  .name = "IPIP",
466  //.format_header = format_ipip_header_with_length,
467  //.unformat_header = unformat_ipip_header,
468  .build_rewrite = ipip_build_rewrite,
469  .update_adjacency = ipip_update_adj,
471 };
472 
473 VNET_HW_INTERFACE_CLASS(mipip_hw_interface_class) = {
474  .name = "mIPIP",
475  //.format_header = format_ipip_header_with_length,
476  //.unformat_header = unformat_ipip_header,
477  .build_rewrite = ipip_build_rewrite,
478  .update_adjacency = mipip_update_adj,
480 };
481 /* *INDENT-ON* */
482 
484 ipip_tunnel_db_find (const ipip_tunnel_key_t * key)
485 {
487  uword *p;
488 
489  p = hash_get_mem (gm->tunnel_by_key, key);
490  if (!p)
491  return (NULL);
492  return (pool_elt_at_index (gm->tunnels, p[0]));
493 }
494 
497 {
499  if (vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index)
500  return NULL;
502  if (ti == ~0)
503  return NULL;
504  return pool_elt_at_index (gm->tunnels, ti);
505 }
506 
507 void
508 ipip_tunnel_db_add (ipip_tunnel_t * t, const ipip_tunnel_key_t * key)
509 {
511 
513 }
514 
515 void
516 ipip_tunnel_db_remove (ipip_tunnel_t * t, const ipip_tunnel_key_t * key)
517 {
519 
521 }
522 
523 void
524 ipip_mk_key_i (ipip_transport_t transport,
525  ipip_mode_t mode,
526  const ip46_address_t * src,
527  const ip46_address_t * dst,
528  u32 fib_index, ipip_tunnel_key_t * key)
529 {
530  key->transport = transport;
531  key->mode = mode;
532  key->src = *src;
533  key->dst = *dst;
534  key->fib_index = fib_index;
535  key->__pad = 0;;
536 }
537 
538 void
539 ipip_mk_key (const ipip_tunnel_t * t, ipip_tunnel_key_t * key)
540 {
541  ipip_mk_key_i (t->transport, t->mode,
542  &t->tunnel_src, &t->tunnel_dst, t->fib_index, key);
543 }
544 
545 static void
547  const teib_entry_t * ne, ipip_tunnel_key_t * key)
548 {
549  const fib_prefix_t *nh;
550 
551  nh = teib_entry_get_nh (ne);
552 
553  /* construct the key using mode P2P so it can be found in the DP */
555  &t->tunnel_src, &nh->fp_addr,
556  teib_entry_get_fib_index (ne), key);
557 }
558 
559 static void
561 {
563  const ip46_address_t *nh;
564  ipip_tunnel_key_t key;
565  ipip_tunnel_t *t;
567  u32 t_idx;
568 
569  sw_if_index = teib_entry_get_sw_if_index (ne);
570  if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
571  return;
572 
574 
575  if (INDEX_INVALID == t_idx)
576  return;
577 
578  t = pool_elt_at_index (gm->tunnels, t_idx);
579 
580  ipip_teib_mk_key (t, ne, &key);
581  ipip_tunnel_db_add (t, &key);
582 
583  // update the rewrites for each of the adjacencies for this next-hop
585  .t = t,
586  .ne = ne
587  };
588  nh = teib_entry_get_peer (ne);
590  (ip46_address_is_ip4 (nh) ?
593 }
594 
595 static void
597 {
599  const ip46_address_t *nh;
600  ipip_tunnel_key_t key;
601  ipip_tunnel_t *t;
603  u32 t_idx;
604 
605  sw_if_index = teib_entry_get_sw_if_index (ne);
606  if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
607  return;
608 
610 
611  if (INDEX_INVALID == t_idx)
612  return;
613 
614  t = pool_elt_at_index (gm->tunnels, t_idx);
615 
616  ipip_teib_mk_key (t, ne, &key);
617  ipip_tunnel_db_remove (t, &key);
618 
619  nh = teib_entry_get_peer (ne);
620 
621  /* make all the adjacencies incomplete */
623  (ip46_address_is_ip4 (nh) ?
626 }
627 
628 static walk_rc_t
630 {
631  ipip_tunnel_t *t = ctx;
632  ipip_tunnel_key_t key;
633 
634  ipip_teib_mk_key (t, teib_entry_get (nei), &key);
635  ipip_tunnel_db_remove (t, &key);
636 
637  return (WALK_CONTINUE);
638 }
639 
640 static walk_rc_t
642 {
643  ipip_tunnel_t *t = ctx;
644  ipip_tunnel_key_t key;
645 
646  ipip_teib_mk_key (t, teib_entry_get (nei), &key);
647  ipip_tunnel_db_add (t, &key);
648 
649  return (WALK_CONTINUE);
650 }
651 
652 int
653 ipip_add_tunnel (ipip_transport_t transport,
654  u32 instance, ip46_address_t * src, ip46_address_t * dst,
656  ip_dscp_t dscp, tunnel_mode_t tmode, u32 * sw_if_indexp)
657 {
659  vnet_main_t *vnm = gm->vnet_main;
660  ip4_main_t *im4 = &ip4_main;
661  ip6_main_t *im6 = &ip6_main;
662  ipip_tunnel_t *t;
664  u32 hw_if_index, sw_if_index;
665  ipip_tunnel_key_t key;
666  ipip_mode_t mode;
667 
668  if (tmode == TUNNEL_MODE_MP && !ip46_address_is_zero (dst))
669  return (VNET_API_ERROR_INVALID_DST_ADDRESS);
670 
671  mode = (tmode == TUNNEL_MODE_P2P ? IPIP_MODE_P2P : IPIP_MODE_P2MP);
672  ipip_mk_key_i (transport, mode, src, dst, fib_index, &key);
673 
674  t = ipip_tunnel_db_find (&key);
675  if (t)
676  {
677  if (sw_if_indexp)
678  sw_if_indexp[0] = t->sw_if_index;
679  return VNET_API_ERROR_IF_ALREADY_EXISTS;
680  }
681 
683  clib_memset (t, 0, sizeof (*t));
684 
685  /* Reconcile the real dev_instance and a possible requested instance */
686  u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */
687  u32 u_idx = instance; /* user specified instance */
688  if (u_idx == ~0)
689  u_idx = t_idx;
690  if (hash_get (gm->instance_used, u_idx))
691  {
692  pool_put (gm->tunnels, t);
693  return VNET_API_ERROR_INSTANCE_IN_USE;
694  }
695  hash_set (gm->instance_used, u_idx, 1);
696 
697  t->dev_instance = t_idx; /* actual */
698  t->user_instance = u_idx; /* name */
699 
700  hw_if_index = vnet_register_interface (vnm, ipip_device_class.index, t_idx,
701  (mode == IPIP_MODE_P2P ?
703  mipip_hw_interface_class.index),
704  t_idx);
705 
706  hi = vnet_get_hw_interface (vnm, hw_if_index);
707  sw_if_index = hi->sw_if_index;
708 
709  t->mode = mode;
710  t->hw_if_index = hw_if_index;
711  t->fib_index = fib_index;
713  t->dscp = dscp;
714  t->flags = flags;
715  t->transport = transport;
716 
719 
720  if (t->transport == IPIP_TRANSPORT_IP4)
721  {
722  vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
723  hi->min_packet_bytes = 64 + sizeof (ip4_header_t);
724  }
725  else
726  {
727  vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
728  hi->min_packet_bytes = 64 + sizeof (ip6_header_t);
729  }
730 
731  /* Standard default ipip MTU. */
732  vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
733 
734  t->tunnel_src = *src;
735  t->tunnel_dst = *dst;
736 
737  ipip_tunnel_db_add (t, &key);
738 
739  if (t->mode == IPIP_MODE_P2MP)
741 
742  if (sw_if_indexp)
743  *sw_if_indexp = sw_if_index;
744 
746  {
747  ip6_register_protocol (IP_PROTOCOL_IP_IN_IP, ipip6_input_node.index);
748  ip6_register_protocol (IP_PROTOCOL_IPV6, ipip6_input_node.index);
749  gm->ip6_protocol_registered = true;
750  }
752  {
753  ip4_register_protocol (IP_PROTOCOL_IP_IN_IP, ipip4_input_node.index);
754  ip4_register_protocol (IP_PROTOCOL_IPV6, ipip4_input_node.index);
755  gm->ip4_protocol_registered = true;
756  }
757  return 0;
758 }
759 
760 int
762 {
764  vnet_main_t *vnm = gm->vnet_main;
765  ipip_tunnel_t *t;
766  ipip_tunnel_key_t key;
767 
768  t = ipip_tunnel_db_find_by_sw_if_index (sw_if_index);
769  if (t == NULL)
770  return VNET_API_ERROR_NO_SUCH_ENTRY;
771 
772  if (t->mode == IPIP_MODE_P2MP)
774 
775  vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
779 
780  ipip_mk_key (t, &key);
781  ipip_tunnel_db_remove (t, &key);
782  pool_put (gm->tunnels, t);
783 
784  return 0;
785 }
786 
787 const static teib_vft_t ipip_teib_vft = {
789  .nv_deleted = ipip_teib_entry_deleted,
790 };
791 
792 static clib_error_t *
794 {
796 
797  clib_memset (gm, 0, sizeof (gm[0]));
798  gm->vlib_main = vm;
799  gm->vnet_main = vnet_get_main ();
800  gm->tunnel_by_key =
801  hash_create_mem (0, sizeof (ipip_tunnel_key_t), sizeof (uword));
802 
803  teib_register (&ipip_teib_vft);
804 
805  return 0;
806 }
807 
809 
810 /*
811  * fd.io coding-style-patch-verification: ON
812  *
813  * Local Variables:
814  * eval: (c-set-style "gnu")
815  * End:
816  */
ipip_tunnel_t * ipip_tunnel_db_find(const ipip_tunnel_key_t *key)
Definition: ipip.c:484
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
static adj_walk_rc_t mipip_mk_complete_walk(adj_index_t ai, void *data)
Definition: ipip.c:311
void adj_nbr_walk_nh(u32 sw_if_index, fib_protocol_t adj_nh_proto, const ip46_address_t *nh, adj_walk_cb_t cb, void *ctx)
Walk adjacencies on a link with a given next-hop.
Definition: adj_nbr.c:663
#define hash_set(h, key, value)
Definition: hash.h:255
static int ipip_tunnel_desc(u32 sw_if_index, ip46_address_t *src, ip46_address_t *dst, u8 *is_l2)
Definition: ipip.c:435
#define CLIB_UNUSED(x)
Definition: clib.h:87
static void ipip44_fixup(vlib_main_t *vm, const ip_adjacency_t *adj, vlib_buffer_t *b, const void *data)
Definition: ipip.c:149
teib_entry_t * teib_entry_get(index_t tei)
Definition: teib.c:80
#define hash_unset(h, key)
Definition: hash.h:261
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:103
void ip6_register_protocol(u32 protocol, u32 node_index)
Definition: ip6_forward.c:1664
static walk_rc_t ipip_tunnel_delete_teib_walk(index_t nei, void *ctx)
Definition: ipip.c:629
ip4_address_t src_address
Definition: ip4_packet.h:125
A representation of a IPIP tunnel.
Definition: ipip.h:75
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
vl_api_fib_path_nh_t nh
Definition: fib_types.api:126
ip46_address_t tunnel_src
Definition: ipip.h:82
static clib_error_t * ipip_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: ipip.c:412
u32 length
Definition: ipip.c:37
vnet_hw_interface_class_t ipip_hw_interface_class
void adj_midchain_delegate_stack(adj_index_t ai, u32 fib_index, const fib_prefix_t *pfx)
create/attach a midchain delegate and stack it on the prefix passed
vnet_link_t adj_get_link_type(adj_index_t ai)
Return the link type of the adjacency.
Definition: adj.c:507
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
IP unicast adjacency.
Definition: adj.h:227
a non-broadcast multiple access interface
Definition: interface.h:388
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
vl_api_address_t src
Definition: gre.api:54
void ipip_tunnel_db_add(ipip_tunnel_t *t, const ipip_tunnel_key_t *key)
Definition: ipip.c:508
static u8 * format_ipip_device(u8 *s, va_list *args)
Definition: ipip.c:402
static void ipip_teib_entry_added(const teib_entry_t *ne)
Definition: ipip.c:560
vlib_main_t * vm
Definition: in2out_ed.c:1582
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:122
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
void(* adj_midchain_fixup_t)(vlib_main_t *vm, const struct ip_adjacency_t_ *adj, vlib_buffer_t *b0, const void *data)
A function type for post-rewrite fixups on midchain adjacency.
Definition: adj.h:152
static void ip4_header_set_dscp(ip4_header_t *ip4, ip_dscp_t dscp)
Definition: ip4_packet.h:320
int ipip_add_tunnel(ipip_transport_t transport, u32 instance, ip46_address_t *src, ip46_address_t *dst, u32 fib_index, tunnel_encap_decap_flags_t flags, ip_dscp_t dscp, tunnel_mode_t tmode, u32 *sw_if_indexp)
Definition: ipip.c:653
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:1933
static u8 ip46_address_is_ip4(const ip46_address_t *ip46)
Definition: ip46_address.h:55
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:402
u32 hw_if_index
Definition: ipip.h:85
ip6_address_t src_address
Definition: ip6_packet.h:310
const ip46_address_t * teib_entry_get_peer(const teib_entry_t *te)
Definition: teib.c:62
bool ip4_protocol_registered
Definition: ipip.h:117
unsigned char u8
Definition: types.h:56
void ipip_mk_key(const ipip_tunnel_t *t, ipip_tunnel_key_t *key)
Definition: ipip.c:539
u8 data[128]
Definition: ipsec_types.api:89
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
void teib_walk_itf(u32 sw_if_index, teib_walk_cb_t fn, void *ctx)
Definition: teib.c:209
static void ipip64_fixup(vlib_main_t *vm, const ip_adjacency_t *adj, vlib_buffer_t *b, const void *data)
Definition: ipip.c:133
u32 teib_entry_get_fib_index(const teib_entry_t *te)
Definition: teib.c:56
enum walk_rc_t_ walk_rc_t
Walk return code.
void ipip_tunnel_db_remove(ipip_tunnel_t *t, const ipip_tunnel_key_t *key)
Definition: ipip.c:516
const ipip_tunnel_t * t
Definition: ipip.c:306
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:459
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
u32 user_instance
Definition: ipip.h:88
vl_api_ip6_address_t ip6
Definition: one.api:424
static_always_inline void tunnel_encap_fixup_6o6(tunnel_encap_decap_flags_t flags, const ip6_header_t *inner, ip6_header_t *outer)
Definition: tunnel_dp.h:47
ip4_address_t dst_address
Definition: ip4_packet.h:125
teib_entry_added_t nv_added
Definition: teib.h:71
enum adj_walk_rc_t_ adj_walk_rc_t
return codes from a adjacency walker callback function
static adj_midchain_fixup_t ipip_get_fixup(const ipip_tunnel_t *t, vnet_link_t lt, adj_flags_t *aflags)
Definition: ipip.c:262
void mipip_update_adj(vnet_main_t *vnm, u32 sw_if_index, adj_index_t ai)
Definition: ipip.c:352
static void ipip_tunnel_restack(ipip_tunnel_t *gt)
Definition: ipip.c:248
Aggregate type for a prefix.
Definition: fib_types.h:203
u32 tunnel_id
Definition: ipip.c:36
u32 * tunnel_index_by_sw_if_index
Definition: ipip.h:108
unsigned int u32
Definition: types.h:88
u32 vnet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u32 hw_class_index, u32 hw_instance)
Definition: interface.c:768
union ip_adjacency_t_::@149 sub_type
ip46_address_t dst
Definition: ipip.c:39
vl_api_ip_dscp_t dscp
Definition: dhcp.api:163
static walk_rc_t ipip_tunnel_add_teib_walk(index_t nei, void *ctx)
Definition: ipip.c:641
static_always_inline void tunnel_encap_fixup_4o6(tunnel_encap_decap_flags_t flags, const ip4_header_t *inner, ip6_header_t *outer)
Definition: tunnel_dp.h:57
#define hash_create_mem(elts, key_bytes, value_bytes)
Definition: hash.h:661
#define hash_get(h, key)
Definition: hash.h:249
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:534
static void ipip_tunnel_stack(adj_index_t ai)
Definition: ipip.c:205
tunnel_encap_decap_flags_t flags
Definition: ipip.h:89
static u8 * ipip_build_rewrite(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
Definition: ipip.c:57
static uword vnet_hw_interface_get_flags(vnet_main_t *vnm, u32 hw_if_index)
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
u32 teib_entry_get_sw_if_index(const teib_entry_t *te)
accessors for the opaque struct
Definition: teib.c:50
vl_api_ip_proto_t proto
Definition: acl_types.api:50
#define gm
Definition: dlmalloc.c:1219
static u8 ip46_address_is_zero(const ip46_address_t *ip46)
Definition: ip46_address.h:87
long ctx[MAX_CONNS]
Definition: main.c:144
ipip_tunnel_t * ipip_tunnel_db_find_by_sw_if_index(u32 sw_if_index)
Definition: ipip.c:496
static void ip4_header_set_df(ip4_header_t *ip4)
Definition: ip4_packet.h:363
static void ipip_teib_entry_deleted(const teib_entry_t *ne)
Definition: ipip.c:596
static void ipip46_fixup(vlib_main_t *vm, const ip_adjacency_t *adj, vlib_buffer_t *b, const void *data)
Definition: ipip.c:165
ipip_tunnel_t * tunnels
Definition: ipip.h:106
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:229
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:302
vl_api_ip4_address_t ip4
Definition: one.api:376
ip6_main_t ip6_main
Definition: ip6_forward.c:2781
vl_api_address_t dst
Definition: gre.api:55
u8 * format_ipip_tx_trace(u8 *s, va_list *args)
Definition: ipip.c:43
enum tunnel_encap_decap_flags_t_ tunnel_encap_decap_flags_t
vl_api_tunnel_mode_t mode
Definition: gre.api:48
static_always_inline void ip6_set_dscp_network_order(ip6_header_t *ip6, ip_dscp_t dscp)
Definition: ip6_packet.h:351
format_function_t format_ip46_address
Definition: ip46_address.h:50
static adj_walk_rc_t ipip_adj_walk_cb(adj_index_t ai, void *ctx)
Definition: ipip.c:240
void teib_entry_adj_stack(const teib_entry_t *te, adj_index_t ai)
Definition: teib.c:74
ip_dscp_t dscp
Definition: ipip.h:90
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:246
VNET_HW_INTERFACE_CLASS(ipip_hw_interface_class)
ipip_main_t ipip_main
Definition: ipip.c:31
Definition: teib.c:29
static u8 * format_ipip_tunnel_name(u8 *s, va_list *args)
Definition: ipip.c:388
void adj_nbr_midchain_update_rewrite(adj_index_t adj_index, adj_midchain_fixup_t fixup, const void *fixup_data, adj_flags_t flags, u8 *rewrite)
adj_nbr_midchain_update_rewrite
Definition: adj_midchain.c:434
vlib_node_registration_t ipip4_input_node
(constructor) VLIB_REGISTER_NODE (ipip4_input_node)
Definition: node.c:252
static_always_inline void tunnel_encap_fixup_4o4(tunnel_encap_decap_flags_t flags, const ip4_header_t *inner, ip4_header_t *outer)
Definition: tunnel_dp.h:24
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
void adj_nbr_walk(u32 sw_if_index, fib_protocol_t adj_nh_proto, adj_walk_cb_t cb, void *ctx)
Walk all adjacencies on a link for a given next-hop protocol.
Definition: adj_nbr.c:571
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1582
void adj_midchain_delegate_unstack(adj_index_t ai)
unstack a midchain delegate (this stacks it on a drop)
static void ipip66_fixup(vlib_main_t *vm, const ip_adjacency_t *adj, vlib_buffer_t *b, const void *data)
Definition: ipip.c:185
static void ipip_teib_mk_key(const ipip_tunnel_t *t, const teib_entry_t *ne, ipip_tunnel_key_t *key)
Definition: ipip.c:546
#define uword_to_pointer(u, type)
Definition: types.h:136
u32 fib_index
Definition: ipip.h:84
#define ASSERT(truth)
ipip_transport_t transport
Definition: ipip.h:81
enum ip_dscp_t_ ip_dscp_t
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
struct ip_adjacency_t_::@149::@150 nbr
IP_LOOKUP_NEXT_ARP/IP_LOOKUP_NEXT_REWRITE.
IPv4 main type.
Definition: ip4.h:106
uword * tunnel_by_key
Definition: ipip.h:107
static void hash_unset_mem_free(uword **h, const void *key)
Definition: hash.h:295
ip46_address_t src
Definition: ipip.c:38
static uword pointer_to_uword(const void *p)
Definition: types.h:131
void ipip_update_adj(vnet_main_t *vnm, u32 sw_if_index, adj_index_t ai)
Definition: ipip.c:281
u32 sw_if_index
Definition: ipip.h:86
vl_api_ip4_address_t hi
Definition: arp.api:37
void vnet_delete_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:984
enum adj_flags_t_ adj_flags_t
Flags on an IP adjacency.
typedef key
Definition: ipsec_types.api:85
vlib_node_registration_t ipip6_input_node
(constructor) VLIB_REGISTER_NODE (ipip6_input_node)
Definition: node.c:268
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:297
fib_protocol_t ia_nh_proto
The protocol of the neighbor/peer.
Definition: adj.h:342
teib_entry_t * teib_entry_find(u32 sw_if_index, const ip46_address_t *peer)
Definition: teib.c:86
u16 payload_length
Definition: ip6_packet.h:301
static_always_inline void tunnel_encap_fixup_6o4(tunnel_encap_decap_flags_t flags, const ip6_header_t *inner, ip4_header_t *outer)
Definition: tunnel_dp.h:37
vnet_main_t * vnet_main
Definition: ipip.h:112
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u32 instance
Definition: gre.api:51
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:47
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:498
VLIB buffer representation.
Definition: buffer.h:102
bool ip6_protocol_registered
Definition: ipip.h:118
u64 uword
Definition: types.h:112
ipip_mode_t mode
Definition: ipip.h:80
static clib_error_t * ipip_init(vlib_main_t *vm)
Definition: ipip.c:793
a point 2 point interface
Definition: interface.h:384
struct mipip_walk_ctx_t_ mipip_walk_ctx_t
void vnet_sw_interface_set_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu)
Definition: interface.c:670
int ipip_del_tunnel(u32 sw_if_index)
Definition: ipip.c:761
void ipip_mk_key_i(ipip_transport_t transport, ipip_mode_t mode, const ip46_address_t *src, const ip46_address_t *dst, u32 fib_index, ipip_tunnel_key_t *key)
Definition: ipip.c:524
#define FOR_EACH_FIB_IP_PROTOCOL(_item)
Definition: fib_types.h:70
#define hash_get_mem(h, key)
Definition: hash.h:269
u32 dev_instance
Definition: ipip.h:87
const teib_entry_t * ne
Definition: ipip.c:307
static adj_walk_rc_t mipip_mk_incomplete_walk(adj_index_t ai, void *data)
Definition: ipip.c:335
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1144
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, vnet_sw_interface_flags_t flags)
Definition: interface.c:507
static void hash_set_mem_alloc(uword **h, const void *key, uword v)
Definition: hash.h:279
u8 ip_version_and_header_length
Definition: ip4_packet.h:93
ip46_address_t tunnel_dst
Definition: ipip.h:83
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:556
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
void teib_register(const teib_vft_t *vft)
Definition: teib.c:223
vlib_main_t * vlib_main
Definition: ipip.h:111
u32 * fib_index_by_sw_if_index
Definition: ip6.h:196
enum tunnel_mode_t_ tunnel_mode_t
static u16 ip4_header_checksum(ip4_header_t *i)
Definition: ip4_packet.h:314
uword * instance_used
Definition: ipip.h:115
VNET_DEVICE_CLASS(ipip_device_class)
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:33
ip6_address_t dst_address
Definition: ip6_packet.h:310
const fib_prefix_t * teib_entry_get_nh(const teib_entry_t *te)
Definition: teib.c:68