blob: 6ccc0be26228514955aaf0fa22c88a9df9b90e0c [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>
Piotr Bronowski993b6be2022-08-31 13:48:14 +000022#include <vnet/ipsec/ipsec_spd_fp_lookup.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <vnet/ipsec/ipsec.h>
25#include <vnet/ipsec/esp.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080026#include <vnet/ipsec/ah.h>
Neale Ranns918c1612019-02-21 23:34:59 -080027#include <vnet/ipsec/ipsec_io.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
ShivaShankarK05464832020-04-14 14:01:03 +053029#define foreach_ipsec_input_error \
30_(RX_PKTS, "IPSec pkts received") \
31_(RX_POLICY_MATCH, "IPSec policy match") \
32_(RX_POLICY_NO_MATCH, "IPSec policy not matched") \
33_(RX_POLICY_BYPASS, "IPSec policy bypass") \
34_(RX_POLICY_DISCARD, "IPSec policy discard")
Ed Warnickecb9cada2015-12-08 15:45:58 -070035
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070036typedef enum
37{
Ed Warnickecb9cada2015-12-08 15:45:58 -070038#define _(sym,str) IPSEC_INPUT_ERROR_##sym,
39 foreach_ipsec_input_error
40#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070041 IPSEC_INPUT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070042} ipsec_input_error_t;
43
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070044static char *ipsec_input_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#define _(sym,string) string,
46 foreach_ipsec_input_error
47#undef _
48};
49
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070050typedef struct
51{
Neale Rannsa09c1ff2019-02-04 01:10:30 -080052 ip_protocol_t proto;
Pierre Pfister62219272018-11-26 09:29:00 +010053 u32 spd;
Neale Rannsa09c1ff2019-02-04 01:10:30 -080054 u32 policy_index;
Piotr Bronowski06abf232022-09-20 14:44:36 +000055 u32 policy_type;
Matus Fabian5539a072016-09-07 05:57:09 -070056 u32 sa_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057 u32 spi;
58 u32 seq;
59} ipsec_input_trace_t;
60
61/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070062static u8 *
63format_ipsec_input_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070064{
65 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
66 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070067 ipsec_input_trace_t *t = va_arg (*args, ipsec_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
Piotr Bronowski06abf232022-09-20 14:44:36 +000069 s =
70 format (s, "%U: sa_id %u type: %u spd %u policy %d spi %u (0x%08x) seq %u",
71 format_ip_protocol, t->proto, t->sa_id, t->policy_type, t->spd,
72 t->policy_index, t->spi, t->spi, t->seq);
Matus Fabian5539a072016-09-07 05:57:09 -070073
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 return s;
75}
76
Zachary Leaf7cd35f52021-06-25 08:11:15 -050077always_inline void
78ipsec4_input_spd_add_flow_cache_entry (ipsec_main_t *im, u32 sa, u32 da,
79 ipsec_spd_policy_type_t policy_type,
80 u32 pol_id)
81{
82 u64 hash;
83 u8 is_overwrite = 0, is_stale_overwrite = 0;
84 /* Store in network byte order to avoid conversion on lookup */
85 ipsec4_inbound_spd_tuple_t ip4_tuple = {
86 .ip4_src_addr = (ip4_address_t) clib_host_to_net_u32 (sa),
87 .ip4_dest_addr = (ip4_address_t) clib_host_to_net_u32 (da),
88 .policy_type = policy_type
89 };
90
91 ip4_tuple.kv_16_8.value =
92 (((u64) pol_id) << 32) | ((u64) im->input_epoch_count);
93
94 hash = ipsec4_hash_16_8 (&ip4_tuple.kv_16_8);
95 hash &= (im->ipsec4_in_spd_hash_num_buckets - 1);
96
97 ipsec_spinlock_lock (&im->ipsec4_in_spd_hash_tbl[hash].bucket_lock);
98 /* Check if we are overwriting an existing entry so we know
99 whether to increment the flow cache counter. Since flow
100 cache counter is reset on any policy add/remove, but
101 hash table values are not, we need to check if the entry
102 we are overwriting is stale or not. If it's a stale entry
103 overwrite, we still want to increment flow cache counter */
104 is_overwrite = (im->ipsec4_in_spd_hash_tbl[hash].value != 0);
105 /* Check if we are overwriting a stale entry by comparing
106 with current epoch count */
107 if (PREDICT_FALSE (is_overwrite))
108 is_stale_overwrite =
109 (im->input_epoch_count !=
110 ((u32) (im->ipsec4_in_spd_hash_tbl[hash].value & 0xFFFFFFFF)));
111 clib_memcpy_fast (&im->ipsec4_in_spd_hash_tbl[hash], &ip4_tuple.kv_16_8,
112 sizeof (ip4_tuple.kv_16_8));
113 ipsec_spinlock_unlock (&im->ipsec4_in_spd_hash_tbl[hash].bucket_lock);
114
115 /* Increment the counter to track active flow cache entries
116 when entering a fresh entry or overwriting a stale one */
117 if (!is_overwrite || is_stale_overwrite)
118 clib_atomic_fetch_add_relax (&im->ipsec4_in_spd_flow_cache_entries, 1);
119
120 return;
121}
122
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123always_inline ipsec_policy_t *
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500124ipsec4_input_spd_find_flow_cache_entry (ipsec_main_t *im, u32 sa, u32 da,
125 ipsec_spd_policy_type_t policy_type)
126{
127 ipsec_policy_t *p = NULL;
128 ipsec4_hash_kv_16_8_t kv_result;
129 u64 hash;
130 ipsec4_inbound_spd_tuple_t ip4_tuple = { .ip4_src_addr = (ip4_address_t) sa,
131 .ip4_dest_addr = (ip4_address_t) da,
132 .policy_type = policy_type };
133
134 hash = ipsec4_hash_16_8 (&ip4_tuple.kv_16_8);
135 hash &= (im->ipsec4_in_spd_hash_num_buckets - 1);
136
137 ipsec_spinlock_lock (&im->ipsec4_in_spd_hash_tbl[hash].bucket_lock);
138 kv_result = im->ipsec4_in_spd_hash_tbl[hash];
139 ipsec_spinlock_unlock (&im->ipsec4_in_spd_hash_tbl[hash].bucket_lock);
140
141 if (ipsec4_hash_key_compare_16_8 ((u64 *) &ip4_tuple.kv_16_8,
142 (u64 *) &kv_result))
143 {
144 if (im->input_epoch_count == ((u32) (kv_result.value & 0xFFFFFFFF)))
145 {
146 /* Get the policy based on the index */
147 p =
148 pool_elt_at_index (im->policies, ((u32) (kv_result.value >> 32)));
149 }
150 }
151
152 return p;
153}
154
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000155always_inline void
Piotr Bronowski1d9780a2022-10-21 15:48:55 +0000156ipsec_fp_in_5tuple_from_ip4_range (ipsec_fp_5tuple_t *tuple, u32 sa, u32 da,
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000157 u32 spi, u8 action)
158{
159 clib_memset (tuple->l3_zero_pad, 0, sizeof (tuple->l3_zero_pad));
Piotr Bronowski1d9780a2022-10-21 15:48:55 +0000160 tuple->laddr.as_u32 = da;
161 tuple->raddr.as_u32 = sa;
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000162 tuple->spi = spi;
163 tuple->action = action;
164 tuple->is_ipv6 = 0;
165}
166
Piotr Bronowski06abf232022-09-20 14:44:36 +0000167always_inline void
Piotr Bronowski1d9780a2022-10-21 15:48:55 +0000168ipsec_fp_in_5tuple_from_ip6_range (ipsec_fp_5tuple_t *tuple, ip6_address_t *sa,
169 ip6_address_t *da, u32 spi, u8 action)
Piotr Bronowski06abf232022-09-20 14:44:36 +0000170
171{
Piotr Bronowski1d9780a2022-10-21 15:48:55 +0000172 clib_memcpy (&tuple->ip6_laddr, da, sizeof (ip6_address_t));
173 clib_memcpy (&tuple->ip6_raddr, sa, sizeof (ip6_address_t));
Piotr Bronowski06abf232022-09-20 14:44:36 +0000174
175 tuple->spi = spi;
176 tuple->action = action;
177 tuple->is_ipv6 = 1;
178}
179
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500180always_inline ipsec_policy_t *
181ipsec_input_policy_match (ipsec_spd_t *spd, u32 sa, u32 da,
ShivaShankarK05464832020-04-14 14:01:03 +0530182 ipsec_spd_policy_type_t policy_type)
183{
184 ipsec_main_t *im = &ipsec_main;
185 ipsec_policy_t *p;
186 u32 *i;
187
188 vec_foreach (i, spd->policies[policy_type])
189 {
190 p = pool_elt_at_index (im->policies, *i);
191
192 if (da < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
193 continue;
194
195 if (da > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
196 continue;
197
198 if (sa < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
199 continue;
200
201 if (sa > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
202 continue;
203
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500204 if (im->input_flow_cache_flag)
205 {
206 /* Add an Entry in Flow cache */
207 ipsec4_input_spd_add_flow_cache_entry (im, sa, da, policy_type, *i);
208 }
ShivaShankarK05464832020-04-14 14:01:03 +0530209 return p;
210 }
211 return 0;
212}
213
214always_inline ipsec_policy_t *
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500215ipsec_input_protect_policy_match (ipsec_spd_t *spd, u32 sa, u32 da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216{
217 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700218 ipsec_policy_t *p;
219 ipsec_sa_t *s;
220 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800222 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700223 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800224 p = pool_elt_at_index (im->policies, *i);
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000225 s = ipsec_sa_get (p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700227 if (spi != s->spi)
228 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Damjan Mariond709cbc2019-03-26 13:16:42 +0100230 if (ipsec_sa_is_set_IS_TUNNEL (s))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700231 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000232 if (da != clib_net_to_host_u32 (s->tunnel.t_dst.ip.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700233 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
Neale Ranns9ec846c2021-02-09 14:04:02 +0000235 if (sa != clib_net_to_host_u32 (s->tunnel.t_src.ip.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700236 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500238 goto return_policy;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700239 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
Neale Rannsd2029bc2019-07-11 09:31:19 +0000241 if (da < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700242 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Neale Rannsd2029bc2019-07-11 09:31:19 +0000244 if (da > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700245 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
Neale Rannsd2029bc2019-07-11 09:31:19 +0000247 if (sa < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700248 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
Neale Rannsd2029bc2019-07-11 09:31:19 +0000250 if (sa > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700251 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500253 return_policy:
254 if (im->input_flow_cache_flag)
255 {
256 /* Add an Entry in Flow cache */
257 ipsec4_input_spd_add_flow_cache_entry (
258 im, sa, da, IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT, *i);
259 }
260
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700261 return p;
262 }
263 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264}
265
266always_inline uword
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700267ip6_addr_match_range (ip6_address_t * a, ip6_address_t * la,
268 ip6_address_t * ua)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700270 if ((memcmp (a->as_u64, la->as_u64, 2 * sizeof (u64)) >= 0) &&
271 (memcmp (a->as_u64, ua->as_u64, 2 * sizeof (u64)) <= 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 return 1;
273 return 0;
274}
275
vinay tripathi75069ce2023-05-31 14:41:45 +0530276always_inline void
277ipsec_esp_packet_process (vlib_main_t *vm, ipsec_main_t *im, ip4_header_t *ip0,
278 esp_header_t *esp0, u32 thread_index,
279 ipsec_spd_t *spd0, vlib_buffer_t **b,
280 vlib_node_runtime_t *node, u64 *ipsec_bypassed,
281 u64 *ipsec_dropped, u64 *ipsec_matched,
282 u64 *ipsec_unprocessed, u16 *next)
283
284{
285 ipsec_policy_t *p0 = NULL;
286 u32 pi0;
287 u8 has_space0;
288 bool search_flow_cache = false;
289 ipsec_policy_t *policies[1];
290 ipsec_fp_5tuple_t tuples[1];
291 bool ip_v6 = true;
292
293 /* if flow cache is enabled, first search through flow cache for a
294 * policy match for either protect, bypass or discard rules, in that
295 * order. if no match is found search_flow_cache is set to false (1)
296 * and we revert back to linear search
297 */
298
299 search_flow_cache = im->input_flow_cache_flag;
300udp_or_esp:
301
vinay tripathi2d7988d2023-06-06 12:57:55 +0530302 /* SPI ID field in the ESP header MUST NOT be a zero value */
303 if (esp0->spi == 0)
304 {
305 /* Drop the packet if SPI ID is zero */
306 *ipsec_unprocessed += 1;
307 next[0] = IPSEC_INPUT_NEXT_DROP;
308 return;
309 }
310
vinay tripathi75069ce2023-05-31 14:41:45 +0530311 if (im->fp_spd_ipv4_in_is_enabled &&
312 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
313 {
314 ipsec_fp_in_5tuple_from_ip4_range (&tuples[0], ip0->src_address.as_u32,
315 ip0->dst_address.as_u32,
316 clib_net_to_host_u32 (esp0->spi),
317 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
318 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
319 p0 = policies[0];
320 }
321 else if (search_flow_cache) /* attempt to match policy in flow cache */
322 {
323 p0 = ipsec4_input_spd_find_flow_cache_entry (
324 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
325 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
326 }
327
328 else /* linear search if flow cache is not enabled,
329 or flow cache search just failed */
330 {
331 p0 = ipsec_input_protect_policy_match (
332 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
333 clib_net_to_host_u32 (ip0->dst_address.as_u32),
334 clib_net_to_host_u32 (esp0->spi));
335 }
336 has_space0 = vlib_buffer_has_space (b[0], (clib_address_t) (esp0 + 1) -
337 (clib_address_t) ip0);
338
339 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
340 {
341 *ipsec_matched += 1;
342
343 pi0 = p0 - im->policies;
344 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
345 thread_index, pi0, 1,
346 clib_net_to_host_u16 (ip0->length));
347
348 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
349 next[0] = im->esp4_decrypt_next_index;
350 vlib_buffer_advance (b[0], ((u8 *) esp0 - (u8 *) ip0));
351 goto trace0;
352 }
353 else
354 {
355 p0 = 0;
356 pi0 = ~0;
357 }
358 if (im->fp_spd_ipv4_in_is_enabled &&
359 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
360 {
361 tuples->action = IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS;
362 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
363 p0 = policies[0];
364 }
365 else if (search_flow_cache)
366 {
367 p0 = ipsec4_input_spd_find_flow_cache_entry (
368 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
369 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
370 }
371
372 else
373 {
374 p0 = ipsec_input_policy_match (
375 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
376 clib_net_to_host_u32 (ip0->dst_address.as_u32),
377 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
378 }
379
380 if (PREDICT_TRUE ((p0 != NULL)))
381 {
382 *ipsec_bypassed += 1;
383
384 pi0 = p0 - im->policies;
385 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
386 thread_index, pi0, 1,
387 clib_net_to_host_u16 (ip0->length));
388
389 goto trace0;
390 }
391 else
392 {
393 p0 = 0;
394 pi0 = ~0;
395 };
396 if (im->fp_spd_ipv4_in_is_enabled &&
397 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
398 {
399 tuples->action = IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD;
400 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
401 p0 = policies[0];
402 }
403 else
404
405 if (search_flow_cache)
406 {
407 p0 = ipsec4_input_spd_find_flow_cache_entry (
408 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
409 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
410 }
411
412 else
413 {
414 p0 = ipsec_input_policy_match (
415 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
416 clib_net_to_host_u32 (ip0->dst_address.as_u32),
417 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
418 }
419
420 if (PREDICT_TRUE ((p0 != NULL)))
421 {
422 *ipsec_dropped += 1;
423
424 pi0 = p0 - im->policies;
425 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
426 thread_index, pi0, 1,
427 clib_net_to_host_u16 (ip0->length));
428
429 next[0] = IPSEC_INPUT_NEXT_DROP;
430 goto trace0;
431 }
432 else
433 {
434 p0 = 0;
435 pi0 = ~0;
436 };
437 /* flow cache search failed, try again with linear search */
438 if (search_flow_cache && p0 == NULL)
439 {
440 search_flow_cache = false;
441 goto udp_or_esp;
442 }
443
444 /* Drop by default if no match on PROTECT, BYPASS or DISCARD */
445 *ipsec_unprocessed += 1;
446 next[0] = IPSEC_INPUT_NEXT_DROP;
447
448trace0:
449 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
450 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
451 {
452 ipsec_input_trace_t *tr = vlib_add_trace (vm, node, b[0], sizeof (*tr));
453
454 tr->proto = ip0->protocol;
455 tr->sa_id = p0 ? p0->sa_id : ~0;
456 tr->spi = has_space0 ? clib_net_to_host_u32 (esp0->spi) : ~0;
457 tr->seq = has_space0 ? clib_net_to_host_u32 (esp0->seq) : ~0;
458 tr->spd = spd0->id;
459 tr->policy_index = pi0;
460 }
461}
462
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463always_inline ipsec_policy_t *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200464ipsec6_input_protect_policy_match (ipsec_spd_t * spd,
465 ip6_address_t * sa,
466 ip6_address_t * da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467{
468 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700469 ipsec_policy_t *p;
470 ipsec_sa_t *s;
471 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800473 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700474 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800475 p = pool_elt_at_index (im->policies, *i);
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000476 s = ipsec_sa_get (p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700478 if (spi != s->spi)
479 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480
Damjan Mariond709cbc2019-03-26 13:16:42 +0100481 if (ipsec_sa_is_set_IS_TUNNEL (s))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700482 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000483 if (!ip6_address_is_equal (sa, &s->tunnel.t_src.ip.ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700484 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485
Neale Ranns9ec846c2021-02-09 14:04:02 +0000486 if (!ip6_address_is_equal (da, &s->tunnel.t_dst.ip.ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700487 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700489 return p;
490 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700492 if (!ip6_addr_match_range (sa, &p->raddr.start.ip6, &p->raddr.stop.ip6))
493 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700495 if (!ip6_addr_match_range (da, &p->laddr.start.ip6, &p->laddr.stop.ip6))
496 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700498 return p;
499 }
500 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501}
502
Damjan Mariond770cfc2019-09-02 19:00:33 +0200503extern vlib_node_registration_t ipsec4_input_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100504
Klement Sekerab8f35442018-10-29 13:38:19 +0100505VLIB_NODE_FN (ipsec4_input_node) (vlib_main_t * vm,
506 vlib_node_runtime_t * node,
ShivaShankarK05464832020-04-14 14:01:03 +0530507 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508{
ShivaShankarK05464832020-04-14 14:01:03 +0530509 u32 n_left_from, *from, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510 ipsec_main_t *im = &ipsec_main;
ShivaShankarK05464832020-04-14 14:01:03 +0530511 u64 ipsec_unprocessed = 0, ipsec_matched = 0;
512 u64 ipsec_dropped = 0, ipsec_bypassed = 0;
513 vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
514 vlib_buffer_t **b = bufs;
515 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516
ShivaShankarK05464832020-04-14 14:01:03 +0530517 from = vlib_frame_vector_args (frame);
518 n_left_from = frame->n_vectors;
519 next = nexts;
520 vlib_get_buffers (vm, from, bufs, n_left_from);
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800521 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523
524 while (n_left_from > 0)
525 {
ShivaShankarK05464832020-04-14 14:01:03 +0530526 u32 next32, pi0;
527 ip4_header_t *ip0;
528 esp_header_t *esp0 = NULL;
529 ah_header_t *ah0;
530 ip4_ipsec_config_t *c0;
531 ipsec_spd_t *spd0;
532 ipsec_policy_t *p0 = NULL;
533 u8 has_space0;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500534 bool search_flow_cache = false;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535
ShivaShankarK05464832020-04-14 14:01:03 +0530536 if (n_left_from > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700537 {
ShivaShankarK05464832020-04-14 14:01:03 +0530538 vlib_prefetch_buffer_data (b[1], LOAD);
539 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540
ShivaShankarK05464832020-04-14 14:01:03 +0530541 b[0]->flags |= VNET_BUFFER_F_IS_IP4;
542 b[0]->flags &= ~VNET_BUFFER_F_IS_IP6;
543 c0 = vnet_feature_next_with_data (&next32, b[0], sizeof (c0[0]));
544 next[0] = (u16) next32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
ShivaShankarK05464832020-04-14 14:01:03 +0530546 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
ShivaShankarK05464832020-04-14 14:01:03 +0530548 ip0 = vlib_buffer_get_current (b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
vinay tripathi2d7988d2023-06-06 12:57:55 +0530550 if (ip0->protocol == IP_PROTOCOL_UDP)
ShivaShankarK05464832020-04-14 14:01:03 +0530551 {
vinay tripathi2d7988d2023-06-06 12:57:55 +0530552 udp_header_t *udp0 = NULL;
553 udp0 = (udp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
vinay tripathi2d7988d2023-06-06 12:57:55 +0530555 /* As per rfc3948 in UDP Encapsulated Header, UDP checksum must be
556 * Zero, and receivers must not depen upon UPD checksum.
557 * inside ESP header , SPI ID value MUST NOT be a zero value
558 * */
559
560 if (udp0->checksum == 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700561 {
vinay tripathi2d7988d2023-06-06 12:57:55 +0530562 esp0 = (esp_header_t *) ((u8 *) udp0 + sizeof (udp_header_t));
563
564 ipsec_esp_packet_process (vm, im, ip0, esp0, thread_index, spd0,
565 b, node, &ipsec_bypassed,
566 &ipsec_dropped, &ipsec_matched,
567 &ipsec_unprocessed, next);
568 if (ipsec_bypassed > 0)
569 goto ipsec_bypassed;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700570 }
vinay tripathi2d7988d2023-06-06 12:57:55 +0530571 }
572 else if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
573 {
574 esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
vinay tripathi75069ce2023-05-31 14:41:45 +0530575 ipsec_esp_packet_process (vm, im, ip0, esp0, thread_index, spd0, b,
576 node, &ipsec_bypassed, &ipsec_dropped,
577 &ipsec_matched, &ipsec_unprocessed, next);
vinay tripathi2d7988d2023-06-06 12:57:55 +0530578 if (ipsec_bypassed > 0)
579 goto ipsec_bypassed;
ShivaShankarK05464832020-04-14 14:01:03 +0530580 }
581 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
582 {
583 ah0 = (ah_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500584
585 // if flow cache is enabled, first search through flow cache for a
586 // policy match and revert back to linear search on failure
587 search_flow_cache = im->input_flow_cache_flag;
588
589 ah:
590 if (search_flow_cache)
591 {
592 p0 = ipsec4_input_spd_find_flow_cache_entry (
593 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
594 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
595 }
596
597 else
598 {
599 p0 = ipsec_input_protect_policy_match (
600 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
601 clib_net_to_host_u32 (ip0->dst_address.as_u32),
602 clib_net_to_host_u32 (ah0->spi));
603 }
ShivaShankarK05464832020-04-14 14:01:03 +0530604
605 has_space0 =
606 vlib_buffer_has_space (b[0],
607 (clib_address_t) (ah0 + 1) -
608 (clib_address_t) ip0);
609
610 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
611 {
612 ipsec_matched += 1;
613
614 pi0 = p0 - im->policies;
615 vlib_increment_combined_counter
616 (&ipsec_spd_policy_counters,
617 thread_index, pi0, 1, clib_net_to_host_u16 (ip0->length));
618
619 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
620 next[0] = im->ah4_decrypt_next_index;
621 goto trace1;
622 }
623 else
624 {
625 p0 = 0;
626 pi0 = ~0;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800627 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500629 if (search_flow_cache)
630 {
631 p0 = ipsec4_input_spd_find_flow_cache_entry (
632 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
633 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
634 }
635
636 else
637 {
638 p0 = ipsec_input_policy_match (
639 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
640 clib_net_to_host_u32 (ip0->dst_address.as_u32),
641 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
642 }
643
ShivaShankarK05464832020-04-14 14:01:03 +0530644 if (PREDICT_TRUE ((p0 != NULL)))
645 {
646 ipsec_bypassed += 1;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500647
ShivaShankarK05464832020-04-14 14:01:03 +0530648 pi0 = p0 - im->policies;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500649 vlib_increment_combined_counter (
650 &ipsec_spd_policy_counters, thread_index, pi0, 1,
651 clib_net_to_host_u16 (ip0->length));
652
ShivaShankarK05464832020-04-14 14:01:03 +0530653 goto trace1;
654 }
655 else
656 {
657 p0 = 0;
658 pi0 = ~0;
659 };
660
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500661 if (search_flow_cache)
662 {
663 p0 = ipsec4_input_spd_find_flow_cache_entry (
664 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
665 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
666 }
667
668 else
669 {
670 p0 = ipsec_input_policy_match (
671 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
672 clib_net_to_host_u32 (ip0->dst_address.as_u32),
673 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
674 }
675
ShivaShankarK05464832020-04-14 14:01:03 +0530676 if (PREDICT_TRUE ((p0 != NULL)))
677 {
678 ipsec_dropped += 1;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500679
ShivaShankarK05464832020-04-14 14:01:03 +0530680 pi0 = p0 - im->policies;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500681 vlib_increment_combined_counter (
682 &ipsec_spd_policy_counters, thread_index, pi0, 1,
683 clib_net_to_host_u16 (ip0->length));
684
ShivaShankarK05464832020-04-14 14:01:03 +0530685 next[0] = IPSEC_INPUT_NEXT_DROP;
686 goto trace1;
687 }
688 else
689 {
690 p0 = 0;
691 pi0 = ~0;
692 };
Zachary Leaf26fec712021-10-26 10:05:58 -0500693
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500694 // flow cache search failed, retry with linear search
695 if (search_flow_cache && p0 == NULL)
696 {
697 search_flow_cache = false;
698 goto ah;
699 }
700
Zachary Leaf26fec712021-10-26 10:05:58 -0500701 /* Drop by default if no match on PROTECT, BYPASS or DISCARD */
702 ipsec_unprocessed += 1;
703 next[0] = IPSEC_INPUT_NEXT_DROP;
704
ShivaShankarK05464832020-04-14 14:01:03 +0530705 trace1:
706 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
707 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
708 {
709 ipsec_input_trace_t *tr =
710 vlib_add_trace (vm, node, b[0], sizeof (*tr));
711
712 tr->proto = ip0->protocol;
713 tr->sa_id = p0 ? p0->sa_id : ~0;
714 tr->spi = has_space0 ? clib_net_to_host_u32 (ah0->spi) : ~0;
715 tr->seq = has_space0 ? clib_net_to_host_u32 (ah0->seq_no) : ~0;
716 tr->spd = spd0->id;
717 tr->policy_index = pi0;
718 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700719 }
ShivaShankarK05464832020-04-14 14:01:03 +0530720 else
721 {
vinay tripathi2d7988d2023-06-06 12:57:55 +0530722 ipsec_bypassed:
ShivaShankarK05464832020-04-14 14:01:03 +0530723 ipsec_unprocessed += 1;
724 }
725 n_left_from -= 1;
726 b += 1;
727 next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800729
ShivaShankarK05464832020-04-14 14:01:03 +0530730 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731
Kingwel Xiec69ac312019-02-04 01:49:29 -0800732 vlib_node_increment_counter (vm, ipsec4_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530733 IPSEC_INPUT_ERROR_RX_PKTS, frame->n_vectors);
734
735 vlib_node_increment_counter (vm, ipsec4_input_node.index,
736 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800737 ipsec_matched);
ShivaShankarK05464832020-04-14 14:01:03 +0530738
739 vlib_node_increment_counter (vm, ipsec4_input_node.index,
740 IPSEC_INPUT_ERROR_RX_POLICY_NO_MATCH,
741 ipsec_unprocessed);
742
743 vlib_node_increment_counter (vm, ipsec4_input_node.index,
744 IPSEC_INPUT_ERROR_RX_POLICY_DISCARD,
745 ipsec_dropped);
746
747 vlib_node_increment_counter (vm, ipsec4_input_node.index,
748 IPSEC_INPUT_ERROR_RX_POLICY_BYPASS,
749 ipsec_bypassed);
750
751 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752}
753
Damjan Mariond770cfc2019-09-02 19:00:33 +0200754VLIB_REGISTER_NODE (ipsec4_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100755 .name = "ipsec4-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756 .vector_size = sizeof (u32),
757 .format_trace = format_ipsec_input_trace,
758 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
760 .error_strings = ipsec_input_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761 .n_next_nodes = IPSEC_INPUT_N_NEXT,
762 .next_nodes = {
763#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
764 foreach_ipsec_input_next
765#undef _
766 },
767};
768
Damjan Mariond770cfc2019-09-02 19:00:33 +0200769extern vlib_node_registration_t ipsec6_input_node;
Damjan Marion1c80e832016-05-11 23:07:18 +0200770
Klement Sekerab8f35442018-10-29 13:38:19 +0100771
772VLIB_NODE_FN (ipsec6_input_node) (vlib_main_t * vm,
773 vlib_node_runtime_t * node,
774 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800776 u32 n_left_from, *from, next_index, *to_next, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777 ipsec_main_t *im = &ipsec_main;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800778 u32 ipsec_unprocessed = 0;
779 u32 ipsec_matched = 0;
Piotr Bronowski06abf232022-09-20 14:44:36 +0000780 ipsec_policy_t *policies[1];
781 ipsec_fp_5tuple_t tuples[1];
782 bool ip_v6 = true;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
784 from = vlib_frame_vector_args (from_frame);
785 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800786 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
788 next_index = node->cached_next_index;
789
790 while (n_left_from > 0)
791 {
792 u32 n_left_to_next;
793
794 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
795
796 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700797 {
Piotr Bronowski06abf232022-09-20 14:44:36 +0000798 u32 bi0, next0, pi0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700799 vlib_buffer_t *b0;
800 ip6_header_t *ip0;
801 esp_header_t *esp0;
802 ip4_ipsec_config_t *c0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700803 ipsec_spd_t *spd0;
Matus Fabian5539a072016-09-07 05:57:09 -0700804 ipsec_policy_t *p0 = 0;
Klement Sekera611864f2018-09-26 11:19:00 +0200805 ah_header_t *ah0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700806 u32 header_size = sizeof (ip0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700808 bi0 = to_next[0] = from[0];
809 from += 1;
810 n_left_from -= 1;
811 to_next += 1;
812 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700814 b0 = vlib_get_buffer (vm, bi0);
Szymon Sliwa65a27272018-05-09 14:28:08 +0200815 b0->flags |= VNET_BUFFER_F_IS_IP6;
816 b0->flags &= ~VNET_BUFFER_F_IS_IP4;
Damjan Marion7d98a122018-07-19 20:42:08 +0200817 c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700819 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700821 ip0 = vlib_buffer_get_current (b0);
822 esp0 = (esp_header_t *) ((u8 *) ip0 + header_size);
Klement Sekera611864f2018-09-26 11:19:00 +0200823 ah0 = (ah_header_t *) ((u8 *) ip0 + header_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700825 if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
826 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700827#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700828 clib_warning
829 ("packet received from %U to %U spi %u size %u spd_id %u",
830 format_ip6_address, &ip0->src_address, format_ip6_address,
831 &ip0->dst_address, clib_net_to_host_u32 (esp0->spi),
832 clib_net_to_host_u16 (ip0->payload_length) + header_size,
833 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834#endif
Piotr Bronowski06abf232022-09-20 14:44:36 +0000835 if (im->fp_spd_ipv6_in_is_enabled &&
836 PREDICT_TRUE (INDEX_INVALID !=
837 spd0->fp_spd.ip6_in_lookup_hash_idx))
838 {
839 ipsec_fp_in_5tuple_from_ip6_range (
840 &tuples[0], &ip0->src_address, &ip0->dst_address,
841 clib_net_to_host_u32 (esp0->spi),
842 IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT);
843 ipsec_fp_in_policy_match_n (&spd0->fp_spd, ip_v6, tuples,
844 policies, 1);
845 p0 = policies[0];
846 }
847 else
848 p0 = ipsec6_input_protect_policy_match (
849 spd0, &ip0->src_address, &ip0->dst_address,
850 clib_net_to_host_u32 (esp0->spi));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700852 if (PREDICT_TRUE (p0 != 0))
853 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800854 ipsec_matched += 1;
855
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800856 pi0 = p0 - im->policies;
857 vlib_increment_combined_counter
858 (&ipsec_spd_policy_counters,
859 thread_index, pi0, 1,
860 clib_net_to_host_u16 (ip0->payload_length) +
861 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800862
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100863 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200864 next0 = im->esp6_decrypt_next_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700865 vlib_buffer_advance (b0, header_size);
Piotr Bronowski06abf232022-09-20 14:44:36 +0000866 /* TODO Add policy matching for bypass and discard policy
867 * type */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700868 goto trace0;
869 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800870 else
871 {
872 pi0 = ~0;
Zachary Leaf26fec712021-10-26 10:05:58 -0500873 ipsec_unprocessed += 1;
874 next0 = IPSEC_INPUT_NEXT_DROP;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800875 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700876 }
Klement Sekera611864f2018-09-26 11:19:00 +0200877 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
878 {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200879 p0 = ipsec6_input_protect_policy_match (spd0,
880 &ip0->src_address,
881 &ip0->dst_address,
882 clib_net_to_host_u32
883 (ah0->spi));
Klement Sekera611864f2018-09-26 11:19:00 +0200884
885 if (PREDICT_TRUE (p0 != 0))
886 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800887 ipsec_matched += 1;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800888 pi0 = p0 - im->policies;
889 vlib_increment_combined_counter
890 (&ipsec_spd_policy_counters,
891 thread_index, pi0, 1,
892 clib_net_to_host_u16 (ip0->payload_length) +
893 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800894
Klement Sekera611864f2018-09-26 11:19:00 +0200895 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200896 next0 = im->ah6_decrypt_next_index;
Klement Sekera611864f2018-09-26 11:19:00 +0200897 goto trace0;
898 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800899 else
900 {
901 pi0 = ~0;
Zachary Leaf26fec712021-10-26 10:05:58 -0500902 ipsec_unprocessed += 1;
903 next0 = IPSEC_INPUT_NEXT_DROP;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800904 }
Klement Sekera611864f2018-09-26 11:19:00 +0200905 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800906 else
907 {
908 ipsec_unprocessed += 1;
909 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700911 trace0:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800912 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
913 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700914 {
915 ipsec_input_trace_t *tr =
916 vlib_add_trace (vm, node, b0, sizeof (*tr));
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800917
918 if (p0)
Piotr Bronowski06abf232022-09-20 14:44:36 +0000919 {
920 tr->sa_id = p0->sa_id;
921 tr->policy_type = p0->type;
922 }
923
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800924 tr->proto = ip0->protocol;
925 tr->spi = clib_net_to_host_u32 (esp0->spi);
926 tr->seq = clib_net_to_host_u32 (esp0->seq);
927 tr->spd = spd0->id;
Piotr Bronowski06abf232022-09-20 14:44:36 +0000928 tr->policy_index = pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700929 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700931 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
932 n_left_to_next, bi0, next0);
933 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
935 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800936
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200937 vlib_node_increment_counter (vm, ipsec6_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700938 IPSEC_INPUT_ERROR_RX_PKTS,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800939 from_frame->n_vectors - ipsec_unprocessed);
940
941 vlib_node_increment_counter (vm, ipsec6_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530942 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800943 ipsec_matched);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
945 return from_frame->n_vectors;
946}
947
948
Damjan Mariond770cfc2019-09-02 19:00:33 +0200949VLIB_REGISTER_NODE (ipsec6_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100950 .name = "ipsec6-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 .vector_size = sizeof (u32),
952 .format_trace = format_ipsec_input_trace,
953 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
955 .error_strings = ipsec_input_error_strings,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800956 .n_next_nodes = IPSEC_INPUT_N_NEXT,
957 .next_nodes = {
958#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
959 foreach_ipsec_input_next
960#undef _
961 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962};
Damjan Marion1c80e832016-05-11 23:07:18 +0200963
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700964/*
965 * fd.io coding-style-patch-verification: ON
966 *
967 * Local Variables:
968 * eval: (c-set-style "gnu")
969 * End:
970 */