FD.io VPP  v16.09
Vector Packet Processing
vxlan.h
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 #ifndef included_vnet_vxlan_h
16 #define included_vnet_vxlan_h
17 
18 #include <vppinfra/error.h>
19 #include <vppinfra/hash.h>
20 #include <vnet/vnet.h>
21 #include <vnet/ip/ip.h>
22 #include <vnet/l2/l2_input.h>
23 #include <vnet/l2/l2_output.h>
24 #include <vnet/l2/l2_bd.h>
25 #include <vnet/ethernet/ethernet.h>
27 #include <vnet/ip/ip4_packet.h>
28 #include <vnet/ip/ip6_packet.h>
29 #include <vnet/ip/udp.h>
30 
31 typedef CLIB_PACKED (struct {
32  ip4_header_t ip4; /* 20 bytes */
33  udp_header_t udp; /* 8 bytes */
34  vxlan_header_t vxlan; /* 8 bytes */
35 }) ip4_vxlan_header_t;
36 
37 typedef CLIB_PACKED (struct {
38  ip6_header_t ip6; /* 40 bytes */
39  udp_header_t udp; /* 8 bytes */
40  vxlan_header_t vxlan; /* 8 bytes */
41 }) ip6_vxlan_header_t;
42 
43 typedef CLIB_PACKED(struct {
44  /*
45  * Key fields: ip src and vxlan vni on incoming VXLAN packet
46  * all fields in NET byte order
47  */
48  union {
49  struct {
50  u32 src;
51  u32 vni; /* shifted left 8 bits */
52  };
53  u64 as_u64;
54  };
55 }) vxlan4_tunnel_key_t;
56 
57 typedef CLIB_PACKED(struct {
58  /*
59  * Key fields: ip src and vxlan vni on incoming VXLAN packet
60  * all fields in NET byte order
61  */
62  ip6_address_t src;
63  u32 vni; /* shifted left 8 bits */
64 }) vxlan6_tunnel_key_t;
65 
66 typedef struct {
67  /* Rewrite string. $$$$ embed vnet_rewrite header */
69 
70  /* tunnel src and dst addresses */
71  ip46_address_t src;
72  ip46_address_t dst;
73 
74  /* vxlan VNI in HOST byte order */
76 
77  /* decap next index */
79 
80  /* L3 FIB index and L2 BD ID */
81  u16 encap_fib_index; /* tunnel partner IP lookup here */
82 
83  /* vnet intfc hw/sw_if_index */
86 
87  union { /* storage for the hash key */
88  vxlan4_tunnel_key_t *key4;
89  vxlan6_tunnel_key_t *key6;
90  };
91 
92  /* flags */
95 
96 /* Flags for vxlan_tunnel_t.flags */
97 #define VXLAN_TUNNEL_IS_IPV4 1
98 
99 #define foreach_vxlan_input_next \
100 _(DROP, "error-drop") \
101 _(L2_INPUT, "l2-input") \
102 _(IP4_INPUT, "ip4-input") \
103 _(IP6_INPUT, "ip6-input")
104 
105 typedef enum {
106 #define _(s,n) VXLAN_INPUT_NEXT_##s,
108 #undef _
111 
112 typedef enum {
113 #define vxlan_error(n,s) VXLAN_ERROR_##n,
115 #undef vxlan_error
116  VXLAN_N_ERROR,
118 
119 typedef struct {
120  /* vector of encap tunnel instances */
122 
123  /* lookup tunnel by key */
124  uword * vxlan4_tunnel_by_key; /* keyed on ipv4.dst + vni */
125  uword * vxlan6_tunnel_by_key; /* keyed on ipv6.dst + vni */
126 
127  /* Free vlib hw_if_indices */
130  /* Mapping from sw_if_index to tunnel index */
132 
133  /* convenience */
136 } vxlan_main_t;
137 
139 
143 
144 u8 * format_vxlan_encap_trace (u8 * s, va_list * args);
145 
146 typedef struct {
148 
149  /* we normally use is_ip4, but since this adds to the
150  * structure, this seems less of abreaking change */
152  ip46_address_t src, dst;
157 
159 (vnet_vxlan_add_del_tunnel_args_t *a, u32 * sw_if_indexp);
160 
161 #endif /* included_vnet_vxlan_h */
int vnet_vxlan_add_del_tunnel(vnet_vxlan_add_del_tunnel_args_t *a, u32 *sw_if_indexp)
Definition: vxlan.c:213
a
Definition: bitmap.h:516
u64 as_u64
Definition: bihash_doc.h:63
#define foreach_vxlan_input_next
Definition: vxlan.h:99
ip46_address_t dst
Definition: vxlan.h:72
struct _vlib_node_registration vlib_node_registration_t
vlib_node_registration_t vxlan_encap_node
(constructor) VLIB_REGISTER_NODE (vxlan_encap_node)
Definition: encap.c:544
vlib_node_registration_t vxlan4_input_node
(constructor) VLIB_REGISTER_NODE (vxlan4_input_node)
Definition: decap.c:22
vxlan6_tunnel_key_t * key6
Definition: vxlan.h:89
u8 * format_vxlan_encap_trace(u8 *s, va_list *args)
Definition: encap.c:51
vnet_main_t * vnet_main
Definition: vxlan.h:135
vlib_main_t * vlib_main
Definition: vxlan.h:134
unsigned long u64
Definition: types.h:89
u8 * rewrite
Definition: vxlan.h:68
vlib_node_registration_t vxlan6_input_node
(constructor) VLIB_REGISTER_NODE (vxlan6_input_node)
Definition: decap.c:23
uword * vxlan4_tunnel_by_key
Definition: vxlan.h:124
u16 encap_fib_index
Definition: vxlan.h:81
u32 decap_next_index
Definition: vxlan.h:78
vxlan_input_next_t
Definition: vxlan.h:105
unsigned int u32
Definition: types.h:88
uword * vxlan6_tunnel_by_key
Definition: vxlan.h:125
u32 sw_if_index
Definition: vxlan.h:85
u64 uword
Definition: types.h:112
unsigned short u16
Definition: types.h:57
unsigned char u8
Definition: types.h:56
u16 hw_if_index
Definition: vxlan.h:84
u32 flags
Definition: vxlan.h:93
u32 * tunnel_index_by_sw_if_index
Definition: vxlan.h:131
typedef CLIB_PACKED(struct{ip4_header_t ip4;udp_header_t udp;vxlan_header_t vxlan;}) ip4_vxlan_header_t
vxlan4_tunnel_key_t * key4
Definition: vxlan.h:88
vxlan_input_error_t
Definition: vxlan.h:112
vxlan_tunnel_t * tunnels
Definition: vxlan.h:121
u32 * free_vxlan_tunnel_hw_if_indices
Definition: vxlan.h:128
ip46_address_t src
Definition: vxlan.h:71
vxlan_main_t vxlan_main
Definition: vxlan.h:138