policer: replace uintX_t with uX, fix style
[vpp.git] / vnet / vnet / 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 <vnet/vxlan/vxlan.h>
16 #include <vnet/ip/format.h>
17
18 /**
19  * @file
20  * @brief VXLAN.
21  *
22  * VXLAN provides the features needed to allow L2 bridge domains (BDs)
23  * to span multiple servers. This is done by building an L2 overlay on
24  * top of an L3 network underlay using VXLAN tunnels.
25  *
26  * This makes it possible for servers to be co-located in the same data
27  * center or be separated geographically as long as they are reachable
28  * through the underlay L3 network.
29  *
30  * You can refer to this kind of L2 overlay bridge domain as a VXLAN
31  * (Virtual eXtensible VLAN) segment.
32  */
33
34
35 vxlan_main_t vxlan_main;
36
37 static u8 * format_decap_next (u8 * s, va_list * args)
38 {
39   u32 next_index = va_arg (*args, u32);
40
41   switch (next_index)
42     {
43     case VXLAN_INPUT_NEXT_DROP:
44       return format (s, "drop");
45     case VXLAN_INPUT_NEXT_L2_INPUT:
46       return format (s, "l2");
47     case VXLAN_INPUT_NEXT_IP4_INPUT:
48       return format (s, "ip4");
49     case VXLAN_INPUT_NEXT_IP6_INPUT:
50       return format (s, "ip6");
51     default:
52       return format (s, "unknown %d", next_index);
53     }
54   return s;
55 }
56
57 u8 * format_vxlan_tunnel (u8 * s, va_list * args)
58 {
59   vxlan_tunnel_t * t = va_arg (*args, vxlan_tunnel_t *);
60   vxlan_main_t * ngm = &vxlan_main;
61
62   s = format (s, 
63               "[%d] %U (src) %U (dst) vni %d encap_fib_index %d",
64               t - ngm->tunnels,
65               format_ip46_address, &t->src, IP46_TYPE_ANY,
66               format_ip46_address, &t->dst, IP46_TYPE_ANY,
67               t->vni,
68               t->encap_fib_index);
69   s = format (s, " decap_next %U\n", format_decap_next, t->decap_next_index);
70   return s;
71 }
72
73 static u8 * format_vxlan_name (u8 * s, va_list * args)
74 {
75   u32 dev_instance = va_arg (*args, u32);
76   return format (s, "vxlan_tunnel%d", dev_instance);
77 }
78
79 static uword dummy_interface_tx (vlib_main_t * vm,
80                                  vlib_node_runtime_t * node,
81                                  vlib_frame_t * frame)
82 {
83   clib_warning ("you shouldn't be here, leaking buffers...");
84   return frame->n_vectors;
85 }
86
87 static clib_error_t *
88 vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
89 {
90   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
91     vnet_hw_interface_set_flags (vnm, hw_if_index, VNET_HW_INTERFACE_FLAG_LINK_UP);
92   else
93     vnet_hw_interface_set_flags (vnm, hw_if_index, 0);
94
95   return /* no error */ 0;
96 }
97
98 VNET_DEVICE_CLASS (vxlan_device_class,static) = {
99   .name = "VXLAN",
100   .format_device_name = format_vxlan_name,
101   .format_tx_trace = format_vxlan_encap_trace,
102   .tx_function = dummy_interface_tx,
103   .admin_up_down_function = vxlan_interface_admin_up_down,
104 };
105
106 static u8 * format_vxlan_header_with_length (u8 * s, va_list * args)
107 {
108   u32 dev_instance = va_arg (*args, u32);
109   s = format (s, "unimplemented dev %u", dev_instance);
110   return s;
111 }
112
113 VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
114   .name = "VXLAN",
115   .format_header = format_vxlan_header_with_length,
116   .build_rewrite = default_build_rewrite,
117 };
118
119 #define foreach_copy_field                      \
120 _(vni)                                          \
121 _(encap_fib_index)                              \
122 _(decap_next_index)
123
124 #define foreach_copy_ipv4 {                     \
125   _(src.ip4.as_u32)                             \
126   _(dst.ip4.as_u32)                             \
127 }
128
129 #define foreach_copy_ipv6 {                     \
130   _(src.ip6.as_u64[0])                          \
131   _(src.ip6.as_u64[1])                          \
132   _(dst.ip6.as_u64[0])                          \
133   _(dst.ip6.as_u64[1])                          \
134 }
135
136 static int vxlan4_rewrite (vxlan_tunnel_t * t)
137 {
138   u8 *rw = 0;
139   ip4_header_t * ip0;
140   ip4_vxlan_header_t * h0;
141   int len = sizeof (*h0);
142
143   vec_validate_aligned (rw, len-1, CLIB_CACHE_LINE_BYTES);
144
145   h0 = (ip4_vxlan_header_t *) rw;
146
147   /* Fixed portion of the (outer) ip4 header */
148   ip0 = &h0->ip4;
149   ip0->ip_version_and_header_length = 0x45;
150   ip0->ttl = 254;
151   ip0->protocol = IP_PROTOCOL_UDP;
152
153   /* we fix up the ip4 header length and checksum after-the-fact */
154   ip0->src_address.as_u32 = t->src.ip4.as_u32;
155   ip0->dst_address.as_u32 = t->dst.ip4.as_u32;
156   ip0->checksum = ip4_header_checksum (ip0);
157
158   /* UDP header, randomize src port on something, maybe? */
159   h0->udp.src_port = clib_host_to_net_u16 (4789);
160   h0->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
161
162   /* VXLAN header */
163   vnet_set_vni_and_flags(&h0->vxlan, t->vni);
164
165   t->rewrite = rw;
166   return (0);
167 }
168
169 static int vxlan6_rewrite (vxlan_tunnel_t * t)
170 {
171   u8 *rw = 0;
172   ip6_header_t * ip0;
173   ip6_vxlan_header_t * h0;
174   int len = sizeof (*h0);
175
176   vec_validate_aligned (rw, len-1, CLIB_CACHE_LINE_BYTES);
177
178   h0 = (ip6_vxlan_header_t *) rw;
179
180   /* Fixed portion of the (outer) ip6 header */
181   ip0 = &h0->ip6;
182   ip0->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32(6 << 28);
183   ip0->hop_limit = 255;
184   ip0->protocol = IP_PROTOCOL_UDP;
185
186   ip0->src_address.as_u64[0] = t->src.ip6.as_u64[0];
187   ip0->src_address.as_u64[1] = t->src.ip6.as_u64[1];
188   ip0->dst_address.as_u64[0] = t->dst.ip6.as_u64[0];
189   ip0->dst_address.as_u64[1] = t->dst.ip6.as_u64[1];
190
191   /* UDP header, randomize src port on something, maybe? */
192   h0->udp.src_port = clib_host_to_net_u16 (4789);
193   h0->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
194
195   /* VXLAN header */
196   vnet_set_vni_and_flags(&h0->vxlan, t->vni);
197
198   t->rewrite = rw;
199   return (0);
200 }
201
202 int vnet_vxlan_add_del_tunnel 
203 (vnet_vxlan_add_del_tunnel_args_t *a, u32 * sw_if_indexp)
204 {
205   vxlan_main_t * vxm = &vxlan_main;
206   vxlan_tunnel_t *t = 0;
207   vnet_main_t * vnm = vxm->vnet_main;
208   ip4_main_t * im4 = &ip4_main;
209   ip6_main_t * im6 = &ip6_main;
210   vnet_hw_interface_t * hi;
211   uword * p;
212   u32 hw_if_index = ~0;
213   u32 sw_if_index = ~0;
214   int rv;
215   vxlan4_tunnel_key_t key4;
216   vxlan6_tunnel_key_t key6;
217
218   if (!a->is_ip6) {
219     key4.src = a->dst.ip4.as_u32; /* decap src in key is encap dst in config */
220     key4.vni = clib_host_to_net_u32 (a->vni << 8);
221   
222     p = hash_get (vxm->vxlan4_tunnel_by_key, key4.as_u64);
223   } else {
224     key6.src.as_u64[0] = a->dst.ip6.as_u64[0];
225     key6.src.as_u64[1] = a->dst.ip6.as_u64[1];
226     key6.vni = clib_host_to_net_u32 (a->vni << 8);
227
228     p = hash_get_mem (vxm->vxlan6_tunnel_by_key, &key6);
229   }
230   
231   if (a->is_add)
232     {
233       /* adding a tunnel: tunnel must not already exist */
234       if (p)
235         return VNET_API_ERROR_TUNNEL_EXIST;
236
237       if (a->decap_next_index == ~0)
238           a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
239
240       if (a->decap_next_index >= VXLAN_INPUT_N_NEXT)
241         return VNET_API_ERROR_INVALID_DECAP_NEXT;
242       
243       pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
244       memset (t, 0, sizeof (*t));
245       
246       /* copy from arg structure */
247 #define _(x) t->x = a->x;
248       foreach_copy_field;
249       if (!a->is_ip6) foreach_copy_ipv4
250       else            foreach_copy_ipv6
251 #undef _
252       
253       /* copy the key */
254       if (a->is_ip6)
255         {
256           t->key6 = clib_mem_alloc (sizeof(vxlan6_tunnel_key_t));
257           clib_memcpy (t->key6, &key6, sizeof(key6));
258         }
259       else
260         {
261           t->key4 = 0; /* not yet used */
262         }
263
264       if (!a->is_ip6) t->flags |= VXLAN_TUNNEL_IS_IPV4;
265
266       if (!a->is_ip6) {
267         rv = vxlan4_rewrite (t);
268       } else {
269         rv = vxlan6_rewrite (t);
270       }
271
272       if (rv)
273         {
274           pool_put (vxm->tunnels, t);
275           return rv;
276         }
277
278       if (!a->is_ip6)
279         hash_set (vxm->vxlan4_tunnel_by_key, key4.as_u64, t - vxm->tunnels);
280       else
281         hash_set_mem (vxm->vxlan6_tunnel_by_key, t->key6, t - vxm->tunnels);
282       
283       if (vec_len (vxm->free_vxlan_tunnel_hw_if_indices) > 0)
284         {
285           vnet_interface_main_t * im = &vnm->interface_main;
286           hw_if_index = vxm->free_vxlan_tunnel_hw_if_indices
287             [vec_len (vxm->free_vxlan_tunnel_hw_if_indices)-1];
288           _vec_len (vxm->free_vxlan_tunnel_hw_if_indices) -= 1;
289           
290           hi = vnet_get_hw_interface (vnm, hw_if_index);
291           hi->dev_instance = t - vxm->tunnels;
292           hi->hw_instance = hi->dev_instance;
293
294           /* clear old stats of freed tunnel before reuse */
295           sw_if_index = hi->sw_if_index;
296           vnet_interface_counter_lock(im);
297           vlib_zero_combined_counter 
298             (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX], sw_if_index);
299           vlib_zero_combined_counter 
300             (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_RX], sw_if_index);
301           vlib_zero_simple_counter 
302             (&im->sw_if_counters[VNET_INTERFACE_COUNTER_DROP], sw_if_index);
303           vnet_interface_counter_unlock(im);
304         }
305       else 
306         {
307           hw_if_index = vnet_register_interface
308             (vnm, vxlan_device_class.index, t - vxm->tunnels,
309              vxlan_hw_class.index, t - vxm->tunnels);
310           hi = vnet_get_hw_interface (vnm, hw_if_index);
311           hi->output_node_index = vxlan_encap_node.index;
312         }
313       
314       t->hw_if_index = hw_if_index;
315       t->sw_if_index = sw_if_index = hi->sw_if_index;
316       
317       vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
318       vxm->tunnel_index_by_sw_if_index[sw_if_index] = t - vxm->tunnels;
319
320       if (a->decap_next_index == VXLAN_INPUT_NEXT_L2_INPUT)
321         {
322           l2input_main_t * l2im = &l2input_main;
323           /* setup l2 input config with l2 feature and bd 0 to drop packet */
324           vec_validate (l2im->configs, sw_if_index);
325           l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
326           l2im->configs[sw_if_index].bd_index = 0;
327         }
328       
329       vnet_sw_interface_set_flags (vnm, sw_if_index, 
330                                    VNET_SW_INTERFACE_FLAG_ADMIN_UP);
331       if (!a->is_ip6) {
332         vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
333         im4->fib_index_by_sw_if_index[sw_if_index] = t->encap_fib_index;
334         ip4_sw_interface_enable_disable(sw_if_index, 1);
335       } else {
336         vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
337         im6->fib_index_by_sw_if_index[sw_if_index] = t->encap_fib_index;
338         ip6_sw_interface_enable_disable(sw_if_index, 1);
339       }
340     }
341   else
342     {
343       /* deleting a tunnel: tunnel must exist */
344       if (!p) 
345         return VNET_API_ERROR_NO_SUCH_ENTRY;
346
347       t = pool_elt_at_index (vxm->tunnels, p[0]);
348
349       vnet_sw_interface_set_flags (vnm, t->sw_if_index, 0 /* down */);
350       /* make sure tunnel is removed from l2 bd or xconnect */
351       set_int_l2_mode(vxm->vlib_main, vnm, MODE_L3, t->sw_if_index, 0, 0, 0, 0);
352       vec_add1 (vxm->free_vxlan_tunnel_hw_if_indices, t->hw_if_index);
353
354       vxm->tunnel_index_by_sw_if_index[t->sw_if_index] = ~0;
355
356       if (!a->is_ip6)
357         {
358           hash_unset (vxm->vxlan4_tunnel_by_key, key4.as_u64);
359           ip4_sw_interface_enable_disable(t->sw_if_index, 1);
360         }
361       else
362         {
363           hash_unset_mem (vxm->vxlan6_tunnel_by_key, t->key6);
364           clib_mem_free (t->key6);
365           ip6_sw_interface_enable_disable(t->sw_if_index, 1);
366         }
367       vec_free (t->rewrite);
368       pool_put (vxm->tunnels, t);
369     }
370
371   if (sw_if_indexp)
372       *sw_if_indexp = sw_if_index;
373
374   return 0;
375 }
376
377 static u32 fib4_index_from_fib_id (u32 fib_id)
378 {
379   ip4_main_t * im = &ip4_main;
380   uword * p;
381
382   p = hash_get (im->fib_index_by_table_id, fib_id);
383   if (!p)
384     return ~0;
385
386   return p[0];
387 }
388
389 static u32 fib6_index_from_fib_id (u32 fib_id)
390 {
391   ip6_main_t * im = &ip6_main;
392   uword * p;
393
394   p = hash_get (im->fib_index_by_table_id, fib_id);
395   if (!p)
396     return ~0;
397
398   return p[0];
399 }
400
401 static uword unformat_decap_next (unformat_input_t * input, va_list * args)
402 {
403   u32 * result = va_arg (*args, u32 *);
404   u32 tmp;
405   
406   if (unformat (input, "l2"))
407     *result = VXLAN_INPUT_NEXT_L2_INPUT;
408   else if (unformat (input, "drop"))
409     *result = VXLAN_INPUT_NEXT_DROP;
410   else if (unformat (input, "ip4"))
411     *result = VXLAN_INPUT_NEXT_IP4_INPUT;
412   else if (unformat (input, "ip6"))
413     *result = VXLAN_INPUT_NEXT_IP6_INPUT;
414   else if (unformat (input, "%d", &tmp))
415     *result = tmp;
416   else
417     return 0;
418   return 1;
419 }
420
421 static clib_error_t *
422 vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
423                                    unformat_input_t * input,
424                                    vlib_cli_command_t * cmd)
425 {
426   unformat_input_t _line_input, * line_input = &_line_input;
427   ip46_address_t src, dst;
428   u8 is_add = 1;
429   u8 src_set = 0;
430   u8 dst_set = 0;
431   u8 ipv4_set = 0;
432   u8 ipv6_set = 0;
433   u32 encap_fib_index = 0;
434   u32 decap_next_index = ~0;
435   u32 vni = 0;
436   u32 tmp;
437   int rv;
438   vnet_vxlan_add_del_tunnel_args_t _a, * a = &_a;
439   u32 sw_if_index;
440   
441   /* Get a line of input. */
442   if (! unformat_user (input, unformat_line_input, line_input))
443     return 0;
444
445   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
446     if (unformat (line_input, "del"))
447       {
448         is_add = 0;
449       }
450     else if (unformat (line_input, "src %U",
451                        unformat_ip4_address, &src.ip4))
452       {
453         src_set = 1;
454         ipv4_set = 1;
455       }
456     else if (unformat (line_input, "dst %U",
457                        unformat_ip4_address, &dst.ip4))
458       {
459         dst_set = 1;
460         ipv4_set = 1;
461       }
462     else if (unformat (line_input, "src %U", 
463                        unformat_ip6_address, &src.ip6))
464       {
465         src_set = 1;
466         ipv6_set = 1;
467       }
468     else if (unformat (line_input, "dst %U",
469                        unformat_ip6_address, &dst.ip6))
470       {
471         dst_set = 1;
472         ipv6_set = 1;
473       }
474     else if (unformat (line_input, "encap-vrf-id %d", &tmp))
475       {
476         if (ipv6_set)
477           encap_fib_index = fib6_index_from_fib_id (tmp);
478         else
479           encap_fib_index = fib4_index_from_fib_id (tmp);
480         if (encap_fib_index == ~0)
481           return clib_error_return (0, "nonexistent encap-vrf-id %d", tmp);
482       }
483     else if (unformat (line_input, "decap-next %U", unformat_decap_next, 
484                        &decap_next_index))
485       ;
486     else if (unformat (line_input, "vni %d", &vni))
487       {
488         if (vni >> 24)  
489           return clib_error_return (0, "vni %d out of range", vni);
490       }
491     else 
492       return clib_error_return (0, "parse error: '%U'", 
493                                 format_unformat_error, line_input);
494   }
495
496   unformat_free (line_input);
497
498   if (src_set == 0)
499     return clib_error_return (0, "tunnel src address not specified");
500
501   if (dst_set == 0)
502     return clib_error_return (0, "tunnel dst address not specified");
503
504   if (ipv4_set && ipv6_set)
505     return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
506
507   if ((ipv4_set && memcmp(&src.ip4, &dst.ip4, sizeof(src.ip4)) == 0) ||
508       (ipv6_set && memcmp(&src.ip6, &dst.ip6, sizeof(src.ip6)) == 0))
509     return clib_error_return (0, "src and dst addresses are identical");
510
511   if (vni == 0)
512     return clib_error_return (0, "vni not specified");
513
514   memset (a, 0, sizeof (*a));
515
516   a->is_add = is_add;
517   a->is_ip6 = ipv6_set;
518
519 #define _(x) a->x = x;
520   foreach_copy_field;
521   if (ipv4_set) foreach_copy_ipv4
522   else          foreach_copy_ipv6
523 #undef _
524   
525   rv = vnet_vxlan_add_del_tunnel (a, &sw_if_index);
526
527   switch(rv)
528     {
529     case 0:
530       if (is_add)
531         vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main(), sw_if_index);
532       break;
533     case VNET_API_ERROR_INVALID_DECAP_NEXT:
534       return clib_error_return (0, "invalid decap-next...");
535
536     case VNET_API_ERROR_TUNNEL_EXIST:
537       return clib_error_return (0, "tunnel already exists...");
538
539     case VNET_API_ERROR_NO_SUCH_ENTRY:
540       return clib_error_return (0, "tunnel does not exist...");
541
542     default:
543       return clib_error_return 
544         (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
545     }
546
547   return 0;
548 }
549
550 /*?
551  * Add or delete a VXLAN Tunnel.
552  *
553  * VXLAN provides the features needed to allow L2 bridge domains (BDs)
554  * to span multiple servers. This is done by building an L2 overlay on
555  * top of an L3 network underlay using VXLAN tunnels.
556  *
557  * This makes it possible for servers to be co-located in the same data
558  * center or be separated geographically as long as they are reachable
559  * through the underlay L3 network.
560  *
561  * You can refer to this kind of L2 overlay bridge domain as a VXLAN
562  * (Virtual eXtensible VLAN) segment.
563  *
564  * @cliexpar
565  * Example of how to create a VXLAN Tunnel:
566  * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id 7 decap-next l2}
567  * Example of how to delete a VXLAN Tunnel:
568  * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
569  ?*/
570 /* *INDENT-OFF* */
571 VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
572   .path = "create vxlan tunnel",
573   .short_help = 
574   "create vxlan tunnel src <local-vtep-addr> dst <remote-vtep-addr> vni <nn>" 
575   " [encap-vrf-id <nn>] [decap-next [l2|ip4|ip6]] [del]",
576   .function = vxlan_add_del_tunnel_command_fn,
577 };
578 /* *INDENT-ON* */
579
580 static clib_error_t *
581 show_vxlan_tunnel_command_fn (vlib_main_t * vm,
582                                 unformat_input_t * input,
583                                 vlib_cli_command_t * cmd)
584 {
585   vxlan_main_t * vxm = &vxlan_main;
586   vxlan_tunnel_t * t;
587   
588   if (pool_elts (vxm->tunnels) == 0)
589     vlib_cli_output (vm, "No vxlan tunnels configured...");
590
591   pool_foreach (t, vxm->tunnels,
592   ({
593     vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
594   }));
595   
596   return 0;
597 }
598
599 /*?
600  * Display all the VXLAN Tunnel entries.
601  *
602  * @cliexpar
603  * Example of how to display the VXLAN Tunnel entries:
604  * @cliexstart{show vxlan tunnel}
605  * [0] 10.0.3.1 (src) 10.0.3.3 (dst) vni 13 encap_fib_index 1 decap_next l2
606  * @cliexend
607  ?*/
608 /* *INDENT-OFF* */
609 VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
610     .path = "show vxlan tunnel",
611     .short_help = "show vxlan tunnel",
612     .function = show_vxlan_tunnel_command_fn,
613 };
614 /* *INDENT-ON* */
615
616
617 clib_error_t *vxlan_init (vlib_main_t *vm)
618 {
619   vxlan_main_t * vxm = &vxlan_main;
620   
621   vxm->vnet_main = vnet_get_main();
622   vxm->vlib_main = vm;
623
624   /* initialize the ip6 hash */
625   vxm->vxlan6_tunnel_by_key = hash_create_mem(0,
626         sizeof(vxlan6_tunnel_key_t),
627         sizeof(uword));
628
629   udp_register_dst_port (vm, UDP_DST_PORT_vxlan, 
630                          vxlan4_input_node.index, /* is_ip4 */ 1);
631   udp_register_dst_port (vm, UDP_DST_PORT_vxlan6,
632                          vxlan6_input_node.index, /* is_ip4 */ 0);
633   return 0;
634 }
635
636 VLIB_INIT_FUNCTION(vxlan_init);