blob: aa7627d9b4b501b5f463e15945cedd0b67463ee4 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c : IPSec tunnel decapsulation
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>
Damjan Marion8b3191e2016-11-09 19:54:20 +010021#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
23#include <vnet/ipsec/ipsec.h>
24#include <vnet/ipsec/esp.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080025#include <vnet/ipsec/ah.h>
Neale Ranns918c1612019-02-21 23:34:59 -080026#include <vnet/ipsec/ipsec_io.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
ShivaShankarK05464832020-04-14 14:01:03 +053028#define foreach_ipsec_input_error \
29_(RX_PKTS, "IPSec pkts received") \
30_(RX_POLICY_MATCH, "IPSec policy match") \
31_(RX_POLICY_NO_MATCH, "IPSec policy not matched") \
32_(RX_POLICY_BYPASS, "IPSec policy bypass") \
33_(RX_POLICY_DISCARD, "IPSec policy discard")
Ed Warnickecb9cada2015-12-08 15:45:58 -070034
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070035typedef enum
36{
Ed Warnickecb9cada2015-12-08 15:45:58 -070037#define _(sym,str) IPSEC_INPUT_ERROR_##sym,
38 foreach_ipsec_input_error
39#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070040 IPSEC_INPUT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070041} ipsec_input_error_t;
42
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070043static char *ipsec_input_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#define _(sym,string) string,
45 foreach_ipsec_input_error
46#undef _
47};
48
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070049typedef struct
50{
Neale Rannsa09c1ff2019-02-04 01:10:30 -080051 ip_protocol_t proto;
Pierre Pfister62219272018-11-26 09:29:00 +010052 u32 spd;
Neale Rannsa09c1ff2019-02-04 01:10:30 -080053 u32 policy_index;
Matus Fabian5539a072016-09-07 05:57:09 -070054 u32 sa_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 u32 spi;
56 u32 seq;
57} ipsec_input_trace_t;
58
59/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070060static u8 *
61format_ipsec_input_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070062{
63 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
64 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070065 ipsec_input_trace_t *t = va_arg (*args, ipsec_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020067 s = format (s, "%U: sa_id %u spd %u policy %d spi %u (0x%08x) seq %u",
Neale Rannsa09c1ff2019-02-04 01:10:30 -080068 format_ip_protocol, t->proto, t->sa_id,
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020069 t->spd, t->policy_index, t->spi, t->spi, t->seq);
Matus Fabian5539a072016-09-07 05:57:09 -070070
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 return s;
72}
73
74always_inline ipsec_policy_t *
ShivaShankarK05464832020-04-14 14:01:03 +053075ipsec_input_policy_match (ipsec_spd_t * spd, u32 sa, u32 da,
76 ipsec_spd_policy_type_t policy_type)
77{
78 ipsec_main_t *im = &ipsec_main;
79 ipsec_policy_t *p;
80 u32 *i;
81
82 vec_foreach (i, spd->policies[policy_type])
83 {
84 p = pool_elt_at_index (im->policies, *i);
85
86 if (da < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
87 continue;
88
89 if (da > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
90 continue;
91
92 if (sa < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
93 continue;
94
95 if (sa > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
96 continue;
97
98 return p;
99 }
100 return 0;
101}
102
103always_inline ipsec_policy_t *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700104ipsec_input_protect_policy_match (ipsec_spd_t * spd, u32 sa, u32 da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105{
106 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700107 ipsec_policy_t *p;
108 ipsec_sa_t *s;
109 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800111 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700112 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800113 p = pool_elt_at_index (im->policies, *i);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700114 s = pool_elt_at_index (im->sad, p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700116 if (spi != s->spi)
117 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Damjan Mariond709cbc2019-03-26 13:16:42 +0100119 if (ipsec_sa_is_set_IS_TUNNEL (s))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700120 {
Neale Rannsd2029bc2019-07-11 09:31:19 +0000121 if (da != clib_net_to_host_u32 (s->tunnel_dst_addr.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700122 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Neale Rannsd2029bc2019-07-11 09:31:19 +0000124 if (sa != clib_net_to_host_u32 (s->tunnel_src_addr.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700125 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700127 return p;
128 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
Neale Rannsd2029bc2019-07-11 09:31:19 +0000130 if (da < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700131 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
Neale Rannsd2029bc2019-07-11 09:31:19 +0000133 if (da > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700134 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
Neale Rannsd2029bc2019-07-11 09:31:19 +0000136 if (sa < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700137 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
Neale Rannsd2029bc2019-07-11 09:31:19 +0000139 if (sa > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700140 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700142 return p;
143 }
144 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145}
146
147always_inline uword
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700148ip6_addr_match_range (ip6_address_t * a, ip6_address_t * la,
149 ip6_address_t * ua)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700151 if ((memcmp (a->as_u64, la->as_u64, 2 * sizeof (u64)) >= 0) &&
152 (memcmp (a->as_u64, ua->as_u64, 2 * sizeof (u64)) <= 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 return 1;
154 return 0;
155}
156
157always_inline ipsec_policy_t *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200158ipsec6_input_protect_policy_match (ipsec_spd_t * spd,
159 ip6_address_t * sa,
160 ip6_address_t * da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161{
162 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700163 ipsec_policy_t *p;
164 ipsec_sa_t *s;
165 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800167 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700168 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800169 p = pool_elt_at_index (im->policies, *i);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700170 s = pool_elt_at_index (im->sad, p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700172 if (spi != s->spi)
173 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Damjan Mariond709cbc2019-03-26 13:16:42 +0100175 if (ipsec_sa_is_set_IS_TUNNEL (s))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700176 {
177 if (!ip6_address_is_equal (sa, &s->tunnel_src_addr.ip6))
178 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700180 if (!ip6_address_is_equal (da, &s->tunnel_dst_addr.ip6))
181 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700183 return p;
184 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700186 if (!ip6_addr_match_range (sa, &p->raddr.start.ip6, &p->raddr.stop.ip6))
187 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700189 if (!ip6_addr_match_range (da, &p->laddr.start.ip6, &p->laddr.stop.ip6))
190 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700192 return p;
193 }
194 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195}
196
Damjan Mariond770cfc2019-09-02 19:00:33 +0200197extern vlib_node_registration_t ipsec4_input_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100198
Klement Sekerab8f35442018-10-29 13:38:19 +0100199VLIB_NODE_FN (ipsec4_input_node) (vlib_main_t * vm,
200 vlib_node_runtime_t * node,
ShivaShankarK05464832020-04-14 14:01:03 +0530201 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202{
ShivaShankarK05464832020-04-14 14:01:03 +0530203 u32 n_left_from, *from, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 ipsec_main_t *im = &ipsec_main;
ShivaShankarK05464832020-04-14 14:01:03 +0530205 u64 ipsec_unprocessed = 0, ipsec_matched = 0;
206 u64 ipsec_dropped = 0, ipsec_bypassed = 0;
207 vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
208 vlib_buffer_t **b = bufs;
209 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
ShivaShankarK05464832020-04-14 14:01:03 +0530211 from = vlib_frame_vector_args (frame);
212 n_left_from = frame->n_vectors;
213 next = nexts;
214 vlib_get_buffers (vm, from, bufs, n_left_from);
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800215 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
218 while (n_left_from > 0)
219 {
ShivaShankarK05464832020-04-14 14:01:03 +0530220 u32 next32, pi0;
221 ip4_header_t *ip0;
222 esp_header_t *esp0 = NULL;
223 ah_header_t *ah0;
224 ip4_ipsec_config_t *c0;
225 ipsec_spd_t *spd0;
226 ipsec_policy_t *p0 = NULL;
227 u8 has_space0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
ShivaShankarK05464832020-04-14 14:01:03 +0530229 if (n_left_from > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700230 {
ShivaShankarK05464832020-04-14 14:01:03 +0530231 vlib_prefetch_buffer_data (b[1], LOAD);
232 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233
ShivaShankarK05464832020-04-14 14:01:03 +0530234 b[0]->flags |= VNET_BUFFER_F_IS_IP4;
235 b[0]->flags &= ~VNET_BUFFER_F_IS_IP6;
236 c0 = vnet_feature_next_with_data (&next32, b[0], sizeof (c0[0]));
237 next[0] = (u16) next32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238
ShivaShankarK05464832020-04-14 14:01:03 +0530239 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
ShivaShankarK05464832020-04-14 14:01:03 +0530241 ip0 = vlib_buffer_get_current (b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242
ShivaShankarK05464832020-04-14 14:01:03 +0530243 if (PREDICT_TRUE
244 (ip0->protocol == IP_PROTOCOL_IPSEC_ESP
245 || ip0->protocol == IP_PROTOCOL_UDP))
246 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
ShivaShankarK05464832020-04-14 14:01:03 +0530248 esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
249 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_UDP))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700250 {
ShivaShankarK05464832020-04-14 14:01:03 +0530251 /* FIXME Skip, if not a UDP encapsulated packet */
252 esp0 = (esp_header_t *) ((u8 *) esp0 + sizeof (udp_header_t));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700253 }
ShivaShankarK05464832020-04-14 14:01:03 +0530254
255 p0 = ipsec_input_protect_policy_match (spd0,
256 clib_net_to_host_u32
257 (ip0->src_address.as_u32),
258 clib_net_to_host_u32
259 (ip0->dst_address.as_u32),
260 clib_net_to_host_u32
261 (esp0->spi));
262
263 has_space0 =
264 vlib_buffer_has_space (b[0],
265 (clib_address_t) (esp0 + 1) -
266 (clib_address_t) ip0);
267
268 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700269 {
ShivaShankarK05464832020-04-14 14:01:03 +0530270 ipsec_matched += 1;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800271
ShivaShankarK05464832020-04-14 14:01:03 +0530272 pi0 = p0 - im->policies;
273 vlib_increment_combined_counter
274 (&ipsec_spd_policy_counters,
275 thread_index, pi0, 1, clib_net_to_host_u16 (ip0->length));
Benoît Gannef7f49642019-10-25 15:26:27 +0200276
ShivaShankarK05464832020-04-14 14:01:03 +0530277 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
278 next[0] = im->esp4_decrypt_next_index;
279 vlib_buffer_advance (b[0], ((u8 *) esp0 - (u8 *) ip0));
280 goto trace0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700281 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800282 else
283 {
ShivaShankarK05464832020-04-14 14:01:03 +0530284 p0 = 0;
285 pi0 = ~0;
286 };
287
288 p0 = ipsec_input_policy_match (spd0,
289 clib_net_to_host_u32
290 (ip0->src_address.as_u32),
291 clib_net_to_host_u32
292 (ip0->dst_address.as_u32),
293 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
294 if (PREDICT_TRUE ((p0 != NULL)))
295 {
296 ipsec_bypassed += 1;
297 pi0 = p0 - im->policies;
298 goto trace0;
299 }
300 else
301 {
302 p0 = 0;
303 pi0 = ~0;
304 };
305
306 p0 = ipsec_input_policy_match (spd0,
307 clib_net_to_host_u32
308 (ip0->src_address.as_u32),
309 clib_net_to_host_u32
310 (ip0->dst_address.as_u32),
311 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
312 if (PREDICT_TRUE ((p0 != NULL)))
313 {
314 ipsec_dropped += 1;
315 pi0 = p0 - im->policies;
316 next[0] = IPSEC_INPUT_NEXT_DROP;
317 goto trace0;
318 }
319 else
320 {
321 p0 = 0;
322 pi0 = ~0;
323 };
324 trace0:
325 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
326 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
327 {
328 ipsec_input_trace_t *tr =
329 vlib_add_trace (vm, node, b[0], sizeof (*tr));
330
331 tr->proto = ip0->protocol;
332 tr->sa_id = p0 ? p0->sa_id : ~0;
333 tr->spi = has_space0 ? clib_net_to_host_u32 (esp0->spi) : ~0;
334 tr->seq = has_space0 ? clib_net_to_host_u32 (esp0->seq) : ~0;
335 tr->spd = spd0->id;
336 tr->policy_index = pi0;
337 }
338 }
339 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
340 {
341 ah0 = (ah_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
342 p0 = ipsec_input_protect_policy_match (spd0,
343 clib_net_to_host_u32
344 (ip0->src_address.as_u32),
345 clib_net_to_host_u32
346 (ip0->dst_address.as_u32),
347 clib_net_to_host_u32
348 (ah0->spi));
349
350 has_space0 =
351 vlib_buffer_has_space (b[0],
352 (clib_address_t) (ah0 + 1) -
353 (clib_address_t) ip0);
354
355 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
356 {
357 ipsec_matched += 1;
358
359 pi0 = p0 - im->policies;
360 vlib_increment_combined_counter
361 (&ipsec_spd_policy_counters,
362 thread_index, pi0, 1, clib_net_to_host_u16 (ip0->length));
363
364 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
365 next[0] = im->ah4_decrypt_next_index;
366 goto trace1;
367 }
368 else
369 {
370 p0 = 0;
371 pi0 = ~0;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800372 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
ShivaShankarK05464832020-04-14 14:01:03 +0530374 p0 = ipsec_input_policy_match (spd0,
375 clib_net_to_host_u32
376 (ip0->src_address.as_u32),
377 clib_net_to_host_u32
378 (ip0->dst_address.as_u32),
379 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
380 if (PREDICT_TRUE ((p0 != NULL)))
381 {
382 ipsec_bypassed += 1;
383 pi0 = p0 - im->policies;
384 goto trace1;
385 }
386 else
387 {
388 p0 = 0;
389 pi0 = ~0;
390 };
391
392 p0 = ipsec_input_policy_match (spd0,
393 clib_net_to_host_u32
394 (ip0->src_address.as_u32),
395 clib_net_to_host_u32
396 (ip0->dst_address.as_u32),
397 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
398 if (PREDICT_TRUE ((p0 != NULL)))
399 {
400 ipsec_dropped += 1;
401 pi0 = p0 - im->policies;
402 next[0] = IPSEC_INPUT_NEXT_DROP;
403 goto trace1;
404 }
405 else
406 {
407 p0 = 0;
408 pi0 = ~0;
409 };
410 trace1:
411 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
412 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
413 {
414 ipsec_input_trace_t *tr =
415 vlib_add_trace (vm, node, b[0], sizeof (*tr));
416
417 tr->proto = ip0->protocol;
418 tr->sa_id = p0 ? p0->sa_id : ~0;
419 tr->spi = has_space0 ? clib_net_to_host_u32 (ah0->spi) : ~0;
420 tr->seq = has_space0 ? clib_net_to_host_u32 (ah0->seq_no) : ~0;
421 tr->spd = spd0->id;
422 tr->policy_index = pi0;
423 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700424 }
ShivaShankarK05464832020-04-14 14:01:03 +0530425 else
426 {
427 ipsec_unprocessed += 1;
428 }
429 n_left_from -= 1;
430 b += 1;
431 next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800433
ShivaShankarK05464832020-04-14 14:01:03 +0530434 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Kingwel Xiec69ac312019-02-04 01:49:29 -0800436 vlib_node_increment_counter (vm, ipsec4_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530437 IPSEC_INPUT_ERROR_RX_PKTS, frame->n_vectors);
438
439 vlib_node_increment_counter (vm, ipsec4_input_node.index,
440 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800441 ipsec_matched);
ShivaShankarK05464832020-04-14 14:01:03 +0530442
443 vlib_node_increment_counter (vm, ipsec4_input_node.index,
444 IPSEC_INPUT_ERROR_RX_POLICY_NO_MATCH,
445 ipsec_unprocessed);
446
447 vlib_node_increment_counter (vm, ipsec4_input_node.index,
448 IPSEC_INPUT_ERROR_RX_POLICY_DISCARD,
449 ipsec_dropped);
450
451 vlib_node_increment_counter (vm, ipsec4_input_node.index,
452 IPSEC_INPUT_ERROR_RX_POLICY_BYPASS,
453 ipsec_bypassed);
454
455 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456}
457
458
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700459/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +0200460VLIB_REGISTER_NODE (ipsec4_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100461 .name = "ipsec4-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 .vector_size = sizeof (u32),
463 .format_trace = format_ipsec_input_trace,
464 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
466 .error_strings = ipsec_input_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467 .n_next_nodes = IPSEC_INPUT_N_NEXT,
468 .next_nodes = {
469#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
470 foreach_ipsec_input_next
471#undef _
472 },
473};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700474/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475
Damjan Mariond770cfc2019-09-02 19:00:33 +0200476extern vlib_node_registration_t ipsec6_input_node;
Damjan Marion1c80e832016-05-11 23:07:18 +0200477
Klement Sekerab8f35442018-10-29 13:38:19 +0100478
479VLIB_NODE_FN (ipsec6_input_node) (vlib_main_t * vm,
480 vlib_node_runtime_t * node,
481 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800483 u32 n_left_from, *from, next_index, *to_next, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484 ipsec_main_t *im = &ipsec_main;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800485 u32 ipsec_unprocessed = 0;
486 u32 ipsec_matched = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487
488 from = vlib_frame_vector_args (from_frame);
489 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800490 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
492 next_index = node->cached_next_index;
493
494 while (n_left_from > 0)
495 {
496 u32 n_left_to_next;
497
498 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
499
500 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700501 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800502 u32 bi0, next0, pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700503 vlib_buffer_t *b0;
504 ip6_header_t *ip0;
505 esp_header_t *esp0;
506 ip4_ipsec_config_t *c0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700507 ipsec_spd_t *spd0;
Matus Fabian5539a072016-09-07 05:57:09 -0700508 ipsec_policy_t *p0 = 0;
Klement Sekera611864f2018-09-26 11:19:00 +0200509 ah_header_t *ah0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700510 u32 header_size = sizeof (ip0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700512 bi0 = to_next[0] = from[0];
513 from += 1;
514 n_left_from -= 1;
515 to_next += 1;
516 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700518 b0 = vlib_get_buffer (vm, bi0);
Szymon Sliwa65a27272018-05-09 14:28:08 +0200519 b0->flags |= VNET_BUFFER_F_IS_IP6;
520 b0->flags &= ~VNET_BUFFER_F_IS_IP4;
Damjan Marion7d98a122018-07-19 20:42:08 +0200521 c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700523 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700525 ip0 = vlib_buffer_get_current (b0);
526 esp0 = (esp_header_t *) ((u8 *) ip0 + header_size);
Klement Sekera611864f2018-09-26 11:19:00 +0200527 ah0 = (ah_header_t *) ((u8 *) ip0 + header_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700529 if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
530 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700532 clib_warning
533 ("packet received from %U to %U spi %u size %u spd_id %u",
534 format_ip6_address, &ip0->src_address, format_ip6_address,
535 &ip0->dst_address, clib_net_to_host_u32 (esp0->spi),
536 clib_net_to_host_u16 (ip0->payload_length) + header_size,
537 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538#endif
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200539 p0 = ipsec6_input_protect_policy_match (spd0,
540 &ip0->src_address,
541 &ip0->dst_address,
542 clib_net_to_host_u32
543 (esp0->spi));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700545 if (PREDICT_TRUE (p0 != 0))
546 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800547 ipsec_matched += 1;
548
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800549 pi0 = p0 - im->policies;
550 vlib_increment_combined_counter
551 (&ipsec_spd_policy_counters,
552 thread_index, pi0, 1,
553 clib_net_to_host_u16 (ip0->payload_length) +
554 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800555
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100556 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200557 next0 = im->esp6_decrypt_next_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700558 vlib_buffer_advance (b0, header_size);
559 goto trace0;
560 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800561 else
562 {
563 pi0 = ~0;
564 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700565 }
Klement Sekera611864f2018-09-26 11:19:00 +0200566 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
567 {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200568 p0 = ipsec6_input_protect_policy_match (spd0,
569 &ip0->src_address,
570 &ip0->dst_address,
571 clib_net_to_host_u32
572 (ah0->spi));
Klement Sekera611864f2018-09-26 11:19:00 +0200573
574 if (PREDICT_TRUE (p0 != 0))
575 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800576 ipsec_matched += 1;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800577 pi0 = p0 - im->policies;
578 vlib_increment_combined_counter
579 (&ipsec_spd_policy_counters,
580 thread_index, pi0, 1,
581 clib_net_to_host_u16 (ip0->payload_length) +
582 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800583
Klement Sekera611864f2018-09-26 11:19:00 +0200584 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200585 next0 = im->ah6_decrypt_next_index;
Klement Sekera611864f2018-09-26 11:19:00 +0200586 goto trace0;
587 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800588 else
589 {
590 pi0 = ~0;
591 }
Klement Sekera611864f2018-09-26 11:19:00 +0200592 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800593 else
594 {
595 ipsec_unprocessed += 1;
596 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700598 trace0:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800599 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
600 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700601 {
602 ipsec_input_trace_t *tr =
603 vlib_add_trace (vm, node, b0, sizeof (*tr));
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800604
605 if (p0)
606 tr->sa_id = p0->sa_id;
607 tr->proto = ip0->protocol;
608 tr->spi = clib_net_to_host_u32 (esp0->spi);
609 tr->seq = clib_net_to_host_u32 (esp0->seq);
610 tr->spd = spd0->id;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700611 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700613 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
614 n_left_to_next, bi0, next0);
615 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
617 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800618
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200619 vlib_node_increment_counter (vm, ipsec6_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700620 IPSEC_INPUT_ERROR_RX_PKTS,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800621 from_frame->n_vectors - ipsec_unprocessed);
622
623 vlib_node_increment_counter (vm, ipsec6_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530624 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800625 ipsec_matched);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626
627 return from_frame->n_vectors;
628}
629
630
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700631/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +0200632VLIB_REGISTER_NODE (ipsec6_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100633 .name = "ipsec6-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 .vector_size = sizeof (u32),
635 .format_trace = format_ipsec_input_trace,
636 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
638 .error_strings = ipsec_input_error_strings,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800639 .n_next_nodes = IPSEC_INPUT_N_NEXT,
640 .next_nodes = {
641#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
642 foreach_ipsec_input_next
643#undef _
644 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700646/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200647
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 */