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 | #ifndef __IPSEC_SPD_SA_H__ |
| 16 | #define __IPSEC_SPD_SA_H__ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
Filip Tehlar | e5d3491 | 2020-03-02 15:17:37 +0000 | [diff] [blame] | 19 | #include <vnet/crypto/crypto.h> |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 20 | #include <vnet/ip/ip.h> |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 21 | #include <vnet/fib/fib_node.h> |
Neale Ranns | 041add7 | 2020-01-02 04:06:10 +0000 | [diff] [blame] | 22 | #include <vnet/tunnel/tunnel.h> |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 23 | |
Vladimir Ratnikov | d7c030d | 2022-09-13 13:09:53 +0000 | [diff] [blame] | 24 | #define foreach_ipsec_crypto_alg \ |
| 25 | _ (0, NONE, "none") \ |
| 26 | _ (1, AES_CBC_128, "aes-cbc-128") \ |
| 27 | _ (2, AES_CBC_192, "aes-cbc-192") \ |
| 28 | _ (3, AES_CBC_256, "aes-cbc-256") \ |
| 29 | _ (4, AES_CTR_128, "aes-ctr-128") \ |
| 30 | _ (5, AES_CTR_192, "aes-ctr-192") \ |
| 31 | _ (6, AES_CTR_256, "aes-ctr-256") \ |
| 32 | _ (7, AES_GCM_128, "aes-gcm-128") \ |
| 33 | _ (8, AES_GCM_192, "aes-gcm-192") \ |
| 34 | _ (9, AES_GCM_256, "aes-gcm-256") \ |
| 35 | _ (10, DES_CBC, "des-cbc") \ |
| 36 | _ (11, 3DES_CBC, "3des-cbc") \ |
| 37 | _ (12, CHACHA20_POLY1305, "chacha20-poly1305") |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 38 | |
| 39 | typedef enum |
| 40 | { |
| 41 | #define _(v, f, s) IPSEC_CRYPTO_ALG_##f = v, |
| 42 | foreach_ipsec_crypto_alg |
| 43 | #undef _ |
| 44 | IPSEC_CRYPTO_N_ALG, |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 45 | } __clib_packed ipsec_crypto_alg_t; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 46 | |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 47 | #define IPSEC_CRYPTO_ALG_IS_GCM(_alg) \ |
| 48 | (((_alg == IPSEC_CRYPTO_ALG_AES_GCM_128) || \ |
| 49 | (_alg == IPSEC_CRYPTO_ALG_AES_GCM_192) || \ |
| 50 | (_alg == IPSEC_CRYPTO_ALG_AES_GCM_256))) |
| 51 | |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 52 | #define IPSEC_CRYPTO_ALG_IS_CTR(_alg) \ |
| 53 | (((_alg == IPSEC_CRYPTO_ALG_AES_CTR_128) || \ |
| 54 | (_alg == IPSEC_CRYPTO_ALG_AES_CTR_192) || \ |
| 55 | (_alg == IPSEC_CRYPTO_ALG_AES_CTR_256))) |
| 56 | |
Vladimir Ratnikov | d7c030d | 2022-09-13 13:09:53 +0000 | [diff] [blame] | 57 | #define IPSEC_CRYPTO_ALG_CTR_AEAD_OTHERS(_alg) \ |
| 58 | (_alg == IPSEC_CRYPTO_ALG_CHACHA20_POLY1305) |
| 59 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 60 | #define foreach_ipsec_integ_alg \ |
| 61 | _ (0, NONE, "none") \ |
| 62 | _ (1, MD5_96, "md5-96") /* RFC2403 */ \ |
| 63 | _ (2, SHA1_96, "sha1-96") /* RFC2404 */ \ |
| 64 | _ (3, SHA_256_96, "sha-256-96") /* draft-ietf-ipsec-ciph-sha-256-00 */ \ |
| 65 | _ (4, SHA_256_128, "sha-256-128") /* RFC4868 */ \ |
| 66 | _ (5, SHA_384_192, "sha-384-192") /* RFC4868 */ \ |
| 67 | _ (6, SHA_512_256, "sha-512-256") /* RFC4868 */ |
| 68 | |
| 69 | typedef enum |
| 70 | { |
| 71 | #define _(v, f, s) IPSEC_INTEG_ALG_##f = v, |
| 72 | foreach_ipsec_integ_alg |
| 73 | #undef _ |
| 74 | IPSEC_INTEG_N_ALG, |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 75 | } __clib_packed ipsec_integ_alg_t; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 76 | |
| 77 | typedef enum |
| 78 | { |
| 79 | IPSEC_PROTOCOL_AH = 0, |
| 80 | IPSEC_PROTOCOL_ESP = 1 |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 81 | } __clib_packed ipsec_protocol_t; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 82 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 83 | #define IPSEC_KEY_MAX_LEN 128 |
| 84 | typedef struct ipsec_key_t_ |
| 85 | { |
| 86 | u8 len; |
| 87 | u8 data[IPSEC_KEY_MAX_LEN]; |
| 88 | } ipsec_key_t; |
| 89 | |
| 90 | /* |
| 91 | * Enable extended sequence numbers |
| 92 | * Enable Anti-replay |
| 93 | * IPsec tunnel mode if non-zero, else transport mode |
| 94 | * IPsec tunnel mode is IPv6 if non-zero, |
| 95 | * else IPv4 tunnel only valid if is_tunnel is non-zero |
| 96 | * enable UDP encapsulation for NAT traversal |
| 97 | */ |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 98 | #define foreach_ipsec_sa_flags \ |
| 99 | _ (0, NONE, "none") \ |
| 100 | _ (1, USE_ESN, "esn") \ |
| 101 | _ (2, USE_ANTI_REPLAY, "anti-replay") \ |
| 102 | _ (4, IS_TUNNEL, "tunnel") \ |
| 103 | _ (8, IS_TUNNEL_V6, "tunnel-v6") \ |
| 104 | _ (16, UDP_ENCAP, "udp-encap") \ |
| 105 | _ (32, IS_PROTECT, "Protect") \ |
| 106 | _ (64, IS_INBOUND, "inbound") \ |
| 107 | _ (128, IS_AEAD, "aead") \ |
Neale Ranns | f16e9a5 | 2021-02-25 19:09:24 +0000 | [diff] [blame] | 108 | _ (256, IS_CTR, "ctr") \ |
Neale Ranns | 6fdcc3d | 2021-10-08 07:30:47 +0000 | [diff] [blame] | 109 | _ (512, IS_ASYNC, "async") \ |
| 110 | _ (1024, NO_ALGO_NO_DROP, "no-algo-no-drop") |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 111 | |
| 112 | typedef enum ipsec_sad_flags_t_ |
| 113 | { |
| 114 | #define _(v, f, s) IPSEC_SA_FLAG_##f = v, |
| 115 | foreach_ipsec_sa_flags |
| 116 | #undef _ |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 117 | } __clib_packed ipsec_sa_flags_t; |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 118 | |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 119 | STATIC_ASSERT (sizeof (ipsec_sa_flags_t) == 2, "IPSEC SA flags != 2 byte"); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 120 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 121 | typedef struct |
| 122 | { |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 123 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 124 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 125 | /* flags */ |
| 126 | ipsec_sa_flags_t flags; |
| 127 | |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 128 | u8 crypto_iv_size; |
Christian Hopps | fb7e7ed | 2019-11-03 07:02:15 -0500 | [diff] [blame] | 129 | u8 esp_block_align; |
Damjan Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 130 | u8 integ_icv_size; |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 131 | |
| 132 | u8 __pad1[3]; |
| 133 | |
Neale Ranns | 1a52d37 | 2021-02-04 11:33:32 +0000 | [diff] [blame] | 134 | u32 thread_index; |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 135 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 136 | u32 spi; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 137 | u32 seq; |
| 138 | u32 seq_hi; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 139 | u64 replay_window; |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 140 | u64 ctr_iv_counter; |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 141 | dpo_id_t dpo; |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 142 | |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 143 | vnet_crypto_key_index_t crypto_key_index; |
| 144 | vnet_crypto_key_index_t integ_key_index; |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 145 | |
| 146 | /* Union data shared by sync and async ops, updated when mode is |
| 147 | * changed. */ |
| 148 | union |
| 149 | { |
| 150 | struct |
| 151 | { |
| 152 | vnet_crypto_op_id_t crypto_enc_op_id:16; |
| 153 | vnet_crypto_op_id_t crypto_dec_op_id:16; |
| 154 | vnet_crypto_op_id_t integ_op_id:16; |
| 155 | }; |
| 156 | |
| 157 | struct |
| 158 | { |
| 159 | vnet_crypto_async_op_id_t crypto_async_enc_op_id:16; |
| 160 | vnet_crypto_async_op_id_t crypto_async_dec_op_id:16; |
| 161 | vnet_crypto_key_index_t linked_key_index; |
| 162 | }; |
| 163 | |
| 164 | u64 crypto_op_data; |
| 165 | }; |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 166 | |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 167 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 168 | |
| 169 | union |
| 170 | { |
| 171 | ip4_header_t ip4_hdr; |
| 172 | ip6_header_t ip6_hdr; |
| 173 | }; |
| 174 | udp_header_t udp_hdr; |
| 175 | |
Benoît Ganne | 490b927 | 2021-01-22 18:03:09 +0100 | [diff] [blame] | 176 | /* Salt used in CTR modes (incl. GCM) - stored in network byte order */ |
Neale Ranns | 80f6fd5 | 2019-04-16 02:41:34 +0000 | [diff] [blame] | 177 | u32 salt; |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 178 | |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 179 | ipsec_protocol_t protocol; |
Neale Ranns | 041add7 | 2020-01-02 04:06:10 +0000 | [diff] [blame] | 180 | tunnel_encap_decap_flags_t tunnel_flags; |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 181 | u8 __pad[2]; |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 182 | |
| 183 | /* data accessed by dataplane code should be above this comment */ |
| 184 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
| 185 | |
| 186 | /* Elements with u64 size multiples */ |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 187 | union |
| 188 | { |
| 189 | struct |
| 190 | { |
| 191 | vnet_crypto_op_id_t crypto_enc_op_id:16; |
| 192 | vnet_crypto_op_id_t crypto_dec_op_id:16; |
| 193 | vnet_crypto_op_id_t integ_op_id:16; |
| 194 | }; |
| 195 | u64 data; |
| 196 | } sync_op_data; |
| 197 | |
| 198 | union |
| 199 | { |
| 200 | struct |
| 201 | { |
| 202 | vnet_crypto_async_op_id_t crypto_async_enc_op_id:16; |
| 203 | vnet_crypto_async_op_id_t crypto_async_dec_op_id:16; |
| 204 | vnet_crypto_key_index_t linked_key_index; |
| 205 | }; |
| 206 | u64 data; |
| 207 | } async_op_data; |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 208 | |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 209 | tunnel_t tunnel; |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 210 | |
| 211 | fib_node_t node; |
| 212 | |
| 213 | /* elements with u32 size */ |
| 214 | u32 id; |
| 215 | u32 stat_index; |
| 216 | vnet_crypto_alg_t integ_calg; |
| 217 | vnet_crypto_alg_t crypto_calg; |
| 218 | |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 219 | /* else u8 packed */ |
| 220 | ipsec_crypto_alg_t crypto_alg; |
| 221 | ipsec_integ_alg_t integ_alg; |
| 222 | |
| 223 | ipsec_key_t integ_key; |
| 224 | ipsec_key_t crypto_key; |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 225 | } ipsec_sa_t; |
| 226 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 227 | STATIC_ASSERT_OFFSET_OF (ipsec_sa_t, cacheline1, CLIB_CACHE_LINE_BYTES); |
Neale Ranns | 123b5eb | 2020-10-16 14:03:55 +0000 | [diff] [blame] | 228 | STATIC_ASSERT_OFFSET_OF (ipsec_sa_t, cacheline2, 2 * CLIB_CACHE_LINE_BYTES); |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 229 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 230 | /** |
| 231 | * Pool of IPSec SAs |
| 232 | */ |
| 233 | extern ipsec_sa_t *ipsec_sa_pool; |
| 234 | |
Neale Ranns | aa7d766 | 2021-02-10 08:42:49 +0000 | [diff] [blame] | 235 | /* |
| 236 | * Ensure that the IPsec data does not overlap with the IP data in |
| 237 | * the buffer meta data |
| 238 | */ |
| 239 | STATIC_ASSERT (STRUCT_OFFSET_OF (vnet_buffer_opaque_t, ipsec.sad_index) == |
| 240 | STRUCT_OFFSET_OF (vnet_buffer_opaque_t, ip.save_protocol), |
| 241 | "IPSec data is overlapping with IP data"); |
| 242 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 243 | #define _(a,v,s) \ |
| 244 | always_inline int \ |
| 245 | ipsec_sa_is_set_##v (const ipsec_sa_t *sa) { \ |
| 246 | return (sa->flags & IPSEC_SA_FLAG_##v); \ |
| 247 | } |
| 248 | foreach_ipsec_sa_flags |
| 249 | #undef _ |
| 250 | #define _(a,v,s) \ |
| 251 | always_inline int \ |
| 252 | ipsec_sa_set_##v (ipsec_sa_t *sa) { \ |
| 253 | return (sa->flags |= IPSEC_SA_FLAG_##v); \ |
| 254 | } |
| 255 | foreach_ipsec_sa_flags |
| 256 | #undef _ |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 257 | #define _(a,v,s) \ |
| 258 | always_inline int \ |
| 259 | ipsec_sa_unset_##v (ipsec_sa_t *sa) { \ |
| 260 | return (sa->flags &= ~IPSEC_SA_FLAG_##v); \ |
| 261 | } |
| 262 | foreach_ipsec_sa_flags |
| 263 | #undef _ |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 264 | /** |
| 265 | * @brief |
| 266 | * SA packet & bytes counters |
| 267 | */ |
| 268 | extern vlib_combined_counter_main_t ipsec_sa_counters; |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 269 | extern vlib_simple_counter_main_t ipsec_sa_lost_counters; |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 270 | |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 271 | extern void ipsec_mk_key (ipsec_key_t * key, const u8 * data, u8 len); |
| 272 | |
Neale Ranns | 9ec846c | 2021-02-09 14:04:02 +0000 | [diff] [blame] | 273 | extern int |
| 274 | ipsec_sa_add_and_lock (u32 id, u32 spi, ipsec_protocol_t proto, |
| 275 | ipsec_crypto_alg_t crypto_alg, const ipsec_key_t *ck, |
| 276 | ipsec_integ_alg_t integ_alg, const ipsec_key_t *ik, |
| 277 | ipsec_sa_flags_t flags, u32 salt, u16 src_port, |
| 278 | u16 dst_port, const tunnel_t *tun, u32 *sa_out_index); |
Neale Ranns | 495d7ff | 2019-07-12 09:15:26 +0000 | [diff] [blame] | 279 | extern index_t ipsec_sa_find_and_lock (u32 id); |
| 280 | extern int ipsec_sa_unlock_id (u32 id); |
| 281 | extern void ipsec_sa_unlock (index_t sai); |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 282 | extern void ipsec_sa_lock (index_t sai); |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 283 | extern void ipsec_sa_clear (index_t sai); |
Damjan Marion | b966e8b | 2019-03-20 16:07:09 +0100 | [diff] [blame] | 284 | extern void ipsec_sa_set_crypto_alg (ipsec_sa_t * sa, |
| 285 | ipsec_crypto_alg_t crypto_alg); |
| 286 | extern void ipsec_sa_set_integ_alg (ipsec_sa_t * sa, |
| 287 | ipsec_integ_alg_t integ_alg); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 288 | |
Neale Ranns | b4cfd55 | 2019-02-13 02:08:06 -0800 | [diff] [blame] | 289 | typedef walk_rc_t (*ipsec_sa_walk_cb_t) (ipsec_sa_t * sa, void *ctx); |
| 290 | extern void ipsec_sa_walk (ipsec_sa_walk_cb_t cd, void *ctx); |
| 291 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 292 | extern u8 *format_ipsec_replay_window (u8 *s, va_list *args); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 293 | extern u8 *format_ipsec_crypto_alg (u8 * s, va_list * args); |
| 294 | extern u8 *format_ipsec_integ_alg (u8 * s, va_list * args); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 295 | extern u8 *format_ipsec_sa (u8 * s, va_list * args); |
| 296 | extern u8 *format_ipsec_key (u8 * s, va_list * args); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 297 | extern uword unformat_ipsec_crypto_alg (unformat_input_t * input, |
| 298 | va_list * args); |
| 299 | extern uword unformat_ipsec_integ_alg (unformat_input_t * input, |
| 300 | va_list * args); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 301 | extern uword unformat_ipsec_key (unformat_input_t * input, va_list * args); |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 302 | |
Filip Tehlar | e5d3491 | 2020-03-02 15:17:37 +0000 | [diff] [blame] | 303 | #define IPSEC_UDP_PORT_NONE ((u16)~0) |
| 304 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 305 | /* |
| 306 | * Anti Replay definitions |
| 307 | */ |
| 308 | |
| 309 | #define IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE (64) |
| 310 | #define IPSEC_SA_ANTI_REPLAY_WINDOW_MAX_INDEX (IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE-1) |
| 311 | |
| 312 | /* |
| 313 | * sequence number less than the lower bound are outside of the window |
| 314 | * From RFC4303 Appendix A: |
| 315 | * Bl = Tl - W + 1 |
| 316 | */ |
| 317 | #define IPSEC_SA_ANTI_REPLAY_WINDOW_LOWER_BOUND(_tl) (_tl - IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE + 1) |
| 318 | |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 319 | always_inline int |
| 320 | ipsec_sa_anti_replay_check (const ipsec_sa_t *sa, u32 seq) |
| 321 | { |
| 322 | if (ipsec_sa_is_set_USE_ANTI_REPLAY (sa) && |
| 323 | sa->replay_window & (1ULL << (sa->seq - seq))) |
| 324 | return 1; |
| 325 | else |
| 326 | return 0; |
| 327 | } |
| 328 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 329 | /* |
| 330 | * Anti replay check. |
| 331 | * inputs need to be in host byte order. |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 332 | * |
| 333 | * The function runs in two contexts. pre and post decrypt. |
| 334 | * Pre-decrypt it: |
| 335 | * 1 - determines if a packet is a replay - a simple check in the window |
| 336 | * 2 - returns the hi-seq number that should be used to decrypt. |
| 337 | * post-decrypt: |
| 338 | * Checks whether the packet is a replay or falls out of window |
| 339 | * |
| 340 | * This funcion should be called even without anti-replay enabled to ensure |
| 341 | * the high sequence number is set. |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 342 | */ |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 343 | always_inline int |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 344 | ipsec_sa_anti_replay_and_sn_advance (const ipsec_sa_t *sa, u32 seq, |
| 345 | u32 hi_seq_used, bool post_decrypt, |
| 346 | u32 *hi_seq_req) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 347 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 348 | ASSERT ((post_decrypt == false) == (hi_seq_req != 0)); |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 349 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 350 | if (!ipsec_sa_is_set_USE_ESN (sa)) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 351 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 352 | if (hi_seq_req) |
| 353 | /* no ESN, therefore the hi-seq is always 0 */ |
| 354 | *hi_seq_req = 0; |
| 355 | |
| 356 | if (!ipsec_sa_is_set_USE_ANTI_REPLAY (sa)) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 357 | return 0; |
| 358 | |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 359 | if (PREDICT_TRUE (seq > sa->seq)) |
| 360 | return 0; |
| 361 | |
| 362 | u32 diff = sa->seq - seq; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 363 | |
| 364 | if (IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE > diff) |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 365 | return ((sa->replay_window & (1ULL << diff)) ? 1 : 0); |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 366 | else |
| 367 | return 1; |
| 368 | |
| 369 | return 0; |
| 370 | } |
| 371 | |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 372 | if (!ipsec_sa_is_set_USE_ANTI_REPLAY (sa)) |
| 373 | { |
| 374 | /* there's no AR configured for this SA, but in order |
| 375 | * to know whether a packet has wrapped the hi ESN we need |
| 376 | * to know whether it is out of window. if we use the default |
| 377 | * lower bound then we are effectively forcing AR because |
| 378 | * out of window packets will get the increased hi seq number |
| 379 | * and will thus fail to decrypt. IOW we need a window to know |
| 380 | * if the SN has wrapped, but we don't want a window to check for |
| 381 | * anti replay. to resolve the contradiction we use a huge window. |
| 382 | * if the packet is not within 2^30 of the current SN, we'll consider |
| 383 | * it a wrap. |
| 384 | */ |
| 385 | if (hi_seq_req) |
| 386 | { |
| 387 | if (seq >= sa->seq) |
| 388 | /* The packet's sequence number is larger that the SA's. |
| 389 | * that can't be a warp - unless we lost more than |
| 390 | * 2^32 packets ... how could we know? */ |
| 391 | *hi_seq_req = sa->seq_hi; |
| 392 | else |
| 393 | { |
| 394 | /* The packet's SN is less than the SAs, so either the SN has |
| 395 | * wrapped or the SN is just old. */ |
| 396 | if (sa->seq - seq > (1 << 30)) |
| 397 | /* It's really really really old => it wrapped */ |
| 398 | *hi_seq_req = sa->seq_hi + 1; |
| 399 | else |
| 400 | *hi_seq_req = sa->seq_hi; |
| 401 | } |
| 402 | } |
| 403 | /* |
| 404 | * else |
| 405 | * this is post-decrpyt and since it decrypted we accept it |
| 406 | */ |
| 407 | return 0; |
| 408 | } |
| 409 | if (PREDICT_TRUE (sa->seq >= (IPSEC_SA_ANTI_REPLAY_WINDOW_MAX_INDEX))) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 410 | { |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 411 | /* |
| 412 | * the last sequence number VPP recieved is more than one |
| 413 | * window size greater than zero. |
| 414 | * Case A from RFC4303 Appendix A. |
| 415 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 416 | if (seq < IPSEC_SA_ANTI_REPLAY_WINDOW_LOWER_BOUND (sa->seq)) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 417 | { |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 418 | /* |
| 419 | * the received sequence number is lower than the lower bound |
| 420 | * of the window, this could mean either a replay packet or that |
| 421 | * the high sequence number has wrapped. if it decrypts corrently |
| 422 | * then it's the latter. |
| 423 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 424 | if (post_decrypt) |
| 425 | { |
| 426 | if (hi_seq_used == sa->seq_hi) |
| 427 | /* the high sequence number used to succesfully decrypt this |
| 428 | * packet is the same as the last-sequnence number of the SA. |
| 429 | * that means this packet did not cause a wrap. |
| 430 | * this packet is thus out of window and should be dropped */ |
| 431 | return 1; |
| 432 | else |
| 433 | /* The packet decrypted with a different high sequence number |
| 434 | * to the SA, that means it is the wrap packet and should be |
| 435 | * accepted */ |
| 436 | return 0; |
| 437 | } |
| 438 | else |
| 439 | { |
| 440 | /* pre-decrypt it might be the might that casues a wrap, we |
| 441 | * need to decrpyt to find out */ |
| 442 | if (hi_seq_req) |
| 443 | *hi_seq_req = sa->seq_hi + 1; |
| 444 | return 0; |
| 445 | } |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 446 | } |
| 447 | else |
| 448 | { |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 449 | /* |
| 450 | * the recieved sequence number greater than the low |
| 451 | * end of the window. |
| 452 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 453 | if (hi_seq_req) |
| 454 | *hi_seq_req = sa->seq_hi; |
| 455 | if (seq <= sa->seq) |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 456 | /* |
| 457 | * The recieved seq number is within bounds of the window |
| 458 | * check if it's a duplicate |
| 459 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 460 | return (ipsec_sa_anti_replay_check (sa, seq)); |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 461 | else |
| 462 | /* |
| 463 | * The received sequence number is greater than the window |
| 464 | * upper bound. this packet will move the window along, assuming |
| 465 | * it decrypts correctly. |
| 466 | */ |
| 467 | return 0; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | else |
| 471 | { |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 472 | /* |
| 473 | * the last sequence number VPP recieved is within one window |
| 474 | * size of zero, i.e. 0 < TL < WINDOW_SIZE, the lower bound is thus a |
| 475 | * large sequence number. |
| 476 | * Note that the check below uses unsiged integer arthimetic, so the |
| 477 | * RHS will be a larger number. |
| 478 | * Case B from RFC4303 Appendix A. |
| 479 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 480 | if (seq < IPSEC_SA_ANTI_REPLAY_WINDOW_LOWER_BOUND (sa->seq)) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 481 | { |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 482 | /* |
| 483 | * the sequence number is less than the lower bound. |
| 484 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 485 | if (seq <= sa->seq) |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 486 | { |
| 487 | /* |
| 488 | * the packet is within the window upper bound. |
| 489 | * check for duplicates. |
| 490 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 491 | if (hi_seq_req) |
| 492 | *hi_seq_req = sa->seq_hi; |
| 493 | return (ipsec_sa_anti_replay_check (sa, seq)); |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 494 | } |
| 495 | else |
| 496 | { |
| 497 | /* |
| 498 | * the packet is less the window lower bound or greater than |
| 499 | * the higher bound, depending on how you look at it... |
| 500 | * We're assuming, given that the last sequence number received, |
| 501 | * TL < WINDOW_SIZE, that a largeer seq num is more likely to be |
| 502 | * a packet that moves the window forward, than a packet that has |
| 503 | * wrapped the high sequence again. If it were the latter then |
| 504 | * we've lost close to 2^32 packets. |
| 505 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 506 | if (hi_seq_req) |
| 507 | *hi_seq_req = sa->seq_hi; |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 508 | return 0; |
| 509 | } |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 510 | } |
| 511 | else |
| 512 | { |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 513 | /* |
| 514 | * the packet seq number is between the lower bound (a large nubmer) |
| 515 | * and MAX_SEQ_NUM. This is in the window since the window upper bound |
| 516 | * tl > 0. |
| 517 | * However, since TL is the other side of 0 to the received |
| 518 | * packet, the SA has moved on to a higher sequence number. |
| 519 | */ |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 520 | if (hi_seq_req) |
| 521 | *hi_seq_req = sa->seq_hi - 1; |
| 522 | return (ipsec_sa_anti_replay_check (sa, seq)); |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 523 | } |
| 524 | } |
| 525 | |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 526 | /* unhandled case */ |
| 527 | ASSERT (0); |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 528 | return 0; |
| 529 | } |
| 530 | |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 531 | always_inline u32 |
| 532 | ipsec_sa_anti_replay_window_shift (ipsec_sa_t *sa, u32 inc) |
| 533 | { |
| 534 | u32 n_lost = 0; |
| 535 | |
| 536 | if (inc < IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE) |
| 537 | { |
| 538 | if (sa->seq > IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE) |
| 539 | { |
| 540 | /* |
| 541 | * count how many holes there are in the portion |
| 542 | * of the window that we will right shift of the end |
| 543 | * as a result of this increments |
| 544 | */ |
| 545 | u64 mask = (((u64) 1 << inc) - 1) << (BITS (u64) - inc); |
| 546 | u64 old = sa->replay_window & mask; |
| 547 | /* the number of packets we saw in this section of the window */ |
| 548 | u64 seen = count_set_bits (old); |
| 549 | |
| 550 | /* |
| 551 | * the number we missed is the size of the window section |
| 552 | * minus the number we saw. |
| 553 | */ |
| 554 | n_lost = inc - seen; |
| 555 | } |
| 556 | sa->replay_window = ((sa->replay_window) << inc) | 1; |
| 557 | } |
| 558 | else |
| 559 | { |
| 560 | /* holes in the replay window are lost packets */ |
| 561 | n_lost = BITS (u64) - count_set_bits (sa->replay_window); |
| 562 | |
| 563 | /* any sequence numbers that now fall outside the window |
| 564 | * are forever lost */ |
| 565 | n_lost += inc - IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE; |
| 566 | |
| 567 | sa->replay_window = 1; |
| 568 | } |
| 569 | |
| 570 | return (n_lost); |
| 571 | } |
| 572 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 573 | /* |
| 574 | * Anti replay window advance |
| 575 | * inputs need to be in host byte order. |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 576 | * This function both advances the anti-replay window and the sequence number |
| 577 | * We always need to move on the SN but the window updates are only needed |
| 578 | * if AR is on. |
| 579 | * However, updating the window is trivial, so we do it anyway to save |
| 580 | * the branch cost. |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 581 | */ |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 582 | always_inline u64 |
| 583 | ipsec_sa_anti_replay_advance (ipsec_sa_t *sa, u32 thread_index, u32 seq, |
| 584 | u32 hi_seq) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 585 | { |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 586 | u64 n_lost = 0; |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 587 | u32 pos; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 588 | |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 589 | if (ipsec_sa_is_set_USE_ESN (sa)) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 590 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 591 | int wrap = hi_seq - sa->seq_hi; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 592 | |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 593 | if (wrap == 0 && seq > sa->seq) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 594 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 595 | pos = seq - sa->seq; |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 596 | n_lost = ipsec_sa_anti_replay_window_shift (sa, pos); |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 597 | sa->seq = seq; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 598 | } |
| 599 | else if (wrap > 0) |
| 600 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 601 | pos = ~seq + sa->seq + 1; |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 602 | n_lost = ipsec_sa_anti_replay_window_shift (sa, pos); |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 603 | sa->seq = seq; |
| 604 | sa->seq_hi = hi_seq; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 605 | } |
| 606 | else if (wrap < 0) |
| 607 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 608 | pos = ~seq + sa->seq + 1; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 609 | sa->replay_window |= (1ULL << pos); |
| 610 | } |
| 611 | else |
| 612 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 613 | pos = sa->seq - seq; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 614 | sa->replay_window |= (1ULL << pos); |
| 615 | } |
| 616 | } |
| 617 | else |
| 618 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 619 | if (seq > sa->seq) |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 620 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 621 | pos = seq - sa->seq; |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 622 | n_lost = ipsec_sa_anti_replay_window_shift (sa, pos); |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 623 | sa->seq = seq; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 624 | } |
| 625 | else |
| 626 | { |
Neale Ranns | 5b89110 | 2021-06-28 13:31:28 +0000 | [diff] [blame] | 627 | pos = sa->seq - seq; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 628 | sa->replay_window |= (1ULL << pos); |
| 629 | } |
| 630 | } |
Neale Ranns | e11203e | 2021-09-21 12:34:19 +0000 | [diff] [blame] | 631 | |
| 632 | return n_lost; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 633 | } |
| 634 | |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 635 | |
| 636 | /* |
| 637 | * Makes choice for thread_id should be assigned. |
| 638 | * if input ~0, gets random worker_id based on unix_time_now_nsec |
| 639 | */ |
| 640 | always_inline u32 |
| 641 | ipsec_sa_assign_thread (u32 thread_id) |
| 642 | { |
| 643 | return ((thread_id) ? thread_id |
| 644 | : (unix_time_now_nsec () % vlib_num_workers ()) + 1); |
| 645 | } |
| 646 | |
Neale Ranns | c5fe57d | 2021-02-25 16:01:28 +0000 | [diff] [blame] | 647 | always_inline ipsec_sa_t * |
| 648 | ipsec_sa_get (u32 sa_index) |
| 649 | { |
| 650 | return (pool_elt_at_index (ipsec_sa_pool, sa_index)); |
| 651 | } |
| 652 | |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 653 | #endif /* __IPSEC_SPD_SA_H__ */ |
| 654 | |
| 655 | /* |
| 656 | * fd.io coding-style-patch-verification: ON |
| 657 | * |
| 658 | * Local Variables: |
| 659 | * eval: (c-set-style "gnu") |
| 660 | * End: |
| 661 | */ |