Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ipsec_if.c : IPSec interface support |
| 3 | * |
| 4 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vnet/vnet.h> |
| 19 | #include <vnet/api_errno.h> |
| 20 | #include <vnet/ip/ip.h> |
| 21 | |
| 22 | #include <vnet/ipsec/ipsec.h> |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 23 | #include <vnet/ipsec/esp.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 24 | |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 25 | void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length); |
| 26 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 27 | static u8 * |
| 28 | format_ipsec_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | { |
| 30 | u32 dev_instance = va_arg (*args, u32); |
| 31 | return format (s, "ipsec%d", dev_instance); |
| 32 | } |
| 33 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 34 | static uword |
| 35 | dummy_interface_tx (vlib_main_t * vm, |
| 36 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 37 | { |
| 38 | clib_warning ("you shouldn't be here, leaking buffers..."); |
| 39 | return frame->n_vectors; |
| 40 | } |
| 41 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 42 | static clib_error_t * |
| 43 | ipsec_admin_up_down_function (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
| 44 | { |
| 45 | ipsec_main_t *im = &ipsec_main; |
| 46 | clib_error_t *err = 0; |
| 47 | ipsec_tunnel_if_t *t; |
| 48 | vnet_hw_interface_t *hi; |
| 49 | ipsec_sa_t *sa; |
| 50 | |
| 51 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 52 | if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
| 53 | { |
| 54 | t = pool_elt_at_index (im->tunnel_interfaces, hi->hw_instance); |
| 55 | ASSERT (im->cb.check_support_cb); |
| 56 | sa = pool_elt_at_index (im->sad, t->input_sa_index); |
| 57 | err = im->cb.check_support_cb (sa); |
| 58 | if (err) |
| 59 | return err; |
| 60 | |
| 61 | sa = pool_elt_at_index (im->sad, t->output_sa_index); |
| 62 | err = im->cb.check_support_cb (sa); |
| 63 | if (err) |
| 64 | return err; |
| 65 | |
Radu Nicolau | 3f90339 | 2017-01-30 14:33:39 +0000 | [diff] [blame^] | 66 | vnet_hw_interface_set_flags (vnm, hw_if_index, |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 67 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
| 68 | } |
| 69 | else |
Radu Nicolau | 3f90339 | 2017-01-30 14:33:39 +0000 | [diff] [blame^] | 70 | vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ ); |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 71 | |
| 72 | return /* no error */ 0; |
| 73 | } |
| 74 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 75 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 76 | VNET_DEVICE_CLASS (ipsec_device_class, static) = |
| 77 | { |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 78 | .name = "IPSec", |
| 79 | .format_device_name = format_ipsec_name, |
| 80 | .format_tx_trace = format_ipsec_if_output_trace, |
| 81 | .tx_function = dummy_interface_tx, |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 82 | .admin_up_down_function = ipsec_admin_up_down_function, |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 83 | }; |
| 84 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 85 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 86 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 87 | VNET_HW_INTERFACE_CLASS (ipsec_hw_class) = |
| 88 | { |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 89 | .name = "IPSec", |
| 90 | .build_rewrite = default_build_rewrite, |
| 91 | }; |
| 92 | /* *INDENT-ON* */ |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 93 | |
| 94 | static int |
| 95 | ipsec_add_del_tunnel_if_internal (vnet_main_t * vnm, |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 96 | ipsec_add_del_tunnel_args_t * args); |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 97 | |
| 98 | static int |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 99 | ipsec_add_del_tunnel_if_rpc_callback (ipsec_add_del_tunnel_args_t * a) |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 100 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 101 | vnet_main_t *vnm = vnet_get_main (); |
| 102 | ASSERT (os_get_cpu_number () == 0); |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 103 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 104 | return ipsec_add_del_tunnel_if_internal (vnm, a); |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | int |
| 108 | ipsec_add_del_tunnel_if (ipsec_add_del_tunnel_args_t * args) |
| 109 | { |
| 110 | vl_api_rpc_call_main_thread (ipsec_add_del_tunnel_if_rpc_callback, |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 111 | (u8 *) args, sizeof (*args)); |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | int |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 116 | ipsec_add_del_tunnel_if_internal (vnet_main_t * vnm, |
| 117 | ipsec_add_del_tunnel_args_t * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 119 | ipsec_tunnel_if_t *t; |
| 120 | ipsec_main_t *im = &ipsec_main; |
| 121 | vnet_hw_interface_t *hi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | u32 hw_if_index = ~0; |
| 123 | uword *p; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 124 | ipsec_sa_t *sa; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 125 | |
| 126 | u64 key = (u64) args->remote_ip.as_u32 << 32 | (u64) args->remote_spi; |
| 127 | p = hash_get (im->ipsec_if_pool_index_by_key, key); |
| 128 | |
| 129 | if (args->is_add) |
| 130 | { |
| 131 | /* check if same src/dst pair exists */ |
| 132 | if (p) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 133 | return VNET_API_ERROR_INVALID_VALUE; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | |
| 135 | pool_get_aligned (im->tunnel_interfaces, t, CLIB_CACHE_LINE_BYTES); |
| 136 | memset (t, 0, sizeof (*t)); |
| 137 | |
| 138 | pool_get (im->sad, sa); |
| 139 | memset (sa, 0, sizeof (*sa)); |
| 140 | t->input_sa_index = sa - im->sad; |
| 141 | sa->spi = args->remote_spi; |
| 142 | sa->tunnel_src_addr.ip4.as_u32 = args->remote_ip.as_u32; |
| 143 | sa->tunnel_dst_addr.ip4.as_u32 = args->local_ip.as_u32; |
| 144 | sa->is_tunnel = 1; |
| 145 | sa->use_esn = args->esn; |
| 146 | sa->use_anti_replay = args->anti_replay; |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 147 | sa->integ_alg = args->integ_alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 148 | if (args->remote_integ_key_len <= sizeof (args->remote_integ_key)) |
| 149 | { |
| 150 | sa->integ_key_len = args->remote_integ_key_len; |
| 151 | clib_memcpy (sa->integ_key, args->remote_integ_key, |
| 152 | args->remote_integ_key_len); |
| 153 | } |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 154 | sa->crypto_alg = args->crypto_alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 155 | if (args->remote_crypto_key_len <= sizeof (args->remote_crypto_key)) |
| 156 | { |
| 157 | sa->crypto_key_len = args->remote_crypto_key_len; |
| 158 | clib_memcpy (sa->crypto_key, args->remote_crypto_key, |
| 159 | args->remote_crypto_key_len); |
| 160 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 162 | if (im->cb.add_del_sa_sess_cb && |
| 163 | im->cb.add_del_sa_sess_cb (t->input_sa_index, args->is_add) < 0) |
| 164 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 165 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | pool_get (im->sad, sa); |
| 167 | memset (sa, 0, sizeof (*sa)); |
| 168 | t->output_sa_index = sa - im->sad; |
| 169 | sa->spi = args->local_spi; |
| 170 | sa->tunnel_src_addr.ip4.as_u32 = args->local_ip.as_u32; |
| 171 | sa->tunnel_dst_addr.ip4.as_u32 = args->remote_ip.as_u32; |
| 172 | sa->is_tunnel = 1; |
| 173 | sa->seq = 1; |
| 174 | sa->use_esn = args->esn; |
| 175 | sa->use_anti_replay = args->anti_replay; |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 176 | sa->integ_alg = args->integ_alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 177 | if (args->local_integ_key_len <= sizeof (args->local_integ_key)) |
| 178 | { |
| 179 | sa->integ_key_len = args->local_integ_key_len; |
| 180 | clib_memcpy (sa->integ_key, args->local_integ_key, |
| 181 | args->local_integ_key_len); |
| 182 | } |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 183 | sa->crypto_alg = args->crypto_alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 184 | if (args->local_crypto_key_len <= sizeof (args->local_crypto_key)) |
| 185 | { |
| 186 | sa->crypto_key_len = args->local_crypto_key_len; |
| 187 | clib_memcpy (sa->crypto_key, args->local_crypto_key, |
| 188 | args->local_crypto_key_len); |
| 189 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 191 | if (im->cb.add_del_sa_sess_cb && |
| 192 | im->cb.add_del_sa_sess_cb (t->output_sa_index, args->is_add) < 0) |
| 193 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 194 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 195 | hash_set (im->ipsec_if_pool_index_by_key, key, |
| 196 | t - im->tunnel_interfaces); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | |
| 198 | if (vec_len (im->free_tunnel_if_indices) > 0) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 199 | { |
| 200 | hw_if_index = |
| 201 | im->free_tunnel_if_indices[vec_len (im->free_tunnel_if_indices) - |
| 202 | 1]; |
| 203 | _vec_len (im->free_tunnel_if_indices) -= 1; |
| 204 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | else |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 206 | { |
| 207 | hw_if_index = |
| 208 | vnet_register_interface (vnm, ipsec_device_class.index, |
| 209 | t - im->tunnel_interfaces, |
| 210 | ipsec_hw_class.index, |
| 211 | t - im->tunnel_interfaces); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 213 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 214 | hi->output_node_index = ipsec_if_output_node.index; |
| 215 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | t->hw_if_index = hw_if_index; |
| 217 | |
| 218 | /*1st interface, register protocol */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 219 | if (pool_elts (im->tunnel_interfaces) == 1) |
| 220 | ip4_register_protocol (IP_PROTOCOL_IPSEC_ESP, |
| 221 | ipsec_if_input_node.index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 222 | |
| 223 | return hw_if_index; |
| 224 | } |
| 225 | else |
| 226 | { |
| 227 | /* check if exists */ |
| 228 | if (!p) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 229 | return VNET_API_ERROR_INVALID_VALUE; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 231 | t = pool_elt_at_index (im->tunnel_interfaces, p[0]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 232 | hi = vnet_get_hw_interface (vnm, t->hw_if_index); |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 233 | vnet_sw_interface_set_flags (vnm, hi->sw_if_index, 0); /* admin down */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | vec_add1 (im->free_tunnel_if_indices, t->hw_if_index); |
| 235 | |
| 236 | /* delete input and output SA */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 237 | sa = pool_elt_at_index (im->sad, t->input_sa_index); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 238 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 239 | if (im->cb.add_del_sa_sess_cb && |
| 240 | im->cb.add_del_sa_sess_cb (t->input_sa_index, args->is_add) < 0) |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 241 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 242 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | pool_put (im->sad, sa); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 244 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 245 | sa = pool_elt_at_index (im->sad, t->output_sa_index); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 246 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 247 | if (im->cb.add_del_sa_sess_cb && |
| 248 | im->cb.add_del_sa_sess_cb (t->output_sa_index, args->is_add) < 0) |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 249 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 250 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 251 | pool_put (im->sad, sa); |
| 252 | |
| 253 | hash_unset (im->ipsec_if_pool_index_by_key, key); |
| 254 | pool_put (im->tunnel_interfaces, t); |
| 255 | } |
| 256 | return 0; |
| 257 | } |
| 258 | |
| 259 | int |
Matus Fabian | 694265d | 2016-08-10 01:55:36 -0700 | [diff] [blame] | 260 | ipsec_add_del_ipsec_gre_tunnel (vnet_main_t * vnm, |
| 261 | ipsec_add_del_ipsec_gre_tunnel_args_t * args) |
| 262 | { |
| 263 | ipsec_tunnel_if_t *t = 0; |
| 264 | ipsec_main_t *im = &ipsec_main; |
| 265 | uword *p; |
| 266 | ipsec_sa_t *sa; |
| 267 | u64 key; |
| 268 | u32 isa, osa; |
| 269 | |
| 270 | p = hash_get (im->sa_index_by_sa_id, args->local_sa_id); |
| 271 | if (!p) |
| 272 | return VNET_API_ERROR_INVALID_VALUE; |
| 273 | isa = p[0]; |
| 274 | |
| 275 | p = hash_get (im->sa_index_by_sa_id, args->remote_sa_id); |
| 276 | if (!p) |
| 277 | return VNET_API_ERROR_INVALID_VALUE; |
| 278 | osa = p[0]; |
| 279 | sa = pool_elt_at_index (im->sad, p[0]); |
| 280 | |
| 281 | if (sa->is_tunnel) |
| 282 | key = (u64) sa->tunnel_dst_addr.ip4.as_u32 << 32 | (u64) sa->spi; |
| 283 | else |
| 284 | key = (u64) args->remote_ip.as_u32 << 32 | (u64) sa->spi; |
| 285 | |
| 286 | p = hash_get (im->ipsec_if_pool_index_by_key, key); |
| 287 | |
| 288 | if (args->is_add) |
| 289 | { |
| 290 | /* check if same src/dst pair exists */ |
| 291 | if (p) |
| 292 | return VNET_API_ERROR_INVALID_VALUE; |
| 293 | |
| 294 | pool_get_aligned (im->tunnel_interfaces, t, CLIB_CACHE_LINE_BYTES); |
| 295 | memset (t, 0, sizeof (*t)); |
| 296 | |
| 297 | t->input_sa_index = isa; |
| 298 | t->output_sa_index = osa; |
| 299 | t->hw_if_index = ~0; |
| 300 | hash_set (im->ipsec_if_pool_index_by_key, key, |
| 301 | t - im->tunnel_interfaces); |
| 302 | |
| 303 | /*1st interface, register protocol */ |
| 304 | if (pool_elts (im->tunnel_interfaces) == 1) |
| 305 | ip4_register_protocol (IP_PROTOCOL_IPSEC_ESP, |
| 306 | ipsec_if_input_node.index); |
| 307 | } |
| 308 | else |
| 309 | { |
| 310 | /* check if exists */ |
| 311 | if (!p) |
| 312 | return VNET_API_ERROR_INVALID_VALUE; |
| 313 | |
| 314 | t = pool_elt_at_index (im->tunnel_interfaces, p[0]); |
| 315 | hash_unset (im->ipsec_if_pool_index_by_key, key); |
| 316 | pool_put (im->tunnel_interfaces, t); |
| 317 | } |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | int |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 322 | ipsec_set_interface_key (vnet_main_t * vnm, u32 hw_if_index, |
| 323 | ipsec_if_set_key_type_t type, u8 alg, u8 * key) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 325 | ipsec_main_t *im = &ipsec_main; |
| 326 | vnet_hw_interface_t *hi; |
| 327 | ipsec_tunnel_if_t *t; |
| 328 | ipsec_sa_t *sa; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 329 | |
| 330 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 331 | t = pool_elt_at_index (im->tunnel_interfaces, hi->dev_instance); |
| 332 | |
| 333 | if (type == IPSEC_IF_SET_KEY_TYPE_LOCAL_CRYPTO) |
| 334 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 335 | sa = pool_elt_at_index (im->sad, t->output_sa_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 336 | sa->crypto_alg = alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 337 | sa->crypto_key_len = vec_len (key); |
| 338 | clib_memcpy (sa->crypto_key, key, vec_len (key)); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 339 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 340 | if (im->cb.add_del_sa_sess_cb && |
| 341 | im->cb.add_del_sa_sess_cb (t->output_sa_index, 0) < 0) |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 342 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | } |
| 344 | else if (type == IPSEC_IF_SET_KEY_TYPE_LOCAL_INTEG) |
| 345 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 346 | sa = pool_elt_at_index (im->sad, t->output_sa_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 347 | sa->integ_alg = alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 348 | sa->integ_key_len = vec_len (key); |
| 349 | clib_memcpy (sa->integ_key, key, vec_len (key)); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 350 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 351 | if (im->cb.add_del_sa_sess_cb && |
| 352 | im->cb.add_del_sa_sess_cb (t->output_sa_index, 0) < 0) |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 353 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 354 | } |
| 355 | else if (type == IPSEC_IF_SET_KEY_TYPE_REMOTE_CRYPTO) |
| 356 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 357 | sa = pool_elt_at_index (im->sad, t->input_sa_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 358 | sa->crypto_alg = alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 359 | sa->crypto_key_len = vec_len (key); |
| 360 | clib_memcpy (sa->crypto_key, key, vec_len (key)); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 361 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 362 | if (im->cb.add_del_sa_sess_cb && |
| 363 | im->cb.add_del_sa_sess_cb (t->input_sa_index, 0) < 0) |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 364 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 365 | } |
| 366 | else if (type == IPSEC_IF_SET_KEY_TYPE_REMOTE_INTEG) |
| 367 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 368 | sa = pool_elt_at_index (im->sad, t->input_sa_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 369 | sa->integ_alg = alg; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 370 | sa->integ_key_len = vec_len (key); |
| 371 | clib_memcpy (sa->integ_key, key, vec_len (key)); |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 372 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 373 | if (im->cb.add_del_sa_sess_cb && |
| 374 | im->cb.add_del_sa_sess_cb (t->input_sa_index, 0) < 0) |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 375 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | } |
| 377 | else |
| 378 | return VNET_API_ERROR_INVALID_VALUE; |
| 379 | |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | |
| 384 | clib_error_t * |
| 385 | ipsec_tunnel_if_init (vlib_main_t * vm) |
| 386 | { |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 387 | ipsec_main_t *im = &ipsec_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 388 | |
| 389 | im->ipsec_if_pool_index_by_key = hash_create (0, sizeof (uword)); |
| 390 | |
| 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | VLIB_INIT_FUNCTION (ipsec_tunnel_if_init); |
| 395 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 396 | |
| 397 | /* |
| 398 | * fd.io coding-style-patch-verification: ON |
| 399 | * |
| 400 | * Local Variables: |
| 401 | * eval: (c-set-style "gnu") |
| 402 | * End: |
| 403 | */ |