cf0f391fede43de79cc601965d494ac895c6c8a0
[vpp.git] / vnet / vnet / ipsec-gre / ipsec_gre.c
1 /*
2  * Copyright (c) 2016 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 /**
16  * @file
17  * @brief L2-GRE over IPSec packet processing.
18  *
19  * Add GRE header to thr packet and send it to the esp-encrypt node.
20 */
21
22 #include <vnet/vnet.h>
23 #include <vnet/ipsec-gre/ipsec_gre.h>
24
25 ipsec_gre_main_t ipsec_gre_main;
26
27 /**
28  * @brief IPv4 and GRE header union.
29  *
30 */
31 typedef struct
32 {
33   union
34   {
35     ip4_and_gre_header_t ip4_and_gre;
36     u64 as_u64[3];
37   };
38 } ip4_and_gre_union_t;
39
40 /**
41  * @brief Packet trace.
42  *
43 */
44 typedef struct
45 {
46   u32 tunnel_id; /**< Tunnel-id / index in tunnel vector */
47
48   u32 length; /**< pkt length */
49
50   ip4_address_t src; /**< tunnel src IPv4 address */
51   ip4_address_t dst; /**< tunnel dst IPv4 address */
52
53   u32 sa_id; /**< tunnel IPSec SA id */
54 } ipsec_gre_tx_trace_t;
55
56 u8 *
57 format_ipsec_gre_tx_trace (u8 * s, va_list * args)
58 {
59   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
60   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
61   ipsec_gre_tx_trace_t *t = va_arg (*args, ipsec_gre_tx_trace_t *);
62
63   s = format (s, "GRE: tunnel %d len %d src %U dst %U sa-id %d",
64               t->tunnel_id, clib_net_to_host_u16 (t->length),
65               format_ip4_address, &t->src.as_u8,
66               format_ip4_address, &t->dst.as_u8, t->sa_id);
67   return s;
68 }
69
70 /**
71  * @brief IPSec-GRE tunnel interface tx function.
72  *
73  * Add GRE header to the packet.
74  *
75  * @param vm vlib_main_t corresponding to the current thread.
76  * @param node vlib_node_runtime_t data for this node.
77  * @param frame vlib_frame_t whose contents should be dispatched.
78  *
79  * @par Graph mechanics: buffer metadata, next index usage
80  *
81  * <em>Uses:</em>
82  * - <code>node->runtime_data</code>
83  *     - Match tunnel by <code>rd->dev_instance</code> in IPSec-GRE tunnels
84  *       pool.
85  *
86  * <em>Sets:</em>
87  * - <code>vnet_buffer(b)->output_features.ipsec_sad_index</code>
88  *     - Set IPSec Security Association for packet encryption.
89  * - <code>vnet_buffer(b)->sw_if_index[VLIB_TX]</code>
90  *     - Reset output sw_if_index.
91  *
92  * <em>Nexd Index:</em>
93  * - Dispatches the packet to the esp-encrypt node.
94 */
95 static uword
96 ipsec_gre_interface_tx (vlib_main_t * vm,
97                         vlib_node_runtime_t * node, vlib_frame_t * frame)
98 {
99   ipsec_gre_main_t *igm = &ipsec_gre_main;
100   u32 next_index;
101   u32 *from, *to_next, n_left_from, n_left_to_next;
102   vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
103   ipsec_gre_tunnel_t *t = pool_elt_at_index (igm->tunnels, rd->dev_instance);
104
105   /* Vector of buffer / pkt indices we're supposed to process */
106   from = vlib_frame_vector_args (frame);
107
108   /* Number of buffers / pkts */
109   n_left_from = frame->n_vectors;
110
111   /* Speculatively send the first buffer to the last disposition we used */
112   next_index = node->cached_next_index;
113
114   while (n_left_from > 0)
115     {
116       /* set up to enqueue to our disposition with index = next_index */
117       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
118
119       /*
120        * As long as we have enough pkts left to process two pkts
121        * and prefetch two pkts...
122        */
123       while (n_left_from >= 4 && n_left_to_next >= 2)
124         {
125           vlib_buffer_t *b0, *b1;
126           ip4_header_t *ip0, *ip1;
127           ip4_and_gre_union_t *h0, *h1;
128           u32 bi0, next0, bi1, next1;
129           __attribute__ ((unused)) u8 error0, error1;
130           u16 gre_protocol0, gre_protocol1;
131
132           /* Prefetch the next iteration */
133           {
134             vlib_buffer_t *p2, *p3;
135
136             p2 = vlib_get_buffer (vm, from[2]);
137             p3 = vlib_get_buffer (vm, from[3]);
138
139             vlib_prefetch_buffer_header (p2, LOAD);
140             vlib_prefetch_buffer_header (p3, LOAD);
141
142             /*
143              * Prefetch packet data. We expect to overwrite
144              * the inbound L2 header with an ip header and a
145              * gre header. Might want to prefetch the last line
146              * of rewrite space as well; need profile data
147              */
148             CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, STORE);
149             CLIB_PREFETCH (p3->data, CLIB_CACHE_LINE_BYTES, STORE);
150           }
151
152           /* Pick up the next two buffer indices */
153           bi0 = from[0];
154           bi1 = from[1];
155
156           /* Speculatively enqueue them where we sent the last buffer */
157           to_next[0] = bi0;
158           to_next[1] = bi1;
159           from += 2;
160           to_next += 2;
161           n_left_to_next -= 2;
162           n_left_from -= 2;
163
164           b0 = vlib_get_buffer (vm, bi0);
165           b1 = vlib_get_buffer (vm, bi1);
166
167           ip0 = vlib_buffer_get_current (b0);
168           gre_protocol0 = clib_net_to_host_u16 (0x01);
169
170           ip1 = vlib_buffer_get_current (b1);
171           gre_protocol1 = clib_net_to_host_u16 (0x01);
172
173           vlib_buffer_advance (b0, -sizeof (*h0));
174           vlib_buffer_advance (b1, -sizeof (*h1));
175
176           h0 = vlib_buffer_get_current (b0);
177           h1 = vlib_buffer_get_current (b1);
178           h0->as_u64[0] = 0;
179           h0->as_u64[1] = 0;
180           h0->as_u64[2] = 0;
181
182           h1->as_u64[0] = 0;
183           h1->as_u64[1] = 0;
184           h1->as_u64[2] = 0;
185
186           ip0 = &h0->ip4_and_gre.ip4;
187           h0->ip4_and_gre.gre.protocol = gre_protocol0;
188           ip0->ip_version_and_header_length = 0x45;
189           ip0->ttl = 254;
190           ip0->protocol = IP_PROTOCOL_GRE;
191
192           ip1 = &h1->ip4_and_gre.ip4;
193           h1->ip4_and_gre.gre.protocol = gre_protocol1;
194           ip1->ip_version_and_header_length = 0x45;
195           ip1->ttl = 254;
196           ip1->protocol = IP_PROTOCOL_GRE;
197
198           ip0->length =
199             clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
200           ip1->length =
201             clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
202           ip0->src_address.as_u32 = t->tunnel_src.as_u32;
203           ip1->src_address.as_u32 = t->tunnel_src.as_u32;
204           ip0->dst_address.as_u32 = t->tunnel_dst.as_u32;
205           ip1->dst_address.as_u32 = t->tunnel_dst.as_u32;
206           ip0->checksum = ip4_header_checksum (ip0);
207           ip1->checksum = ip4_header_checksum (ip1);
208
209           vnet_buffer (b0)->output_features.ipsec_sad_index = t->local_sa;
210           vnet_buffer (b1)->output_features.ipsec_sad_index = t->local_sa;
211
212           vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
213           vnet_buffer (b1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
214
215           next0 = IPSEC_GRE_OUTPUT_NEXT_ESP_ENCRYPT;
216           next1 = IPSEC_GRE_OUTPUT_NEXT_ESP_ENCRYPT;
217           error0 = IPSEC_GRE_ERROR_NONE;
218           error1 = IPSEC_GRE_ERROR_NONE;
219
220           if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
221             {
222               ipsec_gre_tx_trace_t *tr = vlib_add_trace (vm, node,
223                                                          b0, sizeof (*tr));
224               tr->tunnel_id = t - igm->tunnels;
225               tr->length = ip0->length;
226               tr->src.as_u32 = ip0->src_address.as_u32;
227               tr->dst.as_u32 = ip0->dst_address.as_u32;
228               tr->sa_id = t->local_sa_id;
229             }
230
231           if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
232             {
233               ipsec_gre_tx_trace_t *tr = vlib_add_trace (vm, node,
234                                                          b1, sizeof (*tr));
235               tr->tunnel_id = t - igm->tunnels;
236               tr->length = ip1->length;
237               tr->src.as_u32 = ip1->src_address.as_u32;
238               tr->dst.as_u32 = ip1->dst_address.as_u32;
239               tr->sa_id = t->local_sa_id;
240             }
241
242           vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
243                                            to_next, n_left_to_next,
244                                            bi0, bi1, next0, next1);
245         }
246
247       while (n_left_from > 0 && n_left_to_next > 0)
248         {
249           vlib_buffer_t *b0;
250           ip4_header_t *ip0;
251           ip4_and_gre_union_t *h0;
252           u32 bi0, next0;
253           __attribute__ ((unused)) u8 error0;
254           u16 gre_protocol0;
255
256           bi0 = to_next[0] = from[0];
257           from += 1;
258           n_left_from -= 1;
259           to_next += 1;
260           n_left_to_next -= 1;
261
262           b0 = vlib_get_buffer (vm, bi0);
263
264           gre_protocol0 = clib_net_to_host_u16 (0x01);
265
266           vlib_buffer_advance (b0, -sizeof (*h0));
267
268           h0 = vlib_buffer_get_current (b0);
269           h0->as_u64[0] = 0;
270           h0->as_u64[1] = 0;
271           h0->as_u64[2] = 0;
272
273           ip0 = &h0->ip4_and_gre.ip4;
274           h0->ip4_and_gre.gre.protocol = gre_protocol0;
275           ip0->ip_version_and_header_length = 0x45;
276           ip0->ttl = 254;
277           ip0->protocol = IP_PROTOCOL_GRE;
278           ip0->length =
279             clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
280           ip0->src_address.as_u32 = t->tunnel_src.as_u32;
281           ip0->dst_address.as_u32 = t->tunnel_dst.as_u32;
282           ip0->checksum = ip4_header_checksum (ip0);
283
284           vnet_buffer (b0)->output_features.ipsec_sad_index = t->local_sa;
285           vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
286
287           next0 = IPSEC_GRE_OUTPUT_NEXT_ESP_ENCRYPT;
288           error0 = IPSEC_GRE_ERROR_NONE;
289
290           if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
291             {
292               ipsec_gre_tx_trace_t *tr = vlib_add_trace (vm, node,
293                                                          b0, sizeof (*tr));
294               tr->tunnel_id = t - igm->tunnels;
295               tr->length = ip0->length;
296               tr->src.as_u32 = ip0->src_address.as_u32;
297               tr->dst.as_u32 = ip0->dst_address.as_u32;
298               tr->sa_id = t->local_sa_id;
299             }
300
301           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
302                                            to_next, n_left_to_next,
303                                            bi0, next0);
304         }
305
306       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
307     }
308
309   vlib_node_increment_counter (vm, ipsec_gre_input_node.index,
310                                IPSEC_GRE_ERROR_PKTS_ENCAP, frame->n_vectors);
311
312   return frame->n_vectors;
313 }
314
315 static clib_error_t *
316 ipsec_gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
317                                    u32 flags)
318 {
319   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
320     vnet_hw_interface_set_flags (vnm, hw_if_index,
321                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
322   else
323     vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
324
325   return /* no error */ 0;
326 }
327
328 static u8 *
329 format_ipsec_gre_tunnel_name (u8 * s, va_list * args)
330 {
331   u32 dev_instance = va_arg (*args, u32);
332   return format (s, "ipsec-gre%d", dev_instance);
333 }
334
335 static u8 *
336 format_ipsec_gre_device (u8 * s, va_list * args)
337 {
338   u32 dev_instance = va_arg (*args, u32);
339   CLIB_UNUSED (int verbose) = va_arg (*args, int);
340
341   s = format (s, "IPSEC-GRE tunnel: id %d\n", dev_instance);
342   return s;
343 }
344
345 /* *INDENT-OFF* */
346 VNET_DEVICE_CLASS (ipsec_gre_device_class) = {
347   .name = "IPSec GRE tunnel device",
348   .format_device_name = format_ipsec_gre_tunnel_name,
349   .format_device = format_ipsec_gre_device,
350   .format_tx_trace = format_ipsec_gre_tx_trace,
351   .tx_function = ipsec_gre_interface_tx,
352   .admin_up_down_function = ipsec_gre_interface_admin_up_down,
353 };
354
355 VLIB_DEVICE_TX_FUNCTION_MULTIARCH (ipsec_gre_device_class,
356                                    ipsec_gre_interface_tx)
357
358
359 VNET_HW_INTERFACE_CLASS (ipsec_gre_hw_interface_class) = {
360   .name = "IPSEC-GRE",
361 };
362 /* *INDENT-ON* */
363
364 static clib_error_t *
365 ipsec_gre_init (vlib_main_t * vm)
366 {
367   ipsec_gre_main_t *igm = &ipsec_gre_main;
368   clib_error_t *error;
369
370   memset (igm, 0, sizeof (igm[0]));
371   igm->vlib_main = vm;
372   igm->vnet_main = vnet_get_main ();
373
374   if ((error = vlib_call_init_function (vm, ip_main_init)))
375     return error;
376
377   if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
378     return error;
379
380   igm->tunnel_by_key = hash_create (0, sizeof (uword));
381
382   return vlib_call_init_function (vm, ipsec_gre_input_init);
383 }
384
385 VLIB_INIT_FUNCTION (ipsec_gre_init);
386
387 ipsec_gre_main_t *
388 ipsec_gre_get_main (vlib_main_t * vm)
389 {
390   vlib_call_init_function (vm, ipsec_gre_init);
391   return &ipsec_gre_main;
392 }
393
394 /*
395 * fd.io coding-style-patch-verification: ON
396 *
397 * Local Variables:
398 * eval: (c-set-style "gnu")
399 * End:
400 */