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