session: remove ipv6 lookup threading assert
[vpp.git] / src / vnet / vxlan-gpe / vxlan_gpe.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /**
16  *  @file
17  *  @brief Common utility functions for IPv4 and IPv6 VXLAN GPE tunnels
18  *
19 */
20 #include <vnet/vxlan-gpe/vxlan_gpe.h>
21 #include <vnet/fib/fib.h>
22 #include <vnet/ip/format.h>
23 #include <vnet/fib/fib_entry.h>
24 #include <vnet/fib/fib_table.h>
25 #include <vnet/fib/fib_entry_track.h>
26 #include <vnet/mfib/mfib_table.h>
27 #include <vnet/adj/adj_mcast.h>
28 #include <vnet/interface.h>
29 #include <vnet/udp/udp_local.h>
30 #include <vlib/vlib.h>
31
32 /**
33  * @file
34  * @brief VXLAN-GPE.
35  *
36  * VXLAN-GPE provides the features needed to allow L2 bridge domains (BDs)
37  * to span multiple servers. This is done by building an L2 overlay on
38  * top of an L3 network underlay using VXLAN-GPE tunnels.
39  *
40  * This makes it possible for servers to be co-located in the same data
41  * center or be separated geographically as long as they are reachable
42  * through the underlay L3 network.
43  *
44  * You can refer to this kind of L2 overlay bridge domain as a VXLAN-GPE segment.
45  */
46
47 vxlan_gpe_main_t vxlan_gpe_main;
48
49 static u8 *
50 format_decap_next (u8 * s, va_list * args)
51 {
52   vxlan_gpe_tunnel_t *t = va_arg (*args, vxlan_gpe_tunnel_t *);
53
54   switch (t->protocol)
55     {
56     case VXLAN_GPE_PROTOCOL_IP4:
57       s = format (s, "protocol ip4 fib-idx %d", t->decap_fib_index);
58       break;
59     case VXLAN_GPE_PROTOCOL_IP6:
60       s = format (s, "protocol ip6 fib-idx %d", t->decap_fib_index);
61       break;
62     case VXLAN_GPE_PROTOCOL_ETHERNET:
63       s = format (s, "protocol ethernet");
64       break;
65     case VXLAN_GPE_PROTOCOL_NSH:
66       s = format (s, "protocol nsh");
67       break;
68     default:
69       s = format (s, "protocol unknown %d", t->protocol);
70     }
71
72   return s;
73 }
74
75 /**
76  * @brief Format function for VXLAN GPE tunnel
77  *
78  * @param *s formatting string
79  * @param *args
80  *
81  * @return *s formatted string
82  *
83  */
84 u8 *
85 format_vxlan_gpe_tunnel (u8 * s, va_list * args)
86 {
87   vxlan_gpe_tunnel_t *t = va_arg (*args, vxlan_gpe_tunnel_t *);
88   vxlan_gpe_main_t *ngm = &vxlan_gpe_main;
89
90   s = format (s,
91               "[%d] lcl %U rmt %U lcl_port %d rmt_port %d vni %d "
92               "fib-idx %d sw-if-idx %d ",
93               t - ngm->tunnels, format_ip46_address, &t->local, IP46_TYPE_ANY,
94               format_ip46_address, &t->remote, IP46_TYPE_ANY, t->local_port,
95               t->remote_port, t->vni, t->encap_fib_index, t->sw_if_index);
96
97 #if 0
98   /* next_dpo not yet used by vxlan-gpe-encap node */
99   s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
100   */
101 #endif
102     s = format (s, "decap-next-%U ", format_decap_next, t);
103
104   if (PREDICT_FALSE (ip46_address_is_multicast (&t->remote)))
105     s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
106
107   return s;
108 }
109
110 /**
111  * @brief Naming for VXLAN GPE tunnel
112  *
113  * @param *s formatting string
114  * @param *args
115  *
116  * @return *s formatted string
117  *
118  */
119 static u8 *
120 format_vxlan_gpe_name (u8 * s, va_list * args)
121 {
122   u32 dev_instance = va_arg (*args, u32);
123   return format (s, "vxlan_gpe_tunnel%d", dev_instance);
124 }
125
126 /**
127  * @brief CLI function for VXLAN GPE admin up/down
128  *
129  * @param *vnm
130  * @param hw_if_index
131  * @param flag
132  *
133  * @return *rc
134  *
135  */
136 static clib_error_t *
137 vxlan_gpe_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
138                                    u32 flags)
139 {
140   u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
141     VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
142   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
143
144   return 0;
145 }
146
147 VNET_DEVICE_CLASS (vxlan_gpe_device_class,static) = {
148   .name = "VXLAN_GPE",
149   .format_device_name = format_vxlan_gpe_name,
150   .format_tx_trace = format_vxlan_gpe_encap_trace,
151   .admin_up_down_function = vxlan_gpe_interface_admin_up_down,
152 };
153
154
155 /**
156  * @brief Formatting function for tracing VXLAN GPE with length
157  *
158  * @param *s
159  * @param *args
160  *
161  * @return *s
162  *
163  */
164 static u8 *
165 format_vxlan_gpe_header_with_length (u8 * s, va_list * args)
166 {
167   u32 dev_instance = va_arg (*args, u32);
168   s = format (s, "unimplemented dev %u", dev_instance);
169   return s;
170 }
171
172 VNET_HW_INTERFACE_CLASS (vxlan_gpe_hw_class) = {
173   .name = "VXLAN_GPE",
174   .format_header = format_vxlan_gpe_header_with_length,
175   .build_rewrite = default_build_rewrite,
176 };
177
178 static void
179 vxlan_gpe_tunnel_restack_dpo (vxlan_gpe_tunnel_t * t)
180 {
181   dpo_id_t dpo = DPO_INVALID;
182   u32 encap_index = vxlan_gpe_encap_node.index;
183   fib_forward_chain_type_t forw_type = ip46_address_is_ip4 (&t->remote) ?
184     FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
185
186   fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
187   dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
188   dpo_reset (&dpo);
189 }
190
191 static vxlan_gpe_tunnel_t *
192 vxlan_gpe_tunnel_from_fib_node (fib_node_t * node)
193 {
194   ASSERT (FIB_NODE_TYPE_VXLAN_GPE_TUNNEL == node->fn_type);
195   return ((vxlan_gpe_tunnel_t *) (((char *) node) -
196                                   STRUCT_OFFSET_OF (vxlan_gpe_tunnel_t,
197                                                     node)));
198 }
199
200 /**
201  * Function definition to backwalk a FIB node -
202  * Here we will restack the new dpo of VXLAN_GPE DIP to encap node.
203  */
204 static fib_node_back_walk_rc_t
205 vxlan_gpe_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
206 {
207   vxlan_gpe_tunnel_restack_dpo (vxlan_gpe_tunnel_from_fib_node (node));
208   return (FIB_NODE_BACK_WALK_CONTINUE);
209 }
210
211 /**
212  * Function definition to get a FIB node from its index
213  */
214 static fib_node_t *
215 vxlan_gpe_tunnel_fib_node_get (fib_node_index_t index)
216 {
217   vxlan_gpe_tunnel_t *t;
218   vxlan_gpe_main_t *ngm = &vxlan_gpe_main;
219
220   t = pool_elt_at_index (ngm->tunnels, index);
221
222   return (&t->node);
223 }
224
225 /**
226  * Function definition to inform the FIB node that its last lock has gone.
227  */
228 static void
229 vxlan_gpe_tunnel_last_lock_gone (fib_node_t * node)
230 {
231   /*
232    * The VXLAN_GPE tunnel is a root of the graph. As such
233    * it never has children and thus is never locked.
234    */
235   ASSERT (0);
236 }
237
238 /*
239  * Virtual function table registered by VXLAN_GPE tunnels
240  * for participation in the FIB object graph.
241  */
242 const static fib_node_vft_t vxlan_gpe_vft = {
243   .fnv_get = vxlan_gpe_tunnel_fib_node_get,
244   .fnv_last_lock = vxlan_gpe_tunnel_last_lock_gone,
245   .fnv_back_walk = vxlan_gpe_tunnel_back_walk,
246 };
247
248 #define foreach_gpe_copy_field                                                \
249   _ (vni)                                                                     \
250   _ (protocol)                                                                \
251   _ (mcast_sw_if_index)                                                       \
252   _ (encap_fib_index)                                                         \
253   _ (decap_fib_index)                                                         \
254   _ (local_port)                                                              \
255   _ (remote_port)
256
257 #define foreach_copy_ipv4 {                     \
258   _(local.ip4.as_u32)                           \
259   _(remote.ip4.as_u32)                          \
260 }
261
262 #define foreach_copy_ipv6 {                     \
263   _(local.ip6.as_u64[0])                        \
264   _(local.ip6.as_u64[1])                        \
265   _(remote.ip6.as_u64[0])                       \
266   _(remote.ip6.as_u64[1])                       \
267 }
268
269
270 /**
271  * @brief Calculate IPv4 VXLAN GPE rewrite header
272  *
273  * @param *t
274  *
275  * @return rc
276  *
277  */
278 int
279 vxlan4_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size,
280                     u8 protocol_override, uword encap_next_node)
281 {
282   u8 *rw = 0;
283   ip4_header_t *ip0;
284   ip4_vxlan_gpe_header_t *h0;
285   int len;
286
287   len = sizeof (*h0) + extension_size;
288
289   vec_free (t->rewrite);
290   vec_validate_aligned (rw, len - 1, CLIB_CACHE_LINE_BYTES);
291
292   h0 = (ip4_vxlan_gpe_header_t *) rw;
293
294   /* Fixed portion of the (outer) ip4 header */
295   ip0 = &h0->ip4;
296   ip0->ip_version_and_header_length = 0x45;
297   ip0->ttl = 254;
298   ip0->protocol = IP_PROTOCOL_UDP;
299
300   /* we fix up the ip4 header length and checksum after-the-fact */
301   ip0->src_address.as_u32 = t->local.ip4.as_u32;
302   ip0->dst_address.as_u32 = t->remote.ip4.as_u32;
303   ip0->checksum = ip4_header_checksum (ip0);
304
305   /* UDP header, randomize src port on something, maybe? */
306   h0->udp.src_port = clib_host_to_net_u16 (t->local_port);
307   h0->udp.dst_port = clib_host_to_net_u16 (t->remote_port);
308
309   /* VXLAN header. Are we having fun yet? */
310   h0->vxlan.flags = VXLAN_GPE_FLAGS_I | VXLAN_GPE_FLAGS_P;
311   h0->vxlan.ver_res = VXLAN_GPE_VERSION;
312   if (protocol_override)
313     {
314       h0->vxlan.protocol = protocol_override;
315     }
316   else
317     {
318       h0->vxlan.protocol = t->protocol;
319     }
320   t->rewrite_size = sizeof (ip4_vxlan_gpe_header_t) + extension_size;
321   h0->vxlan.vni_res = clib_host_to_net_u32 (t->vni << 8);
322
323   t->rewrite = rw;
324   t->encap_next_node = encap_next_node;
325   return (0);
326 }
327
328 /**
329  * @brief Calculate IPv6 VXLAN GPE rewrite header
330  *
331  * @param *t
332  *
333  * @return rc
334  *
335  */
336 int
337 vxlan6_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size,
338                     u8 protocol_override, uword encap_next_node)
339 {
340   u8 *rw = 0;
341   ip6_header_t *ip0;
342   ip6_vxlan_gpe_header_t *h0;
343   int len;
344
345   len = sizeof (*h0) + extension_size;
346
347   vec_free (t->rewrite);
348   vec_validate_aligned (rw, len - 1, CLIB_CACHE_LINE_BYTES);
349
350   h0 = (ip6_vxlan_gpe_header_t *) rw;
351
352   /* Fixed portion of the (outer) ip4 header */
353   ip0 = &h0->ip6;
354   ip0->ip_version_traffic_class_and_flow_label =
355     clib_host_to_net_u32 (6 << 28);
356   ip0->hop_limit = 255;
357   ip0->protocol = IP_PROTOCOL_UDP;
358
359   ip0->src_address.as_u64[0] = t->local.ip6.as_u64[0];
360   ip0->src_address.as_u64[1] = t->local.ip6.as_u64[1];
361   ip0->dst_address.as_u64[0] = t->remote.ip6.as_u64[0];
362   ip0->dst_address.as_u64[1] = t->remote.ip6.as_u64[1];
363
364   /* UDP header, randomize src port on something, maybe? */
365   h0->udp.src_port = clib_host_to_net_u16 (t->local_port);
366   h0->udp.dst_port = clib_host_to_net_u16 (t->remote_port);
367
368   /* VXLAN header. Are we having fun yet? */
369   h0->vxlan.flags = VXLAN_GPE_FLAGS_I | VXLAN_GPE_FLAGS_P;
370   h0->vxlan.ver_res = VXLAN_GPE_VERSION;
371   if (protocol_override)
372     {
373       h0->vxlan.protocol = t->protocol;
374     }
375   else
376     {
377       h0->vxlan.protocol = protocol_override;
378     }
379   t->rewrite_size = sizeof (ip4_vxlan_gpe_header_t) + extension_size;
380   h0->vxlan.vni_res = clib_host_to_net_u32 (t->vni << 8);
381
382   t->rewrite = rw;
383   t->encap_next_node = encap_next_node;
384   return (0);
385 }
386
387 typedef CLIB_PACKED(union {
388   struct {
389     fib_node_index_t mfib_entry_index;
390     adj_index_t mcast_adj_index;
391   };
392   u64 as_u64;
393 }) mcast_shared_t;
394
395 static inline mcast_shared_t
396 mcast_shared_get (ip46_address_t * ip)
397 {
398   ASSERT (ip46_address_is_multicast (ip));
399   uword *p = hash_get_mem (vxlan_gpe_main.mcast_shared, ip);
400   ALWAYS_ASSERT (p);
401   return (mcast_shared_t)
402   {
403   .as_u64 = *p};
404 }
405
406 static inline void
407 mcast_shared_add (ip46_address_t * remote,
408                   fib_node_index_t mfei, adj_index_t ai)
409 {
410   mcast_shared_t new_ep = {
411     .mcast_adj_index = ai,
412     .mfib_entry_index = mfei,
413   };
414
415   hash_set_mem_alloc (&vxlan_gpe_main.mcast_shared, remote, new_ep.as_u64);
416 }
417
418 static inline void
419 mcast_shared_remove (ip46_address_t * remote)
420 {
421   mcast_shared_t ep = mcast_shared_get (remote);
422
423   adj_unlock (ep.mcast_adj_index);
424   mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN_GPE);
425
426   hash_unset_mem_free (&vxlan_gpe_main.mcast_shared, remote);
427 }
428
429 /**
430  * @brief Add or Del a VXLAN GPE tunnel
431  *
432  * @param *a
433  * @param *sw_if_index
434  *
435  * @return rc
436  *
437  */
438 int vnet_vxlan_gpe_add_del_tunnel
439   (vnet_vxlan_gpe_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
440 {
441   vxlan_gpe_main_t *ngm = &vxlan_gpe_main;
442   vxlan_gpe_tunnel_t *t = 0;
443   vnet_main_t *vnm = ngm->vnet_main;
444   vnet_hw_interface_t *hi;
445   uword *p;
446   u32 hw_if_index = ~0;
447   u32 sw_if_index = ~0;
448   int rv;
449   vxlan4_gpe_tunnel_key_t key4, *key4_copy;
450   vxlan6_gpe_tunnel_key_t key6, *key6_copy;
451   u32 is_ip6 = a->is_ip6;
452
453   /* Set udp-ports */
454   if (a->local_port == 0)
455     a->local_port = is_ip6 ? UDP_DST_PORT_VXLAN6_GPE : UDP_DST_PORT_VXLAN_GPE;
456
457   if (a->remote_port == 0)
458     a->remote_port = is_ip6 ? UDP_DST_PORT_VXLAN6_GPE : UDP_DST_PORT_VXLAN_GPE;
459
460   if (!is_ip6)
461     {
462       key4.local = a->local.ip4.as_u32;
463       key4.remote = a->remote.ip4.as_u32;
464       key4.vni = clib_host_to_net_u32 (a->vni << 8);
465       key4.port = (u32) clib_host_to_net_u16 (a->local_port);
466
467       p = hash_get_mem (ngm->vxlan4_gpe_tunnel_by_key, &key4);
468     }
469   else
470     {
471       key6.local.as_u64[0] = a->local.ip6.as_u64[0];
472       key6.local.as_u64[1] = a->local.ip6.as_u64[1];
473       key6.remote.as_u64[0] = a->remote.ip6.as_u64[0];
474       key6.remote.as_u64[1] = a->remote.ip6.as_u64[1];
475       key6.vni = clib_host_to_net_u32 (a->vni << 8);
476       key6.port = (u32) clib_host_to_net_u16 (a->local_port);
477
478       p = hash_get_mem (ngm->vxlan6_gpe_tunnel_by_key, &key6);
479     }
480
481   if (a->is_add)
482     {
483       l2input_main_t *l2im = &l2input_main;
484
485       /* adding a tunnel: tunnel must not already exist */
486       if (p)
487         return VNET_API_ERROR_TUNNEL_EXIST;
488
489       pool_get_aligned (ngm->tunnels, t, CLIB_CACHE_LINE_BYTES);
490       clib_memset (t, 0, sizeof (*t));
491
492       /* copy from arg structure */
493 #define _(x) t->x = a->x;
494       foreach_gpe_copy_field;
495       if (!a->is_ip6)
496         foreach_copy_ipv4
497       else
498         foreach_copy_ipv6
499 #undef _
500
501       if (!a->is_ip6)
502         t->flags |= VXLAN_GPE_TUNNEL_IS_IPV4;
503
504       if (!a->is_ip6)
505         {
506           rv = vxlan4_gpe_rewrite (t, 0, 0, VXLAN_GPE_ENCAP_NEXT_IP4_LOOKUP);
507         }
508       else
509         {
510           rv = vxlan6_gpe_rewrite (t, 0, 0, VXLAN_GPE_ENCAP_NEXT_IP6_LOOKUP);
511         }
512
513       if (rv)
514         {
515           pool_put (ngm->tunnels, t);
516           return rv;
517         }
518
519       if (!is_ip6)
520         {
521           key4_copy = clib_mem_alloc (sizeof (*key4_copy));
522           clib_memcpy_fast (key4_copy, &key4, sizeof (*key4_copy));
523           hash_set_mem (ngm->vxlan4_gpe_tunnel_by_key, key4_copy,
524                         t - ngm->tunnels);
525         }
526       else
527         {
528           key6_copy = clib_mem_alloc (sizeof (*key6_copy));
529           clib_memcpy_fast (key6_copy, &key6, sizeof (*key6_copy));
530           hash_set_mem (ngm->vxlan6_gpe_tunnel_by_key, key6_copy,
531                         t - ngm->tunnels);
532         }
533
534       if (vec_len (ngm->free_vxlan_gpe_tunnel_hw_if_indices) > 0)
535         {
536           vnet_interface_main_t *im = &vnm->interface_main;
537           hw_if_index = ngm->free_vxlan_gpe_tunnel_hw_if_indices
538             [vec_len (ngm->free_vxlan_gpe_tunnel_hw_if_indices) - 1];
539           vec_dec_len (ngm->free_vxlan_gpe_tunnel_hw_if_indices, 1);
540
541           hi = vnet_get_hw_interface (vnm, hw_if_index);
542           hi->dev_instance = t - ngm->tunnels;
543           hi->hw_instance = hi->dev_instance;
544           /* clear old stats of freed tunnel before reuse */
545           sw_if_index = hi->sw_if_index;
546           vnet_interface_counter_lock (im);
547           vlib_zero_combined_counter
548             (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX],
549              sw_if_index);
550           vlib_zero_combined_counter (&im->combined_sw_if_counters
551                                       [VNET_INTERFACE_COUNTER_RX],
552                                       sw_if_index);
553           vlib_zero_simple_counter (&im->sw_if_counters
554                                     [VNET_INTERFACE_COUNTER_DROP],
555                                     sw_if_index);
556           vnet_interface_counter_unlock (im);
557         }
558       else
559         {
560           hw_if_index = vnet_register_interface
561             (vnm, vxlan_gpe_device_class.index, t - ngm->tunnels,
562              vxlan_gpe_hw_class.index, t - ngm->tunnels);
563           hi = vnet_get_hw_interface (vnm, hw_if_index);
564         }
565
566       /* Set vxlan-gpe tunnel output node */
567       u32 encap_index = vxlan_gpe_encap_node.index;
568       vnet_set_interface_output_node (vnm, hw_if_index, encap_index);
569
570       t->hw_if_index = hw_if_index;
571       t->sw_if_index = sw_if_index = hi->sw_if_index;
572       vec_validate_init_empty (ngm->tunnel_index_by_sw_if_index, sw_if_index,
573                                ~0);
574       ngm->tunnel_index_by_sw_if_index[sw_if_index] = t - ngm->tunnels;
575
576       /* setup l2 input config with l2 feature and bd 0 to drop packet */
577       vec_validate (l2im->configs, sw_if_index);
578       l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
579       l2im->configs[sw_if_index].bd_index = 0;
580
581       vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
582       si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
583       vnet_sw_interface_set_flags (vnm, hi->sw_if_index,
584                                    VNET_SW_INTERFACE_FLAG_ADMIN_UP);
585       fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_GPE_TUNNEL);
586       fib_prefix_t tun_remote_pfx;
587       vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
588
589       fib_protocol_t fp = fib_ip_proto (is_ip6);
590       fib_prefix_from_ip46_addr (fp, &t->remote, &tun_remote_pfx);
591       if (!ip46_address_is_multicast (&t->remote))
592         {
593           /* Unicast tunnel -
594            * source the FIB entry for the tunnel's destination
595            * and become a child thereof. The tunnel will then get poked
596            * when the forwarding for the entry updates, and the tunnel can
597            * re-stack accordingly
598            */
599           vtep_addr_ref (&ngm->vtep_table, t->encap_fib_index, &t->local);
600           t->fib_entry_index = fib_entry_track (t->encap_fib_index,
601                                                 &tun_remote_pfx,
602                                                 FIB_NODE_TYPE_VXLAN_GPE_TUNNEL,
603                                                 t - ngm->tunnels,
604                                                 &t->sibling_index);
605           vxlan_gpe_tunnel_restack_dpo (t);
606         }
607       else
608         {
609           /* Multicast tunnel -
610            * as the same mcast group can be used for multiple mcast tunnels
611            * with different VNIs, create the output fib adjacency only if
612            * it does not already exist
613            */
614           if (vtep_addr_ref (&ngm->vtep_table,
615                              t->encap_fib_index, &t->remote) == 1)
616             {
617               fib_node_index_t mfei;
618               adj_index_t ai;
619               fib_route_path_t path = {
620                 .frp_proto = fib_proto_to_dpo (fp),
621                 .frp_addr = zero_addr,
622                 .frp_sw_if_index = 0xffffffff,
623                 .frp_fib_index = ~0,
624                 .frp_weight = 1,
625                 .frp_flags = FIB_ROUTE_PATH_LOCAL,
626                 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
627               };
628               const mfib_prefix_t mpfx = {
629                 .fp_proto = fp,
630                 .fp_len = (is_ip6 ? 128 : 32),
631                 .fp_grp_addr = tun_remote_pfx.fp_addr,
632               };
633
634               /*
635                * Setup the (*,G) to receive traffic on the mcast group
636                *  - the forwarding interface is for-us
637                *  - the accepting interface is that from the API
638                */
639               mfib_table_entry_path_update (t->encap_fib_index, &mpfx,
640                                             MFIB_SOURCE_VXLAN_GPE,
641                                             MFIB_ENTRY_FLAG_NONE, &path);
642
643               path.frp_sw_if_index = a->mcast_sw_if_index;
644               path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
645               path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
646               mfei = mfib_table_entry_path_update (
647                 t->encap_fib_index, &mpfx, MFIB_SOURCE_VXLAN_GPE,
648                 MFIB_ENTRY_FLAG_NONE, &path);
649
650               /*
651                * Create the mcast adjacency to send traffic to the group
652                */
653               ai = adj_mcast_add_or_lock (fp,
654                                           fib_proto_to_link (fp),
655                                           a->mcast_sw_if_index);
656
657               /*
658                * create a new end-point
659                */
660               mcast_shared_add (&t->remote, mfei, ai);
661             }
662
663           dpo_id_t dpo = DPO_INVALID;
664           mcast_shared_t ep = mcast_shared_get (&t->remote);
665
666           /* Stack shared mcast remote mac addr rewrite on encap */
667           dpo_set (&dpo, DPO_ADJACENCY_MCAST,
668                    fib_proto_to_dpo (fp), ep.mcast_adj_index);
669
670           dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
671           dpo_reset (&dpo);
672           flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
673         }
674
675       vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
676         flood_class;
677     }
678   else
679     {
680       /* deleting a tunnel: tunnel must exist */
681       if (!p)
682         return VNET_API_ERROR_NO_SUCH_ENTRY;
683
684       t = pool_elt_at_index (ngm->tunnels, p[0]);
685
686       sw_if_index = t->sw_if_index;
687       vnet_sw_interface_set_flags (vnm, t->sw_if_index, 0 /* down */ );
688       vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, t->sw_if_index);
689       si->flags |= VNET_SW_INTERFACE_FLAG_HIDDEN;
690       set_int_l2_mode (ngm->vlib_main, vnm, MODE_L3, t->sw_if_index, 0,
691                        L2_BD_PORT_TYPE_NORMAL, 0, 0);
692       vec_add1 (ngm->free_vxlan_gpe_tunnel_hw_if_indices, t->hw_if_index);
693
694       ngm->tunnel_index_by_sw_if_index[t->sw_if_index] = ~0;
695
696       if (!is_ip6)
697         hash_unset (ngm->vxlan4_gpe_tunnel_by_key, key4.as_u64);
698       else
699         hash_unset_mem_free (&ngm->vxlan6_gpe_tunnel_by_key, &key6);
700
701       if (!ip46_address_is_multicast (&t->remote))
702         {
703           vtep_addr_unref (&ngm->vtep_table, t->encap_fib_index, &t->local);
704           fib_entry_untrack (t->fib_entry_index, t->sibling_index);
705         }
706       else if (vtep_addr_unref (&ngm->vtep_table,
707                                 t->encap_fib_index, &t->remote) == 0)
708         {
709           mcast_shared_remove (&t->remote);
710         }
711
712       fib_node_deinit (&t->node);
713       vec_free (t->rewrite);
714       pool_put (ngm->tunnels, t);
715     }
716
717   if (sw_if_indexp)
718     *sw_if_indexp = sw_if_index;
719
720   if (a->is_add)
721     {
722       /* register udp ports */
723       if (!is_ip6 && !udp_is_valid_dst_port (a->local_port, 1))
724         udp_register_dst_port (ngm->vlib_main, a->local_port,
725                                vxlan4_gpe_input_node.index, 1 /* is_ip4 */);
726       if (is_ip6 && !udp_is_valid_dst_port (a->remote_port, 0))
727         udp_register_dst_port (ngm->vlib_main, a->remote_port,
728                                vxlan6_gpe_input_node.index, 0 /* is_ip4 */);
729     }
730
731   return 0;
732 }
733
734 static clib_error_t *
735 vxlan_gpe_add_del_tunnel_command_fn (vlib_main_t * vm,
736                                      unformat_input_t * input,
737                                      vlib_cli_command_t * cmd)
738 {
739   unformat_input_t _line_input, *line_input = &_line_input;
740   u8 is_add = 1;
741   ip46_address_t local, remote;
742   u8 local_set = 0;
743   u8 remote_set = 0;
744   u8 grp_set = 0;
745   u8 ipv4_set = 0;
746   u8 ipv6_set = 0;
747   u32 mcast_sw_if_index = ~0;
748   u32 encap_fib_index = 0;
749   u32 decap_fib_index = 0;
750   u8 protocol = VXLAN_GPE_PROTOCOL_IP4;
751   u32 vni;
752   u8 vni_set = 0;
753   u32 local_port = 0;
754   u32 remote_port = 0;
755   int rv;
756   u32 tmp;
757   vnet_vxlan_gpe_add_del_tunnel_args_t _a, *a = &_a;
758   u32 sw_if_index;
759   clib_error_t *error = NULL;
760
761   /* Get a line of input. */
762   if (!unformat_user (input, unformat_line_input, line_input))
763     return 0;
764
765   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
766     {
767       if (unformat (line_input, "del"))
768         is_add = 0;
769       else if (unformat (line_input, "local %U",
770                          unformat_ip4_address, &local.ip4))
771         {
772           local_set = 1;
773           ipv4_set = 1;
774         }
775       else if (unformat (line_input, "remote %U",
776                          unformat_ip4_address, &remote.ip4))
777         {
778           remote_set = 1;
779           ipv4_set = 1;
780         }
781       else if (unformat (line_input, "local %U",
782                          unformat_ip6_address, &local.ip6))
783         {
784           local_set = 1;
785           ipv6_set = 1;
786         }
787       else if (unformat (line_input, "remote %U",
788                          unformat_ip6_address, &remote.ip6))
789         {
790           remote_set = 1;
791           ipv6_set = 1;
792         }
793       else if (unformat (line_input, "group %U %U",
794                          unformat_ip4_address, &remote.ip4,
795                          unformat_vnet_sw_interface,
796                          vnet_get_main (), &mcast_sw_if_index))
797         {
798           grp_set = remote_set = 1;
799           ipv4_set = 1;
800         }
801       else if (unformat (line_input, "group %U %U",
802                          unformat_ip6_address, &remote.ip6,
803                          unformat_vnet_sw_interface,
804                          vnet_get_main (), &mcast_sw_if_index))
805         {
806           grp_set = remote_set = 1;
807           ipv6_set = 1;
808         }
809       else if (unformat (line_input, "encap-vrf-id %d", &tmp))
810         {
811           if (ipv6_set)
812             encap_fib_index = fib_table_find (FIB_PROTOCOL_IP6, tmp);
813           else
814             encap_fib_index = fib_table_find (FIB_PROTOCOL_IP4, tmp);
815
816           if (encap_fib_index == ~0)
817             {
818               error =
819                 clib_error_return (0, "nonexistent encap fib id %d", tmp);
820               goto done;
821             }
822         }
823       else if (unformat (line_input, "decap-vrf-id %d", &tmp))
824         {
825           if (ipv6_set)
826             decap_fib_index = fib_table_find (FIB_PROTOCOL_IP6, tmp);
827           else
828             decap_fib_index = fib_table_find (FIB_PROTOCOL_IP4, tmp);
829
830           if (decap_fib_index == ~0)
831             {
832               error =
833                 clib_error_return (0, "nonexistent decap fib id %d", tmp);
834               goto done;
835             }
836         }
837       else if (unformat (line_input, "vni %d", &vni))
838         vni_set = 1;
839       else if (unformat (line_input, "local_port %d", &local_port))
840         ;
841       else if (unformat (line_input, "remote_port %d", &remote_port))
842         ;
843       else if (unformat (line_input, "next-ip4"))
844         protocol = VXLAN_GPE_PROTOCOL_IP4;
845       else if (unformat (line_input, "next-ip6"))
846         protocol = VXLAN_GPE_PROTOCOL_IP6;
847       else if (unformat (line_input, "next-ethernet"))
848         protocol = VXLAN_GPE_PROTOCOL_ETHERNET;
849       else if (unformat (line_input, "next-nsh"))
850         protocol = VXLAN_GPE_PROTOCOL_NSH;
851       else
852         {
853           error = clib_error_return (0, "parse error: '%U'",
854                                      format_unformat_error, line_input);
855           goto done;
856         }
857     }
858
859   if (local_set == 0)
860     {
861       error = clib_error_return (0, "tunnel local address not specified");
862       goto done;
863     }
864
865   if (remote_set == 0)
866     {
867       error = clib_error_return (0, "tunnel remote address not specified");
868       goto done;
869     }
870
871   if (grp_set && !ip46_address_is_multicast (&remote))
872     {
873       error = clib_error_return (0, "tunnel group address not multicast");
874       goto done;
875     }
876
877   if (grp_set == 0 && ip46_address_is_multicast (&remote))
878     {
879       error = clib_error_return (0, "remote address must be unicast");
880       goto done;
881     }
882
883   if (grp_set && mcast_sw_if_index == ~0)
884     {
885       error = clib_error_return (0, "tunnel nonexistent multicast device");
886       goto done;
887     }
888   if (ipv4_set && ipv6_set)
889     {
890       error = clib_error_return (0, "both IPv4 and IPv6 addresses specified");
891       goto done;
892     }
893
894   if ((ipv4_set && memcmp (&local.ip4, &remote.ip4, sizeof (local.ip4)) == 0)
895       || (ipv6_set
896           && memcmp (&local.ip6, &remote.ip6, sizeof (local.ip6)) == 0))
897     {
898       error = clib_error_return (0, "src and remote addresses are identical");
899       goto done;
900     }
901
902   if (vni_set == 0)
903     {
904       error = clib_error_return (0, "vni not specified");
905       goto done;
906     }
907
908   clib_memset (a, 0, sizeof (*a));
909
910   a->is_add = is_add;
911   a->is_ip6 = ipv6_set;
912
913 #define _(x) a->x = x;
914   foreach_gpe_copy_field;
915   if (ipv4_set)
916     foreach_copy_ipv4
917   else
918     foreach_copy_ipv6
919 #undef _
920
921   rv = vnet_vxlan_gpe_add_del_tunnel (a, &sw_if_index);
922
923   switch (rv)
924     {
925     case 0:
926       vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
927                        vnet_get_main (), sw_if_index);
928       break;
929     case VNET_API_ERROR_INVALID_DECAP_NEXT:
930       error = clib_error_return (0, "invalid decap-next...");
931       goto done;
932
933     case VNET_API_ERROR_TUNNEL_EXIST:
934       error = clib_error_return (0, "tunnel already exists...");
935       goto done;
936
937     case VNET_API_ERROR_NO_SUCH_ENTRY:
938       error = clib_error_return (0, "tunnel does not exist...");
939       goto done;
940
941     default:
942       error = clib_error_return
943         (0, "vnet_vxlan_gpe_add_del_tunnel returned %d", rv);
944       goto done;
945     }
946
947 done:
948   unformat_free (line_input);
949
950   return error;
951 }
952
953 /*?
954  * Add or delete a VXLAN-GPE Tunnel.
955  *
956  * VXLAN-GPE provides the features needed to allow L2 bridge domains (BDs)
957  * to span multiple servers. This is done by building an L2 overlay on
958  * top of an L3 network underlay using VXLAN-GPE tunnels.
959  *
960  * This makes it possible for servers to be co-located in the same data
961  * center or be separated geographically as long as they are reachable
962  * through the underlay L3 network.
963  *
964  * You can refer to this kind of L2 overlay bridge domain as a VXLAN-GPE segment.
965  *
966  * @cliexpar
967  * Example of how to create a VXLAN-GPE Tunnel:
968  * @cliexcmd{create vxlan-gpe tunnel local 10.0.3.1 remote 10.0.3.3 vni 13 encap-vrf-id 7}
969  * Example of how to delete a VXLAN-GPE Tunnel:
970  * @cliexcmd{create vxlan-gpe tunnel local 10.0.3.1 remote 10.0.3.3 vni 13 del}
971  ?*/
972 VLIB_CLI_COMMAND (create_vxlan_gpe_tunnel_command, static) = {
973   .path = "create vxlan-gpe tunnel",
974   .short_help =
975   "create vxlan-gpe tunnel local <local-addr> "
976   " {remote <remote-addr>|group <mcast-addr> <intf-name>}"
977   " vni <nn> [next-ip4][next-ip6][next-ethernet][next-nsh]"
978   " [encap-vrf-id <nn>] [decap-vrf-id <nn>] [del]\n",
979   .function = vxlan_gpe_add_del_tunnel_command_fn,
980 };
981
982 /**
983  * @brief CLI function for showing VXLAN GPE tunnels
984  *
985  * @param *vm
986  * @param *input
987  * @param *cmd
988  *
989  * @return error
990  *
991  */
992 static clib_error_t *
993 show_vxlan_gpe_tunnel_command_fn (vlib_main_t * vm,
994                                   unformat_input_t * input,
995                                   vlib_cli_command_t * cmd)
996 {
997   vxlan_gpe_main_t *ngm = &vxlan_gpe_main;
998   vxlan_gpe_tunnel_t *t;
999
1000   if (pool_elts (ngm->tunnels) == 0)
1001     vlib_cli_output (vm, "No vxlan-gpe tunnels configured.");
1002
1003   pool_foreach (t, ngm->tunnels)
1004    {
1005     vlib_cli_output (vm, "%U", format_vxlan_gpe_tunnel, t);
1006   }
1007
1008   return 0;
1009 }
1010
1011 /*?
1012  * Display all the VXLAN-GPE Tunnel entries.
1013  *
1014  * @cliexpar
1015  * Example of how to display the VXLAN-GPE Tunnel entries:
1016  * @cliexstart{show vxlan-gpe tunnel}
1017  * [0] local 10.0.3.1 remote 10.0.3.3 vni 13 encap_fib_index 0 sw_if_index 5 decap_next l2
1018  * @cliexend
1019  ?*/
1020 VLIB_CLI_COMMAND (show_vxlan_gpe_tunnel_command, static) = {
1021     .path = "show vxlan-gpe",
1022     .function = show_vxlan_gpe_tunnel_command_fn,
1023 };
1024
1025 void
1026 vnet_int_vxlan_gpe_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
1027 {
1028   if (is_ip6)
1029     vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-gpe-bypass",
1030                                  sw_if_index, is_enable, 0, 0);
1031   else
1032     vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-gpe-bypass",
1033                                  sw_if_index, is_enable, 0, 0);
1034 }
1035
1036
1037 static clib_error_t *
1038 set_ip_vxlan_gpe_bypass (u32 is_ip6,
1039                          unformat_input_t * input, vlib_cli_command_t * cmd)
1040 {
1041   unformat_input_t _line_input, *line_input = &_line_input;
1042   vnet_main_t *vnm = vnet_get_main ();
1043   clib_error_t *error = 0;
1044   u32 sw_if_index, is_enable;
1045
1046   sw_if_index = ~0;
1047   is_enable = 1;
1048
1049   if (!unformat_user (input, unformat_line_input, line_input))
1050     return 0;
1051
1052   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1053     {
1054       if (unformat_user
1055           (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1056         ;
1057       else if (unformat (line_input, "del"))
1058         is_enable = 0;
1059       else
1060         {
1061           error = unformat_parse_error (line_input);
1062           goto done;
1063         }
1064     }
1065
1066   if (~0 == sw_if_index)
1067     {
1068       error = clib_error_return (0, "unknown interface `%U'",
1069                                  format_unformat_error, line_input);
1070       goto done;
1071     }
1072
1073   vnet_int_vxlan_gpe_bypass_mode (sw_if_index, is_ip6, is_enable);
1074
1075 done:
1076   unformat_free (line_input);
1077
1078   return error;
1079 }
1080
1081 static clib_error_t *
1082 set_ip4_vxlan_gpe_bypass (vlib_main_t * vm,
1083                           unformat_input_t * input, vlib_cli_command_t * cmd)
1084 {
1085   return set_ip_vxlan_gpe_bypass (0, input, cmd);
1086 }
1087
1088 /*?
1089  * This command adds the 'ip4-vxlan-gpe-bypass' graph node for a given
1090  * interface. By adding the IPv4 vxlan-gpe-bypass graph node to an interface,
1091  * the node checks for and validate input vxlan_gpe packet and bypass
1092  * ip4-lookup, ip4-local, ip4-udp-lookup nodes to speedup vxlan_gpe packet
1093  * forwarding. This node will cause extra overhead to for non-vxlan_gpe
1094  * packets which is kept at a minimum.
1095  *
1096  * @cliexpar
1097  * @parblock
1098  * Example of graph node before ip4-vxlan-gpe-bypass is enabled:
1099  * @cliexstart{show vlib graph ip4-vxlan-gpe-bypass}
1100  *            Name                      Next                    Previous
1101  * ip4-vxlan-gpe-bypass                error-drop [0]
1102  *                                vxlan4-gpe-input [1]
1103  *                                 ip4-lookup [2]
1104  * @cliexend
1105  *
1106  * Example of how to enable ip4-vxlan-gpe-bypass on an interface:
1107  * @cliexcmd{set interface ip vxlan-gpe-bypass GigabitEthernet2/0/0}
1108  *
1109  * Example of graph node after ip4-vxlan-gpe-bypass is enabled:
1110  * @cliexstart{show vlib graph ip4-vxlan-gpe-bypass}
1111  *            Name             Next                      Previous
1112  * ip4-vxlan-gpe-bypass       error-drop [0]            ip4-input
1113  *                       vxlan4-gpe-input [1]      ip4-input-no-checksum
1114  *                        ip4-lookup [2]
1115  * @cliexend
1116  *
1117  * Example of how to display the feature enabled on an interface:
1118  * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1119  * IP feature paths configured on GigabitEthernet2/0/0...
1120  * ...
1121  * ipv4 unicast:
1122  *   ip4-vxlan-gpe-bypass
1123  *   ip4-lookup
1124  * ...
1125  * @cliexend
1126  *
1127  * Example of how to disable ip4-vxlan-gpe-bypass on an interface:
1128  * @cliexcmd{set interface ip vxlan-gpe-bypass GigabitEthernet2/0/0 del}
1129  * @endparblock
1130 ?*/
1131 VLIB_CLI_COMMAND (set_interface_ip_vxlan_gpe_bypass_command, static) = {
1132   .path = "set interface ip vxlan-gpe-bypass",
1133   .function = set_ip4_vxlan_gpe_bypass,
1134   .short_help = "set interface ip vxlan-gpe-bypass <interface> [del]",
1135 };
1136
1137 static clib_error_t *
1138 set_ip6_vxlan_gpe_bypass (vlib_main_t * vm,
1139                           unformat_input_t * input, vlib_cli_command_t * cmd)
1140 {
1141   return set_ip_vxlan_gpe_bypass (1, input, cmd);
1142 }
1143
1144 /*?
1145  * This command adds the 'ip6-vxlan-gpe-bypass' graph node for a given
1146  * interface. By adding the IPv6 vxlan-gpe-bypass graph node to an interface,
1147  * the node checks for and validate input vxlan_gpe packet and bypass
1148  * ip6-lookup, ip6-local, ip6-udp-lookup nodes to speedup vxlan_gpe packet
1149  * forwarding. This node will cause extra overhead to for non-vxlan_gpe packets
1150  * which is kept at a minimum.
1151  *
1152  * @cliexpar
1153  * @parblock
1154  * Example of graph node before ip6-vxlan-gpe-bypass is enabled:
1155  * @cliexstart{show vlib graph ip6-vxlan-gpe-bypass}
1156  *            Name                      Next                    Previous
1157  * ip6-vxlan-gpe-bypass                error-drop [0]
1158  *                                vxlan6-gpe-input [1]
1159  *                                 ip6-lookup [2]
1160  * @cliexend
1161  *
1162  * Example of how to enable ip6-vxlan-gpe-bypass on an interface:
1163  * @cliexcmd{set interface ip6 vxlan-gpe-bypass GigabitEthernet2/0/0}
1164  *
1165  * Example of graph node after ip6-vxlan-gpe-bypass is enabled:
1166  * @cliexstart{show vlib graph ip6-vxlan-gpe-bypass}
1167  *            Name               Next                    Previous
1168  * ip6-vxlan-gpe-bypass         error-drop [0]          ip6-input
1169  *                         vxlan6-gpe-input [1]    ip4-input-no-checksum
1170  *                          ip6-lookup [2]
1171  * @cliexend
1172  *
1173  * Example of how to display the feature enabled on an interface:
1174  * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1175  * IP feature paths configured on GigabitEthernet2/0/0...
1176  * ...
1177  * ipv6 unicast:
1178  *   ip6-vxlan-gpe-bypass
1179  *   ip6-lookup
1180  * ...
1181  * @cliexend
1182  *
1183  * Example of how to disable ip6-vxlan-gpe-bypass on an interface:
1184  * @cliexcmd{set interface ip6 vxlan-gpe-bypass GigabitEthernet2/0/0 del}
1185  * @endparblock
1186 ?*/
1187 VLIB_CLI_COMMAND (set_interface_ip6_vxlan_gpe_bypass_command, static) = {
1188   .path = "set interface ip6 vxlan-gpe-bypass",
1189   .function = set_ip6_vxlan_gpe_bypass,
1190   .short_help = "set interface ip6 vxlan-gpe-bypass <interface> [del]",
1191 };
1192
1193 VNET_FEATURE_INIT (ip4_vxlan_gpe_bypass, static) =
1194 {
1195   .arc_name = "ip4-unicast",
1196   .node_name = "ip4-vxlan-gpe-bypass",
1197   .runs_before = VNET_FEATURES ("ip4-lookup"),
1198 };
1199
1200 VNET_FEATURE_INIT (ip6_vxlan_gpe_bypass, static) =
1201 {
1202   .arc_name = "ip6-unicast",
1203   .node_name = "ip6-vxlan-gpe-bypass",
1204   .runs_before = VNET_FEATURES ("ip6-lookup"),
1205 };
1206
1207 /**
1208  * @brief Feature init function for VXLAN GPE
1209  *
1210  * @param *vm
1211  *
1212  * @return error
1213  *
1214  */
1215 clib_error_t *
1216 vxlan_gpe_init (vlib_main_t * vm)
1217 {
1218   vxlan_gpe_main_t *ngm = &vxlan_gpe_main;
1219
1220   ngm->vnet_main = vnet_get_main ();
1221   ngm->vlib_main = vm;
1222
1223   ngm->vxlan4_gpe_tunnel_by_key
1224     = hash_create_mem (0, sizeof (vxlan4_gpe_tunnel_key_t), sizeof (uword));
1225
1226   ngm->vxlan6_gpe_tunnel_by_key
1227     = hash_create_mem (0, sizeof (vxlan6_gpe_tunnel_key_t), sizeof (uword));
1228
1229
1230   ngm->mcast_shared = hash_create_mem (0,
1231                                        sizeof (ip46_address_t),
1232                                        sizeof (mcast_shared_t));
1233   ngm->vtep_table = vtep_table_create ();
1234
1235   /* Register the list of standard decap protocols supported */
1236   vxlan_gpe_register_decap_protocol (VXLAN_GPE_PROTOCOL_IP4,
1237                                      VXLAN_GPE_INPUT_NEXT_IP4_INPUT);
1238   vxlan_gpe_register_decap_protocol (VXLAN_GPE_PROTOCOL_IP6,
1239                                      VXLAN_GPE_INPUT_NEXT_IP6_INPUT);
1240   vxlan_gpe_register_decap_protocol (VXLAN_GPE_PROTOCOL_ETHERNET,
1241                                      VXLAN_GPE_INPUT_NEXT_L2_INPUT);
1242
1243   fib_node_register_type (FIB_NODE_TYPE_VXLAN_GPE_TUNNEL, &vxlan_gpe_vft);
1244
1245   return 0;
1246 }
1247
1248 VLIB_INIT_FUNCTION (vxlan_gpe_init);
1249
1250
1251 /*
1252  * fd.io coding-style-patch-verification: ON
1253  *
1254  * Local Variables:
1255  * eval: (c-set-style "gnu")
1256  * End:
1257  */