Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 1 | /* |
| 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 Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 17 | #include <vnet/ipsec/esp.h> |
Florin Coras | b040f98 | 2020-10-20 14:59:43 -0700 | [diff] [blame] | 18 | #include <vnet/udp/udp_local.h> |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 19 | #include <vnet/fib/fib_table.h> |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 20 | #include <vnet/fib/fib_entry_track.h> |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 21 | #include <vnet/ipsec/ipsec_tun.h> |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 22 | |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 23 | /** |
| 24 | * @brief |
| 25 | * SA packet & bytes counters |
| 26 | */ |
| 27 | vlib_combined_counter_main_t ipsec_sa_counters = { |
| 28 | .name = "SA", |
| 29 | .stat_segment_name = "/net/ipsec/sa", |
| 30 | }; |
| 31 | |
| 32 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 33 | static clib_error_t * |
| 34 | ipsec_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 Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 55 | void |
| 56 | ipsec_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 Ranns | e8915fc | 2019-04-23 20:57:55 -0400 | [diff] [blame] | 71 | static void |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 72 | ipsec_sa_stack (ipsec_sa_t * sa) |
| 73 | { |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 74 | ipsec_main_t *im = &ipsec_main; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 75 | dpo_id_t tmp = DPO_INVALID; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 76 | |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 77 | tunnel_contribute_forwarding (&sa->tunnel, &tmp); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 78 | |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 79 | 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 Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 87 | dpo_reset (&tmp); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 88 | } |
| 89 | |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 90 | void |
| 91 | ipsec_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 Hopps | fb7e7ed | 2019-11-03 07:02:15 -0500 | [diff] [blame] | 96 | sa->esp_block_align = clib_max (4, im->crypto_algs[crypto_alg].block_align); |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 97 | 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 Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 99 | sa->crypto_calg = im->crypto_algs[crypto_alg].alg; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 100 | ASSERT (sa->crypto_iv_size <= ESP_MAX_IV_SIZE); |
Christian Hopps | fb7e7ed | 2019-11-03 07:02:15 -0500 | [diff] [blame] | 101 | ASSERT (sa->esp_block_align <= ESP_MAX_BLOCK_SIZE); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 102 | if (IPSEC_CRYPTO_ALG_IS_GCM (crypto_alg)) |
| 103 | { |
| 104 | sa->integ_icv_size = im->crypto_algs[crypto_alg].icv_size; |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 105 | ipsec_sa_set_IS_CTR (sa); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 106 | ipsec_sa_set_IS_AEAD (sa); |
| 107 | } |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 108 | else if (IPSEC_CRYPTO_ALG_IS_CTR (crypto_alg)) |
| 109 | { |
| 110 | ipsec_sa_set_IS_CTR (sa); |
| 111 | } |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | void |
| 115 | ipsec_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 Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 119 | sa->integ_icv_size = im->integ_algs[integ_alg].icv_size; |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 120 | sa->sync_op_data.integ_op_id = im->integ_algs[integ_alg].op_id; |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 121 | sa->integ_calg = im->integ_algs[integ_alg].alg; |
Damjan Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 122 | ASSERT (sa->integ_icv_size <= ESP_MAX_ICV_SIZE); |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 123 | } |
| 124 | |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 125 | void |
| 126 | ipsec_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 Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 168 | int |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 169 | ipsec_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 Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 174 | { |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 175 | vlib_main_t *vm = vlib_get_main (); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 176 | ipsec_main_t *im = &ipsec_main; |
| 177 | clib_error_t *err; |
| 178 | ipsec_sa_t *sa; |
| 179 | u32 sa_index; |
| 180 | uword *p; |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 181 | int rv; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 182 | |
| 183 | p = hash_get (im->sa_index_by_sa_id, id); |
| 184 | if (p) |
| 185 | return VNET_API_ERROR_ENTRY_ALREADY_EXISTS; |
| 186 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 187 | pool_get_aligned_zero (im->sad, sa, CLIB_CACHE_LINE_BYTES); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 188 | |
| 189 | fib_node_init (&sa->node, FIB_NODE_TYPE_IPSEC_SA); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 190 | fib_node_lock (&sa->node); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 191 | sa_index = sa - im->sad; |
| 192 | |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 193 | vlib_validate_combined_counter (&ipsec_sa_counters, sa_index); |
| 194 | vlib_zero_combined_counter (&ipsec_sa_counters, sa_index); |
| 195 | |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 196 | tunnel_copy (tun, &sa->tunnel); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 197 | sa->id = id; |
| 198 | sa->spi = spi; |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 199 | sa->stat_index = sa_index; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 200 | sa->protocol = proto; |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 201 | sa->flags = flags; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 202 | sa->salt = salt; |
Neale Ranns | 1a52d37 | 2021-02-04 11:33:32 +0000 | [diff] [blame] | 203 | sa->thread_index = (vlib_num_workers ()) ? ~0 : 0; |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 204 | 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 Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 209 | ipsec_sa_set_crypto_alg (sa, crypto_alg); |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 210 | ipsec_sa_set_async_op_ids (sa); |
| 211 | |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 212 | clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key)); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 213 | |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 214 | sa->crypto_key_index = vnet_crypto_key_add (vm, |
| 215 | im->crypto_algs[crypto_alg].alg, |
| 216 | (u8 *) ck->data, ck->len); |
Benoît Ganne | be95444 | 2019-04-29 16:05:46 +0200 | [diff] [blame] | 217 | if (~0 == sa->crypto_key_index) |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 218 | { |
| 219 | pool_put (im->sad, sa); |
| 220 | return VNET_API_ERROR_KEY_LENGTH; |
| 221 | } |
Benoît Ganne | be95444 | 2019-04-29 16:05:46 +0200 | [diff] [blame] | 222 | |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 223 | if (integ_alg != IPSEC_INTEG_ALG_NONE) |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 224 | { |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 225 | 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 Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 234 | } |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 235 | |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 236 | 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 Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 249 | 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 Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 264 | if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa)) |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 265 | { |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 266 | 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 Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 271 | { |
| 272 | pool_put (im->sad, sa); |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 273 | return rv; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 274 | } |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 275 | ipsec_sa_stack (sa); |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 276 | |
| 277 | /* generate header templates */ |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 278 | if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 279 | { |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 280 | 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 Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 285 | } |
| 286 | else |
| 287 | { |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 288 | 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 Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 293 | } |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 294 | } |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 295 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 296 | if (ipsec_sa_is_set_UDP_ENCAP (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 297 | { |
Filip Tehlar | e5d3491 | 2020-03-02 15:17:37 +0000 | [diff] [blame] | 298 | if (dst_port == IPSEC_UDP_PORT_NONE) |
Neale Ranns | abc5660 | 2020-04-01 09:45:23 +0000 | [diff] [blame] | 299 | sa->udp_hdr.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec); |
Filip Tehlar | e5d3491 | 2020-03-02 15:17:37 +0000 | [diff] [blame] | 300 | else |
Neale Ranns | abc5660 | 2020-04-01 09:45:23 +0000 | [diff] [blame] | 301 | 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 Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 310 | } |
| 311 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 312 | 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 Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 320 | static void |
| 321 | ipsec_sa_del (ipsec_sa_t * sa) |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 322 | { |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 323 | vlib_main_t *vm = vlib_get_main (); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 324 | ipsec_main_t *im = &ipsec_main; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 325 | u32 sa_index; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 326 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 327 | sa_index = sa - im->sad; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 328 | hash_unset (im->sa_index_by_sa_id, sa->id); |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 329 | tunnel_unresolve (&sa->tunnel); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 330 | |
| 331 | /* no recovery possible when deleting an SA */ |
| 332 | (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0); |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 333 | |
Neale Ranns | abc5660 | 2020-04-01 09:45:23 +0000 | [diff] [blame] | 334 | 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 Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 337 | if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa)) |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 338 | dpo_reset (&sa->dpo); |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 339 | vnet_crypto_key_del (vm, sa->crypto_key_index); |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 340 | if (sa->integ_alg != IPSEC_INTEG_ALG_NONE) |
| 341 | vnet_crypto_key_del (vm, sa->integ_key_index); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 342 | pool_put (im->sad, sa); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | void |
| 346 | ipsec_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 Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 359 | void |
| 360 | ipsec_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 Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 373 | index_t |
| 374 | ipsec_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 | |
| 392 | int |
| 393 | ipsec_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 Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 406 | } |
| 407 | |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 408 | void |
| 409 | ipsec_sa_clear (index_t sai) |
| 410 | { |
| 411 | vlib_zero_combined_counter (&ipsec_sa_counters, sai); |
| 412 | } |
| 413 | |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 414 | void |
| 415 | ipsec_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 Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 421 | pool_foreach (sa, im->sad) |
| 422 | { |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 423 | if (WALK_CONTINUE != cb(sa, ctx)) |
| 424 | break; |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 425 | } |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 426 | /* *INDENT-ON* */ |
| 427 | } |
| 428 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 429 | /** |
| 430 | * Function definition to get a FIB node from its index |
| 431 | */ |
| 432 | static fib_node_t * |
| 433 | ipsec_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 Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 444 | static ipsec_sa_t * |
| 445 | ipsec_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 Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 453 | /** |
| 454 | * Function definition to inform the FIB node that its last lock has gone. |
| 455 | */ |
| 456 | static void |
| 457 | ipsec_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 Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 463 | ipsec_sa_del (ipsec_sa_from_fib_node (node)); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | /** |
| 467 | * Function definition to backwalk a FIB node |
| 468 | */ |
| 469 | static fib_node_back_walk_rc_t |
| 470 | ipsec_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 Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 478 | * Virtual function table registered by SAs |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 479 | * for participation in the FIB object graph. |
| 480 | */ |
| 481 | const 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 */ |
| 488 | clib_error_t * |
| 489 | ipsec_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 | |
| 496 | VLIB_INIT_FUNCTION (ipsec_sa_interface_init); |
| 497 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 498 | /* |
| 499 | * fd.io coding-style-patch-verification: ON |
| 500 | * |
| 501 | * Local Variables: |
| 502 | * eval: (c-set-style "gnu") |
| 503 | * End: |
| 504 | */ |