blob: 0e92ae9f1a70a87908aba9b588a221f34204f307 [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
302 if (im->fp_spd_ipv4_in_is_enabled &&
303 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
304 {
305 ipsec_fp_in_5tuple_from_ip4_range (&tuples[0], ip0->src_address.as_u32,
306 ip0->dst_address.as_u32,
307 clib_net_to_host_u32 (esp0->spi),
308 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
309 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
310 p0 = policies[0];
311 }
312 else if (search_flow_cache) /* attempt to match policy in flow cache */
313 {
314 p0 = ipsec4_input_spd_find_flow_cache_entry (
315 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
316 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
317 }
318
319 else /* linear search if flow cache is not enabled,
320 or flow cache search just failed */
321 {
322 p0 = ipsec_input_protect_policy_match (
323 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
324 clib_net_to_host_u32 (ip0->dst_address.as_u32),
325 clib_net_to_host_u32 (esp0->spi));
326 }
327 has_space0 = vlib_buffer_has_space (b[0], (clib_address_t) (esp0 + 1) -
328 (clib_address_t) ip0);
329
330 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
331 {
332 *ipsec_matched += 1;
333
334 pi0 = p0 - im->policies;
335 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
336 thread_index, pi0, 1,
337 clib_net_to_host_u16 (ip0->length));
338
339 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
340 next[0] = im->esp4_decrypt_next_index;
341 vlib_buffer_advance (b[0], ((u8 *) esp0 - (u8 *) ip0));
342 goto trace0;
343 }
344 else
345 {
346 p0 = 0;
347 pi0 = ~0;
348 }
349 if (im->fp_spd_ipv4_in_is_enabled &&
350 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
351 {
352 tuples->action = IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS;
353 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
354 p0 = policies[0];
355 }
356 else if (search_flow_cache)
357 {
358 p0 = ipsec4_input_spd_find_flow_cache_entry (
359 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
360 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
361 }
362
363 else
364 {
365 p0 = ipsec_input_policy_match (
366 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
367 clib_net_to_host_u32 (ip0->dst_address.as_u32),
368 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
369 }
370
371 if (PREDICT_TRUE ((p0 != NULL)))
372 {
373 *ipsec_bypassed += 1;
374
375 pi0 = p0 - im->policies;
376 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
377 thread_index, pi0, 1,
378 clib_net_to_host_u16 (ip0->length));
379
380 goto trace0;
381 }
382 else
383 {
384 p0 = 0;
385 pi0 = ~0;
386 };
387 if (im->fp_spd_ipv4_in_is_enabled &&
388 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
389 {
390 tuples->action = IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD;
391 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
392 p0 = policies[0];
393 }
394 else
395
396 if (search_flow_cache)
397 {
398 p0 = ipsec4_input_spd_find_flow_cache_entry (
399 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
400 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
401 }
402
403 else
404 {
405 p0 = ipsec_input_policy_match (
406 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
407 clib_net_to_host_u32 (ip0->dst_address.as_u32),
408 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
409 }
410
411 if (PREDICT_TRUE ((p0 != NULL)))
412 {
413 *ipsec_dropped += 1;
414
415 pi0 = p0 - im->policies;
416 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
417 thread_index, pi0, 1,
418 clib_net_to_host_u16 (ip0->length));
419
420 next[0] = IPSEC_INPUT_NEXT_DROP;
421 goto trace0;
422 }
423 else
424 {
425 p0 = 0;
426 pi0 = ~0;
427 };
428 /* flow cache search failed, try again with linear search */
429 if (search_flow_cache && p0 == NULL)
430 {
431 search_flow_cache = false;
432 goto udp_or_esp;
433 }
434
435 /* Drop by default if no match on PROTECT, BYPASS or DISCARD */
436 *ipsec_unprocessed += 1;
437 next[0] = IPSEC_INPUT_NEXT_DROP;
438
439trace0:
440 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
441 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
442 {
443 ipsec_input_trace_t *tr = vlib_add_trace (vm, node, b[0], sizeof (*tr));
444
445 tr->proto = ip0->protocol;
446 tr->sa_id = p0 ? p0->sa_id : ~0;
447 tr->spi = has_space0 ? clib_net_to_host_u32 (esp0->spi) : ~0;
448 tr->seq = has_space0 ? clib_net_to_host_u32 (esp0->seq) : ~0;
449 tr->spd = spd0->id;
450 tr->policy_index = pi0;
451 }
452}
453
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454always_inline ipsec_policy_t *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200455ipsec6_input_protect_policy_match (ipsec_spd_t * spd,
456 ip6_address_t * sa,
457 ip6_address_t * da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458{
459 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700460 ipsec_policy_t *p;
461 ipsec_sa_t *s;
462 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800464 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700465 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800466 p = pool_elt_at_index (im->policies, *i);
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000467 s = ipsec_sa_get (p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700469 if (spi != s->spi)
470 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471
Damjan Mariond709cbc2019-03-26 13:16:42 +0100472 if (ipsec_sa_is_set_IS_TUNNEL (s))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700473 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000474 if (!ip6_address_is_equal (sa, &s->tunnel.t_src.ip.ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700475 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476
Neale Ranns9ec846c2021-02-09 14:04:02 +0000477 if (!ip6_address_is_equal (da, &s->tunnel.t_dst.ip.ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700478 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700480 return p;
481 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700483 if (!ip6_addr_match_range (sa, &p->raddr.start.ip6, &p->raddr.stop.ip6))
484 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700486 if (!ip6_addr_match_range (da, &p->laddr.start.ip6, &p->laddr.stop.ip6))
487 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700489 return p;
490 }
491 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492}
493
Damjan Mariond770cfc2019-09-02 19:00:33 +0200494extern vlib_node_registration_t ipsec4_input_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100495
Klement Sekerab8f35442018-10-29 13:38:19 +0100496VLIB_NODE_FN (ipsec4_input_node) (vlib_main_t * vm,
497 vlib_node_runtime_t * node,
ShivaShankarK05464832020-04-14 14:01:03 +0530498 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499{
ShivaShankarK05464832020-04-14 14:01:03 +0530500 u32 n_left_from, *from, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 ipsec_main_t *im = &ipsec_main;
ShivaShankarK05464832020-04-14 14:01:03 +0530502 u64 ipsec_unprocessed = 0, ipsec_matched = 0;
503 u64 ipsec_dropped = 0, ipsec_bypassed = 0;
504 vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
505 vlib_buffer_t **b = bufs;
506 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
ShivaShankarK05464832020-04-14 14:01:03 +0530508 from = vlib_frame_vector_args (frame);
509 n_left_from = frame->n_vectors;
510 next = nexts;
511 vlib_get_buffers (vm, from, bufs, n_left_from);
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800512 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514
515 while (n_left_from > 0)
516 {
ShivaShankarK05464832020-04-14 14:01:03 +0530517 u32 next32, pi0;
518 ip4_header_t *ip0;
519 esp_header_t *esp0 = NULL;
520 ah_header_t *ah0;
521 ip4_ipsec_config_t *c0;
522 ipsec_spd_t *spd0;
523 ipsec_policy_t *p0 = NULL;
524 u8 has_space0;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500525 bool search_flow_cache = false;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526
ShivaShankarK05464832020-04-14 14:01:03 +0530527 if (n_left_from > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700528 {
ShivaShankarK05464832020-04-14 14:01:03 +0530529 vlib_prefetch_buffer_data (b[1], LOAD);
530 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531
ShivaShankarK05464832020-04-14 14:01:03 +0530532 b[0]->flags |= VNET_BUFFER_F_IS_IP4;
533 b[0]->flags &= ~VNET_BUFFER_F_IS_IP6;
534 c0 = vnet_feature_next_with_data (&next32, b[0], sizeof (c0[0]));
535 next[0] = (u16) next32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
ShivaShankarK05464832020-04-14 14:01:03 +0530537 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
ShivaShankarK05464832020-04-14 14:01:03 +0530539 ip0 = vlib_buffer_get_current (b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540
ShivaShankarK05464832020-04-14 14:01:03 +0530541 if (PREDICT_TRUE
542 (ip0->protocol == IP_PROTOCOL_IPSEC_ESP
543 || ip0->protocol == IP_PROTOCOL_UDP))
544 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
ShivaShankarK05464832020-04-14 14:01:03 +0530546 esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
547 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_UDP))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700548 {
ShivaShankarK05464832020-04-14 14:01:03 +0530549 /* FIXME Skip, if not a UDP encapsulated packet */
550 esp0 = (esp_header_t *) ((u8 *) esp0 + sizeof (udp_header_t));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700551 }
vinay tripathi75069ce2023-05-31 14:41:45 +0530552 ipsec_esp_packet_process (vm, im, ip0, esp0, thread_index, spd0, b,
553 node, &ipsec_bypassed, &ipsec_dropped,
554 &ipsec_matched, &ipsec_unprocessed, next);
ShivaShankarK05464832020-04-14 14:01:03 +0530555 }
556 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
557 {
558 ah0 = (ah_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500559
560 // if flow cache is enabled, first search through flow cache for a
561 // policy match and revert back to linear search on failure
562 search_flow_cache = im->input_flow_cache_flag;
563
564 ah:
565 if (search_flow_cache)
566 {
567 p0 = ipsec4_input_spd_find_flow_cache_entry (
568 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
569 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
570 }
571
572 else
573 {
574 p0 = ipsec_input_protect_policy_match (
575 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
576 clib_net_to_host_u32 (ip0->dst_address.as_u32),
577 clib_net_to_host_u32 (ah0->spi));
578 }
ShivaShankarK05464832020-04-14 14:01:03 +0530579
580 has_space0 =
581 vlib_buffer_has_space (b[0],
582 (clib_address_t) (ah0 + 1) -
583 (clib_address_t) ip0);
584
585 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
586 {
587 ipsec_matched += 1;
588
589 pi0 = p0 - im->policies;
590 vlib_increment_combined_counter
591 (&ipsec_spd_policy_counters,
592 thread_index, pi0, 1, clib_net_to_host_u16 (ip0->length));
593
594 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
595 next[0] = im->ah4_decrypt_next_index;
596 goto trace1;
597 }
598 else
599 {
600 p0 = 0;
601 pi0 = ~0;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800602 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500604 if (search_flow_cache)
605 {
606 p0 = ipsec4_input_spd_find_flow_cache_entry (
607 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
608 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
609 }
610
611 else
612 {
613 p0 = ipsec_input_policy_match (
614 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
615 clib_net_to_host_u32 (ip0->dst_address.as_u32),
616 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
617 }
618
ShivaShankarK05464832020-04-14 14:01:03 +0530619 if (PREDICT_TRUE ((p0 != NULL)))
620 {
621 ipsec_bypassed += 1;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500622
ShivaShankarK05464832020-04-14 14:01:03 +0530623 pi0 = p0 - im->policies;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500624 vlib_increment_combined_counter (
625 &ipsec_spd_policy_counters, thread_index, pi0, 1,
626 clib_net_to_host_u16 (ip0->length));
627
ShivaShankarK05464832020-04-14 14:01:03 +0530628 goto trace1;
629 }
630 else
631 {
632 p0 = 0;
633 pi0 = ~0;
634 };
635
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500636 if (search_flow_cache)
637 {
638 p0 = ipsec4_input_spd_find_flow_cache_entry (
639 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
640 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
641 }
642
643 else
644 {
645 p0 = ipsec_input_policy_match (
646 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
647 clib_net_to_host_u32 (ip0->dst_address.as_u32),
648 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
649 }
650
ShivaShankarK05464832020-04-14 14:01:03 +0530651 if (PREDICT_TRUE ((p0 != NULL)))
652 {
653 ipsec_dropped += 1;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500654
ShivaShankarK05464832020-04-14 14:01:03 +0530655 pi0 = p0 - im->policies;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500656 vlib_increment_combined_counter (
657 &ipsec_spd_policy_counters, thread_index, pi0, 1,
658 clib_net_to_host_u16 (ip0->length));
659
ShivaShankarK05464832020-04-14 14:01:03 +0530660 next[0] = IPSEC_INPUT_NEXT_DROP;
661 goto trace1;
662 }
663 else
664 {
665 p0 = 0;
666 pi0 = ~0;
667 };
Zachary Leaf26fec712021-10-26 10:05:58 -0500668
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500669 // flow cache search failed, retry with linear search
670 if (search_flow_cache && p0 == NULL)
671 {
672 search_flow_cache = false;
673 goto ah;
674 }
675
Zachary Leaf26fec712021-10-26 10:05:58 -0500676 /* Drop by default if no match on PROTECT, BYPASS or DISCARD */
677 ipsec_unprocessed += 1;
678 next[0] = IPSEC_INPUT_NEXT_DROP;
679
ShivaShankarK05464832020-04-14 14:01:03 +0530680 trace1:
681 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
682 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
683 {
684 ipsec_input_trace_t *tr =
685 vlib_add_trace (vm, node, b[0], sizeof (*tr));
686
687 tr->proto = ip0->protocol;
688 tr->sa_id = p0 ? p0->sa_id : ~0;
689 tr->spi = has_space0 ? clib_net_to_host_u32 (ah0->spi) : ~0;
690 tr->seq = has_space0 ? clib_net_to_host_u32 (ah0->seq_no) : ~0;
691 tr->spd = spd0->id;
692 tr->policy_index = pi0;
693 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700694 }
ShivaShankarK05464832020-04-14 14:01:03 +0530695 else
696 {
697 ipsec_unprocessed += 1;
698 }
699 n_left_from -= 1;
700 b += 1;
701 next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800703
ShivaShankarK05464832020-04-14 14:01:03 +0530704 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705
Kingwel Xiec69ac312019-02-04 01:49:29 -0800706 vlib_node_increment_counter (vm, ipsec4_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530707 IPSEC_INPUT_ERROR_RX_PKTS, frame->n_vectors);
708
709 vlib_node_increment_counter (vm, ipsec4_input_node.index,
710 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800711 ipsec_matched);
ShivaShankarK05464832020-04-14 14:01:03 +0530712
713 vlib_node_increment_counter (vm, ipsec4_input_node.index,
714 IPSEC_INPUT_ERROR_RX_POLICY_NO_MATCH,
715 ipsec_unprocessed);
716
717 vlib_node_increment_counter (vm, ipsec4_input_node.index,
718 IPSEC_INPUT_ERROR_RX_POLICY_DISCARD,
719 ipsec_dropped);
720
721 vlib_node_increment_counter (vm, ipsec4_input_node.index,
722 IPSEC_INPUT_ERROR_RX_POLICY_BYPASS,
723 ipsec_bypassed);
724
725 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726}
727
728
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700729/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +0200730VLIB_REGISTER_NODE (ipsec4_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100731 .name = "ipsec4-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 .vector_size = sizeof (u32),
733 .format_trace = format_ipsec_input_trace,
734 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
736 .error_strings = ipsec_input_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737 .n_next_nodes = IPSEC_INPUT_N_NEXT,
738 .next_nodes = {
739#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
740 foreach_ipsec_input_next
741#undef _
742 },
743};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700744/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
Damjan Mariond770cfc2019-09-02 19:00:33 +0200746extern vlib_node_registration_t ipsec6_input_node;
Damjan Marion1c80e832016-05-11 23:07:18 +0200747
Klement Sekerab8f35442018-10-29 13:38:19 +0100748
749VLIB_NODE_FN (ipsec6_input_node) (vlib_main_t * vm,
750 vlib_node_runtime_t * node,
751 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800753 u32 n_left_from, *from, next_index, *to_next, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 ipsec_main_t *im = &ipsec_main;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800755 u32 ipsec_unprocessed = 0;
756 u32 ipsec_matched = 0;
Piotr Bronowski06abf232022-09-20 14:44:36 +0000757 ipsec_policy_t *policies[1];
758 ipsec_fp_5tuple_t tuples[1];
759 bool ip_v6 = true;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700760
761 from = vlib_frame_vector_args (from_frame);
762 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800763 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764
765 next_index = node->cached_next_index;
766
767 while (n_left_from > 0)
768 {
769 u32 n_left_to_next;
770
771 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
772
773 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700774 {
Piotr Bronowski06abf232022-09-20 14:44:36 +0000775 u32 bi0, next0, pi0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700776 vlib_buffer_t *b0;
777 ip6_header_t *ip0;
778 esp_header_t *esp0;
779 ip4_ipsec_config_t *c0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700780 ipsec_spd_t *spd0;
Matus Fabian5539a072016-09-07 05:57:09 -0700781 ipsec_policy_t *p0 = 0;
Klement Sekera611864f2018-09-26 11:19:00 +0200782 ah_header_t *ah0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700783 u32 header_size = sizeof (ip0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700785 bi0 = to_next[0] = from[0];
786 from += 1;
787 n_left_from -= 1;
788 to_next += 1;
789 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700791 b0 = vlib_get_buffer (vm, bi0);
Szymon Sliwa65a27272018-05-09 14:28:08 +0200792 b0->flags |= VNET_BUFFER_F_IS_IP6;
793 b0->flags &= ~VNET_BUFFER_F_IS_IP4;
Damjan Marion7d98a122018-07-19 20:42:08 +0200794 c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700796 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700798 ip0 = vlib_buffer_get_current (b0);
799 esp0 = (esp_header_t *) ((u8 *) ip0 + header_size);
Klement Sekera611864f2018-09-26 11:19:00 +0200800 ah0 = (ah_header_t *) ((u8 *) ip0 + header_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700802 if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
803 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700805 clib_warning
806 ("packet received from %U to %U spi %u size %u spd_id %u",
807 format_ip6_address, &ip0->src_address, format_ip6_address,
808 &ip0->dst_address, clib_net_to_host_u32 (esp0->spi),
809 clib_net_to_host_u16 (ip0->payload_length) + header_size,
810 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811#endif
Piotr Bronowski06abf232022-09-20 14:44:36 +0000812 if (im->fp_spd_ipv6_in_is_enabled &&
813 PREDICT_TRUE (INDEX_INVALID !=
814 spd0->fp_spd.ip6_in_lookup_hash_idx))
815 {
816 ipsec_fp_in_5tuple_from_ip6_range (
817 &tuples[0], &ip0->src_address, &ip0->dst_address,
818 clib_net_to_host_u32 (esp0->spi),
819 IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT);
820 ipsec_fp_in_policy_match_n (&spd0->fp_spd, ip_v6, tuples,
821 policies, 1);
822 p0 = policies[0];
823 }
824 else
825 p0 = ipsec6_input_protect_policy_match (
826 spd0, &ip0->src_address, &ip0->dst_address,
827 clib_net_to_host_u32 (esp0->spi));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700829 if (PREDICT_TRUE (p0 != 0))
830 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800831 ipsec_matched += 1;
832
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800833 pi0 = p0 - im->policies;
834 vlib_increment_combined_counter
835 (&ipsec_spd_policy_counters,
836 thread_index, pi0, 1,
837 clib_net_to_host_u16 (ip0->payload_length) +
838 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800839
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100840 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200841 next0 = im->esp6_decrypt_next_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700842 vlib_buffer_advance (b0, header_size);
Piotr Bronowski06abf232022-09-20 14:44:36 +0000843 /* TODO Add policy matching for bypass and discard policy
844 * type */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700845 goto trace0;
846 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800847 else
848 {
849 pi0 = ~0;
Zachary Leaf26fec712021-10-26 10:05:58 -0500850 ipsec_unprocessed += 1;
851 next0 = IPSEC_INPUT_NEXT_DROP;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800852 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700853 }
Klement Sekera611864f2018-09-26 11:19:00 +0200854 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
855 {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200856 p0 = ipsec6_input_protect_policy_match (spd0,
857 &ip0->src_address,
858 &ip0->dst_address,
859 clib_net_to_host_u32
860 (ah0->spi));
Klement Sekera611864f2018-09-26 11:19:00 +0200861
862 if (PREDICT_TRUE (p0 != 0))
863 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800864 ipsec_matched += 1;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800865 pi0 = p0 - im->policies;
866 vlib_increment_combined_counter
867 (&ipsec_spd_policy_counters,
868 thread_index, pi0, 1,
869 clib_net_to_host_u16 (ip0->payload_length) +
870 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800871
Klement Sekera611864f2018-09-26 11:19:00 +0200872 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200873 next0 = im->ah6_decrypt_next_index;
Klement Sekera611864f2018-09-26 11:19:00 +0200874 goto trace0;
875 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800876 else
877 {
878 pi0 = ~0;
Zachary Leaf26fec712021-10-26 10:05:58 -0500879 ipsec_unprocessed += 1;
880 next0 = IPSEC_INPUT_NEXT_DROP;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800881 }
Klement Sekera611864f2018-09-26 11:19:00 +0200882 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800883 else
884 {
885 ipsec_unprocessed += 1;
886 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700888 trace0:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800889 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
890 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700891 {
892 ipsec_input_trace_t *tr =
893 vlib_add_trace (vm, node, b0, sizeof (*tr));
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800894
895 if (p0)
Piotr Bronowski06abf232022-09-20 14:44:36 +0000896 {
897 tr->sa_id = p0->sa_id;
898 tr->policy_type = p0->type;
899 }
900
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800901 tr->proto = ip0->protocol;
902 tr->spi = clib_net_to_host_u32 (esp0->spi);
903 tr->seq = clib_net_to_host_u32 (esp0->seq);
904 tr->spd = spd0->id;
Piotr Bronowski06abf232022-09-20 14:44:36 +0000905 tr->policy_index = pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700906 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700908 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
909 n_left_to_next, bi0, next0);
910 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
912 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800913
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200914 vlib_node_increment_counter (vm, ipsec6_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700915 IPSEC_INPUT_ERROR_RX_PKTS,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800916 from_frame->n_vectors - ipsec_unprocessed);
917
918 vlib_node_increment_counter (vm, ipsec6_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530919 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800920 ipsec_matched);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921
922 return from_frame->n_vectors;
923}
924
925
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700926/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +0200927VLIB_REGISTER_NODE (ipsec6_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100928 .name = "ipsec6-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929 .vector_size = sizeof (u32),
930 .format_trace = format_ipsec_input_trace,
931 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
933 .error_strings = ipsec_input_error_strings,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800934 .n_next_nodes = IPSEC_INPUT_N_NEXT,
935 .next_nodes = {
936#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
937 foreach_ipsec_input_next
938#undef _
939 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700940};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700941/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200942
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700943/*
944 * fd.io coding-style-patch-verification: ON
945 *
946 * Local Variables:
947 * eval: (c-set-style "gnu")
948 * End:
949 */