blob: 0a24aa2c8c06725c2b754b2edbf47735596110a6 [file] [log] [blame]
Neale Ranns999c8ee2019-02-01 03:31:24 -08001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/ipsec/ipsec.h>
Damjan Marionc59b9a22019-03-19 15:38:40 +010017#include <vnet/ipsec/esp.h>
Florin Corasb040f982020-10-20 14:59:43 -070018#include <vnet/udp/udp_local.h>
Neale Ranns8d7c5022019-02-06 01:41:05 -080019#include <vnet/fib/fib_table.h>
Neale Ranns1f50bf82019-07-16 15:28:52 +000020#include <vnet/fib/fib_entry_track.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080021#include <vnet/ipsec/ipsec_tun.h>
Neale Ranns999c8ee2019-02-01 03:31:24 -080022
Neale Rannseba31ec2019-02-17 18:04:27 +000023/**
24 * @brief
25 * SA packet & bytes counters
26 */
27vlib_combined_counter_main_t ipsec_sa_counters = {
28 .name = "SA",
29 .stat_segment_name = "/net/ipsec/sa",
30};
31
32
Neale Ranns999c8ee2019-02-01 03:31:24 -080033static clib_error_t *
34ipsec_call_add_del_callbacks (ipsec_main_t * im, ipsec_sa_t * sa,
35 u32 sa_index, int is_add)
36{
37 ipsec_ah_backend_t *ab;
38 ipsec_esp_backend_t *eb;
39 switch (sa->protocol)
40 {
41 case IPSEC_PROTOCOL_AH:
42 ab = pool_elt_at_index (im->ah_backends, im->ah_current_backend);
43 if (ab->add_del_sa_sess_cb)
44 return ab->add_del_sa_sess_cb (sa_index, is_add);
45 break;
46 case IPSEC_PROTOCOL_ESP:
47 eb = pool_elt_at_index (im->esp_backends, im->esp_current_backend);
48 if (eb->add_del_sa_sess_cb)
49 return eb->add_del_sa_sess_cb (sa_index, is_add);
50 break;
51 }
52 return 0;
53}
54
Neale Ranns8d7c5022019-02-06 01:41:05 -080055void
56ipsec_mk_key (ipsec_key_t * key, const u8 * data, u8 len)
57{
58 memset (key, 0, sizeof (*key));
59
60 if (len > sizeof (key->data))
61 key->len = sizeof (key->data);
62 else
63 key->len = len;
64
65 memcpy (key->data, data, key->len);
66}
67
68/**
69 * 'stack' (resolve the recursion for) the SA tunnel destination
70 */
Neale Rannse8915fc2019-04-23 20:57:55 -040071static void
Neale Ranns8d7c5022019-02-06 01:41:05 -080072ipsec_sa_stack (ipsec_sa_t * sa)
73{
Neale Rannsb4cfd552019-02-13 02:08:06 -080074 ipsec_main_t *im = &ipsec_main;
Neale Ranns8d7c5022019-02-06 01:41:05 -080075 dpo_id_t tmp = DPO_INVALID;
Neale Ranns8d7c5022019-02-06 01:41:05 -080076
Neale Ranns9ec846c2021-02-09 14:04:02 +000077 tunnel_contribute_forwarding (&sa->tunnel, &tmp);
Neale Ranns8d7c5022019-02-06 01:41:05 -080078
Neale Ranns72f2a3a2019-06-17 15:43:38 +000079 if (IPSEC_PROTOCOL_AH == sa->protocol)
80 dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
81 im->ah6_encrypt_node_index :
82 im->ah4_encrypt_node_index), &sa->dpo, &tmp);
83 else
84 dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
85 im->esp6_encrypt_node_index :
86 im->esp4_encrypt_node_index), &sa->dpo, &tmp);
Neale Rannsb4cfd552019-02-13 02:08:06 -080087 dpo_reset (&tmp);
Neale Ranns8d7c5022019-02-06 01:41:05 -080088}
89
Damjan Marionb966e8b2019-03-20 16:07:09 +010090void
91ipsec_sa_set_crypto_alg (ipsec_sa_t * sa, ipsec_crypto_alg_t crypto_alg)
92{
93 ipsec_main_t *im = &ipsec_main;
94 sa->crypto_alg = crypto_alg;
95 sa->crypto_iv_size = im->crypto_algs[crypto_alg].iv_size;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -050096 sa->esp_block_align = clib_max (4, im->crypto_algs[crypto_alg].block_align);
Fan Zhangf5395782020-04-29 14:00:03 +010097 sa->sync_op_data.crypto_enc_op_id = im->crypto_algs[crypto_alg].enc_op_id;
98 sa->sync_op_data.crypto_dec_op_id = im->crypto_algs[crypto_alg].dec_op_id;
Damjan Mariond1bed682019-04-24 15:20:35 +020099 sa->crypto_calg = im->crypto_algs[crypto_alg].alg;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100100 ASSERT (sa->crypto_iv_size <= ESP_MAX_IV_SIZE);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500101 ASSERT (sa->esp_block_align <= ESP_MAX_BLOCK_SIZE);
Neale Ranns47feb112019-04-11 15:14:07 +0000102 if (IPSEC_CRYPTO_ALG_IS_GCM (crypto_alg))
103 {
104 sa->integ_icv_size = im->crypto_algs[crypto_alg].icv_size;
Benoît Ganne490b9272021-01-22 18:03:09 +0100105 ipsec_sa_set_IS_CTR (sa);
Neale Ranns47feb112019-04-11 15:14:07 +0000106 ipsec_sa_set_IS_AEAD (sa);
107 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100108 else if (IPSEC_CRYPTO_ALG_IS_CTR (crypto_alg))
109 {
110 ipsec_sa_set_IS_CTR (sa);
111 }
Damjan Marionb966e8b2019-03-20 16:07:09 +0100112}
113
114void
115ipsec_sa_set_integ_alg (ipsec_sa_t * sa, ipsec_integ_alg_t integ_alg)
116{
117 ipsec_main_t *im = &ipsec_main;
118 sa->integ_alg = integ_alg;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200119 sa->integ_icv_size = im->integ_algs[integ_alg].icv_size;
Fan Zhangf5395782020-04-29 14:00:03 +0100120 sa->sync_op_data.integ_op_id = im->integ_algs[integ_alg].op_id;
Damjan Mariond1bed682019-04-24 15:20:35 +0200121 sa->integ_calg = im->integ_algs[integ_alg].alg;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200122 ASSERT (sa->integ_icv_size <= ESP_MAX_ICV_SIZE);
Damjan Marionb966e8b2019-03-20 16:07:09 +0100123}
124
Fan Zhangf5395782020-04-29 14:00:03 +0100125void
126ipsec_sa_set_async_op_ids (ipsec_sa_t * sa)
127{
128 /* *INDENT-OFF* */
129 if (ipsec_sa_is_set_USE_ESN (sa))
130 {
131#define _(n, s, k) \
132 if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##n##_ENC ) \
133 sa->async_op_data.crypto_async_enc_op_id = \
134 VNET_CRYPTO_OP_##n##_TAG16_AAD12_ENC; \
135 if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##n##_DEC ) \
136 sa->async_op_data.crypto_async_dec_op_id = \
137 VNET_CRYPTO_OP_##n##_TAG16_AAD12_DEC;
138 foreach_crypto_aead_alg
139#undef _
140 }
141 else
142 {
143#define _(n, s, k) \
144 if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##n##_ENC ) \
145 sa->async_op_data.crypto_async_enc_op_id = \
146 VNET_CRYPTO_OP_##n##_TAG16_AAD8_ENC; \
147 if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##n##_DEC ) \
148 sa->async_op_data.crypto_async_dec_op_id = \
149 VNET_CRYPTO_OP_##n##_TAG16_AAD8_DEC;
150 foreach_crypto_aead_alg
151#undef _
152 }
153
154#define _(c, h, s, k ,d) \
155 if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##c##_ENC && \
156 sa->sync_op_data.integ_op_id == VNET_CRYPTO_OP_##h##_HMAC) \
157 sa->async_op_data.crypto_async_enc_op_id = \
158 VNET_CRYPTO_OP_##c##_##h##_TAG##d##_ENC; \
159 if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##c##_DEC && \
160 sa->sync_op_data.integ_op_id == VNET_CRYPTO_OP_##h##_HMAC) \
161 sa->async_op_data.crypto_async_dec_op_id = \
162 VNET_CRYPTO_OP_##c##_##h##_TAG##d##_DEC;
163 foreach_crypto_link_async_alg
164#undef _
165 /* *INDENT-ON* */
166}
167
Neale Ranns999c8ee2019-02-01 03:31:24 -0800168int
Neale Ranns9ec846c2021-02-09 14:04:02 +0000169ipsec_sa_add_and_lock (u32 id, u32 spi, ipsec_protocol_t proto,
170 ipsec_crypto_alg_t crypto_alg, const ipsec_key_t *ck,
171 ipsec_integ_alg_t integ_alg, const ipsec_key_t *ik,
172 ipsec_sa_flags_t flags, u32 salt, u16 src_port,
173 u16 dst_port, const tunnel_t *tun, u32 *sa_out_index)
Neale Ranns8d7c5022019-02-06 01:41:05 -0800174{
Damjan Mariond1bed682019-04-24 15:20:35 +0200175 vlib_main_t *vm = vlib_get_main ();
Neale Ranns8d7c5022019-02-06 01:41:05 -0800176 ipsec_main_t *im = &ipsec_main;
177 clib_error_t *err;
178 ipsec_sa_t *sa;
179 u32 sa_index;
180 uword *p;
Neale Ranns9ec846c2021-02-09 14:04:02 +0000181 int rv;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800182
183 p = hash_get (im->sa_index_by_sa_id, id);
184 if (p)
185 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
186
Damjan Mariond709cbc2019-03-26 13:16:42 +0100187 pool_get_aligned_zero (im->sad, sa, CLIB_CACHE_LINE_BYTES);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800188
189 fib_node_init (&sa->node, FIB_NODE_TYPE_IPSEC_SA);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000190 fib_node_lock (&sa->node);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800191 sa_index = sa - im->sad;
192
Neale Rannseba31ec2019-02-17 18:04:27 +0000193 vlib_validate_combined_counter (&ipsec_sa_counters, sa_index);
194 vlib_zero_combined_counter (&ipsec_sa_counters, sa_index);
195
Neale Ranns9ec846c2021-02-09 14:04:02 +0000196 tunnel_copy (tun, &sa->tunnel);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800197 sa->id = id;
198 sa->spi = spi;
Neale Rannseba31ec2019-02-17 18:04:27 +0000199 sa->stat_index = sa_index;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800200 sa->protocol = proto;
Neale Ranns2b5ba952019-04-02 10:15:40 +0000201 sa->flags = flags;
Neale Ranns47feb112019-04-11 15:14:07 +0000202 sa->salt = salt;
Neale Ranns1a52d372021-02-04 11:33:32 +0000203 sa->thread_index = (vlib_num_workers ()) ? ~0 : 0;
Filip Tehlarc41217a2019-10-18 17:51:06 +0000204 if (integ_alg != IPSEC_INTEG_ALG_NONE)
205 {
206 ipsec_sa_set_integ_alg (sa, integ_alg);
207 clib_memcpy (&sa->integ_key, ik, sizeof (sa->integ_key));
208 }
Neale Ranns47feb112019-04-11 15:14:07 +0000209 ipsec_sa_set_crypto_alg (sa, crypto_alg);
Fan Zhangf5395782020-04-29 14:00:03 +0100210 ipsec_sa_set_async_op_ids (sa);
211
Neale Ranns47feb112019-04-11 15:14:07 +0000212 clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800213
Damjan Mariond1bed682019-04-24 15:20:35 +0200214 sa->crypto_key_index = vnet_crypto_key_add (vm,
215 im->crypto_algs[crypto_alg].alg,
216 (u8 *) ck->data, ck->len);
Benoît Gannebe954442019-04-29 16:05:46 +0200217 if (~0 == sa->crypto_key_index)
Neale Rannse6be7022019-06-04 15:37:34 +0000218 {
219 pool_put (im->sad, sa);
220 return VNET_API_ERROR_KEY_LENGTH;
221 }
Benoît Gannebe954442019-04-29 16:05:46 +0200222
Filip Tehlarc41217a2019-10-18 17:51:06 +0000223 if (integ_alg != IPSEC_INTEG_ALG_NONE)
Neale Rannse6be7022019-06-04 15:37:34 +0000224 {
Filip Tehlarc41217a2019-10-18 17:51:06 +0000225 sa->integ_key_index = vnet_crypto_key_add (vm,
226 im->
227 integ_algs[integ_alg].alg,
228 (u8 *) ik->data, ik->len);
229 if (~0 == sa->integ_key_index)
230 {
231 pool_put (im->sad, sa);
232 return VNET_API_ERROR_KEY_LENGTH;
233 }
Neale Rannse6be7022019-06-04 15:37:34 +0000234 }
Damjan Mariond1bed682019-04-24 15:20:35 +0200235
Fan Zhangf5395782020-04-29 14:00:03 +0100236 if (sa->async_op_data.crypto_async_enc_op_id &&
237 !ipsec_sa_is_set_IS_AEAD (sa))
238 { //AES-CBC & HMAC
239 sa->async_op_data.linked_key_index =
240 vnet_crypto_key_add_linked (vm, sa->crypto_key_index,
241 sa->integ_key_index);
242 }
243
244 if (im->async_mode)
245 sa->crypto_op_data = sa->async_op_data.data;
246 else
247 sa->crypto_op_data = sa->sync_op_data.data;
248
Neale Ranns8d7c5022019-02-06 01:41:05 -0800249 err = ipsec_check_support_cb (im, sa);
250 if (err)
251 {
252 clib_warning ("%s", err->what);
253 pool_put (im->sad, sa);
254 return VNET_API_ERROR_UNIMPLEMENTED;
255 }
256
257 err = ipsec_call_add_del_callbacks (im, sa, sa_index, 1);
258 if (err)
259 {
260 pool_put (im->sad, sa);
261 return VNET_API_ERROR_SYSCALL_ERROR_1;
262 }
263
Neale Ranns2b5ba952019-04-02 10:15:40 +0000264 if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800265 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000266 sa->tunnel_flags = sa->tunnel.t_encap_decap_flags;
267
268 rv = tunnel_resolve (&sa->tunnel, FIB_NODE_TYPE_IPSEC_SA, sa_index);
269
270 if (rv)
Neale Ranns8d7c5022019-02-06 01:41:05 -0800271 {
272 pool_put (im->sad, sa);
Neale Ranns9ec846c2021-02-09 14:04:02 +0000273 return rv;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800274 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800275 ipsec_sa_stack (sa);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100276
277 /* generate header templates */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100278 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100279 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000280 tunnel_build_v6_hdr (&sa->tunnel,
281 (ipsec_sa_is_set_UDP_ENCAP (sa) ?
282 IP_PROTOCOL_UDP :
283 IP_PROTOCOL_IPSEC_ESP),
284 &sa->ip6_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100285 }
286 else
287 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000288 tunnel_build_v4_hdr (&sa->tunnel,
289 (ipsec_sa_is_set_UDP_ENCAP (sa) ?
290 IP_PROTOCOL_UDP :
291 IP_PROTOCOL_IPSEC_ESP),
292 &sa->ip4_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100293 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800294 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100295
Damjan Mariond709cbc2019-03-26 13:16:42 +0100296 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100297 {
Filip Tehlare5d34912020-03-02 15:17:37 +0000298 if (dst_port == IPSEC_UDP_PORT_NONE)
Neale Rannsabc56602020-04-01 09:45:23 +0000299 sa->udp_hdr.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
Filip Tehlare5d34912020-03-02 15:17:37 +0000300 else
Neale Rannsabc56602020-04-01 09:45:23 +0000301 sa->udp_hdr.dst_port = clib_host_to_net_u16 (dst_port);
302
303 if (src_port == IPSEC_UDP_PORT_NONE)
304 sa->udp_hdr.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
305 else
306 sa->udp_hdr.src_port = clib_host_to_net_u16 (src_port);
307
308 if (ipsec_sa_is_set_IS_INBOUND (sa))
309 ipsec_register_udp_port (clib_host_to_net_u16 (sa->udp_hdr.dst_port));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100310 }
311
Neale Ranns8d7c5022019-02-06 01:41:05 -0800312 hash_set (im->sa_index_by_sa_id, sa->id, sa_index);
313
314 if (sa_out_index)
315 *sa_out_index = sa_index;
316
317 return (0);
318}
319
Neale Ranns495d7ff2019-07-12 09:15:26 +0000320static void
321ipsec_sa_del (ipsec_sa_t * sa)
Neale Ranns999c8ee2019-02-01 03:31:24 -0800322{
Damjan Mariond1bed682019-04-24 15:20:35 +0200323 vlib_main_t *vm = vlib_get_main ();
Neale Ranns999c8ee2019-02-01 03:31:24 -0800324 ipsec_main_t *im = &ipsec_main;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800325 u32 sa_index;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800326
Neale Ranns495d7ff2019-07-12 09:15:26 +0000327 sa_index = sa - im->sad;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800328 hash_unset (im->sa_index_by_sa_id, sa->id);
Neale Ranns9ec846c2021-02-09 14:04:02 +0000329 tunnel_unresolve (&sa->tunnel);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000330
331 /* no recovery possible when deleting an SA */
332 (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0);
Damjan Mariond709cbc2019-03-26 13:16:42 +0100333
Neale Rannsabc56602020-04-01 09:45:23 +0000334 if (ipsec_sa_is_set_UDP_ENCAP (sa) && ipsec_sa_is_set_IS_INBOUND (sa))
335 ipsec_unregister_udp_port (clib_net_to_host_u16 (sa->udp_hdr.dst_port));
336
Neale Ranns2b5ba952019-04-02 10:15:40 +0000337 if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
Neale Ranns9ec846c2021-02-09 14:04:02 +0000338 dpo_reset (&sa->dpo);
Damjan Mariond1bed682019-04-24 15:20:35 +0200339 vnet_crypto_key_del (vm, sa->crypto_key_index);
Filip Tehlarc41217a2019-10-18 17:51:06 +0000340 if (sa->integ_alg != IPSEC_INTEG_ALG_NONE)
341 vnet_crypto_key_del (vm, sa->integ_key_index);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800342 pool_put (im->sad, sa);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000343}
344
345void
346ipsec_sa_unlock (index_t sai)
347{
348 ipsec_main_t *im = &ipsec_main;
349 ipsec_sa_t *sa;
350
351 if (INDEX_INVALID == sai)
352 return;
353
354 sa = pool_elt_at_index (im->sad, sai);
355
356 fib_node_unlock (&sa->node);
357}
358
Neale Ranns12989b52019-09-26 16:20:19 +0000359void
360ipsec_sa_lock (index_t sai)
361{
362 ipsec_main_t *im = &ipsec_main;
363 ipsec_sa_t *sa;
364
365 if (INDEX_INVALID == sai)
366 return;
367
368 sa = pool_elt_at_index (im->sad, sai);
369
370 fib_node_lock (&sa->node);
371}
372
Neale Ranns495d7ff2019-07-12 09:15:26 +0000373index_t
374ipsec_sa_find_and_lock (u32 id)
375{
376 ipsec_main_t *im = &ipsec_main;
377 ipsec_sa_t *sa;
378 uword *p;
379
380 p = hash_get (im->sa_index_by_sa_id, id);
381
382 if (!p)
383 return INDEX_INVALID;
384
385 sa = pool_elt_at_index (im->sad, p[0]);
386
387 fib_node_lock (&sa->node);
388
389 return (p[0]);
390}
391
392int
393ipsec_sa_unlock_id (u32 id)
394{
395 ipsec_main_t *im = &ipsec_main;
396 uword *p;
397
398 p = hash_get (im->sa_index_by_sa_id, id);
399
400 if (!p)
401 return VNET_API_ERROR_NO_SUCH_ENTRY;
402
403 ipsec_sa_unlock (p[0]);
404
405 return (0);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800406}
407
Neale Rannsc87b66c2019-02-07 07:26:12 -0800408void
409ipsec_sa_clear (index_t sai)
410{
411 vlib_zero_combined_counter (&ipsec_sa_counters, sai);
412}
413
Neale Rannsb4cfd552019-02-13 02:08:06 -0800414void
415ipsec_sa_walk (ipsec_sa_walk_cb_t cb, void *ctx)
416{
417 ipsec_main_t *im = &ipsec_main;
418 ipsec_sa_t *sa;
419
420 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100421 pool_foreach (sa, im->sad)
422 {
Neale Rannsb4cfd552019-02-13 02:08:06 -0800423 if (WALK_CONTINUE != cb(sa, ctx))
424 break;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100425 }
Neale Rannsb4cfd552019-02-13 02:08:06 -0800426 /* *INDENT-ON* */
427}
428
Neale Ranns8d7c5022019-02-06 01:41:05 -0800429/**
430 * Function definition to get a FIB node from its index
431 */
432static fib_node_t *
433ipsec_sa_fib_node_get (fib_node_index_t index)
434{
435 ipsec_main_t *im;
436 ipsec_sa_t *sa;
437
438 im = &ipsec_main;
439 sa = pool_elt_at_index (im->sad, index);
440
441 return (&sa->node);
442}
443
Neale Ranns495d7ff2019-07-12 09:15:26 +0000444static ipsec_sa_t *
445ipsec_sa_from_fib_node (fib_node_t * node)
446{
447 ASSERT (FIB_NODE_TYPE_IPSEC_SA == node->fn_type);
448 return ((ipsec_sa_t *) (((char *) node) -
449 STRUCT_OFFSET_OF (ipsec_sa_t, node)));
450
451}
452
Neale Ranns8d7c5022019-02-06 01:41:05 -0800453/**
454 * Function definition to inform the FIB node that its last lock has gone.
455 */
456static void
457ipsec_sa_last_lock_gone (fib_node_t * node)
458{
459 /*
460 * The ipsec SA is a root of the graph. As such
461 * it never has children and thus is never locked.
462 */
Neale Ranns495d7ff2019-07-12 09:15:26 +0000463 ipsec_sa_del (ipsec_sa_from_fib_node (node));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800464}
465
466/**
467 * Function definition to backwalk a FIB node
468 */
469static fib_node_back_walk_rc_t
470ipsec_sa_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
471{
472 ipsec_sa_stack (ipsec_sa_from_fib_node (node));
473
474 return (FIB_NODE_BACK_WALK_CONTINUE);
475}
476
477/*
Neale Rannsc87b66c2019-02-07 07:26:12 -0800478 * Virtual function table registered by SAs
Neale Ranns8d7c5022019-02-06 01:41:05 -0800479 * for participation in the FIB object graph.
480 */
481const static fib_node_vft_t ipsec_sa_vft = {
482 .fnv_get = ipsec_sa_fib_node_get,
483 .fnv_last_lock = ipsec_sa_last_lock_gone,
484 .fnv_back_walk = ipsec_sa_back_walk,
485};
486
487/* force inclusion from application's main.c */
488clib_error_t *
489ipsec_sa_interface_init (vlib_main_t * vm)
490{
491 fib_node_register_type (FIB_NODE_TYPE_IPSEC_SA, &ipsec_sa_vft);
492
493 return 0;
494}
495
496VLIB_INIT_FUNCTION (ipsec_sa_interface_init);
497
Neale Ranns999c8ee2019-02-01 03:31:24 -0800498/*
499 * fd.io coding-style-patch-verification: ON
500 *
501 * Local Variables:
502 * eval: (c-set-style "gnu")
503 * End:
504 */