nat: Include platform specific headers on FreeBSD
[vpp.git] / src / plugins / vxlan / vxlan.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 #include <vxlan/vxlan.h>
16 #include <vnet/ip/format.h>
17 #include <vnet/fib/fib_entry.h>
18 #include <vnet/fib/fib_table.h>
19 #include <vnet/fib/fib_entry_track.h>
20 #include <vnet/mfib/mfib_table.h>
21 #include <vnet/adj/adj_mcast.h>
22 #include <vnet/adj/rewrite.h>
23 #include <vnet/dpo/drop_dpo.h>
24 #include <vnet/interface.h>
25 #include <vnet/flow/flow.h>
26 #include <vnet/udp/udp_local.h>
27 #include <vlib/vlib.h>
28
29 /**
30  * @file
31  * @brief VXLAN.
32  *
33  * VXLAN provides the features needed to allow L2 bridge domains (BDs)
34  * to span multiple servers. This is done by building an L2 overlay on
35  * top of an L3 network underlay using VXLAN tunnels.
36  *
37  * This makes it possible for servers to be co-located in the same data
38  * center or be separated geographically as long as they are reachable
39  * through the underlay L3 network.
40  *
41  * You can refer to this kind of L2 overlay bridge domain as a VXLAN
42  * (Virtual eXtensible VLAN) segment.
43  */
44
45
46 vxlan_main_t vxlan_main;
47
48 static u32
49 vxlan_eth_flag_change (vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags)
50 {
51   /* nothing for now */
52   return 0;
53 }
54
55 static clib_error_t *
56 vxlan_eth_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hw,
57                               u32 frame_size)
58 {
59   /* nothing for now */
60   return 0;
61 }
62
63 static u8 *
64 format_decap_next (u8 * s, va_list * args)
65 {
66   u32 next_index = va_arg (*args, u32);
67
68   if (next_index == VXLAN_INPUT_NEXT_DROP)
69     return format (s, "drop");
70   else
71     return format (s, "index %d", next_index);
72   return s;
73 }
74
75 u8 *
76 format_vxlan_tunnel (u8 * s, va_list * args)
77 {
78   vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *);
79
80   s = format (s,
81               "[%d] instance %d src %U dst %U src_port %d dst_port %d vni %d "
82               "fib-idx %d sw-if-idx %d ",
83               t->dev_instance, t->user_instance, format_ip46_address, &t->src,
84               IP46_TYPE_ANY, format_ip46_address, &t->dst, IP46_TYPE_ANY,
85               t->src_port, t->dst_port, t->vni, t->encap_fib_index,
86               t->sw_if_index);
87
88   s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
89
90   if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
91     s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
92
93   if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
94     s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
95
96   if (t->flow_index != ~0)
97     s = format (s, "flow-index %d [%U]", t->flow_index,
98                 format_flow_enabled_hw, t->flow_index);
99
100   return s;
101 }
102
103 static u8 *
104 format_vxlan_name (u8 * s, va_list * args)
105 {
106   u32 dev_instance = va_arg (*args, u32);
107   vxlan_main_t *vxm = &vxlan_main;
108   vxlan_tunnel_t *t;
109
110   if (dev_instance == ~0)
111     return format (s, "<cached-unused>");
112
113   if (dev_instance >= vec_len (vxm->tunnels))
114     return format (s, "<improperly-referenced>");
115
116   t = pool_elt_at_index (vxm->tunnels, dev_instance);
117
118   return format (s, "vxlan_tunnel%d", t->user_instance);
119 }
120
121 static clib_error_t *
122 vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
123 {
124   u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
125     VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
126   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
127
128   return /* no error */ 0;
129 }
130
131 VNET_DEVICE_CLASS (vxlan_device_class, static) = {
132   .name = "VXLAN",
133   .format_device_name = format_vxlan_name,
134   .format_tx_trace = format_vxlan_encap_trace,
135   .admin_up_down_function = vxlan_interface_admin_up_down,
136 };
137
138 static u8 *
139 format_vxlan_header_with_length (u8 * s, va_list * args)
140 {
141   u32 dev_instance = va_arg (*args, u32);
142   s = format (s, "unimplemented dev %u", dev_instance);
143   return s;
144 }
145
146 VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
147   .name = "VXLAN",
148   .format_header = format_vxlan_header_with_length,
149   .build_rewrite = default_build_rewrite,
150 };
151
152 static void
153 vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t)
154 {
155   u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
156   dpo_id_t dpo = DPO_INVALID;
157   fib_forward_chain_type_t forw_type = is_ip4 ?
158     FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
159
160   fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
161
162   /* vxlan uses the payload hash as the udp source port
163    * hence the packet's hash is unknown
164    * skip single bucket load balance dpo's */
165   while (DPO_LOAD_BALANCE == dpo.dpoi_type)
166     {
167       const load_balance_t *lb;
168       const dpo_id_t *choice;
169
170       lb = load_balance_get (dpo.dpoi_index);
171       if (lb->lb_n_buckets > 1)
172         break;
173
174       choice = load_balance_get_bucket_i (lb, 0);
175
176       if (DPO_RECEIVE == choice->dpoi_type)
177         dpo_copy (&dpo, drop_dpo_get (choice->dpoi_proto));
178       else
179         dpo_copy (&dpo, choice);
180     }
181
182   u32 encap_index = is_ip4 ?
183     vxlan4_encap_node.index : vxlan6_encap_node.index;
184   dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
185   dpo_reset (&dpo);
186 }
187
188 static vxlan_tunnel_t *
189 vxlan_tunnel_from_fib_node (fib_node_t * node)
190 {
191   ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
192   return ((vxlan_tunnel_t *) (((char *) node) -
193                               STRUCT_OFFSET_OF (vxlan_tunnel_t, node)));
194 }
195
196 /**
197  * Function definition to backwalk a FIB node -
198  * Here we will restack the new dpo of VXLAN DIP to encap node.
199  */
200 static fib_node_back_walk_rc_t
201 vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
202 {
203   vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node));
204   return (FIB_NODE_BACK_WALK_CONTINUE);
205 }
206
207 /**
208  * Function definition to get a FIB node from its index
209  */
210 static fib_node_t *
211 vxlan_tunnel_fib_node_get (fib_node_index_t index)
212 {
213   vxlan_tunnel_t *t;
214   vxlan_main_t *vxm = &vxlan_main;
215
216   t = pool_elt_at_index (vxm->tunnels, index);
217
218   return (&t->node);
219 }
220
221 /**
222  * Function definition to inform the FIB node that its last lock has gone.
223  */
224 static void
225 vxlan_tunnel_last_lock_gone (fib_node_t * node)
226 {
227   /*
228    * The VXLAN tunnel is a root of the graph. As such
229    * it never has children and thus is never locked.
230    */
231   ASSERT (0);
232 }
233
234 /*
235  * Virtual function table registered by VXLAN tunnels
236  * for participation in the FIB object graph.
237  */
238 const static fib_node_vft_t vxlan_vft = {
239   .fnv_get = vxlan_tunnel_fib_node_get,
240   .fnv_last_lock = vxlan_tunnel_last_lock_gone,
241   .fnv_back_walk = vxlan_tunnel_back_walk,
242 };
243
244 #define foreach_copy_field                                                    \
245   _ (vni)                                                                     \
246   _ (mcast_sw_if_index)                                                       \
247   _ (encap_fib_index)                                                         \
248   _ (decap_next_index)                                                        \
249   _ (src)                                                                     \
250   _ (dst)                                                                     \
251   _ (src_port)                                                                \
252   _ (dst_port)
253
254 static void
255 vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
256 {
257   union
258   {
259     ip4_vxlan_header_t h4;
260     ip6_vxlan_header_t h6;
261   } h;
262   int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
263
264   udp_header_t *udp;
265   vxlan_header_t *vxlan;
266   /* Fixed portion of the (outer) ip header */
267
268   clib_memset (&h, 0, sizeof (h));
269   if (!is_ip6)
270     {
271       ip4_header_t *ip = &h.h4.ip4;
272       udp = &h.h4.udp, vxlan = &h.h4.vxlan;
273       ip->ip_version_and_header_length = 0x45;
274       ip->ttl = 254;
275       ip->protocol = IP_PROTOCOL_UDP;
276
277       ip->src_address = t->src.ip4;
278       ip->dst_address = t->dst.ip4;
279
280       /* we fix up the ip4 header length and checksum after-the-fact */
281       ip->checksum = ip4_header_checksum (ip);
282     }
283   else
284     {
285       ip6_header_t *ip = &h.h6.ip6;
286       udp = &h.h6.udp, vxlan = &h.h6.vxlan;
287       ip->ip_version_traffic_class_and_flow_label =
288         clib_host_to_net_u32 (6 << 28);
289       ip->hop_limit = 255;
290       ip->protocol = IP_PROTOCOL_UDP;
291
292       ip->src_address = t->src.ip6;
293       ip->dst_address = t->dst.ip6;
294     }
295
296   /* UDP header, randomize src port on something, maybe? */
297   udp->src_port = clib_host_to_net_u16 (t->src_port);
298   udp->dst_port = clib_host_to_net_u16 (t->dst_port);
299
300   /* VXLAN header */
301   vnet_set_vni_and_flags (vxlan, t->vni);
302   vnet_rewrite_set_data (*t, &h, len);
303 }
304
305 static bool
306 vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6,
307                            u32 decap_next_index)
308 {
309   vlib_main_t *vm = vxm->vlib_main;
310   u32 input_idx = (!is_ip6) ?
311     vxlan4_input_node.index : vxlan6_input_node.index;
312   vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
313
314   return decap_next_index < r->n_next_nodes;
315 }
316
317 typedef CLIB_PACKED(union
318 {
319   struct
320   {
321     fib_node_index_t mfib_entry_index;
322     adj_index_t mcast_adj_index;
323   };
324   u64 as_u64;
325 }) mcast_shared_t;
326
327 static inline mcast_shared_t
328 mcast_shared_get (ip46_address_t * ip)
329 {
330   ASSERT (ip46_address_is_multicast (ip));
331   uword *p = hash_get_mem (vxlan_main.mcast_shared, ip);
332   ALWAYS_ASSERT (p);
333   mcast_shared_t ret = {.as_u64 = *p };
334   return ret;
335 }
336
337 static inline void
338 mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
339 {
340   mcast_shared_t new_ep = {
341     .mcast_adj_index = ai,
342     .mfib_entry_index = mfei,
343   };
344
345   hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
346 }
347
348 static inline void
349 mcast_shared_remove (ip46_address_t * dst)
350 {
351   mcast_shared_t ep = mcast_shared_get (dst);
352
353   adj_unlock (ep.mcast_adj_index);
354   mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN);
355
356   hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
357 }
358
359 int vnet_vxlan_add_del_tunnel
360   (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
361 {
362   vxlan_main_t *vxm = &vxlan_main;
363   vnet_main_t *vnm = vxm->vnet_main;
364   vxlan_decap_info_t *p;
365   u32 sw_if_index = ~0;
366   vxlan4_tunnel_key_t key4;
367   vxlan6_tunnel_key_t key6;
368   u32 is_ip6 = a->is_ip6;
369   vlib_main_t *vm = vlib_get_main ();
370   u8 hw_addr[6];
371
372   /* Set udp-ports */
373   if (a->src_port == 0)
374     a->src_port = is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan;
375
376   if (a->dst_port == 0)
377     a->dst_port = is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan;
378
379   int not_found;
380   if (!is_ip6)
381     {
382       /* ip4 mcast is indexed by mcast addr only */
383       key4.key[0] = ip46_address_is_multicast (&a->dst) ?
384                       a->dst.ip4.as_u32 :
385                       a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32);
386       key4.key[1] = ((u64) clib_host_to_net_u16 (a->src_port) << 48) |
387                     (((u64) a->encap_fib_index) << 32) |
388                     clib_host_to_net_u32 (a->vni << 8);
389       not_found =
390         clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
391       p = (void *) &key4.value;
392     }
393   else
394     {
395       key6.key[0] = a->dst.ip6.as_u64[0];
396       key6.key[1] = a->dst.ip6.as_u64[1];
397       key6.key[2] = (((u64) clib_host_to_net_u16 (a->src_port) << 48) |
398                      ((u64) a->encap_fib_index) << 32) |
399                     clib_host_to_net_u32 (a->vni << 8);
400       not_found =
401         clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
402       p = (void *) &key6.value;
403     }
404
405   if (not_found)
406     p = 0;
407
408   if (a->is_add)
409     {
410       l2input_main_t *l2im = &l2input_main;
411       u32 dev_instance;         /* real dev instance tunnel index */
412       u32 user_instance;        /* request and actual instance number */
413
414       /* adding a tunnel: tunnel must not already exist */
415       if (p)
416         return VNET_API_ERROR_TUNNEL_EXIST;
417
418       /*if not set explicitly, default to l2 */
419       if (a->decap_next_index == ~0)
420         a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
421       if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
422         return VNET_API_ERROR_INVALID_DECAP_NEXT;
423
424       vxlan_tunnel_t *t;
425       pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
426       clib_memset (t, 0, sizeof (*t));
427       dev_instance = t - vxm->tunnels;
428
429       /* copy from arg structure */
430 #define _(x) t->x = a->x;
431       foreach_copy_field;
432 #undef _
433
434       vxlan_rewrite (t, is_ip6);
435       /*
436        * Reconcile the real dev_instance and a possible requested instance.
437        */
438       user_instance = a->instance;
439       if (user_instance == ~0)
440         user_instance = dev_instance;
441       if (hash_get (vxm->instance_used, user_instance))
442         {
443           pool_put (vxm->tunnels, t);
444           return VNET_API_ERROR_INSTANCE_IN_USE;
445         }
446
447       hash_set (vxm->instance_used, user_instance, 1);
448
449       t->dev_instance = dev_instance;   /* actual */
450       t->user_instance = user_instance; /* name */
451       t->flow_index = ~0;
452
453       if (a->is_l3)
454         t->hw_if_index =
455           vnet_register_interface (vnm, vxlan_device_class.index, dev_instance,
456                                    vxlan_hw_class.index, dev_instance);
457       else
458         {
459           vnet_eth_interface_registration_t eir = {};
460           f64 now = vlib_time_now (vm);
461           u32 rnd;
462           rnd = (u32) (now * 1e6);
463           rnd = random_u32 (&rnd);
464           memcpy (hw_addr + 2, &rnd, sizeof (rnd));
465           hw_addr[0] = 2;
466           hw_addr[1] = 0xfe;
467
468           eir.dev_class_index = vxlan_device_class.index;
469           eir.dev_instance = dev_instance;
470           eir.address = hw_addr;
471           eir.cb.flag_change = vxlan_eth_flag_change;
472           eir.cb.set_max_frame_size = vxlan_eth_set_max_frame_size;
473           t->hw_if_index = vnet_eth_register_interface (vnm, &eir);
474         }
475
476       vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
477
478       /* Set vxlan tunnel output node */
479       u32 encap_index = !is_ip6 ?
480         vxlan4_encap_node.index : vxlan6_encap_node.index;
481       vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
482
483       t->sw_if_index = sw_if_index = hi->sw_if_index;
484
485       /* copy the key */
486       int add_failed;
487       if (is_ip6)
488         {
489           key6.value = (u64) dev_instance;
490           add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key,
491                                                  &key6, 1 /*add */ );
492         }
493       else
494         {
495           vxlan_decap_info_t di = {.sw_if_index = t->sw_if_index, };
496           if (ip46_address_is_multicast (&t->dst))
497             di.local_ip = t->src.ip4;
498           else
499             di.next_index = t->decap_next_index;
500           key4.value = di.as_u64;
501           add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key,
502                                                  &key4, 1 /*add */ );
503         }
504
505       if (add_failed)
506         {
507           if (a->is_l3)
508             vnet_delete_hw_interface (vnm, t->hw_if_index);
509           else
510             ethernet_delete_interface (vnm, t->hw_if_index);
511           hash_unset (vxm->instance_used, t->user_instance);
512           pool_put (vxm->tunnels, t);
513           return VNET_API_ERROR_INVALID_REGISTRATION;
514         }
515
516       vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
517                                ~0);
518       vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
519
520       /* setup l2 input config with l2 feature and bd 0 to drop packet */
521       vec_validate (l2im->configs, sw_if_index);
522       l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
523       l2im->configs[sw_if_index].bd_index = 0;
524
525       vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
526       si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
527       vnet_sw_interface_set_flags (vnm, sw_if_index,
528                                    VNET_SW_INTERFACE_FLAG_ADMIN_UP);
529
530       fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
531       fib_prefix_t tun_dst_pfx;
532       vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
533
534       fib_protocol_t fp = fib_ip_proto (is_ip6);
535       fib_prefix_from_ip46_addr (fp, &t->dst, &tun_dst_pfx);
536       if (!ip46_address_is_multicast (&t->dst))
537         {
538           /* Unicast tunnel -
539            * source the FIB entry for the tunnel's destination
540            * and become a child thereof. The tunnel will then get poked
541            * when the forwarding for the entry updates, and the tunnel can
542            * re-stack accordingly
543            */
544           vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->src);
545           t->fib_entry_index = fib_entry_track (t->encap_fib_index,
546                                                 &tun_dst_pfx,
547                                                 FIB_NODE_TYPE_VXLAN_TUNNEL,
548                                                 dev_instance,
549                                                 &t->sibling_index);
550           vxlan_tunnel_restack_dpo (t);
551         }
552       else
553         {
554           /* Multicast tunnel -
555            * as the same mcast group can be used for multiple mcast tunnels
556            * with different VNIs, create the output fib adjacency only if
557            * it does not already exist
558            */
559           if (vtep_addr_ref (&vxm->vtep_table,
560                              t->encap_fib_index, &t->dst) == 1)
561             {
562               fib_node_index_t mfei;
563               adj_index_t ai;
564               fib_route_path_t path = {
565                 .frp_proto = fib_proto_to_dpo (fp),
566                 .frp_addr = zero_addr,
567                 .frp_sw_if_index = 0xffffffff,
568                 .frp_fib_index = ~0,
569                 .frp_weight = 1,
570                 .frp_flags = FIB_ROUTE_PATH_LOCAL,
571                 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
572               };
573               const mfib_prefix_t mpfx = {
574                 .fp_proto = fp,
575                 .fp_len = (is_ip6 ? 128 : 32),
576                 .fp_grp_addr = tun_dst_pfx.fp_addr,
577               };
578
579               /*
580                * Setup the (*,G) to receive traffic on the mcast group
581                *  - the forwarding interface is for-us
582                *  - the accepting interface is that from the API
583                */
584               mfib_table_entry_path_update (t->encap_fib_index, &mpfx,
585                                             MFIB_SOURCE_VXLAN,
586                                             MFIB_ENTRY_FLAG_NONE, &path);
587
588               path.frp_sw_if_index = a->mcast_sw_if_index;
589               path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
590               path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
591               mfei = mfib_table_entry_path_update (
592                 t->encap_fib_index, &mpfx, MFIB_SOURCE_VXLAN,
593                 MFIB_ENTRY_FLAG_NONE, &path);
594
595               /*
596                * Create the mcast adjacency to send traffic to the group
597                */
598               ai = adj_mcast_add_or_lock (fp,
599                                           fib_proto_to_link (fp),
600                                           a->mcast_sw_if_index);
601
602               /*
603                * create a new end-point
604                */
605               mcast_shared_add (&t->dst, mfei, ai);
606             }
607
608           dpo_id_t dpo = DPO_INVALID;
609           mcast_shared_t ep = mcast_shared_get (&t->dst);
610
611           /* Stack shared mcast dst mac addr rewrite on encap */
612           dpo_set (&dpo, DPO_ADJACENCY_MCAST,
613                    fib_proto_to_dpo (fp), ep.mcast_adj_index);
614
615           dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
616           dpo_reset (&dpo);
617           flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
618         }
619
620       vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
621         flood_class;
622     }
623   else
624     {
625       /* deleting a tunnel: tunnel must exist */
626       if (!p)
627         return VNET_API_ERROR_NO_SUCH_ENTRY;
628
629       u32 instance = is_ip6 ? key6.value :
630         vxm->tunnel_index_by_sw_if_index[p->sw_if_index];
631       vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, instance);
632
633       sw_if_index = t->sw_if_index;
634       vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
635
636       vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
637
638       if (!is_ip6)
639         clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4,
640                                   0 /*del */ );
641       else
642         clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6,
643                                   0 /*del */ );
644
645       if (!ip46_address_is_multicast (&t->dst))
646         {
647           if (t->flow_index != ~0)
648             vnet_flow_del (vnm, t->flow_index);
649
650           vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->src);
651           fib_entry_untrack (t->fib_entry_index, t->sibling_index);
652         }
653       else if (vtep_addr_unref (&vxm->vtep_table,
654                                 t->encap_fib_index, &t->dst) == 0)
655         {
656           mcast_shared_remove (&t->dst);
657         }
658
659       vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, t->hw_if_index);
660       if (hw->dev_class_index == vxlan_device_class.index)
661         vnet_delete_hw_interface (vnm, t->hw_if_index);
662       else
663         ethernet_delete_interface (vnm, t->hw_if_index);
664       hash_unset (vxm->instance_used, t->user_instance);
665
666       fib_node_deinit (&t->node);
667       pool_put (vxm->tunnels, t);
668     }
669
670   if (sw_if_indexp)
671     *sw_if_indexp = sw_if_index;
672
673   if (a->is_add)
674     {
675       /* register udp ports */
676       if (!is_ip6 && !udp_is_valid_dst_port (a->src_port, 1))
677         udp_register_dst_port (vxm->vlib_main, a->src_port,
678                                vxlan4_input_node.index, 1);
679       if (is_ip6 && !udp_is_valid_dst_port (a->src_port, 0))
680         udp_register_dst_port (vxm->vlib_main, a->src_port,
681                                vxlan6_input_node.index, 0);
682     }
683
684   return 0;
685 }
686
687 static uword
688 get_decap_next_for_node (u32 node_index, u32 ipv4_set)
689 {
690   vxlan_main_t *vxm = &vxlan_main;
691   vlib_main_t *vm = vxm->vlib_main;
692   uword input_node = (ipv4_set) ? vxlan4_input_node.index :
693     vxlan6_input_node.index;
694
695   return vlib_node_add_next (vm, input_node, node_index);
696 }
697
698 static uword
699 unformat_decap_next (unformat_input_t * input, va_list * args)
700 {
701   u32 *result = va_arg (*args, u32 *);
702   u32 ipv4_set = va_arg (*args, int);
703   vxlan_main_t *vxm = &vxlan_main;
704   vlib_main_t *vm = vxm->vlib_main;
705   u32 node_index;
706   u32 tmp;
707
708   if (unformat (input, "l2"))
709     *result = VXLAN_INPUT_NEXT_L2_INPUT;
710   else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
711     *result = get_decap_next_for_node (node_index, ipv4_set);
712   else if (unformat (input, "%d", &tmp))
713     *result = tmp;
714   else
715     return 0;
716   return 1;
717 }
718
719 static clib_error_t *
720 vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
721                                  unformat_input_t * input,
722                                  vlib_cli_command_t * cmd)
723 {
724   unformat_input_t _line_input, *line_input = &_line_input;
725   ip46_address_t src = ip46_address_initializer, dst =
726     ip46_address_initializer;
727   u8 is_add = 1;
728   u8 src_set = 0;
729   u8 dst_set = 0;
730   u8 grp_set = 0;
731   u8 ipv4_set = 0;
732   u8 ipv6_set = 0;
733   u8 is_l3 = 0;
734   u32 instance = ~0;
735   u32 encap_fib_index = 0;
736   u32 mcast_sw_if_index = ~0;
737   u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
738   u32 vni = 0;
739   u32 src_port = 0;
740   u32 dst_port = 0;
741   u32 table_id;
742   clib_error_t *parse_error = NULL;
743
744   /* Get a line of input. */
745   if (!unformat_user (input, unformat_line_input, line_input))
746     return 0;
747
748   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
749     {
750       if (unformat (line_input, "del"))
751         {
752           is_add = 0;
753         }
754       else if (unformat (line_input, "instance %d", &instance))
755         ;
756       else if (unformat (line_input, "src %U",
757                          unformat_ip46_address, &src, IP46_TYPE_ANY))
758         {
759           src_set = 1;
760           ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
761         }
762       else if (unformat (line_input, "dst %U",
763                          unformat_ip46_address, &dst, IP46_TYPE_ANY))
764         {
765           dst_set = 1;
766           ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
767         }
768       else if (unformat (line_input, "group %U %U",
769                          unformat_ip46_address, &dst, IP46_TYPE_ANY,
770                          unformat_vnet_sw_interface,
771                          vnet_get_main (), &mcast_sw_if_index))
772         {
773           grp_set = dst_set = 1;
774           ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
775         }
776       else if (unformat (line_input, "encap-vrf-id %d", &table_id))
777         {
778           encap_fib_index =
779             fib_table_find (fib_ip_proto (ipv6_set), table_id);
780         }
781       else if (unformat (line_input, "l3"))
782         is_l3 = 1;
783       else if (unformat (line_input, "decap-next %U", unformat_decap_next,
784                          &decap_next_index, ipv4_set))
785         ;
786       else if (unformat (line_input, "vni %d", &vni))
787         ;
788       else if (unformat (line_input, "src_port %d", &src_port))
789         ;
790       else if (unformat (line_input, "dst_port %d", &dst_port))
791         ;
792       else
793         {
794           parse_error = clib_error_return (0, "parse error: '%U'",
795                                            format_unformat_error, line_input);
796           break;
797         }
798     }
799
800   unformat_free (line_input);
801
802   if (parse_error)
803     return parse_error;
804
805   if (is_l3 && decap_next_index == VXLAN_INPUT_NEXT_L2_INPUT)
806     {
807       vlib_node_t *node = vlib_get_node_by_name (
808         vm, (u8 *) (ipv4_set ? "ip4-input" : "ip6-input"));
809       decap_next_index = get_decap_next_for_node (node->index, ipv4_set);
810     }
811
812   if (encap_fib_index == ~0)
813     return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
814
815   if (src_set == 0)
816     return clib_error_return (0, "tunnel src address not specified");
817
818   if (dst_set == 0)
819     return clib_error_return (0, "tunnel dst address not specified");
820
821   if (grp_set && !ip46_address_is_multicast (&dst))
822     return clib_error_return (0, "tunnel group address not multicast");
823
824   if (grp_set == 0 && ip46_address_is_multicast (&dst))
825     return clib_error_return (0, "dst address must be unicast");
826
827   if (grp_set && mcast_sw_if_index == ~0)
828     return clib_error_return (0, "tunnel nonexistent multicast device");
829
830   if (ipv4_set && ipv6_set)
831     return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
832
833   if (ip46_address_cmp (&src, &dst) == 0)
834     return clib_error_return (0, "src and dst addresses are identical");
835
836   if (decap_next_index == ~0)
837     return clib_error_return (0, "next node not found");
838
839   if (vni == 0)
840     return clib_error_return (0, "vni not specified");
841
842   if (vni >> 24)
843     return clib_error_return (0, "vni %d out of range", vni);
844
845   vnet_vxlan_add_del_tunnel_args_t a = { .is_add = is_add,
846                                          .is_ip6 = ipv6_set,
847                                          .is_l3 = is_l3,
848                                          .instance = instance,
849 #define _(x) .x = x,
850                                          foreach_copy_field
851 #undef _
852   };
853
854   u32 tunnel_sw_if_index;
855   int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index);
856
857   switch (rv)
858     {
859     case 0:
860       if (is_add)
861         vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
862                          vnet_get_main (), tunnel_sw_if_index);
863       break;
864
865     case VNET_API_ERROR_TUNNEL_EXIST:
866       return clib_error_return (0, "tunnel already exists...");
867
868     case VNET_API_ERROR_NO_SUCH_ENTRY:
869       return clib_error_return (0, "tunnel does not exist...");
870
871     case VNET_API_ERROR_INSTANCE_IN_USE:
872       return clib_error_return (0, "Instance is in use");
873
874     default:
875       return clib_error_return
876         (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
877     }
878
879   return 0;
880 }
881
882 /*?
883  * Add or delete a VXLAN Tunnel.
884  *
885  * VXLAN provides the features needed to allow L2 bridge domains (BDs)
886  * to span multiple servers. This is done by building an L2 overlay on
887  * top of an L3 network underlay using VXLAN tunnels.
888  *
889  * This makes it possible for servers to be co-located in the same data
890  * center or be separated geographically as long as they are reachable
891  * through the underlay L3 network.
892  *
893  * You can refer to this kind of L2 overlay bridge domain as a VXLAN
894  * (Virtual eXtensible VLAN) segment.
895  *
896  * @cliexpar
897  * Example of how to create a VXLAN Tunnel:
898  * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id
899  7}
900  * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
901  * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
902  * Example of how to create a multicast VXLAN Tunnel with a known name,
903  vxlan_tunnel23:
904  * @cliexcmd{create vxlan tunnel src 10.0.3.1 group 239.1.1.1
905  GigabitEthernet0/8/0 instance 23}
906  * Example of how to create a VXLAN Tunnel with custom udp-ports:
907  * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 src_port
908  59000 dst_port 59001}
909  * Example of how to delete a VXLAN Tunnel:
910  * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
911  ?*/
912 VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
913   .path = "create vxlan tunnel",
914   .short_help =
915     "create vxlan tunnel src <local-vtep-addr>"
916     " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
917     " [instance <id>]"
918     " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del] [l3]"
919     " [src_port <local-vtep-udp-port>] [dst_port <remote-vtep-udp-port>]",
920   .function = vxlan_add_del_tunnel_command_fn,
921 };
922
923 static clib_error_t *
924 show_vxlan_tunnel_command_fn (vlib_main_t * vm,
925                               unformat_input_t * input,
926                               vlib_cli_command_t * cmd)
927 {
928   vxlan_main_t *vxm = &vxlan_main;
929   vxlan_tunnel_t *t;
930   int raw = 0;
931
932   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
933     {
934       if (unformat (input, "raw"))
935         raw = 1;
936       else
937         return clib_error_return (0, "parse error: '%U'",
938                                   format_unformat_error, input);
939     }
940
941   if (pool_elts (vxm->tunnels) == 0)
942     vlib_cli_output (vm, "No vxlan tunnels configured...");
943
944   pool_foreach (t, vxm->tunnels)
945    {
946     vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
947   }
948
949   if (raw)
950     {
951       vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
952                        format_bihash_16_8, &vxm->vxlan4_tunnel_by_key,
953                        1 /* verbose */ );
954       vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
955                        format_bihash_24_8, &vxm->vxlan6_tunnel_by_key,
956                        1 /* verbose */ );
957     }
958
959   return 0;
960 }
961
962 /*?
963  * Display all the VXLAN Tunnel entries.
964  *
965  * @cliexpar
966  * Example of how to display the VXLAN Tunnel entries:
967  * @cliexstart{show vxlan tunnel}
968  * [0] src 10.0.3.1 dst 10.0.3.3 src_port 4789 dst_port 4789 vni 13
969  encap_fib_index 0 sw_if_index 5 decap_next l2
970  * @cliexend
971  ?*/
972 VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
973     .path = "show vxlan tunnel",
974     .short_help = "show vxlan tunnel [raw]",
975     .function = show_vxlan_tunnel_command_fn,
976 };
977
978
979 void
980 vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
981 {
982   vxlan_main_t *vxm = &vxlan_main;
983
984   if (pool_is_free_index (vxm->vnet_main->interface_main.sw_interfaces,
985                           sw_if_index))
986     return;
987
988   is_enable = ! !is_enable;
989
990   if (is_ip6)
991     {
992       if (clib_bitmap_get (vxm->bm_ip6_bypass_enabled_by_sw_if, sw_if_index)
993           != is_enable)
994         {
995           vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
996                                        sw_if_index, is_enable, 0, 0);
997           vxm->bm_ip6_bypass_enabled_by_sw_if =
998             clib_bitmap_set (vxm->bm_ip6_bypass_enabled_by_sw_if,
999                              sw_if_index, is_enable);
1000         }
1001     }
1002   else
1003     {
1004       if (clib_bitmap_get (vxm->bm_ip4_bypass_enabled_by_sw_if, sw_if_index)
1005           != is_enable)
1006         {
1007           vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
1008                                        sw_if_index, is_enable, 0, 0);
1009           vxm->bm_ip4_bypass_enabled_by_sw_if =
1010             clib_bitmap_set (vxm->bm_ip4_bypass_enabled_by_sw_if,
1011                              sw_if_index, is_enable);
1012         }
1013     }
1014 }
1015
1016
1017 static clib_error_t *
1018 set_ip_vxlan_bypass (u32 is_ip6,
1019                      unformat_input_t * input, vlib_cli_command_t * cmd)
1020 {
1021   unformat_input_t _line_input, *line_input = &_line_input;
1022   vnet_main_t *vnm = vnet_get_main ();
1023   clib_error_t *error = 0;
1024   u32 sw_if_index, is_enable;
1025
1026   sw_if_index = ~0;
1027   is_enable = 1;
1028
1029   if (!unformat_user (input, unformat_line_input, line_input))
1030     return 0;
1031
1032   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1033     {
1034       if (unformat_user
1035           (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1036         ;
1037       else if (unformat (line_input, "del"))
1038         is_enable = 0;
1039       else
1040         {
1041           error = unformat_parse_error (line_input);
1042           goto done;
1043         }
1044     }
1045
1046   if (~0 == sw_if_index)
1047     {
1048       error = clib_error_return (0, "unknown interface `%U'",
1049                                  format_unformat_error, line_input);
1050       goto done;
1051     }
1052
1053   vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
1054
1055 done:
1056   unformat_free (line_input);
1057
1058   return error;
1059 }
1060
1061 static clib_error_t *
1062 set_ip4_vxlan_bypass (vlib_main_t * vm,
1063                       unformat_input_t * input, vlib_cli_command_t * cmd)
1064 {
1065   return set_ip_vxlan_bypass (0, input, cmd);
1066 }
1067
1068 /*?
1069  * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
1070  * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
1071  * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
1072  * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
1073  * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1074  *
1075  * @cliexpar
1076  * @parblock
1077  * Example of graph node before ip4-vxlan-bypass is enabled:
1078  * @cliexstart{show vlib graph ip4-vxlan-bypass}
1079  *            Name                      Next                    Previous
1080  * ip4-vxlan-bypass                error-drop [0]
1081  *                                vxlan4-input [1]
1082  *                                 ip4-lookup [2]
1083  * @cliexend
1084  *
1085  * Example of how to enable ip4-vxlan-bypass on an interface:
1086  * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
1087  *
1088  * Example of graph node after ip4-vxlan-bypass is enabled:
1089  * @cliexstart{show vlib graph ip4-vxlan-bypass}
1090  *            Name                      Next                    Previous
1091  * ip4-vxlan-bypass                error-drop [0]               ip4-input
1092  *                                vxlan4-input [1]        ip4-input-no-checksum
1093  *                                 ip4-lookup [2]
1094  * @cliexend
1095  *
1096  * Example of how to display the feature enabled on an interface:
1097  * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1098  * IP feature paths configured on GigabitEthernet2/0/0...
1099  * ...
1100  * ipv4 unicast:
1101  *   ip4-vxlan-bypass
1102  *   ip4-lookup
1103  * ...
1104  * @cliexend
1105  *
1106  * Example of how to disable ip4-vxlan-bypass on an interface:
1107  * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1108  * @endparblock
1109 ?*/
1110 VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1111   .path = "set interface ip vxlan-bypass",
1112   .function = set_ip4_vxlan_bypass,
1113   .short_help = "set interface ip vxlan-bypass <interface> [del]",
1114 };
1115
1116 static clib_error_t *
1117 set_ip6_vxlan_bypass (vlib_main_t * vm,
1118                       unformat_input_t * input, vlib_cli_command_t * cmd)
1119 {
1120   return set_ip_vxlan_bypass (1, input, cmd);
1121 }
1122
1123 /*?
1124  * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
1125  * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
1126  * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1127  * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
1128  * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1129  *
1130  * @cliexpar
1131  * @parblock
1132  * Example of graph node before ip6-vxlan-bypass is enabled:
1133  * @cliexstart{show vlib graph ip6-vxlan-bypass}
1134  *            Name                      Next                    Previous
1135  * ip6-vxlan-bypass                error-drop [0]
1136  *                                vxlan6-input [1]
1137  *                                 ip6-lookup [2]
1138  * @cliexend
1139  *
1140  * Example of how to enable ip6-vxlan-bypass on an interface:
1141  * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1142  *
1143  * Example of graph node after ip6-vxlan-bypass is enabled:
1144  * @cliexstart{show vlib graph ip6-vxlan-bypass}
1145  *            Name                      Next                    Previous
1146  * ip6-vxlan-bypass                error-drop [0]               ip6-input
1147  *                                vxlan6-input [1]        ip4-input-no-checksum
1148  *                                 ip6-lookup [2]
1149  * @cliexend
1150  *
1151  * Example of how to display the feature enabled on an interface:
1152  * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1153  * IP feature paths configured on GigabitEthernet2/0/0...
1154  * ...
1155  * ipv6 unicast:
1156  *   ip6-vxlan-bypass
1157  *   ip6-lookup
1158  * ...
1159  * @cliexend
1160  *
1161  * Example of how to disable ip6-vxlan-bypass on an interface:
1162  * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1163  * @endparblock
1164 ?*/
1165 VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1166   .path = "set interface ip6 vxlan-bypass",
1167   .function = set_ip6_vxlan_bypass,
1168   .short_help = "set interface ip6 vxlan-bypass <interface> [del]",
1169 };
1170
1171 int
1172 vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add)
1173 {
1174   vxlan_main_t *vxm = &vxlan_main;
1175   vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1176   vnet_main_t *vnm = vnet_get_main ();
1177   if (is_add)
1178     {
1179       if (t->flow_index == ~0)
1180         {
1181           vxlan_main_t *vxm = &vxlan_main;
1182           vnet_flow_t flow = {
1183             .actions =
1184               VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK |
1185               VNET_FLOW_ACTION_BUFFER_ADVANCE,
1186             .mark_flow_id = t->dev_instance + vxm->flow_id_start,
1187             .redirect_node_index = vxlan4_flow_input_node.index,
1188             .buffer_advance = sizeof (ethernet_header_t),
1189             .type = VNET_FLOW_TYPE_IP4_VXLAN,
1190             .ip4_vxlan = {
1191                           .protocol.prot = IP_PROTOCOL_UDP,
1192                           .src_addr.addr = t->dst.ip4,
1193                           .dst_addr.addr = t->src.ip4,
1194                           .src_addr.mask.as_u32 = ~0,
1195                           .dst_addr.mask.as_u32 = ~0,
1196                           .dst_port.port = t->src_port,
1197                           .dst_port.mask = 0xFF,
1198                           .vni = t->vni,
1199                           }
1200             ,
1201           };
1202           vnet_flow_add (vnm, &flow, &t->flow_index);
1203         }
1204       return vnet_flow_enable (vnm, t->flow_index, hw_if_index);
1205     }
1206   /* flow index is removed when the tunnel is deleted */
1207   return vnet_flow_disable (vnm, t->flow_index, hw_if_index);
1208 }
1209
1210 u32
1211 vnet_vxlan_get_tunnel_index (u32 sw_if_index)
1212 {
1213   vxlan_main_t *vxm = &vxlan_main;
1214
1215   if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
1216     return ~0;
1217   return vxm->tunnel_index_by_sw_if_index[sw_if_index];
1218 }
1219
1220 static clib_error_t *
1221 vxlan_offload_command_fn (vlib_main_t * vm,
1222                           unformat_input_t * input, vlib_cli_command_t * cmd)
1223 {
1224   unformat_input_t _line_input, *line_input = &_line_input;
1225
1226   /* Get a line of input. */
1227   if (!unformat_user (input, unformat_line_input, line_input))
1228     return 0;
1229
1230   vnet_main_t *vnm = vnet_get_main ();
1231   u32 rx_sw_if_index = ~0;
1232   u32 hw_if_index = ~0;
1233   int is_add = 1;
1234
1235   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1236     {
1237       if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm,
1238                     &hw_if_index))
1239         continue;
1240       if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm,
1241                     &rx_sw_if_index))
1242         continue;
1243       if (unformat (line_input, "del"))
1244         {
1245           is_add = 0;
1246           continue;
1247         }
1248       return clib_error_return (0, "unknown input `%U'",
1249                                 format_unformat_error, line_input);
1250     }
1251
1252   if (rx_sw_if_index == ~0)
1253     return clib_error_return (0, "missing rx interface");
1254   if (hw_if_index == ~0)
1255     return clib_error_return (0, "missing hw interface");
1256
1257   u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);;
1258   if (t_index == ~0)
1259     return clib_error_return (0, "%U is not a vxlan tunnel",
1260                               format_vnet_sw_if_index_name, vnm,
1261                               rx_sw_if_index);
1262
1263   vxlan_main_t *vxm = &vxlan_main;
1264   vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1265
1266   if (!ip46_address_is_ip4 (&t->dst))
1267     return clib_error_return (0, "currently only IPV4 tunnels are supported");
1268
1269   vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index);
1270   ip4_main_t *im = &ip4_main;
1271   u32 rx_fib_index =
1272     vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index);
1273
1274   if (t->encap_fib_index != rx_fib_index)
1275     return clib_error_return (0, "interface/tunnel fib mismatch");
1276
1277   if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add))
1278     return clib_error_return (0, "error %s flow",
1279                               is_add ? "enabling" : "disabling");
1280
1281   return 0;
1282 }
1283
1284 VLIB_CLI_COMMAND (vxlan_offload_command, static) = {
1285     .path = "set flow-offload vxlan",
1286     .short_help =
1287     "set flow-offload vxlan hw <interface-name> rx <tunnel-name> [del]",
1288     .function = vxlan_offload_command_fn,
1289 };
1290
1291 #define VXLAN_HASH_NUM_BUCKETS (2 * 1024)
1292 #define VXLAN_HASH_MEMORY_SIZE (1 << 20)
1293
1294 clib_error_t *
1295 vxlan_init (vlib_main_t * vm)
1296 {
1297   vxlan_main_t *vxm = &vxlan_main;
1298
1299   vxm->vnet_main = vnet_get_main ();
1300   vxm->vlib_main = vm;
1301
1302   vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024,
1303                        &vxm->flow_id_start);
1304
1305   vxm->bm_ip4_bypass_enabled_by_sw_if = 0;
1306   vxm->bm_ip6_bypass_enabled_by_sw_if = 0;
1307
1308   /* initialize the ip6 hash */
1309   clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4",
1310                          VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1311   clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6",
1312                          VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1313   vxm->vtep_table = vtep_table_create ();
1314   vxm->mcast_shared = hash_create_mem (0,
1315                                        sizeof (ip46_address_t),
1316                                        sizeof (mcast_shared_t));
1317
1318   fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
1319
1320   return 0;
1321 }
1322
1323 VLIB_INIT_FUNCTION (vxlan_init);
1324
1325 /*
1326  * fd.io coding-style-patch-verification: ON
1327  *
1328  * Local Variables:
1329  * eval: (c-set-style "gnu")
1330  * End:
1331  */