blob: 969b5d142eef32c999044efa22a35364bb0e3e7e [file] [log] [blame]
Neale Ranns999c8ee2019-02-01 03:31:24 -08001/*
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>
19#include <vnet/ip/ip.h>
Neale Ranns8d7c5022019-02-06 01:41:05 -080020#include <vnet/fib/fib_node.h>
Neale Ranns999c8ee2019-02-01 03:31:24 -080021
Damjan Marion1f4e1cb2019-03-28 19:19:31 +010022#define IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE (64)
23
Neale Ranns999c8ee2019-02-01 03:31:24 -080024#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
38typedef enum
39{
40#define _(v, f, s) IPSEC_CRYPTO_ALG_##f = v,
41 foreach_ipsec_crypto_alg
42#undef _
43 IPSEC_CRYPTO_N_ALG,
44} ipsec_crypto_alg_t;
45
Neale Ranns47feb112019-04-11 15:14:07 +000046#define IPSEC_CRYPTO_ALG_IS_GCM(_alg) \
47 (((_alg == IPSEC_CRYPTO_ALG_AES_GCM_128) || \
48 (_alg == IPSEC_CRYPTO_ALG_AES_GCM_192) || \
49 (_alg == IPSEC_CRYPTO_ALG_AES_GCM_256)))
50
Neale Ranns999c8ee2019-02-01 03:31:24 -080051#define foreach_ipsec_integ_alg \
52 _ (0, NONE, "none") \
53 _ (1, MD5_96, "md5-96") /* RFC2403 */ \
54 _ (2, SHA1_96, "sha1-96") /* RFC2404 */ \
55 _ (3, SHA_256_96, "sha-256-96") /* draft-ietf-ipsec-ciph-sha-256-00 */ \
56 _ (4, SHA_256_128, "sha-256-128") /* RFC4868 */ \
57 _ (5, SHA_384_192, "sha-384-192") /* RFC4868 */ \
58 _ (6, SHA_512_256, "sha-512-256") /* RFC4868 */
59
60typedef enum
61{
62#define _(v, f, s) IPSEC_INTEG_ALG_##f = v,
63 foreach_ipsec_integ_alg
64#undef _
65 IPSEC_INTEG_N_ALG,
66} ipsec_integ_alg_t;
67
68typedef enum
69{
70 IPSEC_PROTOCOL_AH = 0,
71 IPSEC_PROTOCOL_ESP = 1
72} ipsec_protocol_t;
73
Neale Ranns8d7c5022019-02-06 01:41:05 -080074#define IPSEC_N_PROTOCOLS (IPSEC_PROTOCOL_ESP+1)
75
76#define IPSEC_KEY_MAX_LEN 128
77typedef struct ipsec_key_t_
78{
79 u8 len;
80 u8 data[IPSEC_KEY_MAX_LEN];
81} ipsec_key_t;
82
83/*
84 * Enable extended sequence numbers
85 * Enable Anti-replay
86 * IPsec tunnel mode if non-zero, else transport mode
87 * IPsec tunnel mode is IPv6 if non-zero,
88 * else IPv4 tunnel only valid if is_tunnel is non-zero
89 * enable UDP encapsulation for NAT traversal
90 */
91#define foreach_ipsec_sa_flags \
92 _ (0, NONE, "none") \
Damjan Marion1e3aa5e2019-03-28 10:58:59 +010093 _ (1, USE_ESN, "esn") \
Neale Ranns8d7c5022019-02-06 01:41:05 -080094 _ (2, USE_ANTI_REPLAY, "anti-replay") \
95 _ (4, IS_TUNNEL, "tunnel") \
96 _ (8, IS_TUNNEL_V6, "tunnel-v6") \
97 _ (16, UDP_ENCAP, "udp-encap") \
Neale Rannse524d452019-02-19 15:22:46 +000098 _ (32, IS_GRE, "GRE") \
Neale Ranns2b5ba952019-04-02 10:15:40 +000099 _ (64, IS_INBOUND, "inboud") \
Neale Ranns47feb112019-04-11 15:14:07 +0000100 _ (128, IS_AEAD, "aead") \
Neale Ranns8d7c5022019-02-06 01:41:05 -0800101
102typedef enum ipsec_sad_flags_t_
103{
104#define _(v, f, s) IPSEC_SA_FLAG_##f = v,
105 foreach_ipsec_sa_flags
106#undef _
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100107} __clib_packed ipsec_sa_flags_t;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100108
109STATIC_ASSERT (sizeof (ipsec_sa_flags_t) == 1, "IPSEC SA flags > 1 byte");
Neale Ranns8d7c5022019-02-06 01:41:05 -0800110
Neale Ranns999c8ee2019-02-01 03:31:24 -0800111typedef struct
112{
Damjan Mariond709cbc2019-03-26 13:16:42 +0100113 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800114
Damjan Mariond709cbc2019-03-26 13:16:42 +0100115 /* flags */
116 ipsec_sa_flags_t flags;
117
Damjan Marionb966e8b2019-03-20 16:07:09 +0100118 u8 crypto_iv_size;
119 u8 crypto_block_size;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200120 u8 integ_icv_size;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100121 u32 spi;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800122 u32 seq;
123 u32 seq_hi;
124 u32 last_seq;
125 u32 last_seq_hi;
126 u64 replay_window;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100127
Damjan Mariond1bed682019-04-24 15:20:35 +0200128 vnet_crypto_key_index_t crypto_key_index;
129 vnet_crypto_key_index_t integ_key_index;
130 vnet_crypto_op_id_t crypto_enc_op_id:16;
131 vnet_crypto_op_id_t crypto_dec_op_id:16;
132 vnet_crypto_op_id_t integ_op_id:16;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100133
134 dpo_id_t dpo[IPSEC_N_PROTOCOLS];
135
136 /* data accessed by dataplane code should be above this comment */
137 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
138
139 union
140 {
141 ip4_header_t ip4_hdr;
142 ip6_header_t ip6_hdr;
143 };
144 udp_header_t udp_hdr;
145
146
147 fib_node_t node;
148 u32 id;
149 u32 stat_index;
150 ipsec_protocol_t protocol;
151
152 ipsec_crypto_alg_t crypto_alg;
153 ipsec_key_t crypto_key;
Damjan Mariond1bed682019-04-24 15:20:35 +0200154 vnet_crypto_alg_t crypto_calg;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100155
156 ipsec_integ_alg_t integ_alg;
157 ipsec_key_t integ_key;
Damjan Mariond1bed682019-04-24 15:20:35 +0200158 vnet_crypto_alg_t integ_calg;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100159
160 ip46_address_t tunnel_src_addr;
161 ip46_address_t tunnel_dst_addr;
162
163 fib_node_index_t fib_entry_index;
164 u32 sibling;
165
166 u32 tx_fib_index;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100167
Neale Ranns80f6fd52019-04-16 02:41:34 +0000168 /* Salt used in GCM modes - stored in network byte order */
169 u32 salt;
Damjan Mariond97918e2019-04-25 18:28:31 +0200170 u64 gcm_iv_counter;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800171} ipsec_sa_t;
172
Damjan Mariond709cbc2019-03-26 13:16:42 +0100173STATIC_ASSERT_OFFSET_OF (ipsec_sa_t, cacheline1, CLIB_CACHE_LINE_BYTES);
174
175#define _(a,v,s) \
176 always_inline int \
177 ipsec_sa_is_set_##v (const ipsec_sa_t *sa) { \
178 return (sa->flags & IPSEC_SA_FLAG_##v); \
179 }
180foreach_ipsec_sa_flags
181#undef _
182#define _(a,v,s) \
183 always_inline int \
184 ipsec_sa_set_##v (ipsec_sa_t *sa) { \
185 return (sa->flags |= IPSEC_SA_FLAG_##v); \
186 }
187 foreach_ipsec_sa_flags
188#undef _
Neale Rannseba31ec2019-02-17 18:04:27 +0000189/**
190 * @brief
191 * SA packet & bytes counters
192 */
193extern vlib_combined_counter_main_t ipsec_sa_counters;
194
Neale Ranns8d7c5022019-02-06 01:41:05 -0800195extern void ipsec_mk_key (ipsec_key_t * key, const u8 * data, u8 len);
196
197extern int ipsec_sa_add (u32 id,
198 u32 spi,
199 ipsec_protocol_t proto,
200 ipsec_crypto_alg_t crypto_alg,
201 const ipsec_key_t * ck,
202 ipsec_integ_alg_t integ_alg,
203 const ipsec_key_t * ik,
204 ipsec_sa_flags_t flags,
205 u32 tx_table_id,
Neale Ranns47feb112019-04-11 15:14:07 +0000206 u32 salt,
Neale Ranns8d7c5022019-02-06 01:41:05 -0800207 const ip46_address_t * tunnel_src_addr,
208 const ip46_address_t * tunnel_dst_addr,
209 u32 * sa_index);
210extern u32 ipsec_sa_del (u32 id);
Damjan Marionb966e8b2019-03-20 16:07:09 +0100211extern void ipsec_sa_set_crypto_alg (ipsec_sa_t * sa,
212 ipsec_crypto_alg_t crypto_alg);
213extern void ipsec_sa_set_integ_alg (ipsec_sa_t * sa,
214 ipsec_integ_alg_t integ_alg);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800215
Neale Ranns999c8ee2019-02-01 03:31:24 -0800216extern u8 ipsec_is_sa_used (u32 sa_index);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800217extern u32 ipsec_get_sa_index_by_sa_id (u32 sa_id);
218
Neale Rannsb4cfd552019-02-13 02:08:06 -0800219typedef walk_rc_t (*ipsec_sa_walk_cb_t) (ipsec_sa_t * sa, void *ctx);
220extern void ipsec_sa_walk (ipsec_sa_walk_cb_t cd, void *ctx);
221
Neale Ranns999c8ee2019-02-01 03:31:24 -0800222extern u8 *format_ipsec_crypto_alg (u8 * s, va_list * args);
223extern u8 *format_ipsec_integ_alg (u8 * s, va_list * args);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800224extern u8 *format_ipsec_sa (u8 * s, va_list * args);
225extern u8 *format_ipsec_key (u8 * s, va_list * args);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800226extern uword unformat_ipsec_crypto_alg (unformat_input_t * input,
227 va_list * args);
228extern uword unformat_ipsec_integ_alg (unformat_input_t * input,
229 va_list * args);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800230extern uword unformat_ipsec_key (unformat_input_t * input, va_list * args);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800231
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100232always_inline int
233ipsec_sa_anti_replay_check (ipsec_sa_t * sa, u32 * seqp)
234{
235 u32 seq, diff, tl, th;
236 if ((sa->flags & IPSEC_SA_FLAG_USE_ANTI_REPLAY) == 0)
237 return 0;
238
239 seq = clib_net_to_host_u32 (*seqp);
240
Damjan Marion1e3aa5e2019-03-28 10:58:59 +0100241 if ((sa->flags & IPSEC_SA_FLAG_USE_ESN) == 0)
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100242 {
243
244 if (PREDICT_TRUE (seq > sa->last_seq))
245 return 0;
246
247 diff = sa->last_seq - seq;
248
249 if (IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE > diff)
250 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
251 else
252 return 1;
253
254 return 0;
255 }
256
257 tl = sa->last_seq;
258 th = sa->last_seq_hi;
259 diff = tl - seq;
260
261 if (PREDICT_TRUE (tl >= (IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE - 1)))
262 {
263 if (seq >= (tl - IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE + 1))
264 {
265 sa->seq_hi = th;
266 if (seq <= tl)
267 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
268 else
269 return 0;
270 }
271 else
272 {
273 sa->seq_hi = th + 1;
274 return 0;
275 }
276 }
277 else
278 {
279 if (seq >= (tl - IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE + 1))
280 {
281 sa->seq_hi = th - 1;
282 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
283 }
284 else
285 {
286 sa->seq_hi = th;
287 if (seq <= tl)
288 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
289 else
290 return 0;
291 }
292 }
293
294 return 0;
295}
296
297always_inline void
Neale Ranns3fb65be2019-05-14 07:01:01 -0700298ipsec_sa_anti_replay_advance (ipsec_sa_t * sa, u32 seqp)
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100299{
300 u32 pos, seq;
301 if (PREDICT_TRUE (sa->flags & IPSEC_SA_FLAG_USE_ANTI_REPLAY) == 0)
302 return;
303
Neale Ranns3fb65be2019-05-14 07:01:01 -0700304 seq = clib_host_to_net_u32 (seqp);
Damjan Marion1e3aa5e2019-03-28 10:58:59 +0100305 if (PREDICT_TRUE (sa->flags & IPSEC_SA_FLAG_USE_ESN))
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100306 {
307 int wrap = sa->seq_hi - sa->last_seq_hi;
308
309 if (wrap == 0 && seq > sa->last_seq)
310 {
311 pos = seq - sa->last_seq;
312 if (pos < IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE)
313 sa->replay_window = ((sa->replay_window) << pos) | 1;
314 else
315 sa->replay_window = 1;
316 sa->last_seq = seq;
317 }
318 else if (wrap > 0)
319 {
320 pos = ~seq + sa->last_seq + 1;
321 if (pos < IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE)
322 sa->replay_window = ((sa->replay_window) << pos) | 1;
323 else
324 sa->replay_window = 1;
325 sa->last_seq = seq;
326 sa->last_seq_hi = sa->seq_hi;
327 }
328 else if (wrap < 0)
329 {
330 pos = ~seq + sa->last_seq + 1;
331 sa->replay_window |= (1ULL << pos);
332 }
333 else
334 {
335 pos = sa->last_seq - seq;
336 sa->replay_window |= (1ULL << pos);
337 }
338 }
339 else
340 {
341 if (seq > sa->last_seq)
342 {
343 pos = seq - sa->last_seq;
344 if (pos < IPSEC_SA_ANTI_REPLAY_WINDOW_SIZE)
345 sa->replay_window = ((sa->replay_window) << pos) | 1;
346 else
347 sa->replay_window = 1;
348 sa->last_seq = seq;
349 }
350 else
351 {
352 pos = sa->last_seq - seq;
353 sa->replay_window |= (1ULL << pos);
354 }
355 }
356}
357
Neale Ranns999c8ee2019-02-01 03:31:24 -0800358#endif /* __IPSEC_SPD_SA_H__ */
359
360/*
361 * fd.io coding-style-patch-verification: ON
362 *
363 * Local Variables:
364 * eval: (c-set-style "gnu")
365 * End:
366 */