blob: 07d9df8f2044f0ac2197eabb22a336ad41634f75 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c : IPSec tunnel support
3 *
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>
Pierre Pfister4c422f92018-12-10 11:19:08 +010022#include <vnet/fib/fib.h>
Neale Ranns12989b52019-09-26 16:20:19 +000023#include <vnet/ipip/ipip.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024
25#include <vnet/ipsec/ipsec.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080026#include <vnet/ipsec/ipsec_tun.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
28static clib_error_t *
29set_interface_spd_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070030 unformat_input_t * input,
31 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -070032{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070033 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -070034 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070035 u32 sw_if_index = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070036 u32 spd_id;
37 int is_add = 1;
Billy McFalla9a20e72017-02-15 11:39:12 -050038 clib_error_t *error = NULL;
Benoît Ganne40aa27e2020-11-06 14:14:23 +010039 int err;
Ed Warnickecb9cada2015-12-08 15:45:58 -070040
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070041 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -070042 return 0;
43
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070044 if (unformat
45 (line_input, "%U %u", unformat_vnet_sw_interface, im->vnet_main,
46 &sw_if_index, &spd_id))
Ed Warnickecb9cada2015-12-08 15:45:58 -070047 ;
48 else if (unformat (line_input, "del"))
49 is_add = 0;
50 else
Billy McFalla9a20e72017-02-15 11:39:12 -050051 {
52 error = clib_error_return (0, "parse error: '%U'",
53 format_unformat_error, line_input);
54 goto done;
55 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Benoît Ganne40aa27e2020-11-06 14:14:23 +010057 err = ipsec_set_interface_spd (vm, sw_if_index, spd_id, is_add);
58 switch (err)
59 {
60 case VNET_API_ERROR_SYSCALL_ERROR_1:
61 error = clib_error_return (0, "no such spd-id");
62 break;
63 case VNET_API_ERROR_SYSCALL_ERROR_2:
64 error = clib_error_return (0, "spd already assigned");
65 break;
66 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Billy McFalla9a20e72017-02-15 11:39:12 -050068done:
69 unformat_free (line_input);
70
71 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072}
73
74VLIB_CLI_COMMAND (set_interface_spd_command, static) = {
75 .path = "set interface ipsec spd",
76 .short_help =
77 "set interface ipsec spd <int> <id>",
78 .function = set_interface_spd_command_fn,
79};
80
81static clib_error_t *
82ipsec_sa_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070083 unformat_input_t * input,
84 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -070085{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070086 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns8d7c5022019-02-06 01:41:05 -080087 ipsec_crypto_alg_t crypto_alg;
88 ipsec_integ_alg_t integ_alg;
Maxime Peim0e2f1882022-12-22 11:26:57 +000089 u32 anti_replay_window_size;
Neale Ranns8d7c5022019-02-06 01:41:05 -080090 ipsec_protocol_t proto;
91 ipsec_sa_flags_t flags;
92 clib_error_t *error;
Kingwel Xied3d12052019-03-07 06:34:30 -050093 ipsec_key_t ck = { 0 };
94 ipsec_key_t ik = { 0 };
Neale Rannsabc56602020-04-01 09:45:23 +000095 u32 id, spi, salt, sai;
Mohammed Hawari048189e2021-02-05 19:04:42 +010096 int i = 0;
Neale Rannsabc56602020-04-01 09:45:23 +000097 u16 udp_src, udp_dst;
Neale Ranns8d7c5022019-02-06 01:41:05 -080098 int is_add, rv;
Benoît Gannebdd8b572020-07-28 15:56:15 +020099 u32 m_args = 0;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000100 tunnel_t tun = {};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Neale Ranns8dc75c02019-12-10 01:08:19 +0000102 salt = 0;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800103 error = NULL;
104 is_add = 0;
105 flags = IPSEC_SA_FLAG_NONE;
106 proto = IPSEC_PROTOCOL_ESP;
Maxime Peim0e2f1882022-12-22 11:26:57 +0000107 anti_replay_window_size = 0;
Neale Rannse6be7022019-06-04 15:37:34 +0000108 integ_alg = IPSEC_INTEG_ALG_NONE;
109 crypto_alg = IPSEC_CRYPTO_ALG_NONE;
Neale Rannsabc56602020-04-01 09:45:23 +0000110 udp_src = udp_dst = IPSEC_UDP_PORT_NONE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700112 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 return 0;
114
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700115 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
116 {
Neale Ranns8d7c5022019-02-06 01:41:05 -0800117 if (unformat (line_input, "add %u", &id))
Benoît Gannebdd8b572020-07-28 15:56:15 +0200118 {
119 is_add = 1;
120 m_args |= 1 << 0;
121 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800122 else if (unformat (line_input, "del %u", &id))
Benoît Gannebdd8b572020-07-28 15:56:15 +0200123 {
124 is_add = 0;
125 m_args |= 1 << 0;
126 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800127 else if (unformat (line_input, "spi %u", &spi))
Benoît Gannebdd8b572020-07-28 15:56:15 +0200128 m_args |= 1 << 1;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800129 else if (unformat (line_input, "salt 0x%x", &salt))
Neale Ranns80f6fd52019-04-16 02:41:34 +0000130 ;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700131 else if (unformat (line_input, "esp"))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800132 proto = IPSEC_PROTOCOL_ESP;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700133 else if (unformat (line_input, "ah"))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800134 proto = IPSEC_PROTOCOL_AH;
135 else if (unformat (line_input, "crypto-key %U",
136 unformat_ipsec_key, &ck))
137 ;
138 else if (unformat (line_input, "crypto-alg %U",
139 unformat_ipsec_crypto_alg, &crypto_alg))
140 ;
141 else if (unformat (line_input, "integ-key %U", unformat_ipsec_key, &ik))
142 ;
143 else if (unformat (line_input, "integ-alg %U",
144 unformat_ipsec_integ_alg, &integ_alg))
145 ;
Damjan Marionc50bcbd2022-05-08 20:48:37 +0200146 else if (unformat (line_input, "%U", unformat_tunnel, &tun))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700147 {
Neale Ranns8d7c5022019-02-06 01:41:05 -0800148 flags |= IPSEC_SA_FLAG_IS_TUNNEL;
Neale Ranns9ec846c2021-02-09 14:04:02 +0000149 if (AF_IP6 == tunnel_get_af (&tun))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800150 flags |= IPSEC_SA_FLAG_IS_TUNNEL_V6;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700151 }
Mohammed Hawari048189e2021-02-05 19:04:42 +0100152 else if (unformat (line_input, "udp-src-port %d", &i))
153 udp_src = i;
154 else if (unformat (line_input, "udp-dst-port %d", &i))
155 udp_dst = i;
Maxime Peim0e2f1882022-12-22 11:26:57 +0000156 else if (unformat (line_input, "anti-replay-size %d",
157 &anti_replay_window_size))
158 flags |= IPSEC_SA_FLAG_USE_ANTI_REPLAY;
Christian Hopps99975382020-07-17 09:53:18 -0400159 else if (unformat (line_input, "inbound"))
160 flags |= IPSEC_SA_FLAG_IS_INBOUND;
161 else if (unformat (line_input, "use-anti-replay"))
162 flags |= IPSEC_SA_FLAG_USE_ANTI_REPLAY;
163 else if (unformat (line_input, "use-esn"))
164 flags |= IPSEC_SA_FLAG_USE_ESN;
Radu Nicolau717de092018-08-03 10:37:24 +0100165 else if (unformat (line_input, "udp-encap"))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800166 flags |= IPSEC_SA_FLAG_UDP_ENCAP;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000167 else if (unformat (line_input, "async"))
168 flags |= IPSEC_SA_FLAG_IS_ASYNC;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700169 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500170 {
171 error = clib_error_return (0, "parse error: '%U'",
172 format_unformat_error, line_input);
173 goto done;
174 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700175 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
Benoît Gannebdd8b572020-07-28 15:56:15 +0200177 if (!(m_args & 1))
178 {
179 error = clib_error_return (0, "missing id");
180 goto done;
181 }
182
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000183 if (is_add)
Benoît Gannebdd8b572020-07-28 15:56:15 +0200184 {
185 if (!(m_args & 2))
186 {
187 error = clib_error_return (0, "missing spi");
188 goto done;
189 }
Maxime Peim0e2f1882022-12-22 11:26:57 +0000190 rv =
191 ipsec_sa_add_and_lock (id, spi, proto, crypto_alg, &ck, integ_alg, &ik,
192 flags, clib_host_to_net_u32 (salt), udp_src,
193 udp_dst, anti_replay_window_size, &tun, &sai);
Benoît Gannebdd8b572020-07-28 15:56:15 +0200194 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800195 else
Benoît Gannebdd8b572020-07-28 15:56:15 +0200196 {
197 rv = ipsec_sa_unlock_id (id);
198 }
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000199
Neale Ranns8d7c5022019-02-06 01:41:05 -0800200 if (rv)
Neale Rannsf16e9a52021-02-25 19:09:24 +0000201 error = clib_error_return (0, "failed: %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Billy McFalla9a20e72017-02-15 11:39:12 -0500203done:
204 unformat_free (line_input);
205
206 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207}
208
209VLIB_CLI_COMMAND (ipsec_sa_add_del_command, static) = {
210 .path = "ipsec sa",
211 .short_help =
212 "ipsec sa [add|del]",
213 .function = ipsec_sa_add_del_command_fn,
214};
215
216static clib_error_t *
Maxime Peim1271e3a2023-03-20 14:13:56 +0000217ipsec_sa_bind_cli (vlib_main_t *vm, unformat_input_t *input,
218 vlib_cli_command_t *cmd)
219{
220 unformat_input_t _line_input, *line_input = &_line_input;
221 u32 id = ~0;
222 u32 worker = ~0;
223 bool bind = 1;
224 int rv;
225 clib_error_t *error = NULL;
226
227 if (!unformat_user (input, unformat_line_input, line_input))
228 return 0;
229
230 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
231 {
232 if (unformat (line_input, "unbind"))
233 bind = 0;
Maxime Peimf902ba52023-07-03 09:42:58 +0200234 else if (id == ~0 && unformat (line_input, "%u", &id))
Maxime Peim1271e3a2023-03-20 14:13:56 +0000235 ;
236 else if (unformat (line_input, "%u", &worker))
237 ;
238 else
239 {
240 error = clib_error_return (0, "parse error: '%U'",
241 format_unformat_error, line_input);
242 goto done;
243 }
244 }
245
246 if (id == ~0)
247 {
248 error = clib_error_return (0, "please specify SA ID");
249 goto done;
250 }
251
252 if (bind && ~0 == worker)
253 {
254 error = clib_error_return (0, "please specify worker to bind to");
255 goto done;
256 }
257
258 rv = ipsec_sa_bind (id, worker, bind);
259 switch (rv)
260 {
261 case VNET_API_ERROR_INVALID_VALUE:
262 error = clib_error_return (0, "please specify a valid SA ID");
263 break;
264 case VNET_API_ERROR_INVALID_WORKER:
265 error = clib_error_return (0, "please specify a valid worker index");
266 break;
267 }
268
269done:
270 unformat_free (line_input);
271
272 return error;
273}
274
275VLIB_CLI_COMMAND (ipsec_sa_bind_cmd, static) = {
276 .path = "ipsec sa bind",
277 .short_help = "ipsec sa [unbind] <sa-id> <worker>",
278 .function = ipsec_sa_bind_cli,
279};
280
281static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282ipsec_spd_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700283 unformat_input_t * input,
284 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700286 unformat_input_t _line_input, *line_input = &_line_input;
Damjan Marion3f54b182016-08-16 11:27:02 +0200287 u32 spd_id = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 int is_add = ~0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500289 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700291 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 return 0;
293
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700294 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
295 {
296 if (unformat (line_input, "add"))
297 is_add = 1;
298 else if (unformat (line_input, "del"))
299 is_add = 0;
300 else if (unformat (line_input, "%u", &spd_id))
301 ;
302 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500303 {
304 error = clib_error_return (0, "parse error: '%U'",
305 format_unformat_error, line_input);
306 goto done;
307 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700308 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Damjan Marion3f54b182016-08-16 11:27:02 +0200310 if (spd_id == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500311 {
312 error = clib_error_return (0, "please specify SPD ID");
313 goto done;
314 }
Damjan Marion3f54b182016-08-16 11:27:02 +0200315
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700316 ipsec_add_del_spd (vm, spd_id, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317
Billy McFalla9a20e72017-02-15 11:39:12 -0500318done:
319 unformat_free (line_input);
320
321 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322}
323
324VLIB_CLI_COMMAND (ipsec_spd_add_del_command, static) = {
325 .path = "ipsec spd",
326 .short_help =
327 "ipsec spd [add|del] <id>",
328 .function = ipsec_spd_add_del_command_fn,
329};
330
331
332static clib_error_t *
333ipsec_policy_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700334 unformat_input_t * input,
335 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700337 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338 ipsec_policy_t p;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800339 int rv, is_add = 0;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000340 u32 tmp, tmp2, stat_index, local_range_set, remote_range_set;
Billy McFalla9a20e72017-02-15 11:39:12 -0500341 clib_error_t *error = NULL;
Neale Ranns9f231d42019-03-19 10:06:00 +0000342 u32 is_outbound;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
Dave Barachb7b92992018-10-17 10:38:51 -0400344 clib_memset (&p, 0, sizeof (p));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 p.lport.stop = p.rport.stop = ~0;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000346 remote_range_set = local_range_set = is_outbound = 0;
Piotr Bronowski815c6a42022-06-09 09:09:28 +0000347 p.protocol = IPSEC_POLICY_PROTOCOL_ANY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700349 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 return 0;
351
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700352 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
353 {
354 if (unformat (line_input, "add"))
355 is_add = 1;
356 else if (unformat (line_input, "del"))
357 is_add = 0;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000358 else if (unformat (line_input, "ip6"))
359 p.is_ipv6 = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700360 else if (unformat (line_input, "spd %u", &p.id))
361 ;
362 else if (unformat (line_input, "inbound"))
Neale Ranns9f231d42019-03-19 10:06:00 +0000363 is_outbound = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700364 else if (unformat (line_input, "outbound"))
Neale Ranns9f231d42019-03-19 10:06:00 +0000365 is_outbound = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700366 else if (unformat (line_input, "priority %d", &p.priority))
367 ;
368 else if (unformat (line_input, "protocol %u", &tmp))
369 p.protocol = (u8) tmp;
370 else
371 if (unformat
372 (line_input, "action %U", unformat_ipsec_policy_action,
373 &p.policy))
374 {
375 if (p.policy == IPSEC_POLICY_ACTION_RESOLVE)
Billy McFalla9a20e72017-02-15 11:39:12 -0500376 {
377 error = clib_error_return (0, "unsupported action: 'resolve'");
378 goto done;
379 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700380 }
381 else if (unformat (line_input, "sa %u", &p.sa_id))
382 ;
383 else if (unformat (line_input, "local-ip-range %U - %U",
384 unformat_ip4_address, &p.laddr.start.ip4,
385 unformat_ip4_address, &p.laddr.stop.ip4))
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000386 local_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700387 else if (unformat (line_input, "remote-ip-range %U - %U",
388 unformat_ip4_address, &p.raddr.start.ip4,
389 unformat_ip4_address, &p.raddr.stop.ip4))
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000390 remote_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700391 else if (unformat (line_input, "local-ip-range %U - %U",
392 unformat_ip6_address, &p.laddr.start.ip6,
393 unformat_ip6_address, &p.laddr.stop.ip6))
394 {
395 p.is_ipv6 = 1;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000396 local_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700397 }
398 else if (unformat (line_input, "remote-ip-range %U - %U",
399 unformat_ip6_address, &p.raddr.start.ip6,
400 unformat_ip6_address, &p.raddr.stop.ip6))
401 {
402 p.is_ipv6 = 1;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000403 remote_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700404 }
405 else if (unformat (line_input, "local-port-range %u - %u", &tmp, &tmp2))
406 {
407 p.lport.start = tmp;
408 p.lport.stop = tmp2;
409 }
410 else
411 if (unformat (line_input, "remote-port-range %u - %u", &tmp, &tmp2))
412 {
413 p.rport.start = tmp;
414 p.rport.stop = tmp2;
415 }
416 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500417 {
418 error = clib_error_return (0, "parse error: '%U'",
419 format_unformat_error, line_input);
420 goto done;
421 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700422 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000424 if (!remote_range_set)
425 {
426 if (p.is_ipv6)
427 clib_memset (&p.raddr.stop.ip6, 0xff, 16);
428 else
429 clib_memset (&p.raddr.stop.ip4, 0xff, 4);
430 }
431 if (!local_range_set)
432 {
433 if (p.is_ipv6)
434 clib_memset (&p.laddr.stop.ip6, 0xff, 16);
435 else
436 clib_memset (&p.laddr.stop.ip4, 0xff, 4);
437 }
438
Neale Ranns9f231d42019-03-19 10:06:00 +0000439 rv = ipsec_policy_mk_type (is_outbound, p.is_ipv6, p.policy, &p.type);
440
441 if (rv)
442 {
443 error = clib_error_return (0, "unsupported policy type for:",
444 " outboud:%s %s action:%U",
445 (is_outbound ? "yes" : "no"),
446 (p.is_ipv6 ? "IPv4" : "IPv6"),
447 format_ipsec_policy_action, p.policy);
448 goto done;
449 }
450
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800451 rv = ipsec_add_del_policy (vm, &p, is_add, &stat_index);
452
453 if (!rv)
454 vlib_cli_output (vm, "policy-index:%d", stat_index);
455 else
456 vlib_cli_output (vm, "error:%d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500457
458done:
459 unformat_free (line_input);
460
461 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462}
463
464VLIB_CLI_COMMAND (ipsec_policy_add_del_command, static) = {
465 .path = "ipsec policy",
466 .short_help =
467 "ipsec policy [add|del] spd <id> priority <n> ",
468 .function = ipsec_policy_add_del_command_fn,
469};
470
Neale Rannsb294f102019-04-03 13:17:50 +0000471static void
Neale Ranns670027a2019-08-27 12:47:17 +0000472ipsec_sa_show_all (vlib_main_t * vm, ipsec_main_t * im, u8 detail)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473{
Neale Rannsb294f102019-04-03 13:17:50 +0000474 u32 sai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000476 pool_foreach_index (sai, ipsec_sa_pool)
477 {
478 vlib_cli_output (vm, "%U", format_ipsec_sa, sai,
479 (detail ? IPSEC_FORMAT_DETAIL : IPSEC_FORMAT_BRIEF));
480 }
Neale Rannsb294f102019-04-03 13:17:50 +0000481}
482
483static void
484ipsec_spd_show_all (vlib_main_t * vm, ipsec_main_t * im)
485{
486 u32 spdi;
487
Damjan Marionb2c31b62020-12-13 21:47:40 +0100488 pool_foreach_index (spdi, im->spds) {
Neale Rannsb294f102019-04-03 13:17:50 +0000489 vlib_cli_output(vm, "%U", format_ipsec_spd, spdi);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100490 }
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000491
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500492 if (im->output_flow_cache_flag)
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000493 {
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500494 vlib_cli_output (vm, "%U", format_ipsec_out_spd_flow_cache);
495 }
496 if (im->input_flow_cache_flag)
497 {
498 vlib_cli_output (vm, "%U", format_ipsec_in_spd_flow_cache);
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000499 }
Neale Rannsb294f102019-04-03 13:17:50 +0000500}
501
502static void
503ipsec_spd_bindings_show_all (vlib_main_t * vm, ipsec_main_t * im)
504{
505 u32 spd_id, sw_if_index;
Neale Rannsd83c4a82019-06-14 06:48:27 -0700506 ipsec_spd_t *spd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Neale Ranns311124e2019-01-24 04:52:25 -0800508 vlib_cli_output (vm, "SPD Bindings:");
Neale Ranns8d7c5022019-02-06 01:41:05 -0800509
Neale Ranns311124e2019-01-24 04:52:25 -0800510 hash_foreach(sw_if_index, spd_id, im->spd_index_by_sw_if_index, ({
Neale Rannsd83c4a82019-06-14 06:48:27 -0700511 spd = pool_elt_at_index (im->spds, spd_id);
512 vlib_cli_output (vm, " %d -> %U", spd->id,
Neale Ranns8d7c5022019-02-06 01:41:05 -0800513 format_vnet_sw_if_index_name, im->vnet_main,
514 sw_if_index);
Neale Ranns311124e2019-01-24 04:52:25 -0800515 }));
Neale Rannsb294f102019-04-03 13:17:50 +0000516}
Neale Ranns311124e2019-01-24 04:52:25 -0800517
Neale Ranns12989b52019-09-26 16:20:19 +0000518static walk_rc_t
519ipsec_tun_protect_show_one (index_t itpi, void *ctx)
Neale Rannsb294f102019-04-03 13:17:50 +0000520{
Neale Ranns28287212019-12-16 00:53:11 +0000521 vlib_cli_output (ctx, "%U", format_ipsec_tun_protect_index, itpi);
Neale Rannsb294f102019-04-03 13:17:50 +0000522
Neale Ranns12989b52019-09-26 16:20:19 +0000523 return (WALK_CONTINUE);
524}
525
526static void
527ipsec_tunnel_show_all (vlib_main_t * vm)
528{
529 ipsec_tun_protect_walk (ipsec_tun_protect_show_one, vm);
Neale Rannsb294f102019-04-03 13:17:50 +0000530}
531
532static clib_error_t *
533show_ipsec_command_fn (vlib_main_t * vm,
534 unformat_input_t * input, vlib_cli_command_t * cmd)
535{
536 ipsec_main_t *im = &ipsec_main;
537
Neale Ranns670027a2019-08-27 12:47:17 +0000538 ipsec_sa_show_all (vm, im, 0);
Neale Rannsb294f102019-04-03 13:17:50 +0000539 ipsec_spd_show_all (vm, im);
540 ipsec_spd_bindings_show_all (vm, im);
Neale Ranns12989b52019-09-26 16:20:19 +0000541 ipsec_tun_protect_walk (ipsec_tun_protect_show_one, vm);
Neale Rannsb294f102019-04-03 13:17:50 +0000542
Fan Zhangf5395782020-04-29 14:00:03 +0100543 vlib_cli_output (vm, "IPSec async mode: %s",
544 (im->async_mode ? "on" : "off"));
545
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 return 0;
547}
548
549VLIB_CLI_COMMAND (show_ipsec_command, static) = {
Neale Rannsb294f102019-04-03 13:17:50 +0000550 .path = "show ipsec all",
551 .short_help = "show ipsec all",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 .function = show_ipsec_command_fn,
553};
554
555static clib_error_t *
Neale Rannsb294f102019-04-03 13:17:50 +0000556show_ipsec_sa_command_fn (vlib_main_t * vm,
557 unformat_input_t * input, vlib_cli_command_t * cmd)
558{
559 ipsec_main_t *im = &ipsec_main;
560 u32 sai = ~0;
Neale Ranns670027a2019-08-27 12:47:17 +0000561 u8 detail = 0;
Neale Rannsb294f102019-04-03 13:17:50 +0000562
563 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
564 {
565 if (unformat (input, "%u", &sai))
566 ;
Neale Ranns670027a2019-08-27 12:47:17 +0000567 if (unformat (input, "detail"))
568 detail = 1;
Neale Rannsb294f102019-04-03 13:17:50 +0000569 else
570 break;
571 }
572
573 if (~0 == sai)
Neale Ranns670027a2019-08-27 12:47:17 +0000574 ipsec_sa_show_all (vm, im, detail);
Neale Rannsb294f102019-04-03 13:17:50 +0000575 else
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400576 vlib_cli_output (vm, "%U", format_ipsec_sa, sai,
577 IPSEC_FORMAT_DETAIL | IPSEC_FORMAT_INSECURE);
Neale Rannsb294f102019-04-03 13:17:50 +0000578
579 return 0;
580}
581
Neale Rannsc87b66c2019-02-07 07:26:12 -0800582static clib_error_t *
583clear_ipsec_sa_command_fn (vlib_main_t * vm,
584 unformat_input_t * input, vlib_cli_command_t * cmd)
585{
Neale Rannsc87b66c2019-02-07 07:26:12 -0800586 u32 sai = ~0;
587
588 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
589 {
590 if (unformat (input, "%u", &sai))
591 ;
592 else
593 break;
594 }
595
596 if (~0 == sai)
597 {
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000598 pool_foreach_index (sai, ipsec_sa_pool)
599 {
600 ipsec_sa_clear (sai);
601 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800602 }
603 else
604 {
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000605 if (pool_is_free_index (ipsec_sa_pool, sai))
Neale Rannsc87b66c2019-02-07 07:26:12 -0800606 return clib_error_return (0, "unknown SA index: %d", sai);
607 else
608 ipsec_sa_clear (sai);
609 }
610
611 return 0;
612}
613
Neale Rannsb294f102019-04-03 13:17:50 +0000614VLIB_CLI_COMMAND (show_ipsec_sa_command, static) = {
615 .path = "show ipsec sa",
616 .short_help = "show ipsec sa [index]",
617 .function = show_ipsec_sa_command_fn,
618};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800619
620VLIB_CLI_COMMAND (clear_ipsec_sa_command, static) = {
621 .path = "clear ipsec sa",
622 .short_help = "clear ipsec sa [index]",
623 .function = clear_ipsec_sa_command_fn,
624};
Neale Rannsb294f102019-04-03 13:17:50 +0000625
626static clib_error_t *
627show_ipsec_spd_command_fn (vlib_main_t * vm,
628 unformat_input_t * input, vlib_cli_command_t * cmd)
629{
630 ipsec_main_t *im = &ipsec_main;
631 u8 show_bindings = 0;
632 u32 spdi = ~0;
633
634 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
635 {
636 if (unformat (input, "%u", &spdi))
637 ;
638 else if (unformat (input, "bindings"))
639 show_bindings = 1;
640 else
641 break;
642 }
643
644 if (show_bindings)
645 ipsec_spd_bindings_show_all (vm, im);
646 else if (~0 != spdi)
647 vlib_cli_output (vm, "%U", format_ipsec_spd, spdi);
648 else
649 ipsec_spd_show_all (vm, im);
650
651 return 0;
652}
653
Neale Rannsb294f102019-04-03 13:17:50 +0000654VLIB_CLI_COMMAND (show_ipsec_spd_command, static) = {
655 .path = "show ipsec spd",
656 .short_help = "show ipsec spd [index]",
657 .function = show_ipsec_spd_command_fn,
658};
Neale Rannsb294f102019-04-03 13:17:50 +0000659
660static clib_error_t *
661show_ipsec_tunnel_command_fn (vlib_main_t * vm,
662 unformat_input_t * input,
663 vlib_cli_command_t * cmd)
664{
Neale Ranns12989b52019-09-26 16:20:19 +0000665 ipsec_tunnel_show_all (vm);
Neale Rannsb294f102019-04-03 13:17:50 +0000666
667 return 0;
668}
669
Neale Rannsb294f102019-04-03 13:17:50 +0000670VLIB_CLI_COMMAND (show_ipsec_tunnel_command, static) = {
671 .path = "show ipsec tunnel",
Neale Ranns12989b52019-09-26 16:20:19 +0000672 .short_help = "show ipsec tunnel",
Neale Rannsb294f102019-04-03 13:17:50 +0000673 .function = show_ipsec_tunnel_command_fn,
674};
Neale Rannsb294f102019-04-03 13:17:50 +0000675
676static clib_error_t *
Klement Sekerab4d30532018-11-08 13:00:02 +0100677ipsec_show_backends_command_fn (vlib_main_t * vm,
678 unformat_input_t * input,
679 vlib_cli_command_t * cmd)
680{
681 ipsec_main_t *im = &ipsec_main;
682 u32 verbose = 0;
683
684 (void) unformat (input, "verbose %u", &verbose);
685
686 vlib_cli_output (vm, "IPsec AH backends available:");
687 u8 *s = format (NULL, "%=25s %=25s %=10s\n", "Name", "Index", "Active");
688 ipsec_ah_backend_t *ab;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100689 pool_foreach (ab, im->ah_backends) {
Klement Sekerab4d30532018-11-08 13:00:02 +0100690 s = format (s, "%=25s %=25u %=10s\n", ab->name, ab - im->ah_backends,
691 ab - im->ah_backends == im->ah_current_backend ? "yes" : "no");
692 if (verbose) {
693 vlib_node_t *n;
694 n = vlib_get_node (vm, ab->ah4_encrypt_node_index);
695 s = format (s, " enc4 %s (next %d)\n", n->name, ab->ah4_encrypt_next_index);
696 n = vlib_get_node (vm, ab->ah4_decrypt_node_index);
697 s = format (s, " dec4 %s (next %d)\n", n->name, ab->ah4_decrypt_next_index);
698 n = vlib_get_node (vm, ab->ah6_encrypt_node_index);
699 s = format (s, " enc6 %s (next %d)\n", n->name, ab->ah6_encrypt_next_index);
700 n = vlib_get_node (vm, ab->ah6_decrypt_node_index);
701 s = format (s, " dec6 %s (next %d)\n", n->name, ab->ah6_decrypt_next_index);
702 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100703 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100704 vlib_cli_output (vm, "%v", s);
Damjan Marion8bea5892022-04-04 22:40:45 +0200705 vec_set_len (s, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100706 vlib_cli_output (vm, "IPsec ESP backends available:");
707 s = format (s, "%=25s %=25s %=10s\n", "Name", "Index", "Active");
708 ipsec_esp_backend_t *eb;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100709 pool_foreach (eb, im->esp_backends) {
Klement Sekerab4d30532018-11-08 13:00:02 +0100710 s = format (s, "%=25s %=25u %=10s\n", eb->name, eb - im->esp_backends,
711 eb - im->esp_backends == im->esp_current_backend ? "yes"
712 : "no");
713 if (verbose) {
714 vlib_node_t *n;
715 n = vlib_get_node (vm, eb->esp4_encrypt_node_index);
716 s = format (s, " enc4 %s (next %d)\n", n->name, eb->esp4_encrypt_next_index);
717 n = vlib_get_node (vm, eb->esp4_decrypt_node_index);
718 s = format (s, " dec4 %s (next %d)\n", n->name, eb->esp4_decrypt_next_index);
719 n = vlib_get_node (vm, eb->esp6_encrypt_node_index);
720 s = format (s, " enc6 %s (next %d)\n", n->name, eb->esp6_encrypt_next_index);
721 n = vlib_get_node (vm, eb->esp6_decrypt_node_index);
722 s = format (s, " dec6 %s (next %d)\n", n->name, eb->esp6_decrypt_next_index);
723 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100724 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100725 vlib_cli_output (vm, "%v", s);
726
727 vec_free (s);
728 return 0;
729}
730
Klement Sekerab4d30532018-11-08 13:00:02 +0100731VLIB_CLI_COMMAND (ipsec_show_backends_command, static) = {
732 .path = "show ipsec backends",
733 .short_help = "show ipsec backends",
734 .function = ipsec_show_backends_command_fn,
735};
Klement Sekerab4d30532018-11-08 13:00:02 +0100736
737static clib_error_t *
738ipsec_select_backend_command_fn (vlib_main_t * vm,
739 unformat_input_t * input,
740 vlib_cli_command_t * cmd)
741{
Klement Sekerab4d30532018-11-08 13:00:02 +0100742 unformat_input_t _line_input, *line_input = &_line_input;
Neale Rannse8915fc2019-04-23 20:57:55 -0400743 ipsec_main_t *im = &ipsec_main;
744 clib_error_t *error;
745 u32 backend_index;
746
747 error = ipsec_rsc_in_use (im);
748
749 if (error)
750 return error;
751
Klement Sekerab4d30532018-11-08 13:00:02 +0100752 /* Get a line of input. */
753 if (!unformat_user (input, unformat_line_input, line_input))
754 return 0;
755
756 if (unformat (line_input, "ah"))
757 {
758 if (unformat (line_input, "%u", &backend_index))
759 {
760 if (ipsec_select_ah_backend (im, backend_index) < 0)
761 {
762 return clib_error_return (0, "Invalid AH backend index `%u'",
763 backend_index);
764 }
765 }
766 else
767 {
768 return clib_error_return (0, "Invalid backend index `%U'",
769 format_unformat_error, line_input);
770 }
771 }
772 else if (unformat (line_input, "esp"))
773 {
774 if (unformat (line_input, "%u", &backend_index))
775 {
776 if (ipsec_select_esp_backend (im, backend_index) < 0)
777 {
778 return clib_error_return (0, "Invalid ESP backend index `%u'",
779 backend_index);
780 }
781 }
782 else
783 {
784 return clib_error_return (0, "Invalid backend index `%U'",
785 format_unformat_error, line_input);
786 }
787 }
788 else
789 {
790 return clib_error_return (0, "Unknown input `%U'",
791 format_unformat_error, line_input);
792 }
793
794 return 0;
795}
796
Klement Sekerab4d30532018-11-08 13:00:02 +0100797VLIB_CLI_COMMAND (ipsec_select_backend_command, static) = {
798 .path = "ipsec select backend",
799 .short_help = "ipsec select backend <ah|esp> <backend index>",
800 .function = ipsec_select_backend_command_fn,
801};
802
Klement Sekerab4d30532018-11-08 13:00:02 +0100803
804static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805clear_ipsec_counters_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700806 unformat_input_t * input,
807 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800809 vlib_clear_combined_counters (&ipsec_spd_policy_counters);
Neale Rannseba31ec2019-02-17 18:04:27 +0000810 vlib_clear_combined_counters (&ipsec_sa_counters);
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100811 for (int i = 0; i < IPSEC_SA_N_ERRORS; i++)
812 vlib_clear_simple_counters (&ipsec_sa_err_counters[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800814 return (NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815}
816
817VLIB_CLI_COMMAND (clear_ipsec_counters_command, static) = {
818 .path = "clear ipsec counters",
819 .short_help = "clear ipsec counters",
820 .function = clear_ipsec_counters_command_fn,
821};
822
Neale Rannsc87b66c2019-02-07 07:26:12 -0800823static clib_error_t *
824ipsec_tun_protect_cmd (vlib_main_t * vm,
825 unformat_input_t * input, vlib_cli_command_t * cmd)
826{
827 unformat_input_t _line_input, *line_input = &_line_input;
828 u32 sw_if_index, is_del, sa_in, sa_out, *sa_ins = NULL;
Neale Ranns28287212019-12-16 00:53:11 +0000829 ip_address_t peer = { };
Neale Rannsc87b66c2019-02-07 07:26:12 -0800830 vnet_main_t *vnm;
831
832 is_del = 0;
833 sw_if_index = ~0;
834 vnm = vnet_get_main ();
835
836 if (!unformat_user (input, unformat_line_input, line_input))
837 return 0;
838
839 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
840 {
841 if (unformat (line_input, "del"))
842 is_del = 1;
843 else if (unformat (line_input, "add"))
844 is_del = 0;
845 else if (unformat (line_input, "sa-in %d", &sa_in))
846 vec_add1 (sa_ins, sa_in);
847 else if (unformat (line_input, "sa-out %d", &sa_out))
848 ;
849 else if (unformat (line_input, "%U",
850 unformat_vnet_sw_interface, vnm, &sw_if_index))
851 ;
Neale Ranns28287212019-12-16 00:53:11 +0000852 else if (unformat (line_input, "%U", unformat_ip_address, &peer))
853 ;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800854 else
855 return (clib_error_return (0, "unknown input '%U'",
856 format_unformat_error, line_input));
857 }
858
859 if (!is_del)
Neale Ranns28287212019-12-16 00:53:11 +0000860 ipsec_tun_protect_update (sw_if_index, &peer, sa_out, sa_ins);
Eric Kinzie609d5792020-10-13 20:02:11 -0400861 else
862 ipsec_tun_protect_del (sw_if_index, &peer);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800863
864 unformat_free (line_input);
865 return NULL;
866}
867
868/**
869 * Protect tunnel with IPSEC
870 */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800871VLIB_CLI_COMMAND (ipsec_tun_protect_cmd_node, static) =
872{
873 .path = "ipsec tunnel protect",
874 .function = ipsec_tun_protect_cmd,
Eric Kinzie609d5792020-10-13 20:02:11 -0400875 .short_help = "ipsec tunnel protect <interface> input-sa <SA> output-sa <SA> [add|del]",
Neale Rannsc87b66c2019-02-07 07:26:12 -0800876 // this is not MP safe
877};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800878
Neale Rannsc87b66c2019-02-07 07:26:12 -0800879
880static clib_error_t *
881ipsec_tun_protect_show (vlib_main_t * vm,
882 unformat_input_t * input, vlib_cli_command_t * cmd)
883{
884 ipsec_tun_protect_walk (ipsec_tun_protect_show_one, vm);
885
886 return NULL;
887}
888
889/**
890 * show IPSEC tunnel protection
891 */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800892VLIB_CLI_COMMAND (ipsec_tun_protect_show_node, static) =
893{
894 .path = "show ipsec protect",
895 .function = ipsec_tun_protect_show,
896 .short_help = "show ipsec protect",
897};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800898
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000899static int
Neale Ranns302b25a2020-10-19 13:23:33 +0000900ipsec_tun_protect4_hash_show_one (clib_bihash_kv_8_16_t * kv, void *arg)
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000901{
902 ipsec4_tunnel_kv_t *ikv = (ipsec4_tunnel_kv_t *) kv;
903 vlib_main_t *vm = arg;
904
905 vlib_cli_output (vm, " %U", format_ipsec4_tunnel_kv, ikv);
906
907 return (BIHASH_WALK_CONTINUE);
908}
909
910static int
Neale Ranns302b25a2020-10-19 13:23:33 +0000911ipsec_tun_protect6_hash_show_one (clib_bihash_kv_24_16_t * kv, void *arg)
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000912{
913 ipsec6_tunnel_kv_t *ikv = (ipsec6_tunnel_kv_t *) kv;
914 vlib_main_t *vm = arg;
915
916 vlib_cli_output (vm, " %U", format_ipsec6_tunnel_kv, ikv);
917
918 return (BIHASH_WALK_CONTINUE);
919}
920
Neale Ranns41afb332019-07-16 06:19:35 -0700921static clib_error_t *
922ipsec_tun_protect_hash_show (vlib_main_t * vm,
923 unformat_input_t * input,
924 vlib_cli_command_t * cmd)
925{
926 ipsec_main_t *im = &ipsec_main;
927
928 {
Neale Ranns41afb332019-07-16 06:19:35 -0700929 vlib_cli_output (vm, "IPv4:");
930
Neale Ranns302b25a2020-10-19 13:23:33 +0000931 clib_bihash_foreach_key_value_pair_8_16
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000932 (&im->tun4_protect_by_key, ipsec_tun_protect4_hash_show_one, vm);
Neale Ranns41afb332019-07-16 06:19:35 -0700933
934 vlib_cli_output (vm, "IPv6:");
935
Neale Ranns302b25a2020-10-19 13:23:33 +0000936 clib_bihash_foreach_key_value_pair_24_16
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000937 (&im->tun6_protect_by_key, ipsec_tun_protect6_hash_show_one, vm);
Neale Ranns41afb332019-07-16 06:19:35 -0700938 }
939
940 return NULL;
941}
942
943/**
944 * show IPSEC tunnel protection hash tables
945 */
Neale Ranns41afb332019-07-16 06:19:35 -0700946VLIB_CLI_COMMAND (ipsec_tun_protect_hash_show_node, static) =
947{
948 .path = "show ipsec protect-hash",
949 .function = ipsec_tun_protect_hash_show,
950 .short_help = "show ipsec protect-hash",
951};
Neale Ranns41afb332019-07-16 06:19:35 -0700952
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953clib_error_t *
954ipsec_cli_init (vlib_main_t * vm)
955{
956 return 0;
957}
958
959VLIB_INIT_FUNCTION (ipsec_cli_init);
960
Fan Zhangf5395782020-04-29 14:00:03 +0100961static clib_error_t *
962set_async_mode_command_fn (vlib_main_t * vm, unformat_input_t * input,
963 vlib_cli_command_t * cmd)
964{
965 unformat_input_t _line_input, *line_input = &_line_input;
966 int async_enable = 0;
967
968 if (!unformat_user (input, unformat_line_input, line_input))
969 return 0;
970
971 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
972 {
973 if (unformat (line_input, "on"))
974 async_enable = 1;
975 else if (unformat (line_input, "off"))
976 async_enable = 0;
977 else
978 return (clib_error_return (0, "unknown input '%U'",
979 format_unformat_error, line_input));
980 }
981
Fan Zhangf5395782020-04-29 14:00:03 +0100982 ipsec_set_async_mode (async_enable);
983
984 unformat_free (line_input);
985 return (NULL);
986}
987
Fan Zhangf5395782020-04-29 14:00:03 +0100988VLIB_CLI_COMMAND (set_async_mode_command, static) = {
989 .path = "set ipsec async mode",
990 .short_help = "set ipsec async mode on|off",
991 .function = set_async_mode_command_fn,
992};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700993
994/*
995 * fd.io coding-style-patch-verification: ON
996 *
997 * Local Variables:
998 * eval: (c-set-style "gnu")
999 * End:
1000 */