FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
gtpu.h
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Intel and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #ifndef included_vnet_gtpu_h
19 #define included_vnet_gtpu_h
20 
21 #include <vppinfra/lock.h>
22 #include <vppinfra/error.h>
23 #include <vppinfra/hash.h>
24 #include <vnet/vnet.h>
25 #include <vnet/ip/ip.h>
26 #include <vnet/ip/vtep.h>
27 #include <vnet/l2/l2_input.h>
28 #include <vnet/l2/l2_output.h>
29 #include <vnet/l2/l2_bd.h>
30 #include <vnet/ethernet/ethernet.h>
31 #include <vnet/ip/ip4_packet.h>
32 #include <vnet/ip/ip6_packet.h>
33 #include <vnet/udp/udp.h>
34 #include <vnet/dpo/dpo.h>
35 #include <vnet/adj/adj_types.h>
36 #include <vnet/fib/fib_table.h>
37 
38 /**
39  * Bits
40  * Octets 8 7 6 5 4 3 2 1
41  * 1 Version PT (*) E S PN
42  * 2 Message Type
43  * 3 Length (1st Octet)
44  * 4 Length (2nd Octet)
45  * 5 Tunnel Endpoint Identifier (1st Octet)
46  * 6 Tunnel Endpoint Identifier (2nd Octet)
47  * 7 Tunnel Endpoint Identifier (3rd Octet)
48  * 8 Tunnel Endpoint Identifier (4th Octet)
49  * 9 Sequence Number (1st Octet)1) 4)
50  * 10 Sequence Number (2nd Octet)1) 4)
51  * 11 N-PDU Number2) 4)
52  * 12 Next Extension Header Type3) 4)
53 **/
54 
55 typedef struct
56 {
57  u8 ver_flags;
58  u8 type;
59  u16 length; /* length in octets of the data following the fixed part of the header */
60  u32 teid;
65 
66 #define GTPU_V1_HDR_LEN 8
67 
68 #define GTPU_VER_MASK (7<<5)
69 #define GTPU_PT_BIT (1<<4)
70 #define GTPU_E_BIT (1<<2)
71 #define GTPU_S_BIT (1<<1)
72 #define GTPU_PN_BIT (1<<0)
73 #define GTPU_E_S_PN_BIT (7<<0)
74 
75 #define GTPU_V1_VER (1<<5)
76 
77 #define GTPU_PT_GTP (1<<4)
78 #define GTPU_TYPE_GTPU 255
79 
80 /* *INDENT-OFF* */
81 typedef CLIB_PACKED(struct
82 {
83  ip4_header_t ip4; /* 20 bytes */
84  udp_header_t udp; /* 8 bytes */
85  gtpu_header_t gtpu; /* 12 bytes */
87 /* *INDENT-ON* */
88 
89 /* *INDENT-OFF* */
90 typedef CLIB_PACKED(struct
91 {
92  ip6_header_t ip6; /* 40 bytes */
93  udp_header_t udp; /* 8 bytes */
94  gtpu_header_t gtpu; /* 8 bytes */
96 /* *INDENT-ON* */
97 
98 /* *INDENT-OFF* */
99 typedef CLIB_PACKED
100 (struct {
101  /*
102  * Key fields: ip src and gtpu teid on incoming gtpu packet
103  * all fields in NET byte order
104  */
105  union {
106  struct {
107  u32 src;
108  u32 teid;
109  };
110  u64 as_u64;
111  };
112 }) gtpu4_tunnel_key_t;
113 /* *INDENT-ON* */
114 
115 /* *INDENT-OFF* */
116 typedef CLIB_PACKED
117 (struct {
118  /*
119  * Key fields: ip src and gtpu teid on incoming gtpu packet
120  * all fields in NET byte order
121  */
122  ip6_address_t src;
123  u32 teid;
124 }) gtpu6_tunnel_key_t;
125 /* *INDENT-ON* */
126 
127 typedef struct
128 {
129  /* Required for pool_get_aligned */
130  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
131 
132  /* Rewrite string */
134 
135  /* FIB DPO for IP forwarding of gtpu encap packet */
137 
138  /* gtpu teid in HOST byte order */
140 
141  /* tunnel src and dst addresses */
142  ip46_address_t src;
143  ip46_address_t dst;
144 
145  /* mcast packet output intf index (used only if dst is mcast) */
147 
148  /* decap next index */
150 
151  /* The FIB index for src/dst addresses */
153 
154  /* vnet intfc index */
157 
158  /**
159  * Linkage into the FIB object graph
160  */
162 
163  /*
164  * The FIB entry for (depending on gtpu tunnel is unicast or mcast)
165  * sending unicast gtpu encap packets or receiving mcast gtpu packets
166  */
169 
170  /**
171  * The tunnel is a child of the FIB entry for its destination. This is
172  * so it receives updates when the forwarding information for that entry
173  * changes.
174  * The tunnels sibling index on the FIB entry's dependency list.
175  */
177 
178  u32 flow_index; /* infra flow index */
179 } gtpu_tunnel_t;
180 
181 #define foreach_gtpu_input_next \
182 _(DROP, "error-drop") \
183 _(L2_INPUT, "l2-input") \
184 _(IP4_INPUT, "ip4-input") \
185 _(IP6_INPUT, "ip6-input" )
186 
187 typedef enum
188 {
189 #define _(s,n) GTPU_INPUT_NEXT_##s,
191 #undef _
194 
195 typedef enum
196 {
197 #define gtpu_error(n,s) GTPU_ERROR_##n,
198 #include <gtpu/gtpu_error.def>
199 #undef gtpu_error
202 
203 typedef struct
204 {
205  /* vector of encap tunnel instances */
207 
208  /* lookup tunnel by key */
209  uword *gtpu4_tunnel_by_key; /* keyed on ipv4.dst + teid */
210  uword *gtpu6_tunnel_by_key; /* keyed on ipv6.dst + teid */
211 
212  /* local VTEP IPs ref count used by gtpu-bypass node to check if
213  received gtpu packet DIP matches any local VTEP address */
215 
216  /* mcast shared info */
217  uword *mcast_shared; /* keyed on mcast ip46 addr */
218 
219  /* Free vlib hw_if_indices */
221 
222  /* Mapping from sw_if_index to tunnel index */
224 
225  /**
226  * Node type for registering to fib changes.
227  */
229 
230  /* API message ID base */
232 
233  /* convenience */
237 } gtpu_main_t;
238 
239 extern gtpu_main_t gtpu_main;
240 
246 
247 u8 *format_gtpu_encap_trace (u8 * s, va_list * args);
248 
249 typedef struct
250 {
252  ip46_address_t src, dst;
258 
260  (vnet_gtpu_add_del_tunnel_args_t * a, u32 * sw_if_indexp);
261 
262 typedef struct
263 {
267 
270 int vnet_gtpu_add_del_rx_flow (u32 hw_if_index, u32 t_imdex, int is_add);
271 
272 #endif /* included_vnet_gtpu_h */
273 
274 
275 /*
276  * fd.io coding-style-patch-verification: ON
277  *
278  * Local Variables:
279  * eval: (c-set-style "gnu")
280  * End:
281  */
vlib_main_t * vlib_main
Definition: gtpu.h:234
vlib_node_registration_t gtpu4_encap_node
(constructor) VLIB_REGISTER_NODE (gtpu4_encap_node)
Definition: gtpu_encap.c:687
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
vnet_main_t * vnet_main
Definition: gtpu.h:235
a
Definition: bitmap.h:538
u32 teid
Definition: gtpu.h:139
u64 as_u64
Definition: bihash_doc.h:63
unsigned long u64
Definition: types.h:89
u32 * tunnel_index_by_sw_if_index
Definition: gtpu.h:223
fib_node_type_t fib_node_type
Node type for registering to fib changes.
Definition: gtpu.h:228
void vnet_int_gtpu_bypass_mode(u32 sw_if_index, u8 is_ip6, u8 is_enable)
Definition: gtpu.c:914
vl_api_address_t src
Definition: gre.api:54
vlib_node_registration_t gtpu4_flow_input_node
(constructor) VLIB_REGISTER_NODE (gtpu4_flow_input_node)
Definition: gtpu_decap.c:1723
gtpu_input_next_t
Definition: gtpu.h:187
unsigned char u8
Definition: types.h:56
dpo_id_t next_dpo
Definition: gtpu.h:136
vl_api_interface_index_t sw_if_index
Definition: gre.api:53
ip46_address_t src
Definition: gtpu.h:142
vl_api_ip6_address_t ip6
Definition: one.api:424
u16 msg_id_base
Definition: gtpu.h:231
unsigned int u32
Definition: types.h:88
u16 sequence
Definition: gtpu.h:61
bool is_ip6
Definition: ip.api:43
vl_api_fib_path_type_t type
Definition: fib_types.api:123
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
u32 decap_next_index
Definition: gtpu.h:149
unsigned short u16
Definition: types.h:57
u32 flow_id_start
Definition: gtpu.h:236
gtpu_input_error_t
Definition: gtpu.h:195
vl_api_ip4_address_t ip4
Definition: one.api:376
adj_index_t mcast_adj_index
Definition: gtpu.h:168
An node in the FIB graph.
Definition: fib_node.h:295
vl_api_address_t dst
Definition: gre.api:55
ip46_address_t dst
Definition: gtpu.h:143
int vnet_gtpu_add_del_tunnel(vnet_gtpu_add_del_tunnel_args_t *a, u32 *sw_if_indexp)
Definition: gtpu.c:351
gtpu_main_t gtpu_main
Definition: gtpu.c:36
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
u32 sw_if_index
Definition: gtpu.h:155
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
u32 sibling_index
The tunnel is a child of the FIB entry for its destination.
Definition: gtpu.h:176
#define foreach_gtpu_input_next
Definition: gtpu.h:181
u32 * free_gtpu_tunnel_hw_if_indices
Definition: gtpu.h:220
fib_node_index_t fib_entry_index
Definition: gtpu.h:167
u8 * format_gtpu_encap_trace(u8 *s, va_list *args)
Definition: gtpu.c:52
fib_node_t node
Linkage into the FIB object graph.
Definition: gtpu.h:161
u32 hw_if_index
Definition: gtpu.h:156
u32 encap_fib_index
Definition: gtpu.h:152
u8 pdu_number
Definition: gtpu.h:62
vtep_table_t vtep_table
Definition: gtpu.h:214
uword * gtpu4_tunnel_by_key
Definition: gtpu.h:209
u32 tunnel_index
Definition: gtpu.h:264
vlib_node_registration_t gtpu6_input_node
(constructor) VLIB_REGISTER_NODE (gtpu6_input_node)
Definition: gtpu_decap.c:768
struct _vlib_node_registration vlib_node_registration_t
uword * mcast_shared
Definition: gtpu.h:217
u32 flow_index
Definition: gtpu.h:178
uword * gtpu6_tunnel_by_key
Definition: gtpu.h:210
u64 uword
Definition: types.h:112
vlib_node_registration_t gtpu6_encap_node
(constructor) VLIB_REGISTER_NODE (gtpu6_encap_node)
Definition: gtpu_encap.c:702
Bits Octets 8 7 6 5 4 3 2 1 1 Version PT (*) E S PN 2 Message Type 3 Length (1st Octet) 4 Length...
Definition: mobile.h:90
u8 next_ext_type
Definition: gtpu.h:63
enum fib_node_type_t_ fib_node_type_t
The types of nodes in a FIB graph.
gtpu_tunnel_t * tunnels
Definition: gtpu.h:206
u8 * rewrite
Definition: gtpu.h:133
int vnet_gtpu_add_del_rx_flow(u32 hw_if_index, u32 t_imdex, int is_add)
Definition: gtpu.c:1083
typedef CLIB_PACKED(struct { ip4_header_t ip4;udp_header_t udp;gtpu_header_t gtpu;}) ip4_gtpu_header_t
vlib_node_registration_t gtpu4_input_node
(constructor) VLIB_REGISTER_NODE (gtpu4_input_node)
Definition: gtpu_decap.c:748
u32 mcast_sw_if_index
Definition: gtpu.h:146
u32 vnet_gtpu_get_tunnel_index(u32 sw_if_index)
Definition: gtpu.c:1122