FD.io VPP  v16.12-rc0-308-g931be3a
Vector Packet Processing
vxlan.c
Go to the documentation of this file.
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 
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,
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 
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 *
89 {
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 
137 {
138  u8 *rw = 0;
139  ip4_header_t * ip0;
140  ip4_vxlan_header_t * h0;
141  int len = sizeof (*h0);
142 
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 
170 {
171  u8 *rw = 0;
172  ip6_header_t * ip0;
173  ip6_vxlan_header_t * h0;
174  int len = sizeof (*h0);
175 
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 
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;
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 
241  return VNET_API_ERROR_INVALID_DECAP_NEXT;
242 
244  memset (t, 0, sizeof (*t));
245 
246  /* copy from arg structure */
247 #define _(x) t->x = a->x;
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 
284  {
286  hw_if_index = vxm->free_vxlan_tunnel_hw_if_indices
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;
302  (&im->sw_if_counters[VNET_INTERFACE_COUNTER_DROP], sw_if_index);
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);
312  }
313 
314  t->hw_if_index = hw_if_index;
315  t->sw_if_index = sw_if_index = hi->sw_if_index;
316 
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,
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);
353 
355 
356  if (!a->is_ip6)
357  {
358  hash_unset (vxm->vxlan4_tunnel_by_key, key4.as_u64);
360  }
361  else
362  {
364  clib_mem_free (t->key6);
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 
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 
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 *
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;
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]",
577 };
578 /* *INDENT-ON* */
579 
580 static clib_error_t *
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 
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 */
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 
format_function_t format_ip46_address
Definition: format.h:61
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:396
vmrglw vmrglh hi
#define hash_set(h, key, value)
Definition: hash.h:254
l2_input_config_t * configs
Definition: l2_input.h:66
uword unformat(unformat_input_t *i, char *fmt,...)
Definition: unformat.c:966
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:522
#define hash_unset(h, key)
Definition: hash.h:260
ip4_address_t src_address
Definition: ip4_packet.h:138
vnet_interface_main_t interface_main
Definition: vnet.h:72
clib_error_t * vxlan_init(vlib_main_t *vm)
Definition: vxlan.c:617
vlib_node_registration_t vxlan4_input_node
(constructor) VLIB_REGISTER_NODE (vxlan4_input_node)
Definition: decap.c:22
u64 as_u64[2]
Definition: ip6_packet.h:50
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
ip46_address_t dst
Definition: vxlan.h:72
static u32 fib4_index_from_fib_id(u32 fib_id)
Definition: vxlan.c:377
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:482
vxlan6_tunnel_key_t * key6
Definition: vxlan.h:89
#define hash_set_mem(h, key, value)
Definition: hash.h:274
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:104
static u32 fib6_index_from_fib_id(u32 fib_id)
Definition: vxlan.c:389
#define VNET_HW_INTERFACE_FLAG_LINK_UP
Definition: interface.h:348
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:407
ip6_address_t src_address
Definition: ip6_packet.h:300
format_function_t format_vnet_sw_if_index_name
static clib_error_t * show_vxlan_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: vxlan.c:581
#define foreach_copy_ipv6
Definition: vxlan.c:129
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
vnet_main_t * vnet_main
Definition: vxlan.h:135
VNET_DEVICE_CLASS(vxlan_device_class, static)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:348
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
ip4_address_t dst_address
Definition: ip4_packet.h:138
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:577
vlib_main_t * vlib_main
Definition: vxlan.h:134
static void unformat_free(unformat_input_t *i)
Definition: format.h:161
#define clib_warning(format, args...)
Definition: error.h:59
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:977
static clib_error_t * vxlan_add_del_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: vxlan.c:422
u32 vnet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u32 hw_class_index, u32 hw_instance)
Definition: interface.c:660
u32 set_int_l2_mode(vlib_main_t *vm, vnet_main_t *vnet_main, u32 mode, u32 sw_if_index, u32 bd_index, u32 bvi, u32 shg, u32 xc_sw_if_index)
Set the subinterface to run in l2 or l3 mode.
Definition: l2_input.c:555
unformat_function_t unformat_ip4_address
Definition: format.h:75
#define hash_create_mem(elts, key_bytes, value_bytes)
Definition: hash.h:637
#define hash_get(h, key)
Definition: hash.h:248
u8 * rewrite
Definition: vxlan.h:68
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:369
static void vlib_zero_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
Clear a combined counter Clears the set of per-thread u16 counters, and the shared vlib_counter_t...
Definition: counter.h:321
#define hash_unset_mem(h, key)
Definition: hash.h:280
void ip4_sw_interface_enable_disable(u32 sw_if_index, u32 is_enable)
Definition: ip4_forward.c:709
uword * fib_index_by_table_id
Hash table mapping table id to fib index.
Definition: ip4.h:111
static clib_error_t * vxlan_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: vxlan.c:88
uword * vxlan4_tunnel_by_key
Definition: vxlan.h:124
#define foreach_copy_ipv4
Definition: vxlan.c:124
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:214
vxlan_main_t vxlan_main
Definition: vxlan.c:35
vlib_simple_counter_main_t * sw_if_counters
Definition: interface.h:576
vlib_node_registration_t vxlan6_input_node
(constructor) VLIB_REGISTER_NODE (vxlan6_input_node)
Definition: decap.c:23
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:575
u8 * format_vxlan_encap_trace(u8 *s, va_list *args)
Definition: encap.c:51
unformat_function_t unformat_ip6_address
Definition: format.h:93
uword * fib_index_by_table_id
Definition: ip6.h:148
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
Definition: pool.h:169
int vnet_vxlan_add_del_tunnel(vnet_vxlan_add_del_tunnel_args_t *a, u32 *sw_if_indexp)
Definition: vxlan.c:203
u16 encap_fib_index
Definition: vxlan.h:81
u16 n_vectors
Definition: node.h:344
static uword dummy_interface_tx(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: vxlan.c:79
static int vxlan4_rewrite(vxlan_tunnel_t *t)
Definition: vxlan.c:136
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:300
#define clib_memcpy(a, b, c)
Definition: string.h:64
static void vnet_interface_counter_unlock(vnet_interface_main_t *im)
Definition: interface.h:600
static void vnet_set_vni_and_flags(vxlan_header_t *h, u32 vni)
Definition: vxlan_packet.h:60
static uword unformat_decap_next(unformat_input_t *input, va_list *args)
Definition: vxlan.c:401
u32 decap_next_index
Definition: vxlan.h:78
u8 * default_build_rewrite(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
Return a complete, zero-length (aka dummy) rewrite.
Definition: interface.c:1350
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
static u8 * format_vxlan_header_with_length(u8 *s, va_list *args)
Definition: vxlan.c:106
static void vnet_interface_counter_lock(vnet_interface_main_t *im)
Definition: interface.h:592
#define VNET_SW_INTERFACE_FLAG_ADMIN_UP
Definition: interface.h:490
unsigned int u32
Definition: types.h:88
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
ip6_main_t ip6_main
Definition: ip6_forward.c:2655
IPv4 main type.
Definition: ip4.h:95
static void clib_mem_free(void *p)
Definition: mem.h:176
uword * vxlan6_tunnel_by_key
Definition: vxlan.h:125
u32 sw_if_index
Definition: vxlan.h:85
vlib_node_registration_t vxlan_encap_node
(constructor) VLIB_REGISTER_NODE (vxlan_encap_node)
Definition: encap.c:544
static void vlib_zero_simple_counter(vlib_simple_counter_main_t *cm, u32 index)
Clear a simple counter Clears the set of per-thread u16 counters, and the u64 counter.
Definition: counter.h:143
static void * clib_mem_alloc(uword size)
Definition: mem.h:109
u64 uword
Definition: types.h:112
#define foreach_copy_field
Definition: vxlan.c:119
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:287
static int vxlan6_rewrite(vxlan_tunnel_t *t)
Definition: vxlan.c:169
l2input_main_t l2input_main
Definition: l2_input.c:87
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
u16 hw_if_index
Definition: vxlan.h:84
u32 flags
Definition: vxlan.h:93
#define VXLAN_TUNNEL_IS_IPV4
Definition: vxlan.h:97
u32 * tunnel_index_by_sw_if_index
Definition: vxlan.h:131
#define hash_get_mem(h, key)
Definition: hash.h:268
static u8 * format_decap_next(u8 *s, va_list *args)
Definition: vxlan.c:37
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:169
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:418
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1060
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
Definition: interface.c:530
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Definition: udp_local.c:458
vxlan4_tunnel_key_t * key4
Definition: vxlan.h:88
#define clib_error_return(e, args...)
Definition: error.h:111
VNET_HW_INTERFACE_CLASS(vxlan_hw_class)
u8 ip_version_and_header_length
Definition: ip4_packet.h:108
struct _unformat_input_t unformat_input_t
u32 flags
Definition: vhost-user.h:75
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:445
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
unformat_function_t unformat_line_input
Definition: format.h:281
u32 * fib_index_by_sw_if_index
Definition: ip6.h:141
static u16 ip4_header_checksum(ip4_header_t *i)
Definition: ip4_packet.h:194
vxlan_tunnel_t * tunnels
Definition: vxlan.h:121
u32 * free_vxlan_tunnel_hw_if_indices
Definition: vxlan.h:128
void ip6_sw_interface_enable_disable(u32 sw_if_index, u32 is_enable)
Definition: ip6_forward.c:412
ip46_address_t src
Definition: vxlan.h:71
u8 * format_vxlan_tunnel(u8 *s, va_list *args)
Definition: vxlan.c:57
static u8 * format_vxlan_name(u8 *s, va_list *args)
Definition: vxlan.c:73
ip6_address_t dst_address
Definition: ip6_packet.h:300
#define MODE_L3
Definition: l2_input.h:218
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:109