blob: 71e86ac5c4511e7bd4180b3bca9440731076fb3a [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 fib_forward_chain_type_t fct;
76 dpo_id_t tmp = DPO_INVALID;
Neale Ranns8d7c5022019-02-06 01:41:05 -080077
Damjan Mariond709cbc2019-03-26 13:16:42 +010078 fct =
79 fib_forw_chain_type_from_fib_proto ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
80 FIB_PROTOCOL_IP6 :
81 FIB_PROTOCOL_IP4));
Neale Ranns8d7c5022019-02-06 01:41:05 -080082
83 fib_entry_contribute_forwarding (sa->fib_entry_index, fct, &tmp);
84
Neale Ranns72f2a3a2019-06-17 15:43:38 +000085 if (IPSEC_PROTOCOL_AH == sa->protocol)
86 dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
87 im->ah6_encrypt_node_index :
88 im->ah4_encrypt_node_index), &sa->dpo, &tmp);
89 else
90 dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
91 im->esp6_encrypt_node_index :
92 im->esp4_encrypt_node_index), &sa->dpo, &tmp);
Neale Rannsb4cfd552019-02-13 02:08:06 -080093 dpo_reset (&tmp);
Neale Ranns8d7c5022019-02-06 01:41:05 -080094}
95
Damjan Marionb966e8b2019-03-20 16:07:09 +010096void
97ipsec_sa_set_crypto_alg (ipsec_sa_t * sa, ipsec_crypto_alg_t crypto_alg)
98{
99 ipsec_main_t *im = &ipsec_main;
100 sa->crypto_alg = crypto_alg;
101 sa->crypto_iv_size = im->crypto_algs[crypto_alg].iv_size;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500102 sa->esp_block_align = clib_max (4, im->crypto_algs[crypto_alg].block_align);
Fan Zhangf5395782020-04-29 14:00:03 +0100103 sa->sync_op_data.crypto_enc_op_id = im->crypto_algs[crypto_alg].enc_op_id;
104 sa->sync_op_data.crypto_dec_op_id = im->crypto_algs[crypto_alg].dec_op_id;
Damjan Mariond1bed682019-04-24 15:20:35 +0200105 sa->crypto_calg = im->crypto_algs[crypto_alg].alg;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100106 ASSERT (sa->crypto_iv_size <= ESP_MAX_IV_SIZE);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500107 ASSERT (sa->esp_block_align <= ESP_MAX_BLOCK_SIZE);
Neale Ranns47feb112019-04-11 15:14:07 +0000108 if (IPSEC_CRYPTO_ALG_IS_GCM (crypto_alg))
109 {
110 sa->integ_icv_size = im->crypto_algs[crypto_alg].icv_size;
111 ipsec_sa_set_IS_AEAD (sa);
112 }
Damjan Marionb966e8b2019-03-20 16:07:09 +0100113}
114
115void
116ipsec_sa_set_integ_alg (ipsec_sa_t * sa, ipsec_integ_alg_t integ_alg)
117{
118 ipsec_main_t *im = &ipsec_main;
119 sa->integ_alg = integ_alg;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200120 sa->integ_icv_size = im->integ_algs[integ_alg].icv_size;
Fan Zhangf5395782020-04-29 14:00:03 +0100121 sa->sync_op_data.integ_op_id = im->integ_algs[integ_alg].op_id;
Damjan Mariond1bed682019-04-24 15:20:35 +0200122 sa->integ_calg = im->integ_algs[integ_alg].alg;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200123 ASSERT (sa->integ_icv_size <= ESP_MAX_ICV_SIZE);
Damjan Marionb966e8b2019-03-20 16:07:09 +0100124}
125
Fan Zhangf5395782020-04-29 14:00:03 +0100126void
127ipsec_sa_set_async_op_ids (ipsec_sa_t * sa)
128{
129 /* *INDENT-OFF* */
130 if (ipsec_sa_is_set_USE_ESN (sa))
131 {
132#define _(n, s, k) \
133 if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##n##_ENC ) \
134 sa->async_op_data.crypto_async_enc_op_id = \
135 VNET_CRYPTO_OP_##n##_TAG16_AAD12_ENC; \
136 if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##n##_DEC ) \
137 sa->async_op_data.crypto_async_dec_op_id = \
138 VNET_CRYPTO_OP_##n##_TAG16_AAD12_DEC;
139 foreach_crypto_aead_alg
140#undef _
141 }
142 else
143 {
144#define _(n, s, k) \
145 if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##n##_ENC ) \
146 sa->async_op_data.crypto_async_enc_op_id = \
147 VNET_CRYPTO_OP_##n##_TAG16_AAD8_ENC; \
148 if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##n##_DEC ) \
149 sa->async_op_data.crypto_async_dec_op_id = \
150 VNET_CRYPTO_OP_##n##_TAG16_AAD8_DEC;
151 foreach_crypto_aead_alg
152#undef _
153 }
154
155#define _(c, h, s, k ,d) \
156 if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##c##_ENC && \
157 sa->sync_op_data.integ_op_id == VNET_CRYPTO_OP_##h##_HMAC) \
158 sa->async_op_data.crypto_async_enc_op_id = \
159 VNET_CRYPTO_OP_##c##_##h##_TAG##d##_ENC; \
160 if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##c##_DEC && \
161 sa->sync_op_data.integ_op_id == VNET_CRYPTO_OP_##h##_HMAC) \
162 sa->async_op_data.crypto_async_dec_op_id = \
163 VNET_CRYPTO_OP_##c##_##h##_TAG##d##_DEC;
164 foreach_crypto_link_async_alg
165#undef _
166 /* *INDENT-ON* */
167}
168
Neale Ranns999c8ee2019-02-01 03:31:24 -0800169int
Neale Ranns495d7ff2019-07-12 09:15:26 +0000170ipsec_sa_add_and_lock (u32 id,
171 u32 spi,
172 ipsec_protocol_t proto,
173 ipsec_crypto_alg_t crypto_alg,
174 const ipsec_key_t * ck,
175 ipsec_integ_alg_t integ_alg,
176 const ipsec_key_t * ik,
177 ipsec_sa_flags_t flags,
178 u32 tx_table_id,
179 u32 salt,
180 const ip46_address_t * tun_src,
Neale Ranns041add72020-01-02 04:06:10 +0000181 const ip46_address_t * tun_dst,
182 tunnel_encap_decap_flags_t tunnel_flags,
183 ip_dscp_t dscp,
184 u32 * sa_out_index, u16 src_port, u16 dst_port)
Neale Ranns8d7c5022019-02-06 01:41:05 -0800185{
Damjan Mariond1bed682019-04-24 15:20:35 +0200186 vlib_main_t *vm = vlib_get_main ();
Neale Ranns8d7c5022019-02-06 01:41:05 -0800187 ipsec_main_t *im = &ipsec_main;
188 clib_error_t *err;
189 ipsec_sa_t *sa;
190 u32 sa_index;
191 uword *p;
192
193 p = hash_get (im->sa_index_by_sa_id, id);
194 if (p)
195 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
196
Damjan Mariond709cbc2019-03-26 13:16:42 +0100197 pool_get_aligned_zero (im->sad, sa, CLIB_CACHE_LINE_BYTES);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800198
199 fib_node_init (&sa->node, FIB_NODE_TYPE_IPSEC_SA);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000200 fib_node_lock (&sa->node);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800201 sa_index = sa - im->sad;
202
Neale Rannseba31ec2019-02-17 18:04:27 +0000203 vlib_validate_combined_counter (&ipsec_sa_counters, sa_index);
204 vlib_zero_combined_counter (&ipsec_sa_counters, sa_index);
205
Neale Ranns8d7c5022019-02-06 01:41:05 -0800206 sa->id = id;
207 sa->spi = spi;
Neale Rannseba31ec2019-02-17 18:04:27 +0000208 sa->stat_index = sa_index;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800209 sa->protocol = proto;
Neale Ranns2b5ba952019-04-02 10:15:40 +0000210 sa->flags = flags;
Neale Ranns041add72020-01-02 04:06:10 +0000211 sa->tunnel_flags = tunnel_flags;
212 sa->dscp = dscp;
Neale Ranns47feb112019-04-11 15:14:07 +0000213 sa->salt = salt;
Neale Rannsf62a8c02019-04-02 08:13:33 +0000214 sa->encrypt_thread_index = (vlib_num_workers ())? ~0 : 0;
215 sa->decrypt_thread_index = (vlib_num_workers ())? ~0 : 0;
Filip Tehlarc41217a2019-10-18 17:51:06 +0000216 if (integ_alg != IPSEC_INTEG_ALG_NONE)
217 {
218 ipsec_sa_set_integ_alg (sa, integ_alg);
219 clib_memcpy (&sa->integ_key, ik, sizeof (sa->integ_key));
220 }
Neale Ranns47feb112019-04-11 15:14:07 +0000221 ipsec_sa_set_crypto_alg (sa, crypto_alg);
Fan Zhangf5395782020-04-29 14:00:03 +0100222 ipsec_sa_set_async_op_ids (sa);
223
Neale Ranns47feb112019-04-11 15:14:07 +0000224 clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800225 ip46_address_copy (&sa->tunnel_src_addr, tun_src);
226 ip46_address_copy (&sa->tunnel_dst_addr, tun_dst);
227
Damjan Mariond1bed682019-04-24 15:20:35 +0200228 sa->crypto_key_index = vnet_crypto_key_add (vm,
229 im->crypto_algs[crypto_alg].alg,
230 (u8 *) ck->data, ck->len);
Benoît Gannebe954442019-04-29 16:05:46 +0200231 if (~0 == sa->crypto_key_index)
Neale Rannse6be7022019-06-04 15:37:34 +0000232 {
233 pool_put (im->sad, sa);
234 return VNET_API_ERROR_KEY_LENGTH;
235 }
Benoît Gannebe954442019-04-29 16:05:46 +0200236
Filip Tehlarc41217a2019-10-18 17:51:06 +0000237 if (integ_alg != IPSEC_INTEG_ALG_NONE)
Neale Rannse6be7022019-06-04 15:37:34 +0000238 {
Filip Tehlarc41217a2019-10-18 17:51:06 +0000239 sa->integ_key_index = vnet_crypto_key_add (vm,
240 im->
241 integ_algs[integ_alg].alg,
242 (u8 *) ik->data, ik->len);
243 if (~0 == sa->integ_key_index)
244 {
245 pool_put (im->sad, sa);
246 return VNET_API_ERROR_KEY_LENGTH;
247 }
Neale Rannse6be7022019-06-04 15:37:34 +0000248 }
Damjan Mariond1bed682019-04-24 15:20:35 +0200249
Fan Zhangf5395782020-04-29 14:00:03 +0100250 if (sa->async_op_data.crypto_async_enc_op_id &&
251 !ipsec_sa_is_set_IS_AEAD (sa))
252 { //AES-CBC & HMAC
253 sa->async_op_data.linked_key_index =
254 vnet_crypto_key_add_linked (vm, sa->crypto_key_index,
255 sa->integ_key_index);
256 }
257
258 if (im->async_mode)
259 sa->crypto_op_data = sa->async_op_data.data;
260 else
261 sa->crypto_op_data = sa->sync_op_data.data;
262
Neale Ranns8d7c5022019-02-06 01:41:05 -0800263 err = ipsec_check_support_cb (im, sa);
264 if (err)
265 {
266 clib_warning ("%s", err->what);
267 pool_put (im->sad, sa);
268 return VNET_API_ERROR_UNIMPLEMENTED;
269 }
270
271 err = ipsec_call_add_del_callbacks (im, sa, sa_index, 1);
272 if (err)
273 {
274 pool_put (im->sad, sa);
275 return VNET_API_ERROR_SYSCALL_ERROR_1;
276 }
277
Neale Ranns2b5ba952019-04-02 10:15:40 +0000278 if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800279 {
Damjan Mariond709cbc2019-03-26 13:16:42 +0100280 fib_protocol_t fproto = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
Neale Ranns8d7c5022019-02-06 01:41:05 -0800281 FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
282 fib_prefix_t pfx = {
283 .fp_addr = sa->tunnel_dst_addr,
Damjan Mariond709cbc2019-03-26 13:16:42 +0100284 .fp_len = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? 128 : 32),
Neale Ranns8d7c5022019-02-06 01:41:05 -0800285 .fp_proto = fproto,
286 };
287 sa->tx_fib_index = fib_table_find (fproto, tx_table_id);
288 if (sa->tx_fib_index == ~((u32) 0))
289 {
290 pool_put (im->sad, sa);
291 return VNET_API_ERROR_NO_SUCH_FIB;
292 }
293
Neale Ranns1f50bf82019-07-16 15:28:52 +0000294 sa->fib_entry_index = fib_entry_track (sa->tx_fib_index,
295 &pfx,
296 FIB_NODE_TYPE_IPSEC_SA,
297 sa_index, &sa->sibling);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800298 ipsec_sa_stack (sa);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100299
300 /* generate header templates */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100301 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100302 {
303 sa->ip6_hdr.ip_version_traffic_class_and_flow_label = 0x60;
Neale Ranns041add72020-01-02 04:06:10 +0000304 ip6_set_dscp_network_order (&sa->ip6_hdr, sa->dscp);
305
Damjan Marionc59b9a22019-03-19 15:38:40 +0100306 sa->ip6_hdr.hop_limit = 254;
307 sa->ip6_hdr.src_address.as_u64[0] =
308 sa->tunnel_src_addr.ip6.as_u64[0];
309 sa->ip6_hdr.src_address.as_u64[1] =
310 sa->tunnel_src_addr.ip6.as_u64[1];
311 sa->ip6_hdr.dst_address.as_u64[0] =
312 sa->tunnel_dst_addr.ip6.as_u64[0];
313 sa->ip6_hdr.dst_address.as_u64[1] =
314 sa->tunnel_dst_addr.ip6.as_u64[1];
Damjan Mariond709cbc2019-03-26 13:16:42 +0100315 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100316 sa->ip6_hdr.protocol = IP_PROTOCOL_UDP;
317 else
318 sa->ip6_hdr.protocol = IP_PROTOCOL_IPSEC_ESP;
319 }
320 else
321 {
322 sa->ip4_hdr.ip_version_and_header_length = 0x45;
323 sa->ip4_hdr.ttl = 254;
324 sa->ip4_hdr.src_address.as_u32 = sa->tunnel_src_addr.ip4.as_u32;
325 sa->ip4_hdr.dst_address.as_u32 = sa->tunnel_dst_addr.ip4.as_u32;
Neale Ranns041add72020-01-02 04:06:10 +0000326 sa->ip4_hdr.tos = sa->dscp << 2;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100327
Damjan Mariond709cbc2019-03-26 13:16:42 +0100328 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100329 sa->ip4_hdr.protocol = IP_PROTOCOL_UDP;
330 else
331 sa->ip4_hdr.protocol = IP_PROTOCOL_IPSEC_ESP;
332 sa->ip4_hdr.checksum = ip4_header_checksum (&sa->ip4_hdr);
333 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800334 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100335
Damjan Mariond709cbc2019-03-26 13:16:42 +0100336 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100337 {
Filip Tehlare5d34912020-03-02 15:17:37 +0000338 if (dst_port == IPSEC_UDP_PORT_NONE)
Neale Rannsabc56602020-04-01 09:45:23 +0000339 sa->udp_hdr.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
Filip Tehlare5d34912020-03-02 15:17:37 +0000340 else
Neale Rannsabc56602020-04-01 09:45:23 +0000341 sa->udp_hdr.dst_port = clib_host_to_net_u16 (dst_port);
342
343 if (src_port == IPSEC_UDP_PORT_NONE)
344 sa->udp_hdr.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
345 else
346 sa->udp_hdr.src_port = clib_host_to_net_u16 (src_port);
347
348 if (ipsec_sa_is_set_IS_INBOUND (sa))
349 ipsec_register_udp_port (clib_host_to_net_u16 (sa->udp_hdr.dst_port));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100350 }
351
Neale Ranns8d7c5022019-02-06 01:41:05 -0800352 hash_set (im->sa_index_by_sa_id, sa->id, sa_index);
353
354 if (sa_out_index)
355 *sa_out_index = sa_index;
356
357 return (0);
358}
359
Neale Ranns495d7ff2019-07-12 09:15:26 +0000360static void
361ipsec_sa_del (ipsec_sa_t * sa)
Neale Ranns999c8ee2019-02-01 03:31:24 -0800362{
Damjan Mariond1bed682019-04-24 15:20:35 +0200363 vlib_main_t *vm = vlib_get_main ();
Neale Ranns999c8ee2019-02-01 03:31:24 -0800364 ipsec_main_t *im = &ipsec_main;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800365 u32 sa_index;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800366
Neale Ranns495d7ff2019-07-12 09:15:26 +0000367 sa_index = sa - im->sad;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800368 hash_unset (im->sa_index_by_sa_id, sa->id);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000369
370 /* no recovery possible when deleting an SA */
371 (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0);
Damjan Mariond709cbc2019-03-26 13:16:42 +0100372
Neale Rannsabc56602020-04-01 09:45:23 +0000373 if (ipsec_sa_is_set_UDP_ENCAP (sa) && ipsec_sa_is_set_IS_INBOUND (sa))
374 ipsec_unregister_udp_port (clib_net_to_host_u16 (sa->udp_hdr.dst_port));
375
Neale Ranns2b5ba952019-04-02 10:15:40 +0000376 if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
Neale Ranns999c8ee2019-02-01 03:31:24 -0800377 {
Neale Ranns1f50bf82019-07-16 15:28:52 +0000378 fib_entry_untrack (sa->fib_entry_index, sa->sibling);
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000379 dpo_reset (&sa->dpo);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800380 }
Damjan Mariond1bed682019-04-24 15:20:35 +0200381 vnet_crypto_key_del (vm, sa->crypto_key_index);
Filip Tehlarc41217a2019-10-18 17:51:06 +0000382 if (sa->integ_alg != IPSEC_INTEG_ALG_NONE)
383 vnet_crypto_key_del (vm, sa->integ_key_index);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800384 pool_put (im->sad, sa);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000385}
386
387void
388ipsec_sa_unlock (index_t sai)
389{
390 ipsec_main_t *im = &ipsec_main;
391 ipsec_sa_t *sa;
392
393 if (INDEX_INVALID == sai)
394 return;
395
396 sa = pool_elt_at_index (im->sad, sai);
397
398 fib_node_unlock (&sa->node);
399}
400
Neale Ranns12989b52019-09-26 16:20:19 +0000401void
402ipsec_sa_lock (index_t sai)
403{
404 ipsec_main_t *im = &ipsec_main;
405 ipsec_sa_t *sa;
406
407 if (INDEX_INVALID == sai)
408 return;
409
410 sa = pool_elt_at_index (im->sad, sai);
411
412 fib_node_lock (&sa->node);
413}
414
Neale Ranns495d7ff2019-07-12 09:15:26 +0000415index_t
416ipsec_sa_find_and_lock (u32 id)
417{
418 ipsec_main_t *im = &ipsec_main;
419 ipsec_sa_t *sa;
420 uword *p;
421
422 p = hash_get (im->sa_index_by_sa_id, id);
423
424 if (!p)
425 return INDEX_INVALID;
426
427 sa = pool_elt_at_index (im->sad, p[0]);
428
429 fib_node_lock (&sa->node);
430
431 return (p[0]);
432}
433
434int
435ipsec_sa_unlock_id (u32 id)
436{
437 ipsec_main_t *im = &ipsec_main;
438 uword *p;
439
440 p = hash_get (im->sa_index_by_sa_id, id);
441
442 if (!p)
443 return VNET_API_ERROR_NO_SUCH_ENTRY;
444
445 ipsec_sa_unlock (p[0]);
446
447 return (0);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800448}
449
Neale Rannsc87b66c2019-02-07 07:26:12 -0800450void
451ipsec_sa_clear (index_t sai)
452{
453 vlib_zero_combined_counter (&ipsec_sa_counters, sai);
454}
455
Neale Rannsb4cfd552019-02-13 02:08:06 -0800456void
457ipsec_sa_walk (ipsec_sa_walk_cb_t cb, void *ctx)
458{
459 ipsec_main_t *im = &ipsec_main;
460 ipsec_sa_t *sa;
461
462 /* *INDENT-OFF* */
463 pool_foreach (sa, im->sad,
464 ({
465 if (WALK_CONTINUE != cb(sa, ctx))
466 break;
467 }));
468 /* *INDENT-ON* */
469}
470
Neale Ranns8d7c5022019-02-06 01:41:05 -0800471/**
472 * Function definition to get a FIB node from its index
473 */
474static fib_node_t *
475ipsec_sa_fib_node_get (fib_node_index_t index)
476{
477 ipsec_main_t *im;
478 ipsec_sa_t *sa;
479
480 im = &ipsec_main;
481 sa = pool_elt_at_index (im->sad, index);
482
483 return (&sa->node);
484}
485
Neale Ranns495d7ff2019-07-12 09:15:26 +0000486static ipsec_sa_t *
487ipsec_sa_from_fib_node (fib_node_t * node)
488{
489 ASSERT (FIB_NODE_TYPE_IPSEC_SA == node->fn_type);
490 return ((ipsec_sa_t *) (((char *) node) -
491 STRUCT_OFFSET_OF (ipsec_sa_t, node)));
492
493}
494
Neale Ranns8d7c5022019-02-06 01:41:05 -0800495/**
496 * Function definition to inform the FIB node that its last lock has gone.
497 */
498static void
499ipsec_sa_last_lock_gone (fib_node_t * node)
500{
501 /*
502 * The ipsec SA is a root of the graph. As such
503 * it never has children and thus is never locked.
504 */
Neale Ranns495d7ff2019-07-12 09:15:26 +0000505 ipsec_sa_del (ipsec_sa_from_fib_node (node));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800506}
507
508/**
509 * Function definition to backwalk a FIB node
510 */
511static fib_node_back_walk_rc_t
512ipsec_sa_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
513{
514 ipsec_sa_stack (ipsec_sa_from_fib_node (node));
515
516 return (FIB_NODE_BACK_WALK_CONTINUE);
517}
518
519/*
Neale Rannsc87b66c2019-02-07 07:26:12 -0800520 * Virtual function table registered by SAs
Neale Ranns8d7c5022019-02-06 01:41:05 -0800521 * for participation in the FIB object graph.
522 */
523const static fib_node_vft_t ipsec_sa_vft = {
524 .fnv_get = ipsec_sa_fib_node_get,
525 .fnv_last_lock = ipsec_sa_last_lock_gone,
526 .fnv_back_walk = ipsec_sa_back_walk,
527};
528
529/* force inclusion from application's main.c */
530clib_error_t *
531ipsec_sa_interface_init (vlib_main_t * vm)
532{
533 fib_node_register_type (FIB_NODE_TYPE_IPSEC_SA, &ipsec_sa_vft);
534
535 return 0;
536}
537
538VLIB_INIT_FUNCTION (ipsec_sa_interface_init);
539
Neale Ranns999c8ee2019-02-01 03:31:24 -0800540/*
541 * fd.io coding-style-patch-verification: ON
542 *
543 * Local Variables:
544 * eval: (c-set-style "gnu")
545 * End:
546 */