blob: d154b519ecb9f158f7d75afe36e24dc45cff9d05 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
Neale Ranns999c8ee2019-02-01 03:31:24 -08002 * ipsec.c : IPSEC module functions
Ed Warnickecb9cada2015-12-08 15:45:58 -07003 *
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#include <vnet/interface.h>
Florin Corasb040f982020-10-20 14:59:43 -070022#include <vnet/udp/udp_local.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <vnet/ipsec/ipsec.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000025#include <vnet/ipsec/esp.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080026#include <vnet/ipsec/ah.h>
Zachary Leafb2d36782021-07-27 05:18:47 -050027#include <vnet/ipsec/ipsec_tun.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000028
Dave Wallace71612d62017-10-24 01:32:41 -040029ipsec_main_t ipsec_main;
Fan Zhangf5395782020-04-29 14:00:03 +010030esp_async_post_next_t esp_encrypt_async_next;
31esp_async_post_next_t esp_decrypt_async_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
33static clib_error_t *
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010034ipsec_check_ah_support (ipsec_sa_t * sa)
35{
Neale Rannsece2ae02019-06-21 12:44:11 +000036 ipsec_main_t *im = &ipsec_main;
37
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010038 if (sa->integ_alg == IPSEC_INTEG_ALG_NONE)
39 return clib_error_return (0, "unsupported none integ-alg");
Neale Rannsece2ae02019-06-21 12:44:11 +000040
41 if (!vnet_crypto_is_set_handler (im->integ_algs[sa->integ_alg].alg))
42 return clib_error_return (0, "No crypto engine support for %U",
43 format_ipsec_integ_alg, sa->integ_alg);
44
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010045 return 0;
46}
47
48static clib_error_t *
49ipsec_check_esp_support (ipsec_sa_t * sa)
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000050{
Neale Rannsece2ae02019-06-21 12:44:11 +000051 ipsec_main_t *im = &ipsec_main;
52
53 if (IPSEC_INTEG_ALG_NONE != sa->integ_alg)
54 {
55 if (!vnet_crypto_is_set_handler (im->integ_algs[sa->integ_alg].alg))
56 return clib_error_return (0, "No crypto engine support for %U",
57 format_ipsec_integ_alg, sa->integ_alg);
58 }
59 if (IPSEC_CRYPTO_ALG_NONE != sa->crypto_alg)
60 {
61 if (!vnet_crypto_is_set_handler (im->crypto_algs[sa->crypto_alg].alg))
62 return clib_error_return (0, "No crypto engine support for %U",
63 format_ipsec_crypto_alg, sa->crypto_alg);
64 }
65
66 return (0);
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000067}
68
Klement Sekerab4d30532018-11-08 13:00:02 +010069clib_error_t *
70ipsec_add_del_sa_sess_cb (ipsec_main_t * im, u32 sa_index, u8 is_add)
71{
72 ipsec_ah_backend_t *ah =
73 pool_elt_at_index (im->ah_backends, im->ah_current_backend);
74 if (ah->add_del_sa_sess_cb)
75 {
76 clib_error_t *err = ah->add_del_sa_sess_cb (sa_index, is_add);
77 if (err)
78 return err;
79 }
80 ipsec_esp_backend_t *esp =
81 pool_elt_at_index (im->esp_backends, im->esp_current_backend);
82 if (esp->add_del_sa_sess_cb)
83 {
84 clib_error_t *err = esp->add_del_sa_sess_cb (sa_index, is_add);
85 if (err)
86 return err;
87 }
88 return 0;
89}
90
91clib_error_t *
92ipsec_check_support_cb (ipsec_main_t * im, ipsec_sa_t * sa)
93{
94 clib_error_t *error = 0;
Matthew Smith461caa52018-12-21 11:53:16 -060095
96 if (PREDICT_FALSE (sa->protocol == IPSEC_PROTOCOL_AH))
97 {
98 ipsec_ah_backend_t *ah =
99 pool_elt_at_index (im->ah_backends, im->ah_current_backend);
100 ASSERT (ah->check_support_cb);
101 error = ah->check_support_cb (sa);
102 }
103 else
104 {
105 ipsec_esp_backend_t *esp =
106 pool_elt_at_index (im->esp_backends, im->esp_current_backend);
107 ASSERT (esp->check_support_cb);
108 error = esp->check_support_cb (sa);
109 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100110 return error;
111}
112
113
114static void
115ipsec_add_node (vlib_main_t * vm, const char *node_name,
116 const char *prev_node_name, u32 * out_node_index,
117 u32 * out_next_index)
118{
119 vlib_node_t *prev_node, *node;
120 prev_node = vlib_get_node_by_name (vm, (u8 *) prev_node_name);
121 ASSERT (prev_node);
122 node = vlib_get_node_by_name (vm, (u8 *) node_name);
123 ASSERT (node);
124 *out_node_index = node->index;
125 *out_next_index = vlib_node_add_next (vm, prev_node->index, node->index);
126}
127
Neale Rannsabc56602020-04-01 09:45:23 +0000128void
Neale Rannsabc56602020-04-01 09:45:23 +0000129ipsec_unregister_udp_port (u16 port)
130{
131 ipsec_main_t *im = &ipsec_main;
132 u32 n_regs;
133 uword *p;
134
135 p = hash_get (im->udp_port_registrations, port);
136
137 ASSERT (p);
138
139 n_regs = p[0];
140
141 if (0 == --n_regs)
142 {
143 udp_unregister_dst_port (vlib_get_main (), port, 1);
144 hash_unset (im->udp_port_registrations, port);
145 }
146 else
147 {
148 hash_unset (im->udp_port_registrations, port);
149 hash_set (im->udp_port_registrations, port, n_regs);
150 }
151}
152
153void
154ipsec_register_udp_port (u16 port)
155{
156 ipsec_main_t *im = &ipsec_main;
157 u32 n_regs;
158 uword *p;
159
160 p = hash_get (im->udp_port_registrations, port);
161
162 n_regs = (p ? p[0] : 0);
163
164 if (0 == n_regs++)
165 udp_register_dst_port (vlib_get_main (), port,
166 ipsec4_tun_input_node.index, 1);
167
168 hash_unset (im->udp_port_registrations, port);
169 hash_set (im->udp_port_registrations, port, n_regs);
170}
171
Klement Sekerab4d30532018-11-08 13:00:02 +0100172u32
173ipsec_register_ah_backend (vlib_main_t * vm, ipsec_main_t * im,
174 const char *name,
175 const char *ah4_encrypt_node_name,
176 const char *ah4_decrypt_node_name,
177 const char *ah6_encrypt_node_name,
178 const char *ah6_decrypt_node_name,
179 check_support_cb_t ah_check_support_cb,
180 add_del_sa_sess_cb_t ah_add_del_sa_sess_cb)
181{
182 ipsec_ah_backend_t *b;
183 pool_get (im->ah_backends, b);
Kingwel Xie561d1ca2019-03-05 22:56:17 -0500184 b->name = format (0, "%s%c", name, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100185
Pierre Pfister057b3562018-12-10 17:01:01 +0100186 ipsec_add_node (vm, ah4_encrypt_node_name, "ipsec4-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100187 &b->ah4_encrypt_node_index, &b->ah4_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100188 ipsec_add_node (vm, ah4_decrypt_node_name, "ipsec4-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100189 &b->ah4_decrypt_node_index, &b->ah4_decrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100190 ipsec_add_node (vm, ah6_encrypt_node_name, "ipsec6-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100191 &b->ah6_encrypt_node_index, &b->ah6_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100192 ipsec_add_node (vm, ah6_decrypt_node_name, "ipsec6-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100193 &b->ah6_decrypt_node_index, &b->ah6_decrypt_next_index);
194
195 b->check_support_cb = ah_check_support_cb;
196 b->add_del_sa_sess_cb = ah_add_del_sa_sess_cb;
197 return b - im->ah_backends;
198}
199
200u32
Neale Ranns4a58e492020-12-21 13:19:10 +0000201ipsec_register_esp_backend (
202 vlib_main_t *vm, ipsec_main_t *im, const char *name,
203 const char *esp4_encrypt_node_name, const char *esp4_encrypt_node_tun_name,
204 const char *esp4_decrypt_node_name, const char *esp4_decrypt_tun_node_name,
205 const char *esp6_encrypt_node_name, const char *esp6_encrypt_node_tun_name,
206 const char *esp6_decrypt_node_name, const char *esp6_decrypt_tun_node_name,
207 const char *esp_mpls_encrypt_node_tun_name,
208 check_support_cb_t esp_check_support_cb,
209 add_del_sa_sess_cb_t esp_add_del_sa_sess_cb,
210 enable_disable_cb_t enable_disable_cb)
Klement Sekerab4d30532018-11-08 13:00:02 +0100211{
212 ipsec_esp_backend_t *b;
Neale Rannse8915fc2019-04-23 20:57:55 -0400213
Klement Sekerab4d30532018-11-08 13:00:02 +0100214 pool_get (im->esp_backends, b);
Kingwel Xie561d1ca2019-03-05 22:56:17 -0500215 b->name = format (0, "%s%c", name, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100216
Pierre Pfister057b3562018-12-10 17:01:01 +0100217 ipsec_add_node (vm, esp4_encrypt_node_name, "ipsec4-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100218 &b->esp4_encrypt_node_index, &b->esp4_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100219 ipsec_add_node (vm, esp4_decrypt_node_name, "ipsec4-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100220 &b->esp4_decrypt_node_index, &b->esp4_decrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100221 ipsec_add_node (vm, esp6_encrypt_node_name, "ipsec6-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100222 &b->esp6_encrypt_node_index, &b->esp6_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100223 ipsec_add_node (vm, esp6_decrypt_node_name, "ipsec6-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100224 &b->esp6_decrypt_node_index, &b->esp6_decrypt_next_index);
Neale Ranns7ec120e2020-01-21 04:58:02 +0000225 ipsec_add_node (vm, esp4_decrypt_tun_node_name, "ipsec4-tun-input",
226 &b->esp4_decrypt_tun_node_index,
227 &b->esp4_decrypt_tun_next_index);
228 ipsec_add_node (vm, esp6_decrypt_tun_node_name, "ipsec6-tun-input",
229 &b->esp6_decrypt_tun_node_index,
230 &b->esp6_decrypt_tun_next_index);
Klement Sekerab4d30532018-11-08 13:00:02 +0100231
Neale Ranns4ec36c52020-03-31 09:21:29 -0400232 b->esp6_encrypt_tun_node_index =
233 vlib_get_node_by_name (vm, (u8 *) esp6_encrypt_node_tun_name)->index;
Neale Ranns4a58e492020-12-21 13:19:10 +0000234 b->esp_mpls_encrypt_tun_node_index =
235 vlib_get_node_by_name (vm, (u8 *) esp_mpls_encrypt_node_tun_name)->index;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400236 b->esp4_encrypt_tun_node_index =
237 vlib_get_node_by_name (vm, (u8 *) esp4_encrypt_node_tun_name)->index;
Neale Rannse8915fc2019-04-23 20:57:55 -0400238
Klement Sekerab4d30532018-11-08 13:00:02 +0100239 b->check_support_cb = esp_check_support_cb;
240 b->add_del_sa_sess_cb = esp_add_del_sa_sess_cb;
Fan Zhangf5395782020-04-29 14:00:03 +0100241 b->enable_disable_cb = enable_disable_cb;
242
Klement Sekerab4d30532018-11-08 13:00:02 +0100243 return b - im->esp_backends;
244}
245
Neale Rannse8915fc2019-04-23 20:57:55 -0400246clib_error_t *
247ipsec_rsc_in_use (ipsec_main_t * im)
Neale Rannsb4cfd552019-02-13 02:08:06 -0800248{
Neale Rannse8915fc2019-04-23 20:57:55 -0400249 /* return an error is crypto resource are in use */
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000250 if (pool_elts (ipsec_sa_pool) > 0)
251 return clib_error_return (0, "%d SA entries configured",
252 pool_elts (ipsec_sa_pool));
Neale Rannsb4cfd552019-02-13 02:08:06 -0800253
Neale Rannse8915fc2019-04-23 20:57:55 -0400254 return (NULL);
Neale Rannsb4cfd552019-02-13 02:08:06 -0800255}
256
Klement Sekerab4d30532018-11-08 13:00:02 +0100257int
258ipsec_select_ah_backend (ipsec_main_t * im, u32 backend_idx)
259{
Neale Rannse8915fc2019-04-23 20:57:55 -0400260 if (ipsec_rsc_in_use (im))
261 return VNET_API_ERROR_RSRC_IN_USE;
262
263 if (pool_is_free_index (im->ah_backends, backend_idx))
264 return VNET_API_ERROR_INVALID_VALUE;
265
Klement Sekerab4d30532018-11-08 13:00:02 +0100266 ipsec_ah_backend_t *b = pool_elt_at_index (im->ah_backends, backend_idx);
267 im->ah_current_backend = backend_idx;
268 im->ah4_encrypt_node_index = b->ah4_encrypt_node_index;
269 im->ah4_decrypt_node_index = b->ah4_decrypt_node_index;
270 im->ah4_encrypt_next_index = b->ah4_encrypt_next_index;
271 im->ah4_decrypt_next_index = b->ah4_decrypt_next_index;
272 im->ah6_encrypt_node_index = b->ah6_encrypt_node_index;
273 im->ah6_decrypt_node_index = b->ah6_decrypt_node_index;
274 im->ah6_encrypt_next_index = b->ah6_encrypt_next_index;
275 im->ah6_decrypt_next_index = b->ah6_decrypt_next_index;
Neale Rannsb4cfd552019-02-13 02:08:06 -0800276
Klement Sekerab4d30532018-11-08 13:00:02 +0100277 return 0;
278}
279
280int
281ipsec_select_esp_backend (ipsec_main_t * im, u32 backend_idx)
282{
Neale Rannse8915fc2019-04-23 20:57:55 -0400283 if (ipsec_rsc_in_use (im))
284 return VNET_API_ERROR_RSRC_IN_USE;
285
286 if (pool_is_free_index (im->esp_backends, backend_idx))
287 return VNET_API_ERROR_INVALID_VALUE;
288
Fan Zhangf5395782020-04-29 14:00:03 +0100289 /* disable current backend */
290 if (im->esp_current_backend != ~0)
291 {
292 ipsec_esp_backend_t *cb = pool_elt_at_index (im->esp_backends,
293 im->esp_current_backend);
294 if (cb->enable_disable_cb)
295 {
296 if ((cb->enable_disable_cb) (0) != 0)
297 return -1;
298 }
299 }
300
Klement Sekerab4d30532018-11-08 13:00:02 +0100301 ipsec_esp_backend_t *b = pool_elt_at_index (im->esp_backends, backend_idx);
302 im->esp_current_backend = backend_idx;
303 im->esp4_encrypt_node_index = b->esp4_encrypt_node_index;
304 im->esp4_decrypt_node_index = b->esp4_decrypt_node_index;
305 im->esp4_encrypt_next_index = b->esp4_encrypt_next_index;
306 im->esp4_decrypt_next_index = b->esp4_decrypt_next_index;
307 im->esp6_encrypt_node_index = b->esp6_encrypt_node_index;
308 im->esp6_decrypt_node_index = b->esp6_decrypt_node_index;
309 im->esp6_encrypt_next_index = b->esp6_encrypt_next_index;
310 im->esp6_decrypt_next_index = b->esp6_decrypt_next_index;
Neale Ranns7ec120e2020-01-21 04:58:02 +0000311 im->esp4_decrypt_tun_node_index = b->esp4_decrypt_tun_node_index;
312 im->esp4_decrypt_tun_next_index = b->esp4_decrypt_tun_next_index;
313 im->esp6_decrypt_tun_node_index = b->esp6_decrypt_tun_node_index;
314 im->esp6_decrypt_tun_next_index = b->esp6_decrypt_tun_next_index;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400315 im->esp4_encrypt_tun_node_index = b->esp4_encrypt_tun_node_index;
316 im->esp6_encrypt_tun_node_index = b->esp6_encrypt_tun_node_index;
Neale Ranns4a58e492020-12-21 13:19:10 +0000317 im->esp_mpls_encrypt_tun_node_index = b->esp_mpls_encrypt_tun_node_index;
Neale Rannse8915fc2019-04-23 20:57:55 -0400318
Fan Zhangf5395782020-04-29 14:00:03 +0100319 if (b->enable_disable_cb)
320 {
321 if ((b->enable_disable_cb) (1) != 0)
322 return -1;
323 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100324 return 0;
325}
326
Fan Zhangf5395782020-04-29 14:00:03 +0100327void
328ipsec_set_async_mode (u32 is_enabled)
329{
330 ipsec_main_t *im = &ipsec_main;
331 ipsec_sa_t *sa;
332
Neale Rannsf16e9a52021-02-25 19:09:24 +0000333 vnet_crypto_request_async_mode (is_enabled);
Fan Zhangf5395782020-04-29 14:00:03 +0100334
335 im->async_mode = is_enabled;
336
Neale Rannsf16e9a52021-02-25 19:09:24 +0000337 /* change SA crypto op data */
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000338 pool_foreach (sa, ipsec_sa_pool)
339 {
340 sa->crypto_op_data =
Neale Rannsf16e9a52021-02-25 19:09:24 +0000341 (is_enabled ? sa->async_op_data.data : sa->sync_op_data.data);
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000342 }
Fan Zhangf5395782020-04-29 14:00:03 +0100343}
344
345static void
346crypto_engine_backend_register_post_node (vlib_main_t * vm)
347{
348 esp_async_post_next_t *eit;
349 esp_async_post_next_t *dit;
350
351 eit = &esp_encrypt_async_next;
352 eit->esp4_post_next =
353 vnet_crypto_register_post_node (vm, "esp4-encrypt-post");
354 eit->esp6_post_next =
355 vnet_crypto_register_post_node (vm, "esp6-encrypt-post");
356 eit->esp4_tun_post_next =
357 vnet_crypto_register_post_node (vm, "esp4-encrypt-tun-post");
358 eit->esp6_tun_post_next =
359 vnet_crypto_register_post_node (vm, "esp6-encrypt-tun-post");
Neale Ranns4a58e492020-12-21 13:19:10 +0000360 eit->esp_mpls_tun_post_next =
361 vnet_crypto_register_post_node (vm, "esp-mpls-encrypt-tun-post");
Fan Zhangf5395782020-04-29 14:00:03 +0100362
363 dit = &esp_decrypt_async_next;
364 dit->esp4_post_next =
365 vnet_crypto_register_post_node (vm, "esp4-decrypt-post");
366 dit->esp6_post_next =
367 vnet_crypto_register_post_node (vm, "esp6-decrypt-post");
368 dit->esp4_tun_post_next =
369 vnet_crypto_register_post_node (vm, "esp4-decrypt-tun-post");
370 dit->esp6_tun_post_next =
371 vnet_crypto_register_post_node (vm, "esp6-decrypt-tun-post");
372}
373
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000374static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375ipsec_init (vlib_main_t * vm)
376{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700377 clib_error_t *error;
378 ipsec_main_t *im = &ipsec_main;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100379 ipsec_main_crypto_alg_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
Dave Barach0dd91652019-05-05 13:34:28 -0400381 /* Backend registration requires the feature arcs to be set up */
382 if ((error = vlib_call_init_function (vm, vnet_feature_init)))
383 return (error);
384
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700385 im->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 im->vlib_main = vm;
387
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700388 im->spd_index_by_spd_id = hash_create (0, sizeof (uword));
389 im->sa_index_by_sa_id = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 im->spd_index_by_sw_if_index = hash_create (0, sizeof (uword));
391
Klement Sekerab4d30532018-11-08 13:00:02 +0100392 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700393 ASSERT (node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 im->error_drop_node_index = node->index;
395
Fan Zhangf5395782020-04-29 14:00:03 +0100396 im->ah_current_backend = ~0;
397 im->esp_current_backend = ~0;
398
Neale Rannsd1a5b2d2019-05-16 17:09:28 +0000399 u32 idx = ipsec_register_ah_backend (vm, im, "crypto engine backend",
Klement Sekerab4d30532018-11-08 13:00:02 +0100400 "ah4-encrypt",
401 "ah4-decrypt",
402 "ah6-encrypt",
403 "ah6-decrypt",
Klement Sekera4fd5a9d2019-01-30 11:11:23 +0100404 ipsec_check_ah_support,
Klement Sekerab4d30532018-11-08 13:00:02 +0100405 NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406
Klement Sekerab4d30532018-11-08 13:00:02 +0100407 im->ah_default_backend = idx;
408 int rv = ipsec_select_ah_backend (im, idx);
409 ASSERT (0 == rv);
410 (void) (rv); // avoid warning
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000411
Neale Ranns4a58e492020-12-21 13:19:10 +0000412 idx = ipsec_register_esp_backend (
413 vm, im, "crypto engine backend", "esp4-encrypt", "esp4-encrypt-tun",
414 "esp4-decrypt", "esp4-decrypt-tun", "esp6-encrypt", "esp6-encrypt-tun",
415 "esp6-decrypt", "esp6-decrypt-tun", "esp-mpls-encrypt-tun",
416 ipsec_check_esp_support, NULL, crypto_dispatch_enable_disable);
Klement Sekerab4d30532018-11-08 13:00:02 +0100417 im->esp_default_backend = idx;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800418
Klement Sekerab4d30532018-11-08 13:00:02 +0100419 rv = ipsec_select_esp_backend (im, idx);
420 ASSERT (0 == rv);
421 (void) (rv); // avoid warning
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 if ((error = vlib_call_init_function (vm, ipsec_cli_init)))
424 return error;
425
Damjan Marion91f17dc2019-03-18 18:59:25 +0100426 vec_validate (im->crypto_algs, IPSEC_CRYPTO_N_ALG - 1);
427
Neale Ranns2cdcd0c2019-08-27 12:26:14 +0000428 a = im->crypto_algs + IPSEC_CRYPTO_ALG_NONE;
429 a->enc_op_id = VNET_CRYPTO_OP_NONE;
430 a->dec_op_id = VNET_CRYPTO_OP_NONE;
431 a->alg = VNET_CRYPTO_ALG_NONE;
432 a->iv_size = 0;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500433 a->block_align = 1;
Neale Ranns2cdcd0c2019-08-27 12:26:14 +0000434
Damjan Marion91f17dc2019-03-18 18:59:25 +0100435 a = im->crypto_algs + IPSEC_CRYPTO_ALG_DES_CBC;
Damjan Marion060bfb92019-03-29 13:47:54 +0100436 a->enc_op_id = VNET_CRYPTO_OP_DES_CBC_ENC;
437 a->dec_op_id = VNET_CRYPTO_OP_DES_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200438 a->alg = VNET_CRYPTO_ALG_DES_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500439 a->iv_size = a->block_align = 8;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100440
441 a = im->crypto_algs + IPSEC_CRYPTO_ALG_3DES_CBC;
Damjan Marion060bfb92019-03-29 13:47:54 +0100442 a->enc_op_id = VNET_CRYPTO_OP_3DES_CBC_ENC;
443 a->dec_op_id = VNET_CRYPTO_OP_3DES_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200444 a->alg = VNET_CRYPTO_ALG_3DES_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500445 a->iv_size = a->block_align = 8;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100446
447 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_128;
Damjan Marion060bfb92019-03-29 13:47:54 +0100448 a->enc_op_id = VNET_CRYPTO_OP_AES_128_CBC_ENC;
449 a->dec_op_id = VNET_CRYPTO_OP_AES_128_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200450 a->alg = VNET_CRYPTO_ALG_AES_128_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500451 a->iv_size = a->block_align = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100452
453 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_192;
Damjan Marion060bfb92019-03-29 13:47:54 +0100454 a->enc_op_id = VNET_CRYPTO_OP_AES_192_CBC_ENC;
455 a->dec_op_id = VNET_CRYPTO_OP_AES_192_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200456 a->alg = VNET_CRYPTO_ALG_AES_192_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500457 a->iv_size = a->block_align = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100458
459 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_256;
Damjan Marion060bfb92019-03-29 13:47:54 +0100460 a->enc_op_id = VNET_CRYPTO_OP_AES_256_CBC_ENC;
461 a->dec_op_id = VNET_CRYPTO_OP_AES_256_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200462 a->alg = VNET_CRYPTO_ALG_AES_256_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500463 a->iv_size = a->block_align = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100464
Benoît Ganne490b9272021-01-22 18:03:09 +0100465 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_128;
466 a->enc_op_id = VNET_CRYPTO_OP_AES_128_CTR_ENC;
467 a->dec_op_id = VNET_CRYPTO_OP_AES_128_CTR_DEC;
468 a->alg = VNET_CRYPTO_ALG_AES_128_CTR;
469 a->iv_size = 8;
470 a->block_align = 1;
471
472 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_192;
473 a->enc_op_id = VNET_CRYPTO_OP_AES_192_CTR_ENC;
474 a->dec_op_id = VNET_CRYPTO_OP_AES_192_CTR_DEC;
475 a->alg = VNET_CRYPTO_ALG_AES_192_CTR;
476 a->iv_size = 8;
477 a->block_align = 1;
478
479 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_256;
480 a->enc_op_id = VNET_CRYPTO_OP_AES_256_CTR_ENC;
481 a->dec_op_id = VNET_CRYPTO_OP_AES_256_CTR_DEC;
482 a->alg = VNET_CRYPTO_ALG_AES_256_CTR;
483 a->iv_size = 8;
484 a->block_align = 1;
485
Neale Ranns47feb112019-04-11 15:14:07 +0000486 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_128;
487 a->enc_op_id = VNET_CRYPTO_OP_AES_128_GCM_ENC;
488 a->dec_op_id = VNET_CRYPTO_OP_AES_128_GCM_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200489 a->alg = VNET_CRYPTO_ALG_AES_128_GCM;
Damjan Marionf1ecb652020-02-10 19:21:14 +0100490 a->iv_size = 8;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500491 a->block_align = 1;
Neale Ranns47feb112019-04-11 15:14:07 +0000492 a->icv_size = 16;
493
494 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_192;
495 a->enc_op_id = VNET_CRYPTO_OP_AES_192_GCM_ENC;
496 a->dec_op_id = VNET_CRYPTO_OP_AES_192_GCM_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200497 a->alg = VNET_CRYPTO_ALG_AES_192_GCM;
Damjan Marionf1ecb652020-02-10 19:21:14 +0100498 a->iv_size = 8;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500499 a->block_align = 1;
Neale Ranns47feb112019-04-11 15:14:07 +0000500 a->icv_size = 16;
501
502 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_256;
503 a->enc_op_id = VNET_CRYPTO_OP_AES_256_GCM_ENC;
504 a->dec_op_id = VNET_CRYPTO_OP_AES_256_GCM_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200505 a->alg = VNET_CRYPTO_ALG_AES_256_GCM;
Damjan Marionf1ecb652020-02-10 19:21:14 +0100506 a->iv_size = 8;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500507 a->block_align = 1;
Neale Ranns47feb112019-04-11 15:14:07 +0000508 a->icv_size = 16;
509
Damjan Marion91f17dc2019-03-18 18:59:25 +0100510 vec_validate (im->integ_algs, IPSEC_INTEG_N_ALG - 1);
511 ipsec_main_integ_alg_t *i;
512
Dmitry Vakhrushev77cc14a2019-08-14 00:12:33 -0400513 i = &im->integ_algs[IPSEC_INTEG_ALG_MD5_96];
514 i->op_id = VNET_CRYPTO_OP_MD5_HMAC;
515 i->alg = VNET_CRYPTO_ALG_HMAC_MD5;
516 i->icv_size = 12;
517
Damjan Marion91f17dc2019-03-18 18:59:25 +0100518 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA1_96];
Damjan Marion060bfb92019-03-29 13:47:54 +0100519 i->op_id = VNET_CRYPTO_OP_SHA1_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200520 i->alg = VNET_CRYPTO_ALG_HMAC_SHA1;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200521 i->icv_size = 12;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100522
523 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_256_96];
Damjan Marion060bfb92019-03-29 13:47:54 +0100524 i->op_id = VNET_CRYPTO_OP_SHA1_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200525 i->alg = VNET_CRYPTO_ALG_HMAC_SHA256;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200526 i->icv_size = 12;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100527
528 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_256_128];
Damjan Marion060bfb92019-03-29 13:47:54 +0100529 i->op_id = VNET_CRYPTO_OP_SHA256_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200530 i->alg = VNET_CRYPTO_ALG_HMAC_SHA256;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200531 i->icv_size = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100532
533 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_384_192];
Damjan Marion060bfb92019-03-29 13:47:54 +0100534 i->op_id = VNET_CRYPTO_OP_SHA384_HMAC;
Damjan Marion4cb83812019-04-24 17:32:01 +0200535 i->alg = VNET_CRYPTO_ALG_HMAC_SHA384;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200536 i->icv_size = 24;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100537
538 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_512_256];
Damjan Marion060bfb92019-03-29 13:47:54 +0100539 i->op_id = VNET_CRYPTO_OP_SHA512_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200540 i->alg = VNET_CRYPTO_ALG_HMAC_SHA512;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200541 i->icv_size = 32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Neale Ranns5ae793a2019-04-03 13:36:56 +0000543 vec_validate_aligned (im->ptd, vlib_num_workers (), CLIB_CACHE_LINE_BYTES);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100544
Fan Zhangf5395782020-04-29 14:00:03 +0100545 im->async_mode = 0;
546 crypto_engine_backend_register_post_node (vm);
547
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548 return 0;
549}
550
551VLIB_INIT_FUNCTION (ipsec_init);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700552
Zachary Leafb2d36782021-07-27 05:18:47 -0500553static clib_error_t *
554ipsec_config (vlib_main_t *vm, unformat_input_t *input)
555{
556 unformat_input_t sub_input;
557
558 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
559 {
560 if (unformat (input, "ip4 %U", unformat_vlib_cli_sub_input, &sub_input))
561 {
562 uword table_size = ~0;
563 u32 n_buckets = ~0;
564
565 while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
566 {
567 if (unformat (&sub_input, "num-buckets %u", &n_buckets))
568 ;
569 else
570 return clib_error_return (0, "unknown input `%U'",
571 format_unformat_error, &sub_input);
572 }
573
574 ipsec_tun_table_init (AF_IP4, table_size, n_buckets);
575 }
576 else if (unformat (input, "ip6 %U", unformat_vlib_cli_sub_input,
577 &sub_input))
578 {
579 uword table_size = ~0;
580 u32 n_buckets = ~0;
581
582 while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
583 {
584 if (unformat (&sub_input, "num-buckets %u", &n_buckets))
585 ;
586 else
587 return clib_error_return (0, "unknown input `%U'",
588 format_unformat_error, &sub_input);
589 }
590
591 ipsec_tun_table_init (AF_IP6, table_size, n_buckets);
592 }
593 else
594 return clib_error_return (0, "unknown input `%U'",
595 format_unformat_error, input);
596 }
597
598 return 0;
599}
600
601VLIB_CONFIG_FUNCTION (ipsec_config, "ipsec");
602
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700603/*
604 * fd.io coding-style-patch-verification: ON
605 *
606 * Local Variables:
607 * eval: (c-set-style "gnu")
608 * End:
609 */