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 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 32 | ipsec_sa_t *ipsec_sa_pool; |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 33 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 34 | static clib_error_t * |
| 35 | ipsec_call_add_del_callbacks (ipsec_main_t * im, ipsec_sa_t * sa, |
| 36 | u32 sa_index, int is_add) |
| 37 | { |
| 38 | ipsec_ah_backend_t *ab; |
| 39 | ipsec_esp_backend_t *eb; |
| 40 | switch (sa->protocol) |
| 41 | { |
| 42 | case IPSEC_PROTOCOL_AH: |
| 43 | ab = pool_elt_at_index (im->ah_backends, im->ah_current_backend); |
| 44 | if (ab->add_del_sa_sess_cb) |
| 45 | return ab->add_del_sa_sess_cb (sa_index, is_add); |
| 46 | break; |
| 47 | case IPSEC_PROTOCOL_ESP: |
| 48 | eb = pool_elt_at_index (im->esp_backends, im->esp_current_backend); |
| 49 | if (eb->add_del_sa_sess_cb) |
| 50 | return eb->add_del_sa_sess_cb (sa_index, is_add); |
| 51 | break; |
| 52 | } |
| 53 | return 0; |
| 54 | } |
| 55 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 56 | void |
| 57 | ipsec_mk_key (ipsec_key_t * key, const u8 * data, u8 len) |
| 58 | { |
| 59 | memset (key, 0, sizeof (*key)); |
| 60 | |
| 61 | if (len > sizeof (key->data)) |
| 62 | key->len = sizeof (key->data); |
| 63 | else |
| 64 | key->len = len; |
| 65 | |
| 66 | memcpy (key->data, data, key->len); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * 'stack' (resolve the recursion for) the SA tunnel destination |
| 71 | */ |
Neale Ranns | e8915fc | 2019-04-23 20:57:55 -0400 | [diff] [blame] | 72 | static void |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 73 | ipsec_sa_stack (ipsec_sa_t * sa) |
| 74 | { |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 75 | ipsec_main_t *im = &ipsec_main; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 76 | dpo_id_t tmp = DPO_INVALID; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 77 | |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 78 | tunnel_contribute_forwarding (&sa->tunnel, &tmp); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 79 | |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 80 | if (IPSEC_PROTOCOL_AH == sa->protocol) |
| 81 | dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? |
| 82 | im->ah6_encrypt_node_index : |
| 83 | im->ah4_encrypt_node_index), &sa->dpo, &tmp); |
| 84 | else |
| 85 | dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? |
| 86 | im->esp6_encrypt_node_index : |
| 87 | im->esp4_encrypt_node_index), &sa->dpo, &tmp); |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 88 | dpo_reset (&tmp); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 89 | } |
| 90 | |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 91 | void |
| 92 | ipsec_sa_set_crypto_alg (ipsec_sa_t * sa, ipsec_crypto_alg_t crypto_alg) |
| 93 | { |
| 94 | ipsec_main_t *im = &ipsec_main; |
| 95 | sa->crypto_alg = crypto_alg; |
| 96 | sa->crypto_iv_size = im->crypto_algs[crypto_alg].iv_size; |
Christian Hopps | fb7e7ed | 2019-11-03 07:02:15 -0500 | [diff] [blame] | 97 | 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] | 98 | sa->sync_op_data.crypto_enc_op_id = im->crypto_algs[crypto_alg].enc_op_id; |
| 99 | 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] | 100 | sa->crypto_calg = im->crypto_algs[crypto_alg].alg; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 101 | ASSERT (sa->crypto_iv_size <= ESP_MAX_IV_SIZE); |
Christian Hopps | fb7e7ed | 2019-11-03 07:02:15 -0500 | [diff] [blame] | 102 | ASSERT (sa->esp_block_align <= ESP_MAX_BLOCK_SIZE); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 103 | if (IPSEC_CRYPTO_ALG_IS_GCM (crypto_alg)) |
| 104 | { |
| 105 | sa->integ_icv_size = im->crypto_algs[crypto_alg].icv_size; |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 106 | ipsec_sa_set_IS_CTR (sa); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 107 | ipsec_sa_set_IS_AEAD (sa); |
| 108 | } |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 109 | else if (IPSEC_CRYPTO_ALG_IS_CTR (crypto_alg)) |
| 110 | { |
| 111 | ipsec_sa_set_IS_CTR (sa); |
| 112 | } |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | void |
| 116 | ipsec_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 Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 120 | sa->integ_icv_size = im->integ_algs[integ_alg].icv_size; |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 121 | 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] | 122 | sa->integ_calg = im->integ_algs[integ_alg].alg; |
Damjan Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 123 | ASSERT (sa->integ_icv_size <= ESP_MAX_ICV_SIZE); |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 126 | void |
| 127 | ipsec_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 Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 169 | int |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 170 | ipsec_sa_add_and_lock (u32 id, u32 spi, ipsec_protocol_t proto, |
| 171 | ipsec_crypto_alg_t crypto_alg, const ipsec_key_t *ck, |
| 172 | ipsec_integ_alg_t integ_alg, const ipsec_key_t *ik, |
| 173 | ipsec_sa_flags_t flags, u32 salt, u16 src_port, |
| 174 | u16 dst_port, const tunnel_t *tun, u32 *sa_out_index) |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 175 | { |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 176 | vlib_main_t *vm = vlib_get_main (); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 177 | ipsec_main_t *im = &ipsec_main; |
| 178 | clib_error_t *err; |
| 179 | ipsec_sa_t *sa; |
| 180 | u32 sa_index; |
| 181 | uword *p; |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 182 | int rv; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 183 | |
| 184 | p = hash_get (im->sa_index_by_sa_id, id); |
| 185 | if (p) |
| 186 | return VNET_API_ERROR_ENTRY_ALREADY_EXISTS; |
| 187 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 188 | pool_get_aligned_zero (ipsec_sa_pool, sa, CLIB_CACHE_LINE_BYTES); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 189 | |
| 190 | fib_node_init (&sa->node, FIB_NODE_TYPE_IPSEC_SA); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 191 | fib_node_lock (&sa->node); |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 192 | sa_index = sa - ipsec_sa_pool; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 193 | |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 194 | vlib_validate_combined_counter (&ipsec_sa_counters, sa_index); |
| 195 | vlib_zero_combined_counter (&ipsec_sa_counters, sa_index); |
| 196 | |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 197 | tunnel_copy (tun, &sa->tunnel); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 198 | sa->id = id; |
| 199 | sa->spi = spi; |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 200 | sa->stat_index = sa_index; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 201 | sa->protocol = proto; |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 202 | sa->flags = flags; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 203 | sa->salt = salt; |
Neale Ranns | 1a52d37 | 2021-02-04 11:33:32 +0000 | [diff] [blame] | 204 | sa->thread_index = (vlib_num_workers ()) ? ~0 : 0; |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 205 | if (integ_alg != IPSEC_INTEG_ALG_NONE) |
| 206 | { |
| 207 | ipsec_sa_set_integ_alg (sa, integ_alg); |
| 208 | clib_memcpy (&sa->integ_key, ik, sizeof (sa->integ_key)); |
| 209 | } |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 210 | ipsec_sa_set_crypto_alg (sa, crypto_alg); |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 211 | ipsec_sa_set_async_op_ids (sa); |
| 212 | |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 213 | clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key)); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 214 | |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 215 | sa->crypto_key_index = vnet_crypto_key_add (vm, |
| 216 | im->crypto_algs[crypto_alg].alg, |
| 217 | (u8 *) ck->data, ck->len); |
Benoît Ganne | be95444 | 2019-04-29 16:05:46 +0200 | [diff] [blame] | 218 | if (~0 == sa->crypto_key_index) |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 219 | { |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 220 | pool_put (ipsec_sa_pool, sa); |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 221 | return VNET_API_ERROR_KEY_LENGTH; |
| 222 | } |
Benoît Ganne | be95444 | 2019-04-29 16:05:46 +0200 | [diff] [blame] | 223 | |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 224 | if (integ_alg != IPSEC_INTEG_ALG_NONE) |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 225 | { |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 226 | sa->integ_key_index = vnet_crypto_key_add (vm, |
| 227 | im-> |
| 228 | integ_algs[integ_alg].alg, |
| 229 | (u8 *) ik->data, ik->len); |
| 230 | if (~0 == sa->integ_key_index) |
| 231 | { |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 232 | pool_put (ipsec_sa_pool, sa); |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 233 | return VNET_API_ERROR_KEY_LENGTH; |
| 234 | } |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 235 | } |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 236 | |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 237 | if (sa->async_op_data.crypto_async_enc_op_id && |
| 238 | !ipsec_sa_is_set_IS_AEAD (sa)) |
| 239 | { //AES-CBC & HMAC |
| 240 | sa->async_op_data.linked_key_index = |
| 241 | vnet_crypto_key_add_linked (vm, sa->crypto_key_index, |
| 242 | sa->integ_key_index); |
| 243 | } |
| 244 | |
| 245 | if (im->async_mode) |
| 246 | sa->crypto_op_data = sa->async_op_data.data; |
| 247 | else |
Neale Ranns | f16e9a5 | 2021-02-25 19:09:24 +0000 | [diff] [blame] | 248 | { |
| 249 | if (ipsec_sa_is_set_IS_ASYNC (sa)) |
| 250 | { |
| 251 | vnet_crypto_request_async_mode (1); |
| 252 | sa->crypto_op_data = sa->async_op_data.data; |
| 253 | } |
| 254 | else |
| 255 | sa->crypto_op_data = sa->sync_op_data.data; |
| 256 | } |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 257 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 258 | err = ipsec_check_support_cb (im, sa); |
| 259 | if (err) |
| 260 | { |
| 261 | clib_warning ("%s", err->what); |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 262 | pool_put (ipsec_sa_pool, sa); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 263 | return VNET_API_ERROR_UNIMPLEMENTED; |
| 264 | } |
| 265 | |
| 266 | err = ipsec_call_add_del_callbacks (im, sa, sa_index, 1); |
| 267 | if (err) |
| 268 | { |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 269 | pool_put (ipsec_sa_pool, sa); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 270 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 271 | } |
| 272 | |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 273 | 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] | 274 | { |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 275 | sa->tunnel_flags = sa->tunnel.t_encap_decap_flags; |
| 276 | |
| 277 | rv = tunnel_resolve (&sa->tunnel, FIB_NODE_TYPE_IPSEC_SA, sa_index); |
| 278 | |
| 279 | if (rv) |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 280 | { |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 281 | pool_put (ipsec_sa_pool, sa); |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 282 | return rv; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 283 | } |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 284 | ipsec_sa_stack (sa); |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 285 | |
| 286 | /* generate header templates */ |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 287 | if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 288 | { |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 289 | tunnel_build_v6_hdr (&sa->tunnel, |
| 290 | (ipsec_sa_is_set_UDP_ENCAP (sa) ? |
| 291 | IP_PROTOCOL_UDP : |
| 292 | IP_PROTOCOL_IPSEC_ESP), |
| 293 | &sa->ip6_hdr); |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 294 | } |
| 295 | else |
| 296 | { |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 297 | tunnel_build_v4_hdr (&sa->tunnel, |
| 298 | (ipsec_sa_is_set_UDP_ENCAP (sa) ? |
| 299 | IP_PROTOCOL_UDP : |
| 300 | IP_PROTOCOL_IPSEC_ESP), |
| 301 | &sa->ip4_hdr); |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 302 | } |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 303 | } |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 304 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 305 | if (ipsec_sa_is_set_UDP_ENCAP (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 306 | { |
Filip Tehlar | e5d3491 | 2020-03-02 15:17:37 +0000 | [diff] [blame] | 307 | if (dst_port == IPSEC_UDP_PORT_NONE) |
Neale Ranns | abc5660 | 2020-04-01 09:45:23 +0000 | [diff] [blame] | 308 | 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] | 309 | else |
Neale Ranns | abc5660 | 2020-04-01 09:45:23 +0000 | [diff] [blame] | 310 | sa->udp_hdr.dst_port = clib_host_to_net_u16 (dst_port); |
| 311 | |
| 312 | if (src_port == IPSEC_UDP_PORT_NONE) |
| 313 | sa->udp_hdr.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec); |
| 314 | else |
| 315 | sa->udp_hdr.src_port = clib_host_to_net_u16 (src_port); |
| 316 | |
| 317 | if (ipsec_sa_is_set_IS_INBOUND (sa)) |
| 318 | 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] | 319 | } |
| 320 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 321 | hash_set (im->sa_index_by_sa_id, sa->id, sa_index); |
| 322 | |
| 323 | if (sa_out_index) |
| 324 | *sa_out_index = sa_index; |
| 325 | |
| 326 | return (0); |
| 327 | } |
| 328 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 329 | static void |
| 330 | ipsec_sa_del (ipsec_sa_t * sa) |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 331 | { |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 332 | vlib_main_t *vm = vlib_get_main (); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 333 | ipsec_main_t *im = &ipsec_main; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 334 | u32 sa_index; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 335 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 336 | sa_index = sa - ipsec_sa_pool; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 337 | hash_unset (im->sa_index_by_sa_id, sa->id); |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 338 | tunnel_unresolve (&sa->tunnel); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 339 | |
| 340 | /* no recovery possible when deleting an SA */ |
| 341 | (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0); |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 342 | |
Neale Ranns | f16e9a5 | 2021-02-25 19:09:24 +0000 | [diff] [blame] | 343 | if (ipsec_sa_is_set_IS_ASYNC (sa)) |
| 344 | vnet_crypto_request_async_mode (0); |
Neale Ranns | abc5660 | 2020-04-01 09:45:23 +0000 | [diff] [blame] | 345 | if (ipsec_sa_is_set_UDP_ENCAP (sa) && ipsec_sa_is_set_IS_INBOUND (sa)) |
| 346 | ipsec_unregister_udp_port (clib_net_to_host_u16 (sa->udp_hdr.dst_port)); |
| 347 | |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 348 | 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] | 349 | dpo_reset (&sa->dpo); |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 350 | vnet_crypto_key_del (vm, sa->crypto_key_index); |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 351 | if (sa->integ_alg != IPSEC_INTEG_ALG_NONE) |
| 352 | vnet_crypto_key_del (vm, sa->integ_key_index); |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 353 | pool_put (ipsec_sa_pool, sa); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | void |
| 357 | ipsec_sa_unlock (index_t sai) |
| 358 | { |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 359 | ipsec_sa_t *sa; |
| 360 | |
| 361 | if (INDEX_INVALID == sai) |
| 362 | return; |
| 363 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 364 | sa = ipsec_sa_get (sai); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 365 | |
| 366 | fib_node_unlock (&sa->node); |
| 367 | } |
| 368 | |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 369 | void |
| 370 | ipsec_sa_lock (index_t sai) |
| 371 | { |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 372 | ipsec_sa_t *sa; |
| 373 | |
| 374 | if (INDEX_INVALID == sai) |
| 375 | return; |
| 376 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 377 | sa = ipsec_sa_get (sai); |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 378 | |
| 379 | fib_node_lock (&sa->node); |
| 380 | } |
| 381 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 382 | index_t |
| 383 | ipsec_sa_find_and_lock (u32 id) |
| 384 | { |
| 385 | ipsec_main_t *im = &ipsec_main; |
| 386 | ipsec_sa_t *sa; |
| 387 | uword *p; |
| 388 | |
| 389 | p = hash_get (im->sa_index_by_sa_id, id); |
| 390 | |
| 391 | if (!p) |
| 392 | return INDEX_INVALID; |
| 393 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 394 | sa = ipsec_sa_get (p[0]); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 395 | |
| 396 | fib_node_lock (&sa->node); |
| 397 | |
| 398 | return (p[0]); |
| 399 | } |
| 400 | |
| 401 | int |
| 402 | ipsec_sa_unlock_id (u32 id) |
| 403 | { |
| 404 | ipsec_main_t *im = &ipsec_main; |
| 405 | uword *p; |
| 406 | |
| 407 | p = hash_get (im->sa_index_by_sa_id, id); |
| 408 | |
| 409 | if (!p) |
| 410 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
| 411 | |
| 412 | ipsec_sa_unlock (p[0]); |
| 413 | |
| 414 | return (0); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 415 | } |
| 416 | |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 417 | void |
| 418 | ipsec_sa_clear (index_t sai) |
| 419 | { |
| 420 | vlib_zero_combined_counter (&ipsec_sa_counters, sai); |
| 421 | } |
| 422 | |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 423 | void |
| 424 | ipsec_sa_walk (ipsec_sa_walk_cb_t cb, void *ctx) |
| 425 | { |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 426 | ipsec_sa_t *sa; |
| 427 | |
| 428 | /* *INDENT-OFF* */ |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 429 | pool_foreach (sa, ipsec_sa_pool) |
| 430 | { |
| 431 | if (WALK_CONTINUE != cb (sa, ctx)) |
| 432 | break; |
| 433 | } |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 434 | /* *INDENT-ON* */ |
| 435 | } |
| 436 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 437 | /** |
| 438 | * Function definition to get a FIB node from its index |
| 439 | */ |
| 440 | static fib_node_t * |
| 441 | ipsec_sa_fib_node_get (fib_node_index_t index) |
| 442 | { |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 443 | ipsec_sa_t *sa; |
| 444 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 445 | sa = ipsec_sa_get (index); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 446 | |
| 447 | return (&sa->node); |
| 448 | } |
| 449 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 450 | static ipsec_sa_t * |
| 451 | ipsec_sa_from_fib_node (fib_node_t * node) |
| 452 | { |
| 453 | ASSERT (FIB_NODE_TYPE_IPSEC_SA == node->fn_type); |
| 454 | return ((ipsec_sa_t *) (((char *) node) - |
| 455 | STRUCT_OFFSET_OF (ipsec_sa_t, node))); |
| 456 | |
| 457 | } |
| 458 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 459 | /** |
| 460 | * Function definition to inform the FIB node that its last lock has gone. |
| 461 | */ |
| 462 | static void |
| 463 | ipsec_sa_last_lock_gone (fib_node_t * node) |
| 464 | { |
| 465 | /* |
| 466 | * The ipsec SA is a root of the graph. As such |
| 467 | * it never has children and thus is never locked. |
| 468 | */ |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 469 | ipsec_sa_del (ipsec_sa_from_fib_node (node)); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | /** |
| 473 | * Function definition to backwalk a FIB node |
| 474 | */ |
| 475 | static fib_node_back_walk_rc_t |
| 476 | ipsec_sa_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx) |
| 477 | { |
| 478 | ipsec_sa_stack (ipsec_sa_from_fib_node (node)); |
| 479 | |
| 480 | return (FIB_NODE_BACK_WALK_CONTINUE); |
| 481 | } |
| 482 | |
| 483 | /* |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 484 | * Virtual function table registered by SAs |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 485 | * for participation in the FIB object graph. |
| 486 | */ |
| 487 | const static fib_node_vft_t ipsec_sa_vft = { |
| 488 | .fnv_get = ipsec_sa_fib_node_get, |
| 489 | .fnv_last_lock = ipsec_sa_last_lock_gone, |
| 490 | .fnv_back_walk = ipsec_sa_back_walk, |
| 491 | }; |
| 492 | |
| 493 | /* force inclusion from application's main.c */ |
| 494 | clib_error_t * |
| 495 | ipsec_sa_interface_init (vlib_main_t * vm) |
| 496 | { |
| 497 | fib_node_register_type (FIB_NODE_TYPE_IPSEC_SA, &ipsec_sa_vft); |
| 498 | |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | VLIB_INIT_FUNCTION (ipsec_sa_interface_init); |
| 503 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 504 | /* |
| 505 | * fd.io coding-style-patch-verification: ON |
| 506 | * |
| 507 | * Local Variables: |
| 508 | * eval: (c-set-style "gnu") |
| 509 | * End: |
| 510 | */ |