blob: b585c3d4dcf165e7570c8187d0479027630fdb24 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ipsec_if_in.c : IPSec interface input node
3 *
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/api_errno.h>
20#include <vnet/ip/ip.h>
21
22#include <vnet/ipsec/ipsec.h>
23#include <vnet/ipsec/esp.h>
Neale Ranns918c1612019-02-21 23:34:59 -080024#include <vnet/ipsec/ipsec_io.h>
Neale Rannsb71fa752019-04-04 12:43:36 +000025#include <vnet/ipsec/ipsec_punt.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
27/* Statistics (not really errors) */
Matthew Smith831fd642018-05-15 22:03:05 -050028#define foreach_ipsec_if_input_error \
29_(RX, "good packets received") \
Neale Ranns8d7c5022019-02-06 01:41:05 -080030_(DISABLED, "ipsec packets received on disabled interface") \
Neale Rannsb71fa752019-04-04 12:43:36 +000031_(NO_TUNNEL, "no matching tunnel") \
32_(SPI_0, "SPI 0")
Ed Warnickecb9cada2015-12-08 15:45:58 -070033
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070034static char *ipsec_if_input_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070035#define _(sym,string) string,
36 foreach_ipsec_if_input_error
37#undef _
38};
39
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070040typedef enum
41{
Ed Warnickecb9cada2015-12-08 15:45:58 -070042#define _(sym,str) IPSEC_IF_INPUT_ERROR_##sym,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070043 foreach_ipsec_if_input_error
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#undef _
45 IPSEC_IF_INPUT_N_ERROR,
46} ipsec_if_input_error_t;
47
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070049typedef struct
50{
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 u32 spi;
52 u32 seq;
53} ipsec_if_input_trace_t;
54
Kingwel Xiec69ac312019-02-04 01:49:29 -080055static u8 *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070056format_ipsec_if_input_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070057{
58 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
59 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070060 ipsec_if_input_trace_t *t = va_arg (*args, ipsec_if_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
62 s = format (s, "IPSec: spi %u seq %u", t->spi, t->seq);
63 return s;
64}
65
Neale Rannsb71fa752019-04-04 12:43:36 +000066always_inline u16
67ipsec_ip4_if_no_tunnel (vlib_node_runtime_t * node,
68 vlib_buffer_t * b,
69 const esp_header_t * esp,
70 const ip4_header_t * ip4, u16 offset)
71{
72 if (PREDICT_FALSE (0 == esp->spi))
73 {
74 b->error = node->errors[IPSEC_IF_INPUT_ERROR_SPI_0];
75 b->punt_reason =
76 ipsec_punt_reason[(ip4->protocol == IP_PROTOCOL_UDP ?
77 IPSEC_PUNT_IP4_SPI_UDP_0 : IPSEC_PUNT_IP4_SPI_0)];
78 }
79 else
80 {
81 b->error = node->errors[IPSEC_IF_INPUT_ERROR_NO_TUNNEL];
82 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP4_NO_SUCH_TUNNEL];
83 }
84 vlib_buffer_advance (b, -offset);
85 return IPSEC_INPUT_NEXT_PUNT;
86}
87
88always_inline u16
89ipsec_ip6_if_no_tunnel (vlib_node_runtime_t * node,
90 vlib_buffer_t * b,
91 const esp_header_t * esp, u16 offset)
92{
93 if (PREDICT_FALSE (0 == esp->spi))
94 {
95 b->error = node->errors[IPSEC_IF_INPUT_ERROR_NO_TUNNEL];
96 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP6_SPI_0];
97 }
98 else
99 {
100 b->error = node->errors[IPSEC_IF_INPUT_ERROR_NO_TUNNEL];
101 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP6_NO_SUCH_TUNNEL];
102 }
103 vlib_buffer_advance (b, -offset);
104 return (IPSEC_INPUT_NEXT_PUNT);
105}
Kingwel Xie00bff192019-03-07 01:25:32 -0500106
107always_inline uword
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400108ipsec_if_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
109 vlib_frame_t * from_frame, int is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110{
111 ipsec_main_t *im = &ipsec_main;
Matthew Smith01034be2017-05-16 11:51:18 -0500112 vnet_main_t *vnm = im->vnet_main;
113 vnet_interface_main_t *vim = &vnm->interface_main;
Kingwel Xie00bff192019-03-07 01:25:32 -0500114
115 int is_trace = node->flags & VLIB_NODE_FLAG_TRACE;
Damjan Marion067cd622018-07-11 12:47:43 +0200116 u32 thread_index = vm->thread_index;
Kingwel Xie00bff192019-03-07 01:25:32 -0500117
118 u32 n_left_from, *from;
119 u16 nexts[VLIB_FRAME_SIZE], *next;
120 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
121
122 from = vlib_frame_vector_args (from_frame);
123 n_left_from = from_frame->n_vectors;
124
125 vlib_get_buffers (vm, from, bufs, n_left_from);
126 b = bufs;
127 next = nexts;
128
129 clib_memset_u16 (nexts, im->esp4_decrypt_next_index, n_left_from);
130
Matthew Smith01034be2017-05-16 11:51:18 -0500131 u64 n_bytes = 0, n_packets = 0;
Kingwel Xie00bff192019-03-07 01:25:32 -0500132 u32 n_disabled = 0, n_no_tunnel = 0;
133
134 u32 last_sw_if_index = ~0;
135 u32 last_tunnel_id = ~0;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400136 ipsec4_tunnel_key_t last_key4;
137 ipsec6_tunnel_key_t last_key6;
Kingwel Xie00bff192019-03-07 01:25:32 -0500138
Matthew Smith831fd642018-05-15 22:03:05 -0500139 vlib_combined_counter_main_t *rx_counter;
140 vlib_combined_counter_main_t *drop_counter;
Matthew Smith831fd642018-05-15 22:03:05 -0500141
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400142 if (is_ip6)
143 clib_memset (&last_key6, 0xff, sizeof (last_key6));
144 else
145 last_key4.as_u64 = ~0;
146
Matthew Smith831fd642018-05-15 22:03:05 -0500147 rx_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
148 drop_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Kingwel Xie00bff192019-03-07 01:25:32 -0500150 while (n_left_from >= 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500152 u32 sw_if_index0, sw_if_index1;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400153 ip4_header_t *ip40, *ip41;
154 ip6_header_t *ip60, *ip61;
Kingwel Xie00bff192019-03-07 01:25:32 -0500155 esp_header_t *esp0, *esp1;
156 u32 len0, len1;
157 u16 buf_adv0, buf_adv1;
158 u32 tid0, tid1;
159 ipsec_tunnel_if_t *t0, *t1;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400160 ipsec4_tunnel_key_t key40, key41;
161 ipsec6_tunnel_key_t key60, key61;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Kingwel Xie00bff192019-03-07 01:25:32 -0500163 if (n_left_from >= 4)
Neale Ranns77eb28f2019-03-04 14:13:14 +0000164 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500165 CLIB_PREFETCH (b[2], CLIB_CACHE_LINE_BYTES, STORE);
166 CLIB_PREFETCH (b[2]->data, CLIB_CACHE_LINE_BYTES, LOAD);
167 CLIB_PREFETCH (b[3], CLIB_CACHE_LINE_BYTES, STORE);
168 CLIB_PREFETCH (b[3]->data, CLIB_CACHE_LINE_BYTES, LOAD);
169 }
Neale Ranns77eb28f2019-03-04 14:13:14 +0000170
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400171 ip40 =
172 (ip4_header_t *) (b[0]->data + vnet_buffer (b[0])->l3_hdr_offset);
173 ip41 =
174 (ip4_header_t *) (b[1]->data + vnet_buffer (b[1])->l3_hdr_offset);
Neale Ranns77eb28f2019-03-04 14:13:14 +0000175
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400176 if (is_ip6)
Kingwel Xie00bff192019-03-07 01:25:32 -0500177 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400178 ip60 = (ip6_header_t *) ip40;
179 ip61 = (ip6_header_t *) ip41;
180 esp0 = (esp_header_t *) ((u8 *) ip60 + sizeof (ip6_header_t));
181 esp1 = (esp_header_t *) ((u8 *) ip61 + sizeof (ip6_header_t));
182 buf_adv0 = sizeof (ip6_header_t);
183 buf_adv1 = sizeof (ip6_header_t);
Kingwel Xie00bff192019-03-07 01:25:32 -0500184 }
185 else
186 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400187 /* NAT UDP port 4500 case, don't advance any more */
188 if (ip40->protocol == IP_PROTOCOL_UDP)
189 {
190 esp0 =
191 (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40) +
192 sizeof (udp_header_t));
193 buf_adv0 = 0;
194 }
195 else
196 {
197 esp0 = (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
198 buf_adv0 = ip4_header_bytes (ip40);
199 }
200 /* NAT UDP port 4500 case, don't advance any more */
201 if (ip41->protocol == IP_PROTOCOL_UDP)
202 {
203 esp1 =
204 (esp_header_t *) ((u8 *) ip41 + ip4_header_bytes (ip41) +
205 sizeof (udp_header_t));
206 buf_adv1 = 0;
207 }
208 else
209 {
210 esp1 = (esp_header_t *) ((u8 *) ip41 + ip4_header_bytes (ip41));
211 buf_adv1 = ip4_header_bytes (ip41);
212 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500213 }
Neale Ranns77eb28f2019-03-04 14:13:14 +0000214
Kingwel Xie00bff192019-03-07 01:25:32 -0500215 vlib_buffer_advance (b[0], buf_adv0);
216 vlib_buffer_advance (b[1], buf_adv1);
Neale Ranns77eb28f2019-03-04 14:13:14 +0000217
Kingwel Xie00bff192019-03-07 01:25:32 -0500218 len0 = vlib_buffer_length_in_chain (vm, b[0]);
219 len1 = vlib_buffer_length_in_chain (vm, b[1]);
Neale Ranns77eb28f2019-03-04 14:13:14 +0000220
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400221 if (is_ip6)
222 {
223 key60.remote_ip = ip60->src_address;
224 key60.spi = esp0->spi;
Neale Ranns77eb28f2019-03-04 14:13:14 +0000225
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400226 if (memcmp (&key60, &last_key6, sizeof (last_key6)) == 0)
Neale Ranns77eb28f2019-03-04 14:13:14 +0000227 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400228 tid0 = last_tunnel_id;
Neale Ranns77eb28f2019-03-04 14:13:14 +0000229 }
230 else
231 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400232 uword *p =
233 hash_get_mem (im->ipsec6_if_pool_index_by_key, &key60);
234 if (p)
235 {
236 tid0 = p[0];
237 last_tunnel_id = tid0;
238 clib_memcpy_fast (&last_key6, &key60, sizeof (key60));
239 }
240 else
241 {
Neale Rannsb71fa752019-04-04 12:43:36 +0000242 next[0] =
243 ipsec_ip6_if_no_tunnel (node, b[0], esp0, buf_adv0);
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400244 n_no_tunnel++;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400245 goto pkt1;
246 }
247 }
248 }
249 else /* !is_ip6 */
250 {
251 key40.remote_ip = ip40->src_address.as_u32;
252 key40.spi = esp0->spi;
253
254 if (key40.as_u64 == last_key4.as_u64)
255 {
256 tid0 = last_tunnel_id;
257 }
258 else
259 {
260 uword *p =
261 hash_get (im->ipsec4_if_pool_index_by_key, key40.as_u64);
262 if (p)
263 {
264 tid0 = p[0];
265 last_tunnel_id = tid0;
266 last_key4.as_u64 = key40.as_u64;
267 }
268 else
269 {
Neale Rannsb71fa752019-04-04 12:43:36 +0000270 next[0] =
271 ipsec_ip4_if_no_tunnel (node, b[0], esp0, ip40, buf_adv0);
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400272 n_no_tunnel++;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400273 goto pkt1;
274 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500275 }
276 }
277
278 t0 = pool_elt_at_index (im->tunnel_interfaces, tid0);
279 vnet_buffer (b[0])->ipsec.sad_index = t0->input_sa_index;
280
281 if (PREDICT_TRUE (t0->hw_if_index != ~0))
282 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500283 sw_if_index0 = t0->sw_if_index;
284 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = sw_if_index0;
285
286 if (PREDICT_FALSE (!(t0->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)))
287 {
288 vlib_increment_combined_counter
289 (drop_counter, thread_index, sw_if_index0, 1, len0);
290 n_disabled++;
Neale Rannse524d452019-02-19 15:22:46 +0000291 b[0]->error = node->errors[IPSEC_IF_INPUT_ERROR_DISABLED];
Kingwel Xie00bff192019-03-07 01:25:32 -0500292 next[0] = IPSEC_INPUT_NEXT_DROP;
293 goto pkt1;
Neale Ranns77eb28f2019-03-04 14:13:14 +0000294 }
295
Kingwel Xie00bff192019-03-07 01:25:32 -0500296 if (PREDICT_TRUE (sw_if_index0 == last_sw_if_index))
Neale Ranns77eb28f2019-03-04 14:13:14 +0000297 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500298 n_packets++;
299 n_bytes += len0;
Neale Ranns77eb28f2019-03-04 14:13:14 +0000300 }
301 else
302 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500303 if (n_packets)
304 {
305 vlib_increment_combined_counter
306 (rx_counter, thread_index, last_sw_if_index,
307 n_packets, n_bytes);
308 }
309
310 last_sw_if_index = sw_if_index0;
311 n_packets = 1;
312 n_bytes = len0;
313 }
314 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500315
316 pkt1:
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400317 if (is_ip6)
Kingwel Xie00bff192019-03-07 01:25:32 -0500318 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400319 key61.remote_ip = ip61->src_address;
320 key61.spi = esp1->spi;
321
322 if (memcmp (&key61, &last_key6, sizeof (last_key6)) == 0)
Kingwel Xie00bff192019-03-07 01:25:32 -0500323 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400324 tid1 = last_tunnel_id;
Kingwel Xie00bff192019-03-07 01:25:32 -0500325 }
326 else
327 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400328 uword *p =
329 hash_get_mem (im->ipsec6_if_pool_index_by_key, &key61);
330 if (p)
331 {
332 tid1 = p[0];
333 last_tunnel_id = tid1;
334 clib_memcpy_fast (&last_key6, &key61, sizeof (key61));
335 }
336 else
337 {
Neale Rannsb71fa752019-04-04 12:43:36 +0000338 next[1] =
339 ipsec_ip6_if_no_tunnel (node, b[1], esp1, buf_adv1);
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400340 n_no_tunnel++;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400341 goto trace1;
342 }
343 }
344 }
345 else /* !is_ip6 */
346 {
347 key41.remote_ip = ip41->src_address.as_u32;
348 key41.spi = esp1->spi;
349
350 if (key41.as_u64 == last_key4.as_u64)
351 {
352 tid1 = last_tunnel_id;
353 }
354 else
355 {
356 uword *p =
357 hash_get (im->ipsec4_if_pool_index_by_key, key41.as_u64);
358 if (p)
359 {
360 tid1 = p[0];
361 last_tunnel_id = tid1;
362 last_key4.as_u64 = key41.as_u64;
363 }
364 else
365 {
Neale Rannsb71fa752019-04-04 12:43:36 +0000366 next[1] =
367 ipsec_ip4_if_no_tunnel (node, b[1], esp1, ip41, buf_adv1);
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400368 n_no_tunnel++;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400369 goto trace1;
370 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500371 }
372 }
373
374 t1 = pool_elt_at_index (im->tunnel_interfaces, tid1);
375 vnet_buffer (b[1])->ipsec.sad_index = t1->input_sa_index;
376
377 if (PREDICT_TRUE (t1->hw_if_index != ~0))
378 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500379 sw_if_index1 = t1->sw_if_index;
380 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = sw_if_index1;
381
382 if (PREDICT_FALSE (!(t1->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)))
383 {
384 vlib_increment_combined_counter
385 (drop_counter, thread_index, sw_if_index1, 1, len1);
386 n_disabled++;
Neale Rannse524d452019-02-19 15:22:46 +0000387 b[1]->error = node->errors[IPSEC_IF_INPUT_ERROR_DISABLED];
Kingwel Xie00bff192019-03-07 01:25:32 -0500388 next[1] = IPSEC_INPUT_NEXT_DROP;
389 goto trace1;
Neale Ranns77eb28f2019-03-04 14:13:14 +0000390 }
391
Kingwel Xie00bff192019-03-07 01:25:32 -0500392 if (PREDICT_TRUE (sw_if_index1 == last_sw_if_index))
393 {
394 n_packets++;
395 n_bytes += len1;
396 }
397 else
398 {
399 if (n_packets)
400 {
401 vlib_increment_combined_counter
402 (rx_counter, thread_index, last_sw_if_index,
403 n_packets, n_bytes);
404 }
405
406 last_sw_if_index = sw_if_index1;
407 n_packets = 1;
408 n_bytes = len1;
409 }
410 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500411
412 trace1:
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400413 if (PREDICT_FALSE (is_trace))
Kingwel Xie00bff192019-03-07 01:25:32 -0500414 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400415 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
Neale Ranns77eb28f2019-03-04 14:13:14 +0000416 {
417 ipsec_if_input_trace_t *tr =
Kingwel Xie00bff192019-03-07 01:25:32 -0500418 vlib_add_trace (vm, node, b[0], sizeof (*tr));
Neale Ranns77eb28f2019-03-04 14:13:14 +0000419 tr->spi = clib_host_to_net_u32 (esp0->spi);
420 tr->seq = clib_host_to_net_u32 (esp0->seq);
421 }
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400422 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
Neale Ranns77eb28f2019-03-04 14:13:14 +0000423 {
424 ipsec_if_input_trace_t *tr =
Kingwel Xie00bff192019-03-07 01:25:32 -0500425 vlib_add_trace (vm, node, b[1], sizeof (*tr));
Neale Ranns77eb28f2019-03-04 14:13:14 +0000426 tr->spi = clib_host_to_net_u32 (esp1->spi);
427 tr->seq = clib_host_to_net_u32 (esp1->seq);
428 }
Neale Ranns77eb28f2019-03-04 14:13:14 +0000429 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500430
431 /* next */
432 b += 2;
433 next += 2;
434 n_left_from -= 2;
435 }
436 while (n_left_from > 0)
437 {
438 u32 sw_if_index0;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400439 ip4_header_t *ip40;
440 ip6_header_t *ip60;
Kingwel Xie00bff192019-03-07 01:25:32 -0500441 esp_header_t *esp0;
442 u32 len0;
443 u16 buf_adv0;
444 u32 tid0;
445 ipsec_tunnel_if_t *t0;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400446 ipsec4_tunnel_key_t key40;
447 ipsec6_tunnel_key_t key60;
Kingwel Xie00bff192019-03-07 01:25:32 -0500448
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400449 ip40 =
450 (ip4_header_t *) (b[0]->data + vnet_buffer (b[0])->l3_hdr_offset);
Kingwel Xie00bff192019-03-07 01:25:32 -0500451
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400452 if (is_ip6)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700453 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400454 ip60 = (ip6_header_t *) ip40;
455 esp0 = (esp_header_t *) ((u8 *) ip60 + sizeof (ip6_header_t));
456 buf_adv0 = sizeof (ip6_header_t);
Kingwel Xie00bff192019-03-07 01:25:32 -0500457 }
458 else
459 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400460 /* NAT UDP port 4500 case, don't advance any more */
461 if (ip40->protocol == IP_PROTOCOL_UDP)
462 {
463 esp0 =
464 (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40) +
465 sizeof (udp_header_t));
466 buf_adv0 = 0;
467 }
468 else
469 {
470 esp0 = (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
471 buf_adv0 = ip4_header_bytes (ip40);
472 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500473 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
Kingwel Xie00bff192019-03-07 01:25:32 -0500475 /* stats for the tunnel include all the data after the IP header
476 just like a norml IP-IP tunnel */
477 vlib_buffer_advance (b[0], buf_adv0);
478 len0 = vlib_buffer_length_in_chain (vm, b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400480 if (is_ip6)
Kingwel Xie00bff192019-03-07 01:25:32 -0500481 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400482 key60.remote_ip = ip60->src_address;
483 key60.spi = esp0->spi;
484
485 if (memcmp (&key60, &last_key6, sizeof (last_key6)) == 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700486 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400487 tid0 = last_tunnel_id;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700488 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800489 else
490 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400491 uword *p =
492 hash_get_mem (im->ipsec6_if_pool_index_by_key, &key60);
493 if (p)
494 {
495 tid0 = p[0];
496 last_tunnel_id = tid0;
497 clib_memcpy_fast (&last_key6, &key60, sizeof (key60));
498 }
499 else
500 {
Neale Rannsb71fa752019-04-04 12:43:36 +0000501 next[0] =
502 ipsec_ip6_if_no_tunnel (node, b[0], esp0, buf_adv0);
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400503 n_no_tunnel++;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400504 goto trace00;
505 }
506 }
507 }
508 else /* !is_ip6 */
509 {
510 key40.remote_ip = ip40->src_address.as_u32;
511 key40.spi = esp0->spi;
512
513 if (key40.as_u64 == last_key4.as_u64)
514 {
515 tid0 = last_tunnel_id;
516 }
517 else
518 {
519 uword *p =
520 hash_get (im->ipsec4_if_pool_index_by_key, key40.as_u64);
521 if (p)
522 {
523 tid0 = p[0];
524 last_tunnel_id = tid0;
525 last_key4.as_u64 = key40.as_u64;
526 }
527 else
528 {
Neale Rannsb71fa752019-04-04 12:43:36 +0000529 next[0] =
530 ipsec_ip4_if_no_tunnel (node, b[0], esp0, ip40, buf_adv0);
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400531 n_no_tunnel++;
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400532 goto trace00;
533 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500534 }
535 }
536
537 t0 = pool_elt_at_index (im->tunnel_interfaces, tid0);
538 vnet_buffer (b[0])->ipsec.sad_index = t0->input_sa_index;
539
540 if (PREDICT_TRUE (t0->hw_if_index != ~0))
541 {
Kingwel Xie00bff192019-03-07 01:25:32 -0500542 sw_if_index0 = t0->sw_if_index;
543 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = sw_if_index0;
544
545 if (PREDICT_FALSE (!(t0->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)))
546 {
547 vlib_increment_combined_counter
548 (drop_counter, thread_index, sw_if_index0, 1, len0);
549 n_disabled++;
Neale Rannse524d452019-02-19 15:22:46 +0000550 b[0]->error = node->errors[IPSEC_IF_INPUT_ERROR_DISABLED];
Kingwel Xie00bff192019-03-07 01:25:32 -0500551 next[0] = IPSEC_INPUT_NEXT_DROP;
552 goto trace00;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800553 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
Kingwel Xie00bff192019-03-07 01:25:32 -0500555 if (PREDICT_TRUE (sw_if_index0 == last_sw_if_index))
556 {
557 n_packets++;
558 n_bytes += len0;
559 }
560 else
561 {
562 if (n_packets)
563 {
564 vlib_increment_combined_counter
565 (rx_counter, thread_index, last_sw_if_index,
566 n_packets, n_bytes);
567 }
568
569 last_sw_if_index = sw_if_index0;
570 n_packets = 1;
571 n_bytes = len0;
572 }
573 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500574
575 trace00:
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400576 if (PREDICT_FALSE (is_trace))
Kingwel Xie00bff192019-03-07 01:25:32 -0500577 {
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400578 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700579 {
580 ipsec_if_input_trace_t *tr =
Kingwel Xie00bff192019-03-07 01:25:32 -0500581 vlib_add_trace (vm, node, b[0], sizeof (*tr));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700582 tr->spi = clib_host_to_net_u32 (esp0->spi);
583 tr->seq = clib_host_to_net_u32 (esp0->seq);
584 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700585 }
Kingwel Xie00bff192019-03-07 01:25:32 -0500586
587 /* next */
588 b += 1;
589 next += 1;
590 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 }
592
Kingwel Xie00bff192019-03-07 01:25:32 -0500593 if (n_packets)
Matthew Smith01034be2017-05-16 11:51:18 -0500594 {
Matthew Smith831fd642018-05-15 22:03:05 -0500595 vlib_increment_combined_counter (rx_counter,
Matthew Smith01034be2017-05-16 11:51:18 -0500596 thread_index,
597 last_sw_if_index, n_packets, n_bytes);
598 }
599
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400600 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700601 IPSEC_IF_INPUT_ERROR_RX,
Neale Rannse524d452019-02-19 15:22:46 +0000602 from_frame->n_vectors - (n_disabled +
603 n_no_tunnel));
Kingwel Xie00bff192019-03-07 01:25:32 -0500604
605 vlib_buffer_enqueue_to_next (vm, node, from, nexts, from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606
607 return from_frame->n_vectors;
608}
609
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400610VLIB_NODE_FN (ipsec4_if_input_node) (vlib_main_t * vm,
611 vlib_node_runtime_t * node,
612 vlib_frame_t * from_frame)
Kingwel Xie00bff192019-03-07 01:25:32 -0500613{
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400614 return ipsec_if_input_inline (vm, node, from_frame, 0 /* is_ip6 */ );
Kingwel Xie00bff192019-03-07 01:25:32 -0500615}
616
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700617/* *INDENT-OFF* */
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400618VLIB_REGISTER_NODE (ipsec4_if_input_node) = {
619 .name = "ipsec4-if-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620 .vector_size = sizeof (u32),
621 .format_trace = format_ipsec_if_input_trace,
622 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 .n_errors = ARRAY_LEN(ipsec_if_input_error_strings),
624 .error_strings = ipsec_if_input_error_strings,
Pierre Pfister057b3562018-12-10 17:01:01 +0100625 .sibling_of = "ipsec4-input-feature",
Damjan Marion1c80e832016-05-11 23:07:18 +0200626};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700627/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200628
Kingwel Xie1ba5bc82019-03-20 07:21:58 -0400629VLIB_NODE_FN (ipsec6_if_input_node) (vlib_main_t * vm,
630 vlib_node_runtime_t * node,
631 vlib_frame_t * from_frame)
632{
633 return ipsec_if_input_inline (vm, node, from_frame, 1 /* is_ip6 */ );
634}
635
636/* *INDENT-OFF* */
637VLIB_REGISTER_NODE (ipsec6_if_input_node) = {
638 .name = "ipsec6-if-input",
639 .vector_size = sizeof (u32),
640 .format_trace = format_ipsec_if_input_trace,
641 .type = VLIB_NODE_TYPE_INTERNAL,
642 .n_errors = ARRAY_LEN(ipsec_if_input_error_strings),
643 .error_strings = ipsec_if_input_error_strings,
644 .sibling_of = "ipsec6-input-feature",
645};
646/* *INDENT-ON* */
647
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700648/*
649 * fd.io coding-style-patch-verification: ON
650 *
651 * Local Variables:
652 * eval: (c-set-style "gnu")
653 * End:
654 */