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