blob: 86cb8982d07beddc97883eb0a869ec7c588a384a [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>
Neale Ranns6fdcc3d2021-10-08 07:30:47 +000028#include <vnet/ipsec/ipsec_itf.h>
Piotr Bronowski4da8a632022-05-06 13:52:24 +000029#include <vnet/ipsec/ipsec_spd_fp_lookup.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000030
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +000031/* Flow cache is sized for 1 million flows with a load factor of .25.
32 */
33#define IPSEC4_OUT_SPD_DEFAULT_HASH_NUM_BUCKETS (1 << 22)
34
Zachary Leaf7cd35f52021-06-25 08:11:15 -050035/* Flow cache is sized for 1 million flows with a load factor of .25.
36 */
37#define IPSEC4_SPD_DEFAULT_HASH_NUM_BUCKETS (1 << 22)
38
Dave Wallace71612d62017-10-24 01:32:41 -040039ipsec_main_t ipsec_main;
Piotr Bronowski4da8a632022-05-06 13:52:24 +000040
Fan Zhangf5395782020-04-29 14:00:03 +010041esp_async_post_next_t esp_encrypt_async_next;
42esp_async_post_next_t esp_decrypt_async_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
Benoît Ganne98ca76a2022-04-11 18:51:25 +020044clib_error_t *
45ipsec_register_next_header (vlib_main_t *vm, u8 next_header,
46 const char *next_node)
47{
48 ipsec_main_t *im = &ipsec_main;
49 const vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) next_node);
50 /* -post nodes (eg. esp4-decrypt-post) are siblings of non-post nodes (eg.
51 * esp4-decrypt) and will therefore have the same next index */
52 const vlib_node_t *esp_decrypt_nodes[] = {
53 vlib_get_node (vm, im->esp4_decrypt_node_index),
54 vlib_get_node (vm, im->esp6_decrypt_node_index),
55 vlib_get_node (vm, im->esp4_decrypt_tun_node_index),
56 vlib_get_node (vm, im->esp6_decrypt_tun_node_index),
57 };
58 uword slot, max;
59 int i;
60
61 /* looks for a next_index value that we can use for all esp decrypt nodes to
62 * avoid maintaining different next index arrays... */
63
64 slot = vlib_node_get_next (vm, esp_decrypt_nodes[0]->index, node->index);
65 max = vec_len (esp_decrypt_nodes[0]->next_nodes);
66 for (i = 1; i < ARRAY_LEN (esp_decrypt_nodes); i++)
67 {
68 /* if next node already exists, check it shares the same next_index */
69 if (slot !=
70 vlib_node_get_next (vm, esp_decrypt_nodes[i]->index, node->index))
71 return clib_error_return (
72 0, "next node already exists with different next index");
73 /* compute a suitable slot from the max of all nodes next index */
74 max = clib_max (max, vec_len (esp_decrypt_nodes[i]->next_nodes));
75 }
76
77 if (~0 == slot)
78 {
79 /* next node not there yet, add it using the computed max */
80 slot = max;
81 for (i = 0; i < ARRAY_LEN (esp_decrypt_nodes); i++)
82 vlib_node_add_next_with_slot (vm, esp_decrypt_nodes[i]->index,
83 node->index, slot);
84 }
85
86 im->next_header_registrations[next_header] = slot;
87 return 0;
88}
89
Ed Warnickecb9cada2015-12-08 15:45:58 -070090static clib_error_t *
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010091ipsec_check_ah_support (ipsec_sa_t * sa)
92{
Neale Rannsece2ae02019-06-21 12:44:11 +000093 ipsec_main_t *im = &ipsec_main;
94
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010095 if (sa->integ_alg == IPSEC_INTEG_ALG_NONE)
96 return clib_error_return (0, "unsupported none integ-alg");
Neale Rannsece2ae02019-06-21 12:44:11 +000097
98 if (!vnet_crypto_is_set_handler (im->integ_algs[sa->integ_alg].alg))
99 return clib_error_return (0, "No crypto engine support for %U",
100 format_ipsec_integ_alg, sa->integ_alg);
101
Klement Sekera4fd5a9d2019-01-30 11:11:23 +0100102 return 0;
103}
104
105static clib_error_t *
106ipsec_check_esp_support (ipsec_sa_t * sa)
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000107{
Neale Rannsece2ae02019-06-21 12:44:11 +0000108 ipsec_main_t *im = &ipsec_main;
109
110 if (IPSEC_INTEG_ALG_NONE != sa->integ_alg)
111 {
112 if (!vnet_crypto_is_set_handler (im->integ_algs[sa->integ_alg].alg))
113 return clib_error_return (0, "No crypto engine support for %U",
114 format_ipsec_integ_alg, sa->integ_alg);
115 }
116 if (IPSEC_CRYPTO_ALG_NONE != sa->crypto_alg)
117 {
118 if (!vnet_crypto_is_set_handler (im->crypto_algs[sa->crypto_alg].alg))
119 return clib_error_return (0, "No crypto engine support for %U",
120 format_ipsec_crypto_alg, sa->crypto_alg);
121 }
122
123 return (0);
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000124}
125
Klement Sekerab4d30532018-11-08 13:00:02 +0100126clib_error_t *
127ipsec_add_del_sa_sess_cb (ipsec_main_t * im, u32 sa_index, u8 is_add)
128{
129 ipsec_ah_backend_t *ah =
130 pool_elt_at_index (im->ah_backends, im->ah_current_backend);
131 if (ah->add_del_sa_sess_cb)
132 {
133 clib_error_t *err = ah->add_del_sa_sess_cb (sa_index, is_add);
134 if (err)
135 return err;
136 }
137 ipsec_esp_backend_t *esp =
138 pool_elt_at_index (im->esp_backends, im->esp_current_backend);
139 if (esp->add_del_sa_sess_cb)
140 {
141 clib_error_t *err = esp->add_del_sa_sess_cb (sa_index, is_add);
142 if (err)
143 return err;
144 }
145 return 0;
146}
147
148clib_error_t *
149ipsec_check_support_cb (ipsec_main_t * im, ipsec_sa_t * sa)
150{
151 clib_error_t *error = 0;
Matthew Smith461caa52018-12-21 11:53:16 -0600152
153 if (PREDICT_FALSE (sa->protocol == IPSEC_PROTOCOL_AH))
154 {
155 ipsec_ah_backend_t *ah =
156 pool_elt_at_index (im->ah_backends, im->ah_current_backend);
157 ASSERT (ah->check_support_cb);
158 error = ah->check_support_cb (sa);
159 }
160 else
161 {
162 ipsec_esp_backend_t *esp =
163 pool_elt_at_index (im->esp_backends, im->esp_current_backend);
164 ASSERT (esp->check_support_cb);
165 error = esp->check_support_cb (sa);
166 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100167 return error;
168}
169
170
171static void
172ipsec_add_node (vlib_main_t * vm, const char *node_name,
173 const char *prev_node_name, u32 * out_node_index,
174 u32 * out_next_index)
175{
176 vlib_node_t *prev_node, *node;
177 prev_node = vlib_get_node_by_name (vm, (u8 *) prev_node_name);
178 ASSERT (prev_node);
179 node = vlib_get_node_by_name (vm, (u8 *) node_name);
180 ASSERT (node);
181 *out_node_index = node->index;
182 *out_next_index = vlib_node_add_next (vm, prev_node->index, node->index);
183}
184
Matthew Smith6f1eb482022-08-09 22:19:38 +0000185static inline uword
186ipsec_udp_registration_key (u16 port, u8 is_ip4)
187{
188 uword key = (is_ip4) ? AF_IP4 : AF_IP6;
189
190 key |= (uword) (port << 16);
191 return key;
192}
193
Neale Rannsabc56602020-04-01 09:45:23 +0000194void
Matthew Smith6f1eb482022-08-09 22:19:38 +0000195ipsec_unregister_udp_port (u16 port, u8 is_ip4)
Neale Rannsabc56602020-04-01 09:45:23 +0000196{
197 ipsec_main_t *im = &ipsec_main;
198 u32 n_regs;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000199 uword *p, key;
Neale Rannsabc56602020-04-01 09:45:23 +0000200
Matthew Smith6f1eb482022-08-09 22:19:38 +0000201 key = ipsec_udp_registration_key (port, is_ip4);
202 p = hash_get (im->udp_port_registrations, key);
Neale Rannsabc56602020-04-01 09:45:23 +0000203
204 ASSERT (p);
205
206 n_regs = p[0];
207
208 if (0 == --n_regs)
209 {
Matthew Smith6f1eb482022-08-09 22:19:38 +0000210 udp_unregister_dst_port (vlib_get_main (), port, is_ip4);
211 hash_unset (im->udp_port_registrations, key);
Neale Rannsabc56602020-04-01 09:45:23 +0000212 }
213 else
214 {
Matthew Smith6f1eb482022-08-09 22:19:38 +0000215 hash_unset (im->udp_port_registrations, key);
216 hash_set (im->udp_port_registrations, key, n_regs);
Neale Rannsabc56602020-04-01 09:45:23 +0000217 }
218}
219
220void
Matthew Smith6f1eb482022-08-09 22:19:38 +0000221ipsec_register_udp_port (u16 port, u8 is_ip4)
Neale Rannsabc56602020-04-01 09:45:23 +0000222{
223 ipsec_main_t *im = &ipsec_main;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000224 u32 n_regs, node_index;
225 uword *p, key;
Neale Rannsabc56602020-04-01 09:45:23 +0000226
Matthew Smith6f1eb482022-08-09 22:19:38 +0000227 key = ipsec_udp_registration_key (port, is_ip4);
228 node_index =
229 (is_ip4) ? ipsec4_tun_input_node.index : ipsec6_tun_input_node.index;
230 p = hash_get (im->udp_port_registrations, key);
Neale Rannsabc56602020-04-01 09:45:23 +0000231
232 n_regs = (p ? p[0] : 0);
233
234 if (0 == n_regs++)
Matthew Smith6f1eb482022-08-09 22:19:38 +0000235 udp_register_dst_port (vlib_get_main (), port, node_index, is_ip4);
Neale Rannsabc56602020-04-01 09:45:23 +0000236
Matthew Smith6f1eb482022-08-09 22:19:38 +0000237 hash_unset (im->udp_port_registrations, key);
238 hash_set (im->udp_port_registrations, key, n_regs);
Neale Rannsabc56602020-04-01 09:45:23 +0000239}
240
Klement Sekerab4d30532018-11-08 13:00:02 +0100241u32
242ipsec_register_ah_backend (vlib_main_t * vm, ipsec_main_t * im,
243 const char *name,
244 const char *ah4_encrypt_node_name,
245 const char *ah4_decrypt_node_name,
246 const char *ah6_encrypt_node_name,
247 const char *ah6_decrypt_node_name,
248 check_support_cb_t ah_check_support_cb,
249 add_del_sa_sess_cb_t ah_add_del_sa_sess_cb)
250{
251 ipsec_ah_backend_t *b;
252 pool_get (im->ah_backends, b);
Kingwel Xie561d1ca2019-03-05 22:56:17 -0500253 b->name = format (0, "%s%c", name, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100254
Pierre Pfister057b3562018-12-10 17:01:01 +0100255 ipsec_add_node (vm, ah4_encrypt_node_name, "ipsec4-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100256 &b->ah4_encrypt_node_index, &b->ah4_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100257 ipsec_add_node (vm, ah4_decrypt_node_name, "ipsec4-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100258 &b->ah4_decrypt_node_index, &b->ah4_decrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100259 ipsec_add_node (vm, ah6_encrypt_node_name, "ipsec6-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100260 &b->ah6_encrypt_node_index, &b->ah6_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100261 ipsec_add_node (vm, ah6_decrypt_node_name, "ipsec6-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100262 &b->ah6_decrypt_node_index, &b->ah6_decrypt_next_index);
263
264 b->check_support_cb = ah_check_support_cb;
265 b->add_del_sa_sess_cb = ah_add_del_sa_sess_cb;
266 return b - im->ah_backends;
267}
268
269u32
Neale Ranns4a58e492020-12-21 13:19:10 +0000270ipsec_register_esp_backend (
271 vlib_main_t *vm, ipsec_main_t *im, const char *name,
272 const char *esp4_encrypt_node_name, const char *esp4_encrypt_node_tun_name,
273 const char *esp4_decrypt_node_name, const char *esp4_decrypt_tun_node_name,
274 const char *esp6_encrypt_node_name, const char *esp6_encrypt_node_tun_name,
275 const char *esp6_decrypt_node_name, const char *esp6_decrypt_tun_node_name,
276 const char *esp_mpls_encrypt_node_tun_name,
277 check_support_cb_t esp_check_support_cb,
278 add_del_sa_sess_cb_t esp_add_del_sa_sess_cb,
279 enable_disable_cb_t enable_disable_cb)
Klement Sekerab4d30532018-11-08 13:00:02 +0100280{
281 ipsec_esp_backend_t *b;
Neale Rannse8915fc2019-04-23 20:57:55 -0400282
Klement Sekerab4d30532018-11-08 13:00:02 +0100283 pool_get (im->esp_backends, b);
Kingwel Xie561d1ca2019-03-05 22:56:17 -0500284 b->name = format (0, "%s%c", name, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100285
Pierre Pfister057b3562018-12-10 17:01:01 +0100286 ipsec_add_node (vm, esp4_encrypt_node_name, "ipsec4-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100287 &b->esp4_encrypt_node_index, &b->esp4_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100288 ipsec_add_node (vm, esp4_decrypt_node_name, "ipsec4-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100289 &b->esp4_decrypt_node_index, &b->esp4_decrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100290 ipsec_add_node (vm, esp6_encrypt_node_name, "ipsec6-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100291 &b->esp6_encrypt_node_index, &b->esp6_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100292 ipsec_add_node (vm, esp6_decrypt_node_name, "ipsec6-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100293 &b->esp6_decrypt_node_index, &b->esp6_decrypt_next_index);
Neale Ranns7ec120e2020-01-21 04:58:02 +0000294 ipsec_add_node (vm, esp4_decrypt_tun_node_name, "ipsec4-tun-input",
295 &b->esp4_decrypt_tun_node_index,
296 &b->esp4_decrypt_tun_next_index);
297 ipsec_add_node (vm, esp6_decrypt_tun_node_name, "ipsec6-tun-input",
298 &b->esp6_decrypt_tun_node_index,
299 &b->esp6_decrypt_tun_next_index);
Klement Sekerab4d30532018-11-08 13:00:02 +0100300
Neale Ranns4ec36c52020-03-31 09:21:29 -0400301 b->esp6_encrypt_tun_node_index =
302 vlib_get_node_by_name (vm, (u8 *) esp6_encrypt_node_tun_name)->index;
Neale Ranns4a58e492020-12-21 13:19:10 +0000303 b->esp_mpls_encrypt_tun_node_index =
304 vlib_get_node_by_name (vm, (u8 *) esp_mpls_encrypt_node_tun_name)->index;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400305 b->esp4_encrypt_tun_node_index =
306 vlib_get_node_by_name (vm, (u8 *) esp4_encrypt_node_tun_name)->index;
Neale Rannse8915fc2019-04-23 20:57:55 -0400307
Klement Sekerab4d30532018-11-08 13:00:02 +0100308 b->check_support_cb = esp_check_support_cb;
309 b->add_del_sa_sess_cb = esp_add_del_sa_sess_cb;
Fan Zhangf5395782020-04-29 14:00:03 +0100310 b->enable_disable_cb = enable_disable_cb;
311
Klement Sekerab4d30532018-11-08 13:00:02 +0100312 return b - im->esp_backends;
313}
314
Neale Rannse8915fc2019-04-23 20:57:55 -0400315clib_error_t *
316ipsec_rsc_in_use (ipsec_main_t * im)
Neale Rannsb4cfd552019-02-13 02:08:06 -0800317{
Neale Rannse8915fc2019-04-23 20:57:55 -0400318 /* return an error is crypto resource are in use */
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000319 if (pool_elts (ipsec_sa_pool) > 0)
320 return clib_error_return (0, "%d SA entries configured",
321 pool_elts (ipsec_sa_pool));
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000322 if (ipsec_itf_count () > 0)
323 return clib_error_return (0, "%d IPSec interface configured",
324 ipsec_itf_count ());
Neale Rannsb4cfd552019-02-13 02:08:06 -0800325
Neale Rannse8915fc2019-04-23 20:57:55 -0400326 return (NULL);
Neale Rannsb4cfd552019-02-13 02:08:06 -0800327}
328
Klement Sekerab4d30532018-11-08 13:00:02 +0100329int
330ipsec_select_ah_backend (ipsec_main_t * im, u32 backend_idx)
331{
Neale Rannse8915fc2019-04-23 20:57:55 -0400332 if (ipsec_rsc_in_use (im))
333 return VNET_API_ERROR_RSRC_IN_USE;
334
335 if (pool_is_free_index (im->ah_backends, backend_idx))
336 return VNET_API_ERROR_INVALID_VALUE;
337
Klement Sekerab4d30532018-11-08 13:00:02 +0100338 ipsec_ah_backend_t *b = pool_elt_at_index (im->ah_backends, backend_idx);
339 im->ah_current_backend = backend_idx;
340 im->ah4_encrypt_node_index = b->ah4_encrypt_node_index;
341 im->ah4_decrypt_node_index = b->ah4_decrypt_node_index;
342 im->ah4_encrypt_next_index = b->ah4_encrypt_next_index;
343 im->ah4_decrypt_next_index = b->ah4_decrypt_next_index;
344 im->ah6_encrypt_node_index = b->ah6_encrypt_node_index;
345 im->ah6_decrypt_node_index = b->ah6_decrypt_node_index;
346 im->ah6_encrypt_next_index = b->ah6_encrypt_next_index;
347 im->ah6_decrypt_next_index = b->ah6_decrypt_next_index;
Neale Rannsb4cfd552019-02-13 02:08:06 -0800348
Klement Sekerab4d30532018-11-08 13:00:02 +0100349 return 0;
350}
351
352int
353ipsec_select_esp_backend (ipsec_main_t * im, u32 backend_idx)
354{
Neale Rannse8915fc2019-04-23 20:57:55 -0400355 if (ipsec_rsc_in_use (im))
356 return VNET_API_ERROR_RSRC_IN_USE;
357
358 if (pool_is_free_index (im->esp_backends, backend_idx))
359 return VNET_API_ERROR_INVALID_VALUE;
360
Fan Zhangf5395782020-04-29 14:00:03 +0100361 /* disable current backend */
362 if (im->esp_current_backend != ~0)
363 {
364 ipsec_esp_backend_t *cb = pool_elt_at_index (im->esp_backends,
365 im->esp_current_backend);
366 if (cb->enable_disable_cb)
367 {
368 if ((cb->enable_disable_cb) (0) != 0)
369 return -1;
370 }
371 }
372
Klement Sekerab4d30532018-11-08 13:00:02 +0100373 ipsec_esp_backend_t *b = pool_elt_at_index (im->esp_backends, backend_idx);
374 im->esp_current_backend = backend_idx;
375 im->esp4_encrypt_node_index = b->esp4_encrypt_node_index;
376 im->esp4_decrypt_node_index = b->esp4_decrypt_node_index;
377 im->esp4_encrypt_next_index = b->esp4_encrypt_next_index;
378 im->esp4_decrypt_next_index = b->esp4_decrypt_next_index;
379 im->esp6_encrypt_node_index = b->esp6_encrypt_node_index;
380 im->esp6_decrypt_node_index = b->esp6_decrypt_node_index;
381 im->esp6_encrypt_next_index = b->esp6_encrypt_next_index;
382 im->esp6_decrypt_next_index = b->esp6_decrypt_next_index;
Neale Ranns7ec120e2020-01-21 04:58:02 +0000383 im->esp4_decrypt_tun_node_index = b->esp4_decrypt_tun_node_index;
384 im->esp4_decrypt_tun_next_index = b->esp4_decrypt_tun_next_index;
385 im->esp6_decrypt_tun_node_index = b->esp6_decrypt_tun_node_index;
386 im->esp6_decrypt_tun_next_index = b->esp6_decrypt_tun_next_index;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400387 im->esp4_encrypt_tun_node_index = b->esp4_encrypt_tun_node_index;
388 im->esp6_encrypt_tun_node_index = b->esp6_encrypt_tun_node_index;
Neale Ranns4a58e492020-12-21 13:19:10 +0000389 im->esp_mpls_encrypt_tun_node_index = b->esp_mpls_encrypt_tun_node_index;
Neale Rannse8915fc2019-04-23 20:57:55 -0400390
Fan Zhangf5395782020-04-29 14:00:03 +0100391 if (b->enable_disable_cb)
392 {
393 if ((b->enable_disable_cb) (1) != 0)
394 return -1;
395 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100396 return 0;
397}
398
Fan Zhangf5395782020-04-29 14:00:03 +0100399void
400ipsec_set_async_mode (u32 is_enabled)
401{
402 ipsec_main_t *im = &ipsec_main;
403 ipsec_sa_t *sa;
404
Neale Rannsf16e9a52021-02-25 19:09:24 +0000405 vnet_crypto_request_async_mode (is_enabled);
Fan Zhangf5395782020-04-29 14:00:03 +0100406
407 im->async_mode = is_enabled;
408
Neale Rannsf16e9a52021-02-25 19:09:24 +0000409 /* change SA crypto op data */
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000410 pool_foreach (sa, ipsec_sa_pool)
Benoît Ganne5527a782022-01-18 15:56:41 +0100411 ipsec_sa_set_async_mode (sa, is_enabled);
Fan Zhangf5395782020-04-29 14:00:03 +0100412}
413
414static void
415crypto_engine_backend_register_post_node (vlib_main_t * vm)
416{
417 esp_async_post_next_t *eit;
418 esp_async_post_next_t *dit;
419
420 eit = &esp_encrypt_async_next;
421 eit->esp4_post_next =
422 vnet_crypto_register_post_node (vm, "esp4-encrypt-post");
423 eit->esp6_post_next =
424 vnet_crypto_register_post_node (vm, "esp6-encrypt-post");
425 eit->esp4_tun_post_next =
426 vnet_crypto_register_post_node (vm, "esp4-encrypt-tun-post");
427 eit->esp6_tun_post_next =
428 vnet_crypto_register_post_node (vm, "esp6-encrypt-tun-post");
Neale Ranns4a58e492020-12-21 13:19:10 +0000429 eit->esp_mpls_tun_post_next =
430 vnet_crypto_register_post_node (vm, "esp-mpls-encrypt-tun-post");
Fan Zhangf5395782020-04-29 14:00:03 +0100431
432 dit = &esp_decrypt_async_next;
433 dit->esp4_post_next =
434 vnet_crypto_register_post_node (vm, "esp4-decrypt-post");
435 dit->esp6_post_next =
436 vnet_crypto_register_post_node (vm, "esp6-decrypt-post");
437 dit->esp4_tun_post_next =
438 vnet_crypto_register_post_node (vm, "esp4-decrypt-tun-post");
439 dit->esp6_tun_post_next =
440 vnet_crypto_register_post_node (vm, "esp6-decrypt-tun-post");
441}
442
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000443static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444ipsec_init (vlib_main_t * vm)
445{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700446 clib_error_t *error;
447 ipsec_main_t *im = &ipsec_main;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100448 ipsec_main_crypto_alg_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Dave Barach0dd91652019-05-05 13:34:28 -0400450 /* Backend registration requires the feature arcs to be set up */
451 if ((error = vlib_call_init_function (vm, vnet_feature_init)))
452 return (error);
453
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700454 im->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 im->vlib_main = vm;
456
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700457 im->spd_index_by_spd_id = hash_create (0, sizeof (uword));
458 im->sa_index_by_sa_id = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 im->spd_index_by_sw_if_index = hash_create (0, sizeof (uword));
460
Klement Sekerab4d30532018-11-08 13:00:02 +0100461 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700462 ASSERT (node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463 im->error_drop_node_index = node->index;
464
Fan Zhangf5395782020-04-29 14:00:03 +0100465 im->ah_current_backend = ~0;
466 im->esp_current_backend = ~0;
467
Neale Rannsd1a5b2d2019-05-16 17:09:28 +0000468 u32 idx = ipsec_register_ah_backend (vm, im, "crypto engine backend",
Klement Sekerab4d30532018-11-08 13:00:02 +0100469 "ah4-encrypt",
470 "ah4-decrypt",
471 "ah6-encrypt",
472 "ah6-decrypt",
Klement Sekera4fd5a9d2019-01-30 11:11:23 +0100473 ipsec_check_ah_support,
Klement Sekerab4d30532018-11-08 13:00:02 +0100474 NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475
Klement Sekerab4d30532018-11-08 13:00:02 +0100476 im->ah_default_backend = idx;
477 int rv = ipsec_select_ah_backend (im, idx);
478 ASSERT (0 == rv);
479 (void) (rv); // avoid warning
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000480
Neale Ranns4a58e492020-12-21 13:19:10 +0000481 idx = ipsec_register_esp_backend (
482 vm, im, "crypto engine backend", "esp4-encrypt", "esp4-encrypt-tun",
483 "esp4-decrypt", "esp4-decrypt-tun", "esp6-encrypt", "esp6-encrypt-tun",
484 "esp6-decrypt", "esp6-decrypt-tun", "esp-mpls-encrypt-tun",
485 ipsec_check_esp_support, NULL, crypto_dispatch_enable_disable);
Klement Sekerab4d30532018-11-08 13:00:02 +0100486 im->esp_default_backend = idx;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800487
Klement Sekerab4d30532018-11-08 13:00:02 +0100488 rv = ipsec_select_esp_backend (im, idx);
489 ASSERT (0 == rv);
490 (void) (rv); // avoid warning
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 if ((error = vlib_call_init_function (vm, ipsec_cli_init)))
493 return error;
494
Damjan Marion91f17dc2019-03-18 18:59:25 +0100495 vec_validate (im->crypto_algs, IPSEC_CRYPTO_N_ALG - 1);
496
Neale Ranns2cdcd0c2019-08-27 12:26:14 +0000497 a = im->crypto_algs + IPSEC_CRYPTO_ALG_NONE;
498 a->enc_op_id = VNET_CRYPTO_OP_NONE;
499 a->dec_op_id = VNET_CRYPTO_OP_NONE;
500 a->alg = VNET_CRYPTO_ALG_NONE;
501 a->iv_size = 0;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500502 a->block_align = 1;
Neale Ranns2cdcd0c2019-08-27 12:26:14 +0000503
Damjan Marion91f17dc2019-03-18 18:59:25 +0100504 a = im->crypto_algs + IPSEC_CRYPTO_ALG_DES_CBC;
Damjan Marion060bfb92019-03-29 13:47:54 +0100505 a->enc_op_id = VNET_CRYPTO_OP_DES_CBC_ENC;
506 a->dec_op_id = VNET_CRYPTO_OP_DES_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200507 a->alg = VNET_CRYPTO_ALG_DES_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500508 a->iv_size = a->block_align = 8;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100509
510 a = im->crypto_algs + IPSEC_CRYPTO_ALG_3DES_CBC;
Damjan Marion060bfb92019-03-29 13:47:54 +0100511 a->enc_op_id = VNET_CRYPTO_OP_3DES_CBC_ENC;
512 a->dec_op_id = VNET_CRYPTO_OP_3DES_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200513 a->alg = VNET_CRYPTO_ALG_3DES_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500514 a->iv_size = a->block_align = 8;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100515
516 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_128;
Damjan Marion060bfb92019-03-29 13:47:54 +0100517 a->enc_op_id = VNET_CRYPTO_OP_AES_128_CBC_ENC;
518 a->dec_op_id = VNET_CRYPTO_OP_AES_128_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200519 a->alg = VNET_CRYPTO_ALG_AES_128_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500520 a->iv_size = a->block_align = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100521
522 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_192;
Damjan Marion060bfb92019-03-29 13:47:54 +0100523 a->enc_op_id = VNET_CRYPTO_OP_AES_192_CBC_ENC;
524 a->dec_op_id = VNET_CRYPTO_OP_AES_192_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200525 a->alg = VNET_CRYPTO_ALG_AES_192_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500526 a->iv_size = a->block_align = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100527
528 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_256;
Damjan Marion060bfb92019-03-29 13:47:54 +0100529 a->enc_op_id = VNET_CRYPTO_OP_AES_256_CBC_ENC;
530 a->dec_op_id = VNET_CRYPTO_OP_AES_256_CBC_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200531 a->alg = VNET_CRYPTO_ALG_AES_256_CBC;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500532 a->iv_size = a->block_align = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100533
Benoît Ganne490b9272021-01-22 18:03:09 +0100534 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_128;
535 a->enc_op_id = VNET_CRYPTO_OP_AES_128_CTR_ENC;
536 a->dec_op_id = VNET_CRYPTO_OP_AES_128_CTR_DEC;
537 a->alg = VNET_CRYPTO_ALG_AES_128_CTR;
538 a->iv_size = 8;
539 a->block_align = 1;
540
541 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_192;
542 a->enc_op_id = VNET_CRYPTO_OP_AES_192_CTR_ENC;
543 a->dec_op_id = VNET_CRYPTO_OP_AES_192_CTR_DEC;
544 a->alg = VNET_CRYPTO_ALG_AES_192_CTR;
545 a->iv_size = 8;
546 a->block_align = 1;
547
548 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_256;
549 a->enc_op_id = VNET_CRYPTO_OP_AES_256_CTR_ENC;
550 a->dec_op_id = VNET_CRYPTO_OP_AES_256_CTR_DEC;
551 a->alg = VNET_CRYPTO_ALG_AES_256_CTR;
552 a->iv_size = 8;
553 a->block_align = 1;
554
Neale Ranns47feb112019-04-11 15:14:07 +0000555 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_128;
556 a->enc_op_id = VNET_CRYPTO_OP_AES_128_GCM_ENC;
557 a->dec_op_id = VNET_CRYPTO_OP_AES_128_GCM_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200558 a->alg = VNET_CRYPTO_ALG_AES_128_GCM;
Damjan Marionf1ecb652020-02-10 19:21:14 +0100559 a->iv_size = 8;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500560 a->block_align = 1;
Neale Ranns47feb112019-04-11 15:14:07 +0000561 a->icv_size = 16;
562
563 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_192;
564 a->enc_op_id = VNET_CRYPTO_OP_AES_192_GCM_ENC;
565 a->dec_op_id = VNET_CRYPTO_OP_AES_192_GCM_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200566 a->alg = VNET_CRYPTO_ALG_AES_192_GCM;
Damjan Marionf1ecb652020-02-10 19:21:14 +0100567 a->iv_size = 8;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500568 a->block_align = 1;
Neale Ranns47feb112019-04-11 15:14:07 +0000569 a->icv_size = 16;
570
571 a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_256;
572 a->enc_op_id = VNET_CRYPTO_OP_AES_256_GCM_ENC;
573 a->dec_op_id = VNET_CRYPTO_OP_AES_256_GCM_DEC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200574 a->alg = VNET_CRYPTO_ALG_AES_256_GCM;
Damjan Marionf1ecb652020-02-10 19:21:14 +0100575 a->iv_size = 8;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500576 a->block_align = 1;
Neale Ranns47feb112019-04-11 15:14:07 +0000577 a->icv_size = 16;
578
Vladimir Ratnikovd7c030d2022-09-13 13:09:53 +0000579 a = im->crypto_algs + IPSEC_CRYPTO_ALG_CHACHA20_POLY1305;
580 a->enc_op_id = VNET_CRYPTO_OP_CHACHA20_POLY1305_ENC;
581 a->dec_op_id = VNET_CRYPTO_OP_CHACHA20_POLY1305_DEC;
582 a->alg = VNET_CRYPTO_ALG_CHACHA20_POLY1305;
583 a->iv_size = 8;
584 a->icv_size = 16;
585
Damjan Marion91f17dc2019-03-18 18:59:25 +0100586 vec_validate (im->integ_algs, IPSEC_INTEG_N_ALG - 1);
587 ipsec_main_integ_alg_t *i;
588
Dmitry Vakhrushev77cc14a2019-08-14 00:12:33 -0400589 i = &im->integ_algs[IPSEC_INTEG_ALG_MD5_96];
590 i->op_id = VNET_CRYPTO_OP_MD5_HMAC;
591 i->alg = VNET_CRYPTO_ALG_HMAC_MD5;
592 i->icv_size = 12;
593
Damjan Marion91f17dc2019-03-18 18:59:25 +0100594 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA1_96];
Damjan Marion060bfb92019-03-29 13:47:54 +0100595 i->op_id = VNET_CRYPTO_OP_SHA1_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200596 i->alg = VNET_CRYPTO_ALG_HMAC_SHA1;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200597 i->icv_size = 12;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100598
599 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_256_96];
Damjan Marion060bfb92019-03-29 13:47:54 +0100600 i->op_id = VNET_CRYPTO_OP_SHA1_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200601 i->alg = VNET_CRYPTO_ALG_HMAC_SHA256;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200602 i->icv_size = 12;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100603
604 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_256_128];
Damjan Marion060bfb92019-03-29 13:47:54 +0100605 i->op_id = VNET_CRYPTO_OP_SHA256_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200606 i->alg = VNET_CRYPTO_ALG_HMAC_SHA256;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200607 i->icv_size = 16;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100608
609 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_384_192];
Damjan Marion060bfb92019-03-29 13:47:54 +0100610 i->op_id = VNET_CRYPTO_OP_SHA384_HMAC;
Damjan Marion4cb83812019-04-24 17:32:01 +0200611 i->alg = VNET_CRYPTO_ALG_HMAC_SHA384;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200612 i->icv_size = 24;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100613
614 i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_512_256];
Damjan Marion060bfb92019-03-29 13:47:54 +0100615 i->op_id = VNET_CRYPTO_OP_SHA512_HMAC;
Damjan Mariond1bed682019-04-24 15:20:35 +0200616 i->alg = VNET_CRYPTO_ALG_HMAC_SHA512;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200617 i->icv_size = 32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618
Neale Ranns5ae793a2019-04-03 13:36:56 +0000619 vec_validate_aligned (im->ptd, vlib_num_workers (), CLIB_CACHE_LINE_BYTES);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100620
Fan Zhangf5395782020-04-29 14:00:03 +0100621 im->async_mode = 0;
622 crypto_engine_backend_register_post_node (vm);
623
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000624 im->ipsec4_out_spd_hash_tbl = NULL;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500625 im->output_flow_cache_flag = 0;
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000626 im->ipsec4_out_spd_flow_cache_entries = 0;
627 im->epoch_count = 0;
628 im->ipsec4_out_spd_hash_num_buckets =
629 IPSEC4_OUT_SPD_DEFAULT_HASH_NUM_BUCKETS;
630
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500631 im->ipsec4_in_spd_hash_tbl = NULL;
632 im->input_flow_cache_flag = 0;
633 im->ipsec4_in_spd_flow_cache_entries = 0;
634 im->input_epoch_count = 0;
635 im->ipsec4_in_spd_hash_num_buckets = IPSEC4_SPD_DEFAULT_HASH_NUM_BUCKETS;
636
Benoît Ganne98ca76a2022-04-11 18:51:25 +0200637 vec_validate_init_empty_aligned (im->next_header_registrations, 255, ~0,
638 CLIB_CACHE_LINE_BYTES);
639
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000640 im->fp_spd_ipv4_out_is_enabled = 0;
641 im->fp_spd_ipv6_out_is_enabled = 0;
642 im->fp_spd_ipv4_in_is_enabled = 0;
643 im->fp_spd_ipv6_in_is_enabled = 0;
644
645 im->fp_lookup_hash_buckets = IPSEC_FP_HASH_LOOKUP_HASH_BUCKETS;
646
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647 return 0;
648}
649
650VLIB_INIT_FUNCTION (ipsec_init);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700651
Zachary Leafb2d36782021-07-27 05:18:47 -0500652static clib_error_t *
653ipsec_config (vlib_main_t *vm, unformat_input_t *input)
654{
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000655 ipsec_main_t *im = &ipsec_main;
Zachary Leafb2d36782021-07-27 05:18:47 -0500656 unformat_input_t sub_input;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500657
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000658 u32 ipsec4_out_spd_hash_num_buckets;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500659 u32 ipsec4_in_spd_hash_num_buckets;
Piotr Bronowski4da8a632022-05-06 13:52:24 +0000660 u32 ipsec_spd_fp_num_buckets;
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000661 bool fp_spd_ip4_enabled = false;
662 bool fp_spd_ip6_enabled = false;
Zachary Leafb2d36782021-07-27 05:18:47 -0500663
664 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
665 {
Piotr Bronowski86f82082022-07-08 12:45:05 +0000666 if (unformat (input, "ipv6-outbound-spd-fast-path on"))
Piotr Bronowski4da8a632022-05-06 13:52:24 +0000667 {
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000668 im->fp_spd_ipv6_out_is_enabled = 1;
669 fp_spd_ip6_enabled = true;
Piotr Bronowski86f82082022-07-08 12:45:05 +0000670 }
671 else if (unformat (input, "ipv6-outbound-spd-fast-path off"))
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000672 im->fp_spd_ipv6_out_is_enabled = 0;
Piotr Bronowski86f82082022-07-08 12:45:05 +0000673 else if (unformat (input, "ipv4-outbound-spd-fast-path on"))
674 {
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000675 im->fp_spd_ipv4_out_is_enabled = 1;
Piotr Bronowski4da8a632022-05-06 13:52:24 +0000676 im->output_flow_cache_flag = 0;
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000677 fp_spd_ip4_enabled = true;
Piotr Bronowski4da8a632022-05-06 13:52:24 +0000678 }
679 else if (unformat (input, "ipv4-outbound-spd-fast-path off"))
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000680 im->fp_spd_ipv4_out_is_enabled = 0;
681 else if (unformat (input, "ipv6-inbound-spd-fast-path on"))
682 {
683 im->fp_spd_ipv6_in_is_enabled = 1;
684 fp_spd_ip6_enabled = true;
685 }
686 else if (unformat (input, "ipv6-inbound-spd-fast-path off"))
687 im->fp_spd_ipv6_in_is_enabled = 0;
688 else if (unformat (input, "ipv4-inbound-spd-fast-path on"))
689 {
690 im->fp_spd_ipv4_in_is_enabled = 1;
691 im->input_flow_cache_flag = 0;
692 fp_spd_ip4_enabled = true;
693 }
694 else if (unformat (input, "ipv4-inbound-spd-fast-path off"))
695 im->fp_spd_ipv4_in_is_enabled = 0;
Piotr Bronowski4da8a632022-05-06 13:52:24 +0000696 else if (unformat (input, "spd-fast-path-num-buckets %d",
697 &ipsec_spd_fp_num_buckets))
698 {
699 /* Number of bihash buckets is power of 2 >= input */
700 im->fp_lookup_hash_buckets = 1ULL
701 << max_log2 (ipsec_spd_fp_num_buckets);
702 }
703 else if (unformat (input, "ipv4-outbound-spd-flow-cache on"))
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000704 im->output_flow_cache_flag = im->fp_spd_ipv4_out_is_enabled ? 0 : 1;
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000705 else if (unformat (input, "ipv4-outbound-spd-flow-cache off"))
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500706 im->output_flow_cache_flag = 0;
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000707 else if (unformat (input, "ipv4-outbound-spd-hash-buckets %d",
708 &ipsec4_out_spd_hash_num_buckets))
709 {
710 /* Size of hash is power of 2 >= number of buckets */
711 im->ipsec4_out_spd_hash_num_buckets =
712 1ULL << max_log2 (ipsec4_out_spd_hash_num_buckets);
713 }
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500714 else if (unformat (input, "ipv4-inbound-spd-flow-cache on"))
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000715 im->input_flow_cache_flag = im->fp_spd_ipv4_in_is_enabled ? 0 : 1;
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500716 else if (unformat (input, "ipv4-inbound-spd-flow-cache off"))
717 im->input_flow_cache_flag = 0;
718 else if (unformat (input, "ipv4-inbound-spd-hash-buckets %d",
719 &ipsec4_in_spd_hash_num_buckets))
720 {
721 im->ipsec4_in_spd_hash_num_buckets =
722 1ULL << max_log2 (ipsec4_in_spd_hash_num_buckets);
723 }
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000724 else if (unformat (input, "ip4 %U", unformat_vlib_cli_sub_input,
725 &sub_input))
Zachary Leafb2d36782021-07-27 05:18:47 -0500726 {
727 uword table_size = ~0;
728 u32 n_buckets = ~0;
729
730 while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
731 {
732 if (unformat (&sub_input, "num-buckets %u", &n_buckets))
733 ;
734 else
735 return clib_error_return (0, "unknown input `%U'",
736 format_unformat_error, &sub_input);
737 }
738
739 ipsec_tun_table_init (AF_IP4, table_size, n_buckets);
740 }
741 else if (unformat (input, "ip6 %U", unformat_vlib_cli_sub_input,
742 &sub_input))
743 {
744 uword table_size = ~0;
745 u32 n_buckets = ~0;
746
747 while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
748 {
749 if (unformat (&sub_input, "num-buckets %u", &n_buckets))
750 ;
751 else
752 return clib_error_return (0, "unknown input `%U'",
753 format_unformat_error, &sub_input);
754 }
755
756 ipsec_tun_table_init (AF_IP6, table_size, n_buckets);
757 }
758 else
759 return clib_error_return (0, "unknown input `%U'",
760 format_unformat_error, input);
761 }
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500762 if (im->output_flow_cache_flag)
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000763 {
764 vec_add2 (im->ipsec4_out_spd_hash_tbl, im->ipsec4_out_spd_hash_tbl,
765 im->ipsec4_out_spd_hash_num_buckets);
766 }
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500767 if (im->input_flow_cache_flag)
768 {
769 vec_add2 (im->ipsec4_in_spd_hash_tbl, im->ipsec4_in_spd_hash_tbl,
770 im->ipsec4_in_spd_hash_num_buckets);
771 }
Zachary Leafb2d36782021-07-27 05:18:47 -0500772
Piotr Bronowski993b6be2022-08-31 13:48:14 +0000773 if (fp_spd_ip4_enabled)
774 pool_alloc_aligned (im->fp_ip4_lookup_hashes_pool,
775 IPSEC_FP_IP4_HASHES_POOL_SIZE, CLIB_CACHE_LINE_BYTES);
776
777 if (fp_spd_ip6_enabled)
778 pool_alloc_aligned (im->fp_ip6_lookup_hashes_pool,
779 IPSEC_FP_IP6_HASHES_POOL_SIZE, CLIB_CACHE_LINE_BYTES);
780
Zachary Leafb2d36782021-07-27 05:18:47 -0500781 return 0;
782}
783
784VLIB_CONFIG_FUNCTION (ipsec_config, "ipsec");
785
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700786/*
787 * fd.io coding-style-patch-verification: ON
788 *
789 * Local Variables:
790 * eval: (c-set-style "gnu")
791 * End:
792 */