blob: 9cec7dd15d136b7e23a4b22f4bb2298b6905e754 [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 if (esp0->spi == 0)
303 {
Fan Zhange7901e82024-05-24 16:46:00 +0100304 /* RFC 4303, section 2.1: The SPI value of zero (0 is reserved for
305 * local, implementation-specific use and MUST NOT be sent on the wire.
306 */
vinay tripathi2d7988d2023-06-06 12:57:55 +0530307 *ipsec_unprocessed += 1;
308 next[0] = IPSEC_INPUT_NEXT_DROP;
309 return;
310 }
311
vinay tripathi75069ce2023-05-31 14:41:45 +0530312 if (im->fp_spd_ipv4_in_is_enabled &&
313 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
314 {
315 ipsec_fp_in_5tuple_from_ip4_range (&tuples[0], ip0->src_address.as_u32,
316 ip0->dst_address.as_u32,
317 clib_net_to_host_u32 (esp0->spi),
318 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
319 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
320 p0 = policies[0];
321 }
322 else if (search_flow_cache) /* attempt to match policy in flow cache */
323 {
324 p0 = ipsec4_input_spd_find_flow_cache_entry (
325 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
326 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
327 }
328
329 else /* linear search if flow cache is not enabled,
330 or flow cache search just failed */
331 {
332 p0 = ipsec_input_protect_policy_match (
333 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
334 clib_net_to_host_u32 (ip0->dst_address.as_u32),
335 clib_net_to_host_u32 (esp0->spi));
336 }
337 has_space0 = vlib_buffer_has_space (b[0], (clib_address_t) (esp0 + 1) -
338 (clib_address_t) ip0);
339
340 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
341 {
342 *ipsec_matched += 1;
343
344 pi0 = p0 - im->policies;
345 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
346 thread_index, pi0, 1,
347 clib_net_to_host_u16 (ip0->length));
348
349 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
350 next[0] = im->esp4_decrypt_next_index;
351 vlib_buffer_advance (b[0], ((u8 *) esp0 - (u8 *) ip0));
352 goto trace0;
353 }
354 else
355 {
356 p0 = 0;
357 pi0 = ~0;
358 }
359 if (im->fp_spd_ipv4_in_is_enabled &&
360 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
361 {
362 tuples->action = IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS;
363 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
364 p0 = policies[0];
365 }
366 else if (search_flow_cache)
367 {
368 p0 = ipsec4_input_spd_find_flow_cache_entry (
369 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
370 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
371 }
372
373 else
374 {
375 p0 = ipsec_input_policy_match (
376 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
377 clib_net_to_host_u32 (ip0->dst_address.as_u32),
378 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
379 }
380
381 if (PREDICT_TRUE ((p0 != NULL)))
382 {
383 *ipsec_bypassed += 1;
384
385 pi0 = p0 - im->policies;
386 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
387 thread_index, pi0, 1,
388 clib_net_to_host_u16 (ip0->length));
389
390 goto trace0;
391 }
392 else
393 {
394 p0 = 0;
395 pi0 = ~0;
396 };
397 if (im->fp_spd_ipv4_in_is_enabled &&
398 PREDICT_TRUE (INDEX_INVALID != spd0->fp_spd.ip4_in_lookup_hash_idx))
399 {
400 tuples->action = IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD;
401 ipsec_fp_in_policy_match_n (&spd0->fp_spd, !ip_v6, tuples, policies, 1);
402 p0 = policies[0];
403 }
404 else
405
406 if (search_flow_cache)
407 {
408 p0 = ipsec4_input_spd_find_flow_cache_entry (
409 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
410 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
411 }
412
413 else
414 {
415 p0 = ipsec_input_policy_match (
416 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
417 clib_net_to_host_u32 (ip0->dst_address.as_u32),
418 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
419 }
420
421 if (PREDICT_TRUE ((p0 != NULL)))
422 {
423 *ipsec_dropped += 1;
424
425 pi0 = p0 - im->policies;
426 vlib_increment_combined_counter (&ipsec_spd_policy_counters,
427 thread_index, pi0, 1,
428 clib_net_to_host_u16 (ip0->length));
429
430 next[0] = IPSEC_INPUT_NEXT_DROP;
431 goto trace0;
432 }
433 else
434 {
435 p0 = 0;
436 pi0 = ~0;
437 };
438 /* flow cache search failed, try again with linear search */
439 if (search_flow_cache && p0 == NULL)
440 {
441 search_flow_cache = false;
442 goto udp_or_esp;
443 }
444
445 /* Drop by default if no match on PROTECT, BYPASS or DISCARD */
446 *ipsec_unprocessed += 1;
447 next[0] = IPSEC_INPUT_NEXT_DROP;
448
449trace0:
450 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
451 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
452 {
453 ipsec_input_trace_t *tr = vlib_add_trace (vm, node, b[0], sizeof (*tr));
454
455 tr->proto = ip0->protocol;
456 tr->sa_id = p0 ? p0->sa_id : ~0;
457 tr->spi = has_space0 ? clib_net_to_host_u32 (esp0->spi) : ~0;
458 tr->seq = has_space0 ? clib_net_to_host_u32 (esp0->seq) : ~0;
459 tr->spd = spd0->id;
460 tr->policy_index = pi0;
461 }
462}
463
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464always_inline ipsec_policy_t *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200465ipsec6_input_protect_policy_match (ipsec_spd_t * spd,
466 ip6_address_t * sa,
467 ip6_address_t * da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468{
469 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700470 ipsec_policy_t *p;
471 ipsec_sa_t *s;
472 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800474 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700475 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800476 p = pool_elt_at_index (im->policies, *i);
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000477 s = ipsec_sa_get (p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700479 if (spi != s->spi)
480 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
Damjan Mariond709cbc2019-03-26 13:16:42 +0100482 if (ipsec_sa_is_set_IS_TUNNEL (s))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700483 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000484 if (!ip6_address_is_equal (sa, &s->tunnel.t_src.ip.ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700485 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486
Neale Ranns9ec846c2021-02-09 14:04:02 +0000487 if (!ip6_address_is_equal (da, &s->tunnel.t_dst.ip.ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700488 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700490 return p;
491 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700493 if (!ip6_addr_match_range (sa, &p->raddr.start.ip6, &p->raddr.stop.ip6))
494 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700496 if (!ip6_addr_match_range (da, &p->laddr.start.ip6, &p->laddr.stop.ip6))
497 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700499 return p;
500 }
501 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502}
503
Damjan Mariond770cfc2019-09-02 19:00:33 +0200504extern vlib_node_registration_t ipsec4_input_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100505
Klement Sekerab8f35442018-10-29 13:38:19 +0100506VLIB_NODE_FN (ipsec4_input_node) (vlib_main_t * vm,
507 vlib_node_runtime_t * node,
ShivaShankarK05464832020-04-14 14:01:03 +0530508 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509{
ShivaShankarK05464832020-04-14 14:01:03 +0530510 u32 n_left_from, *from, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511 ipsec_main_t *im = &ipsec_main;
ShivaShankarK05464832020-04-14 14:01:03 +0530512 u64 ipsec_unprocessed = 0, ipsec_matched = 0;
513 u64 ipsec_dropped = 0, ipsec_bypassed = 0;
514 vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
515 vlib_buffer_t **b = bufs;
516 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
ShivaShankarK05464832020-04-14 14:01:03 +0530518 from = vlib_frame_vector_args (frame);
519 n_left_from = frame->n_vectors;
520 next = nexts;
521 vlib_get_buffers (vm, from, bufs, n_left_from);
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800522 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
525 while (n_left_from > 0)
526 {
ShivaShankarK05464832020-04-14 14:01:03 +0530527 u32 next32, pi0;
528 ip4_header_t *ip0;
529 esp_header_t *esp0 = NULL;
530 ah_header_t *ah0;
531 ip4_ipsec_config_t *c0;
532 ipsec_spd_t *spd0;
533 ipsec_policy_t *p0 = NULL;
534 u8 has_space0;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500535 bool search_flow_cache = false;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
ShivaShankarK05464832020-04-14 14:01:03 +0530537 if (n_left_from > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700538 {
ShivaShankarK05464832020-04-14 14:01:03 +0530539 vlib_prefetch_buffer_data (b[1], LOAD);
540 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
ShivaShankarK05464832020-04-14 14:01:03 +0530542 b[0]->flags |= VNET_BUFFER_F_IS_IP4;
543 b[0]->flags &= ~VNET_BUFFER_F_IS_IP6;
544 c0 = vnet_feature_next_with_data (&next32, b[0], sizeof (c0[0]));
545 next[0] = (u16) next32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546
ShivaShankarK05464832020-04-14 14:01:03 +0530547 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548
ShivaShankarK05464832020-04-14 14:01:03 +0530549 ip0 = vlib_buffer_get_current (b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
vinay tripathi2d7988d2023-06-06 12:57:55 +0530551 if (ip0->protocol == IP_PROTOCOL_UDP)
ShivaShankarK05464832020-04-14 14:01:03 +0530552 {
vinay tripathi2d7988d2023-06-06 12:57:55 +0530553 udp_header_t *udp0 = NULL;
554 udp0 = (udp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
Fan Zhange7901e82024-05-24 16:46:00 +0100556 /* RFC5996 Section 2.23 "Port 4500 is reserved for
557 * UDP-encapsulated ESP and IKE."
558 */
559 if (clib_host_to_net_u16 (4500) == udp0->dst_port)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700560 {
vinay tripathi2d7988d2023-06-06 12:57:55 +0530561 esp0 = (esp_header_t *) ((u8 *) udp0 + sizeof (udp_header_t));
562
563 ipsec_esp_packet_process (vm, im, ip0, esp0, thread_index, spd0,
564 b, node, &ipsec_bypassed,
565 &ipsec_dropped, &ipsec_matched,
566 &ipsec_unprocessed, next);
567 if (ipsec_bypassed > 0)
568 goto ipsec_bypassed;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700569 }
vinay tripathi2d7988d2023-06-06 12:57:55 +0530570 }
571 else if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
572 {
573 esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
vinay tripathi75069ce2023-05-31 14:41:45 +0530574 ipsec_esp_packet_process (vm, im, ip0, esp0, thread_index, spd0, b,
575 node, &ipsec_bypassed, &ipsec_dropped,
576 &ipsec_matched, &ipsec_unprocessed, next);
vinay tripathi2d7988d2023-06-06 12:57:55 +0530577 if (ipsec_bypassed > 0)
578 goto ipsec_bypassed;
ShivaShankarK05464832020-04-14 14:01:03 +0530579 }
580 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
581 {
582 ah0 = (ah_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500583
584 // if flow cache is enabled, first search through flow cache for a
585 // policy match and revert back to linear search on failure
586 search_flow_cache = im->input_flow_cache_flag;
587
588 ah:
589 if (search_flow_cache)
590 {
591 p0 = ipsec4_input_spd_find_flow_cache_entry (
592 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
593 IPSEC_SPD_POLICY_IP4_INBOUND_PROTECT);
594 }
595
596 else
597 {
598 p0 = ipsec_input_protect_policy_match (
599 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
600 clib_net_to_host_u32 (ip0->dst_address.as_u32),
601 clib_net_to_host_u32 (ah0->spi));
602 }
ShivaShankarK05464832020-04-14 14:01:03 +0530603
604 has_space0 =
605 vlib_buffer_has_space (b[0],
606 (clib_address_t) (ah0 + 1) -
607 (clib_address_t) ip0);
608
609 if (PREDICT_TRUE ((p0 != NULL) & (has_space0)))
610 {
611 ipsec_matched += 1;
612
613 pi0 = p0 - im->policies;
614 vlib_increment_combined_counter
615 (&ipsec_spd_policy_counters,
616 thread_index, pi0, 1, clib_net_to_host_u16 (ip0->length));
617
618 vnet_buffer (b[0])->ipsec.sad_index = p0->sa_index;
619 next[0] = im->ah4_decrypt_next_index;
620 goto trace1;
621 }
622 else
623 {
624 p0 = 0;
625 pi0 = ~0;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800626 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500628 if (search_flow_cache)
629 {
630 p0 = ipsec4_input_spd_find_flow_cache_entry (
631 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
632 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
633 }
634
635 else
636 {
637 p0 = ipsec_input_policy_match (
638 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
639 clib_net_to_host_u32 (ip0->dst_address.as_u32),
640 IPSEC_SPD_POLICY_IP4_INBOUND_BYPASS);
641 }
642
ShivaShankarK05464832020-04-14 14:01:03 +0530643 if (PREDICT_TRUE ((p0 != NULL)))
644 {
645 ipsec_bypassed += 1;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500646
ShivaShankarK05464832020-04-14 14:01:03 +0530647 pi0 = p0 - im->policies;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500648 vlib_increment_combined_counter (
649 &ipsec_spd_policy_counters, thread_index, pi0, 1,
650 clib_net_to_host_u16 (ip0->length));
651
ShivaShankarK05464832020-04-14 14:01:03 +0530652 goto trace1;
653 }
654 else
655 {
656 p0 = 0;
657 pi0 = ~0;
658 };
659
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500660 if (search_flow_cache)
661 {
662 p0 = ipsec4_input_spd_find_flow_cache_entry (
663 im, ip0->src_address.as_u32, ip0->dst_address.as_u32,
664 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
665 }
666
667 else
668 {
669 p0 = ipsec_input_policy_match (
670 spd0, clib_net_to_host_u32 (ip0->src_address.as_u32),
671 clib_net_to_host_u32 (ip0->dst_address.as_u32),
672 IPSEC_SPD_POLICY_IP4_INBOUND_DISCARD);
673 }
674
ShivaShankarK05464832020-04-14 14:01:03 +0530675 if (PREDICT_TRUE ((p0 != NULL)))
676 {
677 ipsec_dropped += 1;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500678
ShivaShankarK05464832020-04-14 14:01:03 +0530679 pi0 = p0 - im->policies;
Zachary Leaffbab65b2021-06-07 03:01:07 -0500680 vlib_increment_combined_counter (
681 &ipsec_spd_policy_counters, thread_index, pi0, 1,
682 clib_net_to_host_u16 (ip0->length));
683
ShivaShankarK05464832020-04-14 14:01:03 +0530684 next[0] = IPSEC_INPUT_NEXT_DROP;
685 goto trace1;
686 }
687 else
688 {
689 p0 = 0;
690 pi0 = ~0;
691 };
Zachary Leaf26fec712021-10-26 10:05:58 -0500692
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500693 // flow cache search failed, retry with linear search
694 if (search_flow_cache && p0 == NULL)
695 {
696 search_flow_cache = false;
697 goto ah;
698 }
699
Zachary Leaf26fec712021-10-26 10:05:58 -0500700 /* Drop by default if no match on PROTECT, BYPASS or DISCARD */
701 ipsec_unprocessed += 1;
702 next[0] = IPSEC_INPUT_NEXT_DROP;
703
ShivaShankarK05464832020-04-14 14:01:03 +0530704 trace1:
705 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
706 PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
707 {
708 ipsec_input_trace_t *tr =
709 vlib_add_trace (vm, node, b[0], sizeof (*tr));
710
711 tr->proto = ip0->protocol;
712 tr->sa_id = p0 ? p0->sa_id : ~0;
713 tr->spi = has_space0 ? clib_net_to_host_u32 (ah0->spi) : ~0;
714 tr->seq = has_space0 ? clib_net_to_host_u32 (ah0->seq_no) : ~0;
715 tr->spd = spd0->id;
716 tr->policy_index = pi0;
717 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700718 }
ShivaShankarK05464832020-04-14 14:01:03 +0530719 else
720 {
vinay tripathi2d7988d2023-06-06 12:57:55 +0530721 ipsec_bypassed:
ShivaShankarK05464832020-04-14 14:01:03 +0530722 ipsec_unprocessed += 1;
723 }
724 n_left_from -= 1;
725 b += 1;
726 next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800728
ShivaShankarK05464832020-04-14 14:01:03 +0530729 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730
Kingwel Xiec69ac312019-02-04 01:49:29 -0800731 vlib_node_increment_counter (vm, ipsec4_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530732 IPSEC_INPUT_ERROR_RX_PKTS, frame->n_vectors);
733
734 vlib_node_increment_counter (vm, ipsec4_input_node.index,
735 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800736 ipsec_matched);
ShivaShankarK05464832020-04-14 14:01:03 +0530737
738 vlib_node_increment_counter (vm, ipsec4_input_node.index,
739 IPSEC_INPUT_ERROR_RX_POLICY_NO_MATCH,
740 ipsec_unprocessed);
741
742 vlib_node_increment_counter (vm, ipsec4_input_node.index,
743 IPSEC_INPUT_ERROR_RX_POLICY_DISCARD,
744 ipsec_dropped);
745
746 vlib_node_increment_counter (vm, ipsec4_input_node.index,
747 IPSEC_INPUT_ERROR_RX_POLICY_BYPASS,
748 ipsec_bypassed);
749
750 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751}
752
Damjan Mariond770cfc2019-09-02 19:00:33 +0200753VLIB_REGISTER_NODE (ipsec4_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100754 .name = "ipsec4-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755 .vector_size = sizeof (u32),
756 .format_trace = format_ipsec_input_trace,
757 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
759 .error_strings = ipsec_input_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700760 .n_next_nodes = IPSEC_INPUT_N_NEXT,
761 .next_nodes = {
762#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
763 foreach_ipsec_input_next
764#undef _
765 },
766};
767
Damjan Mariond770cfc2019-09-02 19:00:33 +0200768extern vlib_node_registration_t ipsec6_input_node;
Damjan Marion1c80e832016-05-11 23:07:18 +0200769
Klement Sekerab8f35442018-10-29 13:38:19 +0100770
771VLIB_NODE_FN (ipsec6_input_node) (vlib_main_t * vm,
772 vlib_node_runtime_t * node,
773 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800775 u32 n_left_from, *from, next_index, *to_next, thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776 ipsec_main_t *im = &ipsec_main;
Kingwel Xiec69ac312019-02-04 01:49:29 -0800777 u32 ipsec_unprocessed = 0;
778 u32 ipsec_matched = 0;
Piotr Bronowski06abf232022-09-20 14:44:36 +0000779 ipsec_policy_t *policies[1];
780 ipsec_fp_5tuple_t tuples[1];
781 bool ip_v6 = true;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782
783 from = vlib_frame_vector_args (from_frame);
784 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800785 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
787 next_index = node->cached_next_index;
788
789 while (n_left_from > 0)
790 {
791 u32 n_left_to_next;
792
793 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
794
795 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700796 {
Piotr Bronowski06abf232022-09-20 14:44:36 +0000797 u32 bi0, next0, pi0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700798 vlib_buffer_t *b0;
799 ip6_header_t *ip0;
800 esp_header_t *esp0;
801 ip4_ipsec_config_t *c0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700802 ipsec_spd_t *spd0;
Matus Fabian5539a072016-09-07 05:57:09 -0700803 ipsec_policy_t *p0 = 0;
Klement Sekera611864f2018-09-26 11:19:00 +0200804 ah_header_t *ah0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700805 u32 header_size = sizeof (ip0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700807 bi0 = to_next[0] = from[0];
808 from += 1;
809 n_left_from -= 1;
810 to_next += 1;
811 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700812
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700813 b0 = vlib_get_buffer (vm, bi0);
Szymon Sliwa65a27272018-05-09 14:28:08 +0200814 b0->flags |= VNET_BUFFER_F_IS_IP6;
815 b0->flags &= ~VNET_BUFFER_F_IS_IP4;
Damjan Marion7d98a122018-07-19 20:42:08 +0200816 c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700818 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700820 ip0 = vlib_buffer_get_current (b0);
821 esp0 = (esp_header_t *) ((u8 *) ip0 + header_size);
Klement Sekera611864f2018-09-26 11:19:00 +0200822 ah0 = (ah_header_t *) ((u8 *) ip0 + header_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700824 if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
825 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700827 clib_warning
828 ("packet received from %U to %U spi %u size %u spd_id %u",
829 format_ip6_address, &ip0->src_address, format_ip6_address,
830 &ip0->dst_address, clib_net_to_host_u32 (esp0->spi),
831 clib_net_to_host_u16 (ip0->payload_length) + header_size,
832 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833#endif
Piotr Bronowski06abf232022-09-20 14:44:36 +0000834 if (im->fp_spd_ipv6_in_is_enabled &&
835 PREDICT_TRUE (INDEX_INVALID !=
836 spd0->fp_spd.ip6_in_lookup_hash_idx))
837 {
838 ipsec_fp_in_5tuple_from_ip6_range (
839 &tuples[0], &ip0->src_address, &ip0->dst_address,
840 clib_net_to_host_u32 (esp0->spi),
841 IPSEC_SPD_POLICY_IP6_INBOUND_PROTECT);
842 ipsec_fp_in_policy_match_n (&spd0->fp_spd, ip_v6, tuples,
843 policies, 1);
844 p0 = policies[0];
845 }
846 else
847 p0 = ipsec6_input_protect_policy_match (
848 spd0, &ip0->src_address, &ip0->dst_address,
849 clib_net_to_host_u32 (esp0->spi));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700851 if (PREDICT_TRUE (p0 != 0))
852 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800853 ipsec_matched += 1;
854
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800855 pi0 = p0 - im->policies;
856 vlib_increment_combined_counter
857 (&ipsec_spd_policy_counters,
858 thread_index, pi0, 1,
859 clib_net_to_host_u16 (ip0->payload_length) +
860 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800861
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100862 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200863 next0 = im->esp6_decrypt_next_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700864 vlib_buffer_advance (b0, header_size);
Piotr Bronowski06abf232022-09-20 14:44:36 +0000865 /* TODO Add policy matching for bypass and discard policy
866 * type */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700867 goto trace0;
868 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800869 else
870 {
871 pi0 = ~0;
Zachary Leaf26fec712021-10-26 10:05:58 -0500872 ipsec_unprocessed += 1;
873 next0 = IPSEC_INPUT_NEXT_DROP;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800874 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700875 }
Klement Sekera611864f2018-09-26 11:19:00 +0200876 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
877 {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200878 p0 = ipsec6_input_protect_policy_match (spd0,
879 &ip0->src_address,
880 &ip0->dst_address,
881 clib_net_to_host_u32
882 (ah0->spi));
Klement Sekera611864f2018-09-26 11:19:00 +0200883
884 if (PREDICT_TRUE (p0 != 0))
885 {
Kingwel Xiec69ac312019-02-04 01:49:29 -0800886 ipsec_matched += 1;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800887 pi0 = p0 - im->policies;
888 vlib_increment_combined_counter
889 (&ipsec_spd_policy_counters,
890 thread_index, pi0, 1,
891 clib_net_to_host_u16 (ip0->payload_length) +
892 header_size);
Kingwel Xiec69ac312019-02-04 01:49:29 -0800893
Klement Sekera611864f2018-09-26 11:19:00 +0200894 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200895 next0 = im->ah6_decrypt_next_index;
Klement Sekera611864f2018-09-26 11:19:00 +0200896 goto trace0;
897 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800898 else
899 {
900 pi0 = ~0;
Zachary Leaf26fec712021-10-26 10:05:58 -0500901 ipsec_unprocessed += 1;
902 next0 = IPSEC_INPUT_NEXT_DROP;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800903 }
Klement Sekera611864f2018-09-26 11:19:00 +0200904 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800905 else
906 {
907 ipsec_unprocessed += 1;
908 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700909
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700910 trace0:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800911 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
912 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700913 {
914 ipsec_input_trace_t *tr =
915 vlib_add_trace (vm, node, b0, sizeof (*tr));
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800916
917 if (p0)
Piotr Bronowski06abf232022-09-20 14:44:36 +0000918 {
919 tr->sa_id = p0->sa_id;
920 tr->policy_type = p0->type;
921 }
922
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800923 tr->proto = ip0->protocol;
924 tr->spi = clib_net_to_host_u32 (esp0->spi);
925 tr->seq = clib_net_to_host_u32 (esp0->seq);
926 tr->spd = spd0->id;
Piotr Bronowski06abf232022-09-20 14:44:36 +0000927 tr->policy_index = pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700928 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700930 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
931 n_left_to_next, bi0, next0);
932 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700933 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
934 }
Kingwel Xiec69ac312019-02-04 01:49:29 -0800935
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200936 vlib_node_increment_counter (vm, ipsec6_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700937 IPSEC_INPUT_ERROR_RX_PKTS,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800938 from_frame->n_vectors - ipsec_unprocessed);
939
940 vlib_node_increment_counter (vm, ipsec6_input_node.index,
ShivaShankarK05464832020-04-14 14:01:03 +0530941 IPSEC_INPUT_ERROR_RX_POLICY_MATCH,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800942 ipsec_matched);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943
944 return from_frame->n_vectors;
945}
946
947
Damjan Mariond770cfc2019-09-02 19:00:33 +0200948VLIB_REGISTER_NODE (ipsec6_input_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100949 .name = "ipsec6-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950 .vector_size = sizeof (u32),
951 .format_trace = format_ipsec_input_trace,
952 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
954 .error_strings = ipsec_input_error_strings,
Kingwel Xiec69ac312019-02-04 01:49:29 -0800955 .n_next_nodes = IPSEC_INPUT_N_NEXT,
956 .next_nodes = {
957#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
958 foreach_ipsec_input_next
959#undef _
960 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961};
Damjan Marion1c80e832016-05-11 23:07:18 +0200962
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700963/*
964 * fd.io coding-style-patch-verification: ON
965 *
966 * Local Variables:
967 * eval: (c-set-style "gnu")
968 * End:
969 */