FD.io VPP  v16.06
Vector Packet Processing
vxlan_gpe.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_gpe_h
16 #define included_vnet_vxlan_gpe_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/ethernet/ethernet.h>
25 #include <vnet/ip/ip4_packet.h>
26 #include <vnet/ip/udp.h>
27 
28 
29 typedef CLIB_PACKED (struct {
30  ip4_header_t ip4; /* 20 bytes */
31  udp_header_t udp; /* 8 bytes */
32  vxlan_gpe_header_t vxlan; /* 8 bytes */
33 }) ip4_vxlan_gpe_header_t;
34 
35 typedef CLIB_PACKED(struct {
36  /*
37  * Key fields: local remote, vni
38  * all fields in NET byte order
39  */
40  union {
41  struct {
42  u32 local;
43  u32 remote;
44  u32 vni; /* shifted 8 bits */
45  u32 pad;
46  };
47  u64 as_u64[2];
48  };
49 }) vxlan_gpe_tunnel_key_t;
50 
51 typedef struct {
52  /* Rewrite string. $$$$ embed vnet_rewrite header */
54 
55  /* encapsulated protocol */
57 
58  /* tunnel src and dst addresses */
61 
62  /* FIB indices */
63  u32 encap_fib_index; /* tunnel partner lookup here */
64  u32 decap_fib_index; /* inner IP lookup here */
65 
66  /* vxlan VNI in HOST byte order, shifted left 8 bits */
68 
69  /* vnet intfc hw/sw_if_index */
72 
74 
75 #define foreach_vxlan_gpe_input_next \
76 _(DROP, "error-drop") \
77 _(IP4_INPUT, "ip4-input") \
78 _(IP6_INPUT, "ip6-input") \
79 _(ETHERNET_INPUT, "ethernet-input")
80 
81 typedef enum {
82 #define _(s,n) VXLAN_GPE_INPUT_NEXT_##s,
84 #undef _
87 
88 typedef enum {
89 #define vxlan_gpe_error(n,s) VXLAN_GPE_ERROR_##n,
91 #undef vxlan_gpe_error
94 
95 typedef struct {
96  /* vector of encap tunnel instances */
98 
99  /* lookup tunnel by key */
101 
102  /* Free vlib hw_if_indices */
104 
105  /* show device instance by real device instance */
107 
108  /* convenience */
112 
114 
117 
118 u8 * format_vxlan_gpe_encap_trace (u8 * s, va_list * args);
119 
120 typedef struct {
129 
130 
132 (vnet_vxlan_gpe_add_del_tunnel_args_t *a, u32 * sw_if_indexp);
133 
134 
135 
136 
137 
138 #endif /* included_vnet_vxlan_gpe_h */
vlib_node_registration_t vxlan_gpe_encap_node
(constructor) VLIB_REGISTER_NODE (vxlan_gpe_encap_node)
Definition: encap.c:408
a
Definition: bitmap.h:393
u8 * format_vxlan_gpe_encap_trace(u8 *s, va_list *args)
Definition: encap.c:50
struct _vlib_node_registration vlib_node_registration_t
vnet_main_t * vnet_main
Definition: vxlan_gpe.h:110
vxlan_gpe_main_t vxlan_gpe_main
Definition: vxlan_gpe.h:113
typedef CLIB_PACKED(struct{ip4_header_t ip4;udp_header_t udp;vxlan_gpe_header_t vxlan;}) ip4_vxlan_gpe_header_t
ip4_address_t local
Definition: vxlan_gpe.h:59
ip4_address_t remote
Definition: vxlan_gpe.h:60
unsigned long u64
Definition: types.h:89
int vnet_vxlan_gpe_add_del_tunnel(vnet_vxlan_gpe_add_del_tunnel_args_t *a, u32 *sw_if_indexp)
Definition: vxlan_gpe.c:180
vlib_main_t * vlib_main
Definition: vxlan_gpe.h:109
vxlan_gpe_input_error_t
Definition: vxlan_gpe.h:88
#define foreach_vxlan_gpe_input_next
Definition: vxlan_gpe.h:75
unsigned int u32
Definition: types.h:88
vxlan_gpe_tunnel_t * tunnels
Definition: vxlan_gpe.h:97
u64 uword
Definition: types.h:112
unsigned char u8
Definition: types.h:56
uword * vxlan_gpe_tunnel_by_key
Definition: vxlan_gpe.h:100
vxlan_gpe_input_next_t
Definition: vxlan_gpe.h:81
u32 * dev_inst_by_real
Definition: vxlan_gpe.h:106
u32 * free_vxlan_gpe_tunnel_hw_if_indices
Definition: vxlan_gpe.h:103
vlib_node_registration_t vxlan_gpe_input_node
(constructor) VLIB_REGISTER_NODE (vxlan_gpe_input_node)
Definition: decap.c:429