ikev2: add support for custom ipsec-over-udp port
[vpp.git] / src / plugins / gtpu / gtpu.h
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;
61   u16 sequence;
62   u8 pdu_number;
63   u8 next_ext_type;
64 } gtpu_header_t;
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 */
86 }) ip4_gtpu_header_t;
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 */
95 }) ip6_gtpu_header_t;
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 */
133   u8 *rewrite;
134
135   /* FIB DPO for IP forwarding of gtpu encap packet */
136   dpo_id_t next_dpo;
137
138   /* gtpu teid in HOST byte order */
139   u32 teid;
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) */
146   u32 mcast_sw_if_index;
147
148   /* decap next index */
149   u32 decap_next_index;
150
151   /* The FIB index for src/dst addresses */
152   u32 encap_fib_index;
153
154   /* vnet intfc index */
155   u32 sw_if_index;
156   u32 hw_if_index;
157
158   /**
159    * Linkage into the FIB object graph
160    */
161   fib_node_t node;
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    */
167   fib_node_index_t fib_entry_index;
168   adj_index_t mcast_adj_index;
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    */
176   u32 sibling_index;
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,
190   foreach_gtpu_input_next
191 #undef _
192     GTPU_INPUT_N_NEXT,
193 } gtpu_input_next_t;
194
195 typedef enum
196 {
197 #define gtpu_error(n,s) GTPU_ERROR_##n,
198 #include <gtpu/gtpu_error.def>
199 #undef gtpu_error
200   GTPU_N_ERROR,
201 } gtpu_input_error_t;
202
203 typedef struct
204 {
205   /* vector of encap tunnel instances */
206   gtpu_tunnel_t *tunnels;
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 */
214   vtep_table_t vtep_table;
215
216   /* mcast shared info */
217   uword *mcast_shared;          /* keyed on mcast ip46 addr */
218
219   /* Free vlib hw_if_indices */
220   u32 *free_gtpu_tunnel_hw_if_indices;
221
222   /* Mapping from sw_if_index to tunnel index */
223   u32 *tunnel_index_by_sw_if_index;
224
225   /**
226    * Node type for registering to fib changes.
227    */
228   fib_node_type_t fib_node_type;
229
230   /* API message ID base */
231   u16 msg_id_base;
232
233   /* convenience */
234   vlib_main_t *vlib_main;
235   vnet_main_t *vnet_main;
236   u32 flow_id_start;
237 } gtpu_main_t;
238
239 extern gtpu_main_t gtpu_main;
240
241 extern vlib_node_registration_t gtpu4_input_node;
242 extern vlib_node_registration_t gtpu6_input_node;
243 extern vlib_node_registration_t gtpu4_encap_node;
244 extern vlib_node_registration_t gtpu6_encap_node;
245 extern vlib_node_registration_t gtpu4_flow_input_node;
246
247 u8 *format_gtpu_encap_trace (u8 * s, va_list * args);
248
249 typedef struct
250 {
251   u8 is_add;
252   ip46_address_t src, dst;
253   u32 mcast_sw_if_index;
254   u32 encap_fib_index;
255   u32 decap_next_index;
256   u32 teid;
257 } vnet_gtpu_add_del_tunnel_args_t;
258
259 int vnet_gtpu_add_del_tunnel
260   (vnet_gtpu_add_del_tunnel_args_t * a, u32 * sw_if_indexp);
261
262 typedef struct
263 {
264   u32 tunnel_index;
265   u32 teid;
266 } gtpu_encap_trace_t;
267
268 void vnet_int_gtpu_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable);
269 u32 vnet_gtpu_get_tunnel_index (u32 sw_if_index);
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  */