Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [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 | */ |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 15 | #ifndef __IPSEC_H__ |
| 16 | #define __IPSEC_H__ |
| 17 | |
Sergio Gonzalez Monroy | db93cd9 | 2017-08-26 15:22:05 +0100 | [diff] [blame] | 18 | #include <vnet/ip/ip.h> |
| 19 | #include <vnet/feature/feature.h> |
| 20 | |
Matus Fabian | 694265d | 2016-08-10 01:55:36 -0700 | [diff] [blame] | 21 | #define IPSEC_FLAG_IPSEC_GRE_TUNNEL (1 << 0) |
| 22 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 23 | |
| 24 | #define foreach_ipsec_output_next \ |
| 25 | _(DROP, "error-drop") \ |
| 26 | _(ESP_ENCRYPT, "esp-encrypt") |
| 27 | |
| 28 | #define _(v, s) IPSEC_OUTPUT_NEXT_##v, |
| 29 | typedef enum |
| 30 | { |
| 31 | foreach_ipsec_output_next |
| 32 | #undef _ |
| 33 | IPSEC_OUTPUT_N_NEXT, |
| 34 | } ipsec_output_next_t; |
| 35 | |
| 36 | |
| 37 | #define foreach_ipsec_input_next \ |
| 38 | _(DROP, "error-drop") \ |
| 39 | _(ESP_DECRYPT, "esp-decrypt") |
| 40 | |
| 41 | #define _(v, s) IPSEC_INPUT_NEXT_##v, |
| 42 | typedef enum |
| 43 | { |
| 44 | foreach_ipsec_input_next |
| 45 | #undef _ |
| 46 | IPSEC_INPUT_N_NEXT, |
| 47 | } ipsec_input_next_t; |
| 48 | |
| 49 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 50 | #define foreach_ipsec_policy_action \ |
| 51 | _(0, BYPASS, "bypass") \ |
| 52 | _(1, DISCARD, "discard") \ |
| 53 | _(2, RESOLVE, "resolve") \ |
| 54 | _(3, PROTECT, "protect") |
| 55 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 56 | typedef enum |
| 57 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | #define _(v,f,s) IPSEC_POLICY_ACTION_##f = v, |
| 59 | foreach_ipsec_policy_action |
| 60 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 61 | IPSEC_POLICY_N_ACTION, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | } ipsec_policy_action_t; |
| 63 | |
Radu Nicolau | 6929ea9 | 2016-11-29 11:00:30 +0000 | [diff] [blame] | 64 | #define foreach_ipsec_crypto_alg \ |
| 65 | _(0, NONE, "none") \ |
| 66 | _(1, AES_CBC_128, "aes-cbc-128") \ |
| 67 | _(2, AES_CBC_192, "aes-cbc-192") \ |
| 68 | _(3, AES_CBC_256, "aes-cbc-256") \ |
Sergio Gonzalez Monroy | db93cd9 | 2017-08-26 15:22:05 +0100 | [diff] [blame] | 69 | _(4, AES_CTR_128, "aes-ctr-128") \ |
| 70 | _(5, AES_CTR_192, "aes-ctr-192") \ |
| 71 | _(6, AES_CTR_256, "aes-ctr-256") \ |
| 72 | _(7, AES_GCM_128, "aes-gcm-128") \ |
| 73 | _(8, AES_GCM_192, "aes-gcm-192") \ |
| 74 | _(9, AES_GCM_256, "aes-gcm-256") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 76 | typedef enum |
| 77 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | #define _(v,f,s) IPSEC_CRYPTO_ALG_##f = v, |
| 79 | foreach_ipsec_crypto_alg |
| 80 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 81 | IPSEC_CRYPTO_N_ALG, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 82 | } ipsec_crypto_alg_t; |
| 83 | |
Radu Nicolau | 6929ea9 | 2016-11-29 11:00:30 +0000 | [diff] [blame] | 84 | #define foreach_ipsec_integ_alg \ |
| 85 | _(0, NONE, "none") \ |
| 86 | _(1, MD5_96, "md5-96") /* RFC2403 */ \ |
| 87 | _(2, SHA1_96, "sha1-96") /* RFC2404 */ \ |
| 88 | _(3, SHA_256_96, "sha-256-96") /* draft-ietf-ipsec-ciph-sha-256-00 */ \ |
| 89 | _(4, SHA_256_128, "sha-256-128") /* RFC4868 */ \ |
| 90 | _(5, SHA_384_192, "sha-384-192") /* RFC4868 */ \ |
Sergio Gonzalez Monroy | db93cd9 | 2017-08-26 15:22:05 +0100 | [diff] [blame] | 91 | _(6, SHA_512_256, "sha-512-256") /* RFC4868 */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 93 | typedef enum |
| 94 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | #define _(v,f,s) IPSEC_INTEG_ALG_##f = v, |
| 96 | foreach_ipsec_integ_alg |
| 97 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 98 | IPSEC_INTEG_N_ALG, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | } ipsec_integ_alg_t; |
| 100 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 101 | typedef enum |
| 102 | { |
| 103 | IPSEC_PROTOCOL_AH = 0, |
| 104 | IPSEC_PROTOCOL_ESP = 1 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | } ipsec_protocol_t; |
| 106 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 107 | typedef struct |
| 108 | { |
| 109 | u32 id; |
| 110 | u32 spi; |
| 111 | ipsec_protocol_t protocol; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 113 | ipsec_crypto_alg_t crypto_alg; |
| 114 | u8 crypto_key_len; |
| 115 | u8 crypto_key[128]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 117 | ipsec_integ_alg_t integ_alg; |
| 118 | u8 integ_key_len; |
| 119 | u8 integ_key[128]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 121 | u8 use_esn; |
| 122 | u8 use_anti_replay; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 124 | u8 is_tunnel; |
| 125 | u8 is_tunnel_ip6; |
| 126 | ip46_address_t tunnel_src_addr; |
| 127 | ip46_address_t tunnel_dst_addr; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 128 | |
Radu Nicolau | 6929ea9 | 2016-11-29 11:00:30 +0000 | [diff] [blame] | 129 | u32 salt; |
| 130 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 131 | /* runtime */ |
| 132 | u32 seq; |
| 133 | u32 seq_hi; |
| 134 | u32 last_seq; |
| 135 | u32 last_seq_hi; |
| 136 | u64 replay_window; |
Radu Nicolau | cb33dc2 | 2017-02-16 16:49:46 +0000 | [diff] [blame] | 137 | |
| 138 | /*lifetime data */ |
| 139 | u64 total_data_size; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | } ipsec_sa_t; |
| 141 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 142 | typedef struct |
| 143 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | ip46_address_t start, stop; |
| 145 | } ip46_address_range_t; |
| 146 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 147 | typedef struct |
| 148 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 149 | u16 start, stop; |
| 150 | } port_range_t; |
| 151 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 152 | typedef struct |
| 153 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 154 | u8 is_add; |
| 155 | u8 esn; |
| 156 | u8 anti_replay; |
| 157 | ip4_address_t local_ip, remote_ip; |
| 158 | u32 local_spi; |
| 159 | u32 remote_spi; |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 160 | ipsec_crypto_alg_t crypto_alg; |
| 161 | u8 local_crypto_key_len; |
| 162 | u8 local_crypto_key[128]; |
| 163 | u8 remote_crypto_key_len; |
| 164 | u8 remote_crypto_key[128]; |
| 165 | ipsec_integ_alg_t integ_alg; |
| 166 | u8 local_integ_key_len; |
| 167 | u8 local_integ_key[128]; |
| 168 | u8 remote_integ_key_len; |
| 169 | u8 remote_integ_key[128]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 170 | } ipsec_add_del_tunnel_args_t; |
| 171 | |
Matus Fabian | 694265d | 2016-08-10 01:55:36 -0700 | [diff] [blame] | 172 | typedef struct |
| 173 | { |
| 174 | u8 is_add; |
| 175 | u32 local_sa_id; |
| 176 | u32 remote_sa_id; |
| 177 | ip4_address_t local_ip; |
| 178 | ip4_address_t remote_ip; |
| 179 | } ipsec_add_del_ipsec_gre_tunnel_args_t; |
| 180 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 181 | typedef enum |
| 182 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | IPSEC_IF_SET_KEY_TYPE_NONE, |
| 184 | IPSEC_IF_SET_KEY_TYPE_LOCAL_CRYPTO, |
| 185 | IPSEC_IF_SET_KEY_TYPE_REMOTE_CRYPTO, |
| 186 | IPSEC_IF_SET_KEY_TYPE_LOCAL_INTEG, |
| 187 | IPSEC_IF_SET_KEY_TYPE_REMOTE_INTEG, |
| 188 | } ipsec_if_set_key_type_t; |
| 189 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 190 | typedef struct |
| 191 | { |
| 192 | u32 id; |
| 193 | i32 priority; |
| 194 | u8 is_outbound; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 196 | // Selector |
| 197 | u8 is_ipv6; |
| 198 | ip46_address_range_t laddr; |
| 199 | ip46_address_range_t raddr; |
| 200 | u8 protocol; |
| 201 | port_range_t lport; |
| 202 | port_range_t rport; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 203 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 204 | // Policy |
| 205 | u8 policy; |
| 206 | u32 sa_id; |
| 207 | u32 sa_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 208 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 209 | // Counter |
| 210 | vlib_counter_t counter; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | } ipsec_policy_t; |
| 212 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 213 | typedef struct |
| 214 | { |
| 215 | u32 id; |
| 216 | /* pool of policies */ |
| 217 | ipsec_policy_t *policies; |
| 218 | /* vectors of policy indices */ |
| 219 | u32 *ipv4_outbound_policies; |
| 220 | u32 *ipv6_outbound_policies; |
| 221 | u32 *ipv4_inbound_protect_policy_indices; |
| 222 | u32 *ipv4_inbound_policy_discard_and_bypass_indices; |
| 223 | u32 *ipv6_inbound_protect_policy_indices; |
| 224 | u32 *ipv6_inbound_policy_discard_and_bypass_indices; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 225 | } ipsec_spd_t; |
| 226 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 227 | typedef struct |
| 228 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | u32 spd_index; |
| 230 | } ip4_ipsec_config_t; |
| 231 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 232 | typedef struct |
| 233 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | u32 spd_index; |
| 235 | } ip6_ipsec_config_t; |
| 236 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 237 | typedef struct |
| 238 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 239 | u32 input_sa_index; |
| 240 | u32 output_sa_index; |
| 241 | u32 hw_if_index; |
| 242 | } ipsec_tunnel_if_t; |
| 243 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 244 | typedef struct |
| 245 | { |
Sergio Gonzalez Monroy | db93cd9 | 2017-08-26 15:22:05 +0100 | [diff] [blame] | 246 | clib_error_t *(*add_del_sa_sess_cb) (u32 sa_index, u8 is_add); |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 247 | clib_error_t *(*check_support_cb) (ipsec_sa_t * sa); |
| 248 | } ipsec_main_callbacks_t; |
| 249 | |
| 250 | typedef struct |
| 251 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | /* pool of tunnel instances */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 253 | ipsec_spd_t *spds; |
| 254 | ipsec_sa_t *sad; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | |
| 256 | /* pool of tunnel interfaces */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 257 | ipsec_tunnel_if_t *tunnel_interfaces; |
| 258 | u32 *free_tunnel_if_indices; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 260 | u32 **empty_buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 261 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 262 | uword *tunnel_index_by_key; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 263 | |
| 264 | /* convenience */ |
| 265 | vlib_main_t *vlib_main; |
| 266 | vnet_main_t *vnet_main; |
| 267 | |
| 268 | /* next node indices */ |
| 269 | u32 feature_next_node_index[32]; |
| 270 | |
| 271 | /* hashes */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 272 | uword *spd_index_by_spd_id; |
| 273 | uword *spd_index_by_sw_if_index; |
| 274 | uword *sa_index_by_sa_id; |
| 275 | uword *ipsec_if_pool_index_by_key; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 277 | /* node indeces */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 278 | u32 error_drop_node_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | u32 esp_encrypt_node_index; |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 280 | u32 esp_decrypt_node_index; |
| 281 | /* next node indeces */ |
| 282 | u32 esp_encrypt_next_index; |
| 283 | u32 esp_decrypt_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 285 | /* callbacks */ |
| 286 | ipsec_main_callbacks_t cb; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 287 | } ipsec_main_t; |
| 288 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 289 | extern ipsec_main_t ipsec_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 290 | |
Jean-Mickael Guerin | 8941ec2 | 2016-03-04 14:14:21 +0100 | [diff] [blame] | 291 | extern vlib_node_registration_t esp_encrypt_node; |
| 292 | extern vlib_node_registration_t esp_decrypt_node; |
| 293 | extern vlib_node_registration_t ipsec_if_output_node; |
| 294 | extern vlib_node_registration_t ipsec_if_input_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 295 | |
| 296 | |
| 297 | /* |
| 298 | * functions |
| 299 | */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 300 | int ipsec_set_interface_spd (vlib_main_t * vm, u32 sw_if_index, u32 spd_id, |
| 301 | int is_add); |
| 302 | int ipsec_add_del_spd (vlib_main_t * vm, u32 spd_id, int is_add); |
| 303 | int ipsec_add_del_policy (vlib_main_t * vm, ipsec_policy_t * policy, |
| 304 | int is_add); |
| 305 | int ipsec_add_del_sa (vlib_main_t * vm, ipsec_sa_t * new_sa, int is_add); |
| 306 | int ipsec_set_sa_key (vlib_main_t * vm, ipsec_sa_t * sa_update); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 307 | |
Matus Fabian | 694265d | 2016-08-10 01:55:36 -0700 | [diff] [blame] | 308 | u32 ipsec_get_sa_index_by_sa_id (u32 sa_id); |
Matthew Smith | ca514fd | 2017-10-12 12:06:59 -0500 | [diff] [blame^] | 309 | u8 ipsec_is_sa_used (u32 sa_index); |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 310 | u8 *format_ipsec_if_output_trace (u8 * s, va_list * args); |
| 311 | u8 *format_ipsec_policy_action (u8 * s, va_list * args); |
| 312 | u8 *format_ipsec_crypto_alg (u8 * s, va_list * args); |
| 313 | u8 *format_ipsec_integ_alg (u8 * s, va_list * args); |
| 314 | u8 *format_ipsec_replay_window (u8 * s, va_list * args); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 315 | uword unformat_ipsec_policy_action (unformat_input_t * input, va_list * args); |
| 316 | uword unformat_ipsec_crypto_alg (unformat_input_t * input, va_list * args); |
| 317 | uword unformat_ipsec_integ_alg (unformat_input_t * input, va_list * args); |
| 318 | |
Matthew Smith | e04d09d | 2017-05-14 21:47:18 -0500 | [diff] [blame] | 319 | int ipsec_add_del_tunnel_if_internal (vnet_main_t * vnm, |
| 320 | ipsec_add_del_tunnel_args_t * args, |
| 321 | u32 * sw_if_index); |
Matthew Smith | 2838a23 | 2016-06-21 16:05:09 -0500 | [diff] [blame] | 322 | int ipsec_add_del_tunnel_if (ipsec_add_del_tunnel_args_t * args); |
Matus Fabian | 694265d | 2016-08-10 01:55:36 -0700 | [diff] [blame] | 323 | int ipsec_add_del_ipsec_gre_tunnel (vnet_main_t * vnm, |
| 324 | ipsec_add_del_ipsec_gre_tunnel_args_t * |
| 325 | args); |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 326 | int ipsec_set_interface_key (vnet_main_t * vnm, u32 hw_if_index, |
| 327 | ipsec_if_set_key_type_t type, u8 alg, u8 * key); |
Matthew Smith | ca514fd | 2017-10-12 12:06:59 -0500 | [diff] [blame^] | 328 | int ipsec_set_interface_sa (vnet_main_t * vnm, u32 hw_if_index, u32 sa_id, |
| 329 | u8 is_outbound); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | |
| 331 | |
| 332 | /* |
| 333 | * inline functions |
| 334 | */ |
| 335 | |
| 336 | always_inline void |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 337 | ipsec_alloc_empty_buffers (vlib_main_t * vm, ipsec_main_t * im) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 338 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 339 | u32 thread_index = vlib_get_thread_index (); |
| 340 | uword l = vec_len (im->empty_buffers[thread_index]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | uword n_alloc = 0; |
| 342 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 343 | if (PREDICT_FALSE (l < VLIB_FRAME_SIZE)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 344 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 345 | if (!im->empty_buffers[thread_index]) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 346 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 347 | vec_alloc (im->empty_buffers[thread_index], 2 * VLIB_FRAME_SIZE); |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 348 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 349 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 350 | n_alloc = vlib_buffer_alloc (vm, im->empty_buffers[thread_index] + l, |
Damjan Marion | 6765549 | 2016-11-15 12:50:28 +0100 | [diff] [blame] | 351 | 2 * VLIB_FRAME_SIZE - l); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 352 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 353 | _vec_len (im->empty_buffers[thread_index]) = l + n_alloc; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 354 | } |
| 355 | } |
| 356 | |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 357 | static_always_inline u32 |
| 358 | get_next_output_feature_node_index (vlib_buffer_t * b, |
| 359 | vlib_node_runtime_t * nr) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 360 | { |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 361 | u32 next; |
| 362 | u32 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX]; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 363 | vlib_main_t *vm = vlib_get_main (); |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 364 | vlib_node_t *node = vlib_get_node (vm, nr->node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 365 | |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 366 | vnet_feature_next (sw_if_index, &next, b); |
| 367 | return node->next_nodes[next]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | } |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 369 | |
Sergio Gonzalez Monroy | a10f62b | 2016-11-25 13:36:12 +0000 | [diff] [blame] | 370 | #endif /* __IPSEC_H__ */ |
| 371 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 372 | /* |
| 373 | * fd.io coding-style-patch-verification: ON |
| 374 | * |
| 375 | * Local Variables: |
| 376 | * eval: (c-set-style "gnu") |
| 377 | * End: |
| 378 | */ |