blob: c877139ba122cd28dc549dc029d617c2884b9ded [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Monroya10f62b2016-11-25 13:36:12 +000015#ifndef __IPSEC_H__
16#define __IPSEC_H__
17
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010018#include <vnet/ip/ip.h>
19#include <vnet/feature/feature.h>
20
Klement Sekera4f10db32018-11-12 14:32:19 +010021#include <openssl/hmac.h>
22#include <openssl/rand.h>
23#include <openssl/evp.h>
24
25#include <vppinfra/types.h>
26#include <vppinfra/cache.h>
27
Neale Ranns999c8ee2019-02-01 03:31:24 -080028#include <vnet/ipsec/ipsec_spd.h>
29#include <vnet/ipsec/ipsec_spd_policy.h>
30#include <vnet/ipsec/ipsec_sa.h>
31#include <vnet/ipsec/ipsec_if.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
Klement Sekerab4d30532018-11-08 13:00:02 +010033typedef clib_error_t *(*add_del_sa_sess_cb_t) (u32 sa_index, u8 is_add);
34typedef clib_error_t *(*check_support_cb_t) (ipsec_sa_t * sa);
35
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070036typedef struct
37{
Klement Sekerab4d30532018-11-08 13:00:02 +010038 u8 *name;
39 /* add/del callback */
40 add_del_sa_sess_cb_t add_del_sa_sess_cb;
41 /* check support function */
42 check_support_cb_t check_support_cb;
43 u32 ah4_encrypt_node_index;
44 u32 ah4_decrypt_node_index;
45 u32 ah4_encrypt_next_index;
46 u32 ah4_decrypt_next_index;
47 u32 ah6_encrypt_node_index;
48 u32 ah6_decrypt_node_index;
49 u32 ah6_encrypt_next_index;
50 u32 ah6_decrypt_next_index;
51} ipsec_ah_backend_t;
52
53typedef struct
54{
55 u8 *name;
56 /* add/del callback */
57 add_del_sa_sess_cb_t add_del_sa_sess_cb;
58 /* check support function */
59 check_support_cb_t check_support_cb;
60 u32 esp4_encrypt_node_index;
61 u32 esp4_decrypt_node_index;
62 u32 esp4_encrypt_next_index;
63 u32 esp4_decrypt_next_index;
64 u32 esp6_encrypt_node_index;
65 u32 esp6_decrypt_node_index;
66 u32 esp6_encrypt_next_index;
67 u32 esp6_decrypt_next_index;
68} ipsec_esp_backend_t;
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000069
70typedef struct
71{
Klement Sekera4f10db32018-11-12 14:32:19 +010072 const EVP_CIPHER *type;
73 u8 iv_size;
74 u8 block_size;
75} ipsec_proto_main_crypto_alg_t;
76
77typedef struct
78{
79 const EVP_MD *md;
80 u8 trunc_size;
81} ipsec_proto_main_integ_alg_t;
82
83typedef struct
84{
85 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
86#if OPENSSL_VERSION_NUMBER >= 0x10100000L
87 EVP_CIPHER_CTX *encrypt_ctx;
88#else
89 EVP_CIPHER_CTX encrypt_ctx;
90#endif
91 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
92#if OPENSSL_VERSION_NUMBER >= 0x10100000L
93 EVP_CIPHER_CTX *decrypt_ctx;
94#else
95 EVP_CIPHER_CTX decrypt_ctx;
96#endif
97 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
98#if OPENSSL_VERSION_NUMBER >= 0x10100000L
99 HMAC_CTX *hmac_ctx;
100#else
101 HMAC_CTX hmac_ctx;
102#endif
103 ipsec_crypto_alg_t last_encrypt_alg;
104 ipsec_crypto_alg_t last_decrypt_alg;
105 ipsec_integ_alg_t last_integ_alg;
106} ipsec_proto_main_per_thread_data_t;
107
108typedef struct
109{
110 ipsec_proto_main_crypto_alg_t *ipsec_proto_main_crypto_algs;
111 ipsec_proto_main_integ_alg_t *ipsec_proto_main_integ_algs;
112 ipsec_proto_main_per_thread_data_t *per_thread_data;
113} ipsec_proto_main_t;
114
115extern ipsec_proto_main_t ipsec_proto_main;
116
117typedef struct
118{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 /* pool of tunnel instances */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700120 ipsec_spd_t *spds;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800121 /* Pool of security associations */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700122 ipsec_sa_t *sad;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800123 /* pool of policies */
124 ipsec_policy_t *policies;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
126 /* pool of tunnel interfaces */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700127 ipsec_tunnel_if_t *tunnel_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700129 uword *tunnel_index_by_key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
131 /* convenience */
132 vlib_main_t *vlib_main;
133 vnet_main_t *vnet_main;
134
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 /* hashes */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700136 uword *spd_index_by_spd_id;
137 uword *spd_index_by_sw_if_index;
138 uword *sa_index_by_sa_id;
139 uword *ipsec_if_pool_index_by_key;
Matthew Smith8e1039a2018-04-12 07:32:56 -0500140 uword *ipsec_if_real_dev_by_show_dev;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700142 /* node indices */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 u32 error_drop_node_index;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200144 u32 esp4_encrypt_node_index;
145 u32 esp4_decrypt_node_index;
146 u32 ah4_encrypt_node_index;
147 u32 ah4_decrypt_node_index;
148 u32 esp6_encrypt_node_index;
149 u32 esp6_decrypt_node_index;
150 u32 ah6_encrypt_node_index;
151 u32 ah6_decrypt_node_index;
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700152 /* next node indices */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200153 u32 esp4_encrypt_next_index;
154 u32 esp4_decrypt_next_index;
155 u32 ah4_encrypt_next_index;
156 u32 ah4_decrypt_next_index;
157 u32 esp6_encrypt_next_index;
158 u32 esp6_decrypt_next_index;
159 u32 ah6_encrypt_next_index;
160 u32 ah6_decrypt_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Klement Sekerab4d30532018-11-08 13:00:02 +0100162 /* pool of ah backends */
163 ipsec_ah_backend_t *ah_backends;
164 /* pool of esp backends */
165 ipsec_esp_backend_t *esp_backends;
166 /* index of current ah backend */
167 u32 ah_current_backend;
168 /* index of current esp backend */
169 u32 esp_current_backend;
170 /* index of default ah backend */
171 u32 ah_default_backend;
172 /* index of default esp backend */
173 u32 esp_default_backend;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174} ipsec_main_t;
175
Dave Wallace71612d62017-10-24 01:32:41 -0400176extern ipsec_main_t ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
Klement Sekerab4d30532018-11-08 13:00:02 +0100178clib_error_t *ipsec_add_del_sa_sess_cb (ipsec_main_t * im, u32 sa_index,
179 u8 is_add);
180
181clib_error_t *ipsec_check_support_cb (ipsec_main_t * im, ipsec_sa_t * sa);
182
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200183extern vlib_node_registration_t esp4_encrypt_node;
184extern vlib_node_registration_t esp4_decrypt_node;
185extern vlib_node_registration_t ah4_encrypt_node;
186extern vlib_node_registration_t ah4_decrypt_node;
187extern vlib_node_registration_t esp6_encrypt_node;
188extern vlib_node_registration_t esp6_decrypt_node;
189extern vlib_node_registration_t ah6_encrypt_node;
190extern vlib_node_registration_t ah6_decrypt_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100191extern vlib_node_registration_t ipsec_if_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193/*
194 * functions
195 */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700196u8 *format_ipsec_replay_window (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198/*
199 * inline functions
200 */
201
Matus Fabian08a6f012016-11-15 06:08:51 -0800202static_always_inline u32
203get_next_output_feature_node_index (vlib_buffer_t * b,
204 vlib_node_runtime_t * nr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205{
Matus Fabian08a6f012016-11-15 06:08:51 -0800206 u32 next;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700207 vlib_main_t *vm = vlib_get_main ();
Matus Fabian08a6f012016-11-15 06:08:51 -0800208 vlib_node_t *node = vlib_get_node (vm, nr->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Damjan Marion7d98a122018-07-19 20:42:08 +0200210 vnet_feature_next (&next, b);
Matus Fabian08a6f012016-11-15 06:08:51 -0800211 return node->next_nodes[next];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700213
Klement Sekerab4d30532018-11-08 13:00:02 +0100214u32 ipsec_register_ah_backend (vlib_main_t * vm, ipsec_main_t * im,
215 const char *name,
216 const char *ah4_encrypt_node_name,
217 const char *ah4_decrypt_node_name,
218 const char *ah6_encrypt_node_name,
219 const char *ah6_decrypt_node_name,
220 check_support_cb_t ah_check_support_cb,
221 add_del_sa_sess_cb_t ah_add_del_sa_sess_cb);
222
223u32 ipsec_register_esp_backend (vlib_main_t * vm, ipsec_main_t * im,
224 const char *name,
225 const char *esp4_encrypt_node_name,
226 const char *esp4_decrypt_node_name,
227 const char *esp6_encrypt_node_name,
228 const char *esp6_decrypt_node_name,
229 check_support_cb_t esp_check_support_cb,
230 add_del_sa_sess_cb_t esp_add_del_sa_sess_cb);
231
232int ipsec_select_ah_backend (ipsec_main_t * im, u32 ah_backend_idx);
233int ipsec_select_esp_backend (ipsec_main_t * im, u32 esp_backend_idx);
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000234#endif /* __IPSEC_H__ */
235
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700236/*
237 * fd.io coding-style-patch-verification: ON
238 *
239 * Local Variables:
240 * eval: (c-set-style "gnu")
241 * End:
242 */