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> |
| 18 | #include <vnet/udp/udp.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 | fib_forward_chain_type_t fct; |
| 76 | dpo_id_t tmp = DPO_INVALID; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 77 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 78 | 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 Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 82 | |
| 83 | fib_entry_contribute_forwarding (sa->fib_entry_index, fct, &tmp); |
| 84 | |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 85 | 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 Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 93 | dpo_reset (&tmp); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 96 | void |
| 97 | ipsec_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; |
| 102 | sa->crypto_block_size = im->crypto_algs[crypto_alg].block_size; |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 103 | sa->crypto_enc_op_id = im->crypto_algs[crypto_alg].enc_op_id; |
| 104 | sa->crypto_dec_op_id = im->crypto_algs[crypto_alg].dec_op_id; |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 105 | sa->crypto_calg = im->crypto_algs[crypto_alg].alg; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 106 | ASSERT (sa->crypto_iv_size <= ESP_MAX_IV_SIZE); |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 107 | ASSERT (sa->crypto_block_size <= ESP_MAX_BLOCK_SIZE); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 108 | 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 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; |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 121 | sa->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 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 126 | int |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 127 | ipsec_sa_add_and_lock (u32 id, |
| 128 | u32 spi, |
| 129 | ipsec_protocol_t proto, |
| 130 | ipsec_crypto_alg_t crypto_alg, |
| 131 | const ipsec_key_t * ck, |
| 132 | ipsec_integ_alg_t integ_alg, |
| 133 | const ipsec_key_t * ik, |
| 134 | ipsec_sa_flags_t flags, |
| 135 | u32 tx_table_id, |
| 136 | u32 salt, |
| 137 | const ip46_address_t * tun_src, |
| 138 | const ip46_address_t * tun_dst, u32 * sa_out_index) |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 139 | { |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 140 | vlib_main_t *vm = vlib_get_main (); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 141 | ipsec_main_t *im = &ipsec_main; |
| 142 | clib_error_t *err; |
| 143 | ipsec_sa_t *sa; |
| 144 | u32 sa_index; |
| 145 | uword *p; |
| 146 | |
| 147 | p = hash_get (im->sa_index_by_sa_id, id); |
| 148 | if (p) |
| 149 | return VNET_API_ERROR_ENTRY_ALREADY_EXISTS; |
| 150 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 151 | pool_get_aligned_zero (im->sad, sa, CLIB_CACHE_LINE_BYTES); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 152 | |
| 153 | fib_node_init (&sa->node, FIB_NODE_TYPE_IPSEC_SA); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 154 | fib_node_lock (&sa->node); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 155 | sa_index = sa - im->sad; |
| 156 | |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 157 | vlib_validate_combined_counter (&ipsec_sa_counters, sa_index); |
| 158 | vlib_zero_combined_counter (&ipsec_sa_counters, sa_index); |
| 159 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 160 | sa->id = id; |
| 161 | sa->spi = spi; |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 162 | sa->stat_index = sa_index; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 163 | sa->protocol = proto; |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 164 | sa->flags = flags; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 165 | sa->salt = salt; |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 166 | sa->encrypt_thread_index = (vlib_num_workers ())? ~0 : 0; |
| 167 | sa->decrypt_thread_index = (vlib_num_workers ())? ~0 : 0; |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 168 | if (integ_alg != IPSEC_INTEG_ALG_NONE) |
| 169 | { |
| 170 | ipsec_sa_set_integ_alg (sa, integ_alg); |
| 171 | clib_memcpy (&sa->integ_key, ik, sizeof (sa->integ_key)); |
| 172 | } |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 173 | ipsec_sa_set_crypto_alg (sa, crypto_alg); |
| 174 | clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key)); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 175 | ip46_address_copy (&sa->tunnel_src_addr, tun_src); |
| 176 | ip46_address_copy (&sa->tunnel_dst_addr, tun_dst); |
| 177 | |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 178 | sa->crypto_key_index = vnet_crypto_key_add (vm, |
| 179 | im->crypto_algs[crypto_alg].alg, |
| 180 | (u8 *) ck->data, ck->len); |
Benoît Ganne | be95444 | 2019-04-29 16:05:46 +0200 | [diff] [blame] | 181 | if (~0 == sa->crypto_key_index) |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 182 | { |
| 183 | pool_put (im->sad, sa); |
| 184 | return VNET_API_ERROR_KEY_LENGTH; |
| 185 | } |
Benoît Ganne | be95444 | 2019-04-29 16:05:46 +0200 | [diff] [blame] | 186 | |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 187 | if (integ_alg != IPSEC_INTEG_ALG_NONE) |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 188 | { |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 189 | sa->integ_key_index = vnet_crypto_key_add (vm, |
| 190 | im-> |
| 191 | integ_algs[integ_alg].alg, |
| 192 | (u8 *) ik->data, ik->len); |
| 193 | if (~0 == sa->integ_key_index) |
| 194 | { |
| 195 | pool_put (im->sad, sa); |
| 196 | return VNET_API_ERROR_KEY_LENGTH; |
| 197 | } |
Neale Ranns | e6be702 | 2019-06-04 15:37:34 +0000 | [diff] [blame] | 198 | } |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 199 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 200 | err = ipsec_check_support_cb (im, sa); |
| 201 | if (err) |
| 202 | { |
| 203 | clib_warning ("%s", err->what); |
| 204 | pool_put (im->sad, sa); |
| 205 | return VNET_API_ERROR_UNIMPLEMENTED; |
| 206 | } |
| 207 | |
| 208 | err = ipsec_call_add_del_callbacks (im, sa, sa_index, 1); |
| 209 | if (err) |
| 210 | { |
| 211 | pool_put (im->sad, sa); |
| 212 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 213 | } |
| 214 | |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 215 | 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] | 216 | { |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 217 | fib_protocol_t fproto = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 218 | FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4); |
| 219 | fib_prefix_t pfx = { |
| 220 | .fp_addr = sa->tunnel_dst_addr, |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 221 | .fp_len = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? 128 : 32), |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 222 | .fp_proto = fproto, |
| 223 | }; |
| 224 | sa->tx_fib_index = fib_table_find (fproto, tx_table_id); |
| 225 | if (sa->tx_fib_index == ~((u32) 0)) |
| 226 | { |
| 227 | pool_put (im->sad, sa); |
| 228 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 229 | } |
| 230 | |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 231 | sa->fib_entry_index = fib_entry_track (sa->tx_fib_index, |
| 232 | &pfx, |
| 233 | FIB_NODE_TYPE_IPSEC_SA, |
| 234 | sa_index, &sa->sibling); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 235 | ipsec_sa_stack (sa); |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 236 | |
| 237 | /* generate header templates */ |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 238 | if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 239 | { |
| 240 | sa->ip6_hdr.ip_version_traffic_class_and_flow_label = 0x60; |
| 241 | sa->ip6_hdr.hop_limit = 254; |
| 242 | sa->ip6_hdr.src_address.as_u64[0] = |
| 243 | sa->tunnel_src_addr.ip6.as_u64[0]; |
| 244 | sa->ip6_hdr.src_address.as_u64[1] = |
| 245 | sa->tunnel_src_addr.ip6.as_u64[1]; |
| 246 | sa->ip6_hdr.dst_address.as_u64[0] = |
| 247 | sa->tunnel_dst_addr.ip6.as_u64[0]; |
| 248 | sa->ip6_hdr.dst_address.as_u64[1] = |
| 249 | sa->tunnel_dst_addr.ip6.as_u64[1]; |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 250 | if (ipsec_sa_is_set_UDP_ENCAP (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 251 | sa->ip6_hdr.protocol = IP_PROTOCOL_UDP; |
| 252 | else |
| 253 | sa->ip6_hdr.protocol = IP_PROTOCOL_IPSEC_ESP; |
| 254 | } |
| 255 | else |
| 256 | { |
| 257 | sa->ip4_hdr.ip_version_and_header_length = 0x45; |
| 258 | sa->ip4_hdr.ttl = 254; |
| 259 | sa->ip4_hdr.src_address.as_u32 = sa->tunnel_src_addr.ip4.as_u32; |
| 260 | sa->ip4_hdr.dst_address.as_u32 = sa->tunnel_dst_addr.ip4.as_u32; |
| 261 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 262 | if (ipsec_sa_is_set_UDP_ENCAP (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 263 | sa->ip4_hdr.protocol = IP_PROTOCOL_UDP; |
| 264 | else |
| 265 | sa->ip4_hdr.protocol = IP_PROTOCOL_IPSEC_ESP; |
| 266 | sa->ip4_hdr.checksum = ip4_header_checksum (&sa->ip4_hdr); |
| 267 | } |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 268 | } |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 269 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 270 | if (ipsec_sa_is_set_UDP_ENCAP (sa)) |
Damjan Marion | c59b9a2 | 2019-03-19 15:38:40 +0100 | [diff] [blame] | 271 | { |
| 272 | sa->udp_hdr.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec); |
| 273 | sa->udp_hdr.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec); |
| 274 | } |
| 275 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 276 | hash_set (im->sa_index_by_sa_id, sa->id, sa_index); |
| 277 | |
| 278 | if (sa_out_index) |
| 279 | *sa_out_index = sa_index; |
| 280 | |
| 281 | return (0); |
| 282 | } |
| 283 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 284 | static void |
| 285 | ipsec_sa_del (ipsec_sa_t * sa) |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 286 | { |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 287 | vlib_main_t *vm = vlib_get_main (); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 288 | ipsec_main_t *im = &ipsec_main; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 289 | u32 sa_index; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 290 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 291 | sa_index = sa - im->sad; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 292 | hash_unset (im->sa_index_by_sa_id, sa->id); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 293 | |
| 294 | /* no recovery possible when deleting an SA */ |
| 295 | (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0); |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 296 | |
Neale Ranns | 2b5ba95 | 2019-04-02 10:15:40 +0000 | [diff] [blame] | 297 | if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa)) |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 298 | { |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 299 | fib_entry_untrack (sa->fib_entry_index, sa->sibling); |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 300 | dpo_reset (&sa->dpo); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 301 | } |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 302 | vnet_crypto_key_del (vm, sa->crypto_key_index); |
Filip Tehlar | c41217a | 2019-10-18 17:51:06 +0000 | [diff] [blame] | 303 | if (sa->integ_alg != IPSEC_INTEG_ALG_NONE) |
| 304 | vnet_crypto_key_del (vm, sa->integ_key_index); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 305 | pool_put (im->sad, sa); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | void |
| 309 | ipsec_sa_unlock (index_t sai) |
| 310 | { |
| 311 | ipsec_main_t *im = &ipsec_main; |
| 312 | ipsec_sa_t *sa; |
| 313 | |
| 314 | if (INDEX_INVALID == sai) |
| 315 | return; |
| 316 | |
| 317 | sa = pool_elt_at_index (im->sad, sai); |
| 318 | |
| 319 | fib_node_unlock (&sa->node); |
| 320 | } |
| 321 | |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 322 | void |
| 323 | ipsec_sa_lock (index_t sai) |
| 324 | { |
| 325 | ipsec_main_t *im = &ipsec_main; |
| 326 | ipsec_sa_t *sa; |
| 327 | |
| 328 | if (INDEX_INVALID == sai) |
| 329 | return; |
| 330 | |
| 331 | sa = pool_elt_at_index (im->sad, sai); |
| 332 | |
| 333 | fib_node_lock (&sa->node); |
| 334 | } |
| 335 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 336 | index_t |
| 337 | ipsec_sa_find_and_lock (u32 id) |
| 338 | { |
| 339 | ipsec_main_t *im = &ipsec_main; |
| 340 | ipsec_sa_t *sa; |
| 341 | uword *p; |
| 342 | |
| 343 | p = hash_get (im->sa_index_by_sa_id, id); |
| 344 | |
| 345 | if (!p) |
| 346 | return INDEX_INVALID; |
| 347 | |
| 348 | sa = pool_elt_at_index (im->sad, p[0]); |
| 349 | |
| 350 | fib_node_lock (&sa->node); |
| 351 | |
| 352 | return (p[0]); |
| 353 | } |
| 354 | |
| 355 | int |
| 356 | ipsec_sa_unlock_id (u32 id) |
| 357 | { |
| 358 | ipsec_main_t *im = &ipsec_main; |
| 359 | uword *p; |
| 360 | |
| 361 | p = hash_get (im->sa_index_by_sa_id, id); |
| 362 | |
| 363 | if (!p) |
| 364 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
| 365 | |
| 366 | ipsec_sa_unlock (p[0]); |
| 367 | |
| 368 | return (0); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 369 | } |
| 370 | |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 371 | void |
| 372 | ipsec_sa_clear (index_t sai) |
| 373 | { |
| 374 | vlib_zero_combined_counter (&ipsec_sa_counters, sai); |
| 375 | } |
| 376 | |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 377 | void |
| 378 | ipsec_sa_walk (ipsec_sa_walk_cb_t cb, void *ctx) |
| 379 | { |
| 380 | ipsec_main_t *im = &ipsec_main; |
| 381 | ipsec_sa_t *sa; |
| 382 | |
| 383 | /* *INDENT-OFF* */ |
| 384 | pool_foreach (sa, im->sad, |
| 385 | ({ |
| 386 | if (WALK_CONTINUE != cb(sa, ctx)) |
| 387 | break; |
| 388 | })); |
| 389 | /* *INDENT-ON* */ |
| 390 | } |
| 391 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 392 | /** |
| 393 | * Function definition to get a FIB node from its index |
| 394 | */ |
| 395 | static fib_node_t * |
| 396 | ipsec_sa_fib_node_get (fib_node_index_t index) |
| 397 | { |
| 398 | ipsec_main_t *im; |
| 399 | ipsec_sa_t *sa; |
| 400 | |
| 401 | im = &ipsec_main; |
| 402 | sa = pool_elt_at_index (im->sad, index); |
| 403 | |
| 404 | return (&sa->node); |
| 405 | } |
| 406 | |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 407 | static ipsec_sa_t * |
| 408 | ipsec_sa_from_fib_node (fib_node_t * node) |
| 409 | { |
| 410 | ASSERT (FIB_NODE_TYPE_IPSEC_SA == node->fn_type); |
| 411 | return ((ipsec_sa_t *) (((char *) node) - |
| 412 | STRUCT_OFFSET_OF (ipsec_sa_t, node))); |
| 413 | |
| 414 | } |
| 415 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 416 | /** |
| 417 | * Function definition to inform the FIB node that its last lock has gone. |
| 418 | */ |
| 419 | static void |
| 420 | ipsec_sa_last_lock_gone (fib_node_t * node) |
| 421 | { |
| 422 | /* |
| 423 | * The ipsec SA is a root of the graph. As such |
| 424 | * it never has children and thus is never locked. |
| 425 | */ |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 426 | ipsec_sa_del (ipsec_sa_from_fib_node (node)); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Function definition to backwalk a FIB node |
| 431 | */ |
| 432 | static fib_node_back_walk_rc_t |
| 433 | ipsec_sa_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx) |
| 434 | { |
| 435 | ipsec_sa_stack (ipsec_sa_from_fib_node (node)); |
| 436 | |
| 437 | return (FIB_NODE_BACK_WALK_CONTINUE); |
| 438 | } |
| 439 | |
| 440 | /* |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 441 | * Virtual function table registered by SAs |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 442 | * for participation in the FIB object graph. |
| 443 | */ |
| 444 | const static fib_node_vft_t ipsec_sa_vft = { |
| 445 | .fnv_get = ipsec_sa_fib_node_get, |
| 446 | .fnv_last_lock = ipsec_sa_last_lock_gone, |
| 447 | .fnv_back_walk = ipsec_sa_back_walk, |
| 448 | }; |
| 449 | |
| 450 | /* force inclusion from application's main.c */ |
| 451 | clib_error_t * |
| 452 | ipsec_sa_interface_init (vlib_main_t * vm) |
| 453 | { |
| 454 | fib_node_register_type (FIB_NODE_TYPE_IPSEC_SA, &ipsec_sa_vft); |
| 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | VLIB_INIT_FUNCTION (ipsec_sa_interface_init); |
| 460 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 461 | /* |
| 462 | * fd.io coding-style-patch-verification: ON |
| 463 | * |
| 464 | * Local Variables: |
| 465 | * eval: (c-set-style "gnu") |
| 466 | * End: |
| 467 | */ |