blob: 8b436b6b805a983192bd4979874f53e49e1a334d [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
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070074/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070075VLIB_CLI_COMMAND (set_interface_spd_command, static) = {
76 .path = "set interface ipsec spd",
77 .short_help =
78 "set interface ipsec spd <int> <id>",
79 .function = set_interface_spd_command_fn,
80};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070081/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
83static clib_error_t *
84ipsec_sa_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070085 unformat_input_t * input,
86 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -070087{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070088 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns8d7c5022019-02-06 01:41:05 -080089 ipsec_crypto_alg_t crypto_alg;
90 ipsec_integ_alg_t integ_alg;
91 ipsec_protocol_t proto;
92 ipsec_sa_flags_t flags;
93 clib_error_t *error;
Kingwel Xied3d12052019-03-07 06:34:30 -050094 ipsec_key_t ck = { 0 };
95 ipsec_key_t ik = { 0 };
Neale Rannsabc56602020-04-01 09:45:23 +000096 u32 id, spi, salt, sai;
Mohammed Hawari048189e2021-02-05 19:04:42 +010097 int i = 0;
Neale Rannsabc56602020-04-01 09:45:23 +000098 u16 udp_src, udp_dst;
Neale Ranns8d7c5022019-02-06 01:41:05 -080099 int is_add, rv;
Benoît Gannebdd8b572020-07-28 15:56:15 +0200100 u32 m_args = 0;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000101 tunnel_t tun = {};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
Neale Ranns8dc75c02019-12-10 01:08:19 +0000103 salt = 0;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800104 error = NULL;
105 is_add = 0;
106 flags = IPSEC_SA_FLAG_NONE;
107 proto = IPSEC_PROTOCOL_ESP;
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;
Christian Hopps99975382020-07-17 09:53:18 -0400156 else if (unformat (line_input, "inbound"))
157 flags |= IPSEC_SA_FLAG_IS_INBOUND;
158 else if (unformat (line_input, "use-anti-replay"))
159 flags |= IPSEC_SA_FLAG_USE_ANTI_REPLAY;
160 else if (unformat (line_input, "use-esn"))
161 flags |= IPSEC_SA_FLAG_USE_ESN;
Radu Nicolau717de092018-08-03 10:37:24 +0100162 else if (unformat (line_input, "udp-encap"))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800163 flags |= IPSEC_SA_FLAG_UDP_ENCAP;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000164 else if (unformat (line_input, "async"))
165 flags |= IPSEC_SA_FLAG_IS_ASYNC;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700166 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500167 {
168 error = clib_error_return (0, "parse error: '%U'",
169 format_unformat_error, line_input);
170 goto done;
171 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700172 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
Benoît Gannebdd8b572020-07-28 15:56:15 +0200174 if (!(m_args & 1))
175 {
176 error = clib_error_return (0, "missing id");
177 goto done;
178 }
179
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000180 if (is_add)
Benoît Gannebdd8b572020-07-28 15:56:15 +0200181 {
182 if (!(m_args & 2))
183 {
184 error = clib_error_return (0, "missing spi");
185 goto done;
186 }
Neale Ranns9ec846c2021-02-09 14:04:02 +0000187 rv = ipsec_sa_add_and_lock (id, spi, proto, crypto_alg, &ck, integ_alg,
188 &ik, flags, clib_host_to_net_u32 (salt),
189 udp_src, udp_dst, &tun, &sai);
Benoît Gannebdd8b572020-07-28 15:56:15 +0200190 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800191 else
Benoît Gannebdd8b572020-07-28 15:56:15 +0200192 {
193 rv = ipsec_sa_unlock_id (id);
194 }
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000195
Neale Ranns8d7c5022019-02-06 01:41:05 -0800196 if (rv)
Neale Rannsf16e9a52021-02-25 19:09:24 +0000197 error = clib_error_return (0, "failed: %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Billy McFalla9a20e72017-02-15 11:39:12 -0500199done:
200 unformat_free (line_input);
201
202 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203}
204
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700205/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206VLIB_CLI_COMMAND (ipsec_sa_add_del_command, static) = {
207 .path = "ipsec sa",
208 .short_help =
209 "ipsec sa [add|del]",
210 .function = ipsec_sa_add_del_command_fn,
211};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700212/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
214static clib_error_t *
215ipsec_spd_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700216 unformat_input_t * input,
217 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700219 unformat_input_t _line_input, *line_input = &_line_input;
Damjan Marion3f54b182016-08-16 11:27:02 +0200220 u32 spd_id = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 int is_add = ~0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500222 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700224 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 return 0;
226
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700227 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
228 {
229 if (unformat (line_input, "add"))
230 is_add = 1;
231 else if (unformat (line_input, "del"))
232 is_add = 0;
233 else if (unformat (line_input, "%u", &spd_id))
234 ;
235 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500236 {
237 error = clib_error_return (0, "parse error: '%U'",
238 format_unformat_error, line_input);
239 goto done;
240 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700241 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242
Damjan Marion3f54b182016-08-16 11:27:02 +0200243 if (spd_id == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500244 {
245 error = clib_error_return (0, "please specify SPD ID");
246 goto done;
247 }
Damjan Marion3f54b182016-08-16 11:27:02 +0200248
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700249 ipsec_add_del_spd (vm, spd_id, is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Billy McFalla9a20e72017-02-15 11:39:12 -0500251done:
252 unformat_free (line_input);
253
254 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255}
256
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700257/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258VLIB_CLI_COMMAND (ipsec_spd_add_del_command, static) = {
259 .path = "ipsec spd",
260 .short_help =
261 "ipsec spd [add|del] <id>",
262 .function = ipsec_spd_add_del_command_fn,
263};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700264/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
266
267static clib_error_t *
268ipsec_policy_add_del_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700269 unformat_input_t * input,
270 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700272 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273 ipsec_policy_t p;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800274 int rv, is_add = 0;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000275 u32 tmp, tmp2, stat_index, local_range_set, remote_range_set;
Billy McFalla9a20e72017-02-15 11:39:12 -0500276 clib_error_t *error = NULL;
Neale Ranns9f231d42019-03-19 10:06:00 +0000277 u32 is_outbound;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
Dave Barachb7b92992018-10-17 10:38:51 -0400279 clib_memset (&p, 0, sizeof (p));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 p.lport.stop = p.rport.stop = ~0;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000281 remote_range_set = local_range_set = is_outbound = 0;
Piotr Bronowski815c6a42022-06-09 09:09:28 +0000282 p.protocol = IPSEC_POLICY_PROTOCOL_ANY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700284 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 return 0;
286
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700287 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
288 {
289 if (unformat (line_input, "add"))
290 is_add = 1;
291 else if (unformat (line_input, "del"))
292 is_add = 0;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000293 else if (unformat (line_input, "ip6"))
294 p.is_ipv6 = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700295 else if (unformat (line_input, "spd %u", &p.id))
296 ;
297 else if (unformat (line_input, "inbound"))
Neale Ranns9f231d42019-03-19 10:06:00 +0000298 is_outbound = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700299 else if (unformat (line_input, "outbound"))
Neale Ranns9f231d42019-03-19 10:06:00 +0000300 is_outbound = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700301 else if (unformat (line_input, "priority %d", &p.priority))
302 ;
303 else if (unformat (line_input, "protocol %u", &tmp))
304 p.protocol = (u8) tmp;
305 else
306 if (unformat
307 (line_input, "action %U", unformat_ipsec_policy_action,
308 &p.policy))
309 {
310 if (p.policy == IPSEC_POLICY_ACTION_RESOLVE)
Billy McFalla9a20e72017-02-15 11:39:12 -0500311 {
312 error = clib_error_return (0, "unsupported action: 'resolve'");
313 goto done;
314 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700315 }
316 else if (unformat (line_input, "sa %u", &p.sa_id))
317 ;
318 else if (unformat (line_input, "local-ip-range %U - %U",
319 unformat_ip4_address, &p.laddr.start.ip4,
320 unformat_ip4_address, &p.laddr.stop.ip4))
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000321 local_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700322 else if (unformat (line_input, "remote-ip-range %U - %U",
323 unformat_ip4_address, &p.raddr.start.ip4,
324 unformat_ip4_address, &p.raddr.stop.ip4))
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000325 remote_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700326 else if (unformat (line_input, "local-ip-range %U - %U",
327 unformat_ip6_address, &p.laddr.start.ip6,
328 unformat_ip6_address, &p.laddr.stop.ip6))
329 {
330 p.is_ipv6 = 1;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000331 local_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700332 }
333 else if (unformat (line_input, "remote-ip-range %U - %U",
334 unformat_ip6_address, &p.raddr.start.ip6,
335 unformat_ip6_address, &p.raddr.stop.ip6))
336 {
337 p.is_ipv6 = 1;
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000338 remote_range_set = 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700339 }
340 else if (unformat (line_input, "local-port-range %u - %u", &tmp, &tmp2))
341 {
342 p.lport.start = tmp;
343 p.lport.stop = tmp2;
344 }
345 else
346 if (unformat (line_input, "remote-port-range %u - %u", &tmp, &tmp2))
347 {
348 p.rport.start = tmp;
349 p.rport.stop = tmp2;
350 }
351 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500352 {
353 error = clib_error_return (0, "parse error: '%U'",
354 format_unformat_error, line_input);
355 goto done;
356 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700357 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000359 if (!remote_range_set)
360 {
361 if (p.is_ipv6)
362 clib_memset (&p.raddr.stop.ip6, 0xff, 16);
363 else
364 clib_memset (&p.raddr.stop.ip4, 0xff, 4);
365 }
366 if (!local_range_set)
367 {
368 if (p.is_ipv6)
369 clib_memset (&p.laddr.stop.ip6, 0xff, 16);
370 else
371 clib_memset (&p.laddr.stop.ip4, 0xff, 4);
372 }
373
Neale Ranns9f231d42019-03-19 10:06:00 +0000374 rv = ipsec_policy_mk_type (is_outbound, p.is_ipv6, p.policy, &p.type);
375
376 if (rv)
377 {
378 error = clib_error_return (0, "unsupported policy type for:",
379 " outboud:%s %s action:%U",
380 (is_outbound ? "yes" : "no"),
381 (p.is_ipv6 ? "IPv4" : "IPv6"),
382 format_ipsec_policy_action, p.policy);
383 goto done;
384 }
385
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800386 rv = ipsec_add_del_policy (vm, &p, is_add, &stat_index);
387
388 if (!rv)
389 vlib_cli_output (vm, "policy-index:%d", stat_index);
390 else
391 vlib_cli_output (vm, "error:%d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500392
393done:
394 unformat_free (line_input);
395
396 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397}
398
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700399/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400VLIB_CLI_COMMAND (ipsec_policy_add_del_command, static) = {
401 .path = "ipsec policy",
402 .short_help =
403 "ipsec policy [add|del] spd <id> priority <n> ",
404 .function = ipsec_policy_add_del_command_fn,
405};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700406/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407
Neale Rannsb294f102019-04-03 13:17:50 +0000408static void
Neale Ranns670027a2019-08-27 12:47:17 +0000409ipsec_sa_show_all (vlib_main_t * vm, ipsec_main_t * im, u8 detail)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410{
Neale Rannsb294f102019-04-03 13:17:50 +0000411 u32 sai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700413 /* *INDENT-OFF* */
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000414 pool_foreach_index (sai, ipsec_sa_pool)
415 {
416 vlib_cli_output (vm, "%U", format_ipsec_sa, sai,
417 (detail ? IPSEC_FORMAT_DETAIL : IPSEC_FORMAT_BRIEF));
418 }
Neale Rannsb294f102019-04-03 13:17:50 +0000419 /* *INDENT-ON* */
420}
421
422static void
423ipsec_spd_show_all (vlib_main_t * vm, ipsec_main_t * im)
424{
425 u32 spdi;
426
427 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100428 pool_foreach_index (spdi, im->spds) {
Neale Rannsb294f102019-04-03 13:17:50 +0000429 vlib_cli_output(vm, "%U", format_ipsec_spd, spdi);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100430 }
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000431
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500432 if (im->output_flow_cache_flag)
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000433 {
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500434 vlib_cli_output (vm, "%U", format_ipsec_out_spd_flow_cache);
435 }
436 if (im->input_flow_cache_flag)
437 {
438 vlib_cli_output (vm, "%U", format_ipsec_in_spd_flow_cache);
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000439 }
Neale Rannsb294f102019-04-03 13:17:50 +0000440 /* *INDENT-ON* */
441}
442
443static void
444ipsec_spd_bindings_show_all (vlib_main_t * vm, ipsec_main_t * im)
445{
446 u32 spd_id, sw_if_index;
Neale Rannsd83c4a82019-06-14 06:48:27 -0700447 ipsec_spd_t *spd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
Neale Ranns311124e2019-01-24 04:52:25 -0800449 vlib_cli_output (vm, "SPD Bindings:");
Neale Ranns8d7c5022019-02-06 01:41:05 -0800450
Neale Rannsb294f102019-04-03 13:17:50 +0000451 /* *INDENT-OFF* */
Neale Ranns311124e2019-01-24 04:52:25 -0800452 hash_foreach(sw_if_index, spd_id, im->spd_index_by_sw_if_index, ({
Neale Rannsd83c4a82019-06-14 06:48:27 -0700453 spd = pool_elt_at_index (im->spds, spd_id);
454 vlib_cli_output (vm, " %d -> %U", spd->id,
Neale Ranns8d7c5022019-02-06 01:41:05 -0800455 format_vnet_sw_if_index_name, im->vnet_main,
456 sw_if_index);
Neale Ranns311124e2019-01-24 04:52:25 -0800457 }));
458 /* *INDENT-ON* */
Neale Rannsb294f102019-04-03 13:17:50 +0000459}
Neale Ranns311124e2019-01-24 04:52:25 -0800460
Neale Ranns12989b52019-09-26 16:20:19 +0000461static walk_rc_t
462ipsec_tun_protect_show_one (index_t itpi, void *ctx)
Neale Rannsb294f102019-04-03 13:17:50 +0000463{
Neale Ranns28287212019-12-16 00:53:11 +0000464 vlib_cli_output (ctx, "%U", format_ipsec_tun_protect_index, itpi);
Neale Rannsb294f102019-04-03 13:17:50 +0000465
Neale Ranns12989b52019-09-26 16:20:19 +0000466 return (WALK_CONTINUE);
467}
468
469static void
470ipsec_tunnel_show_all (vlib_main_t * vm)
471{
472 ipsec_tun_protect_walk (ipsec_tun_protect_show_one, vm);
Neale Rannsb294f102019-04-03 13:17:50 +0000473}
474
475static clib_error_t *
476show_ipsec_command_fn (vlib_main_t * vm,
477 unformat_input_t * input, vlib_cli_command_t * cmd)
478{
479 ipsec_main_t *im = &ipsec_main;
480
Neale Ranns670027a2019-08-27 12:47:17 +0000481 ipsec_sa_show_all (vm, im, 0);
Neale Rannsb294f102019-04-03 13:17:50 +0000482 ipsec_spd_show_all (vm, im);
483 ipsec_spd_bindings_show_all (vm, im);
Neale Ranns12989b52019-09-26 16:20:19 +0000484 ipsec_tun_protect_walk (ipsec_tun_protect_show_one, vm);
Neale Rannsb294f102019-04-03 13:17:50 +0000485
Fan Zhangf5395782020-04-29 14:00:03 +0100486 vlib_cli_output (vm, "IPSec async mode: %s",
487 (im->async_mode ? "on" : "off"));
488
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 return 0;
490}
491
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700492/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493VLIB_CLI_COMMAND (show_ipsec_command, static) = {
Neale Rannsb294f102019-04-03 13:17:50 +0000494 .path = "show ipsec all",
495 .short_help = "show ipsec all",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496 .function = show_ipsec_command_fn,
497};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700498/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
500static clib_error_t *
Neale Rannsb294f102019-04-03 13:17:50 +0000501show_ipsec_sa_command_fn (vlib_main_t * vm,
502 unformat_input_t * input, vlib_cli_command_t * cmd)
503{
504 ipsec_main_t *im = &ipsec_main;
505 u32 sai = ~0;
Neale Ranns670027a2019-08-27 12:47:17 +0000506 u8 detail = 0;
Neale Rannsb294f102019-04-03 13:17:50 +0000507
508 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
509 {
510 if (unformat (input, "%u", &sai))
511 ;
Neale Ranns670027a2019-08-27 12:47:17 +0000512 if (unformat (input, "detail"))
513 detail = 1;
Neale Rannsb294f102019-04-03 13:17:50 +0000514 else
515 break;
516 }
517
518 if (~0 == sai)
Neale Ranns670027a2019-08-27 12:47:17 +0000519 ipsec_sa_show_all (vm, im, detail);
Neale Rannsb294f102019-04-03 13:17:50 +0000520 else
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400521 vlib_cli_output (vm, "%U", format_ipsec_sa, sai,
522 IPSEC_FORMAT_DETAIL | IPSEC_FORMAT_INSECURE);
Neale Rannsb294f102019-04-03 13:17:50 +0000523
524 return 0;
525}
526
Neale Rannsc87b66c2019-02-07 07:26:12 -0800527static clib_error_t *
528clear_ipsec_sa_command_fn (vlib_main_t * vm,
529 unformat_input_t * input, vlib_cli_command_t * cmd)
530{
Neale Rannsc87b66c2019-02-07 07:26:12 -0800531 u32 sai = ~0;
532
533 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
534 {
535 if (unformat (input, "%u", &sai))
536 ;
537 else
538 break;
539 }
540
541 if (~0 == sai)
542 {
543 /* *INDENT-OFF* */
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000544 pool_foreach_index (sai, ipsec_sa_pool)
545 {
546 ipsec_sa_clear (sai);
547 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800548 /* *INDENT-ON* */
549 }
550 else
551 {
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000552 if (pool_is_free_index (ipsec_sa_pool, sai))
Neale Rannsc87b66c2019-02-07 07:26:12 -0800553 return clib_error_return (0, "unknown SA index: %d", sai);
554 else
555 ipsec_sa_clear (sai);
556 }
557
558 return 0;
559}
560
Neale Rannsb294f102019-04-03 13:17:50 +0000561/* *INDENT-OFF* */
562VLIB_CLI_COMMAND (show_ipsec_sa_command, static) = {
563 .path = "show ipsec sa",
564 .short_help = "show ipsec sa [index]",
565 .function = show_ipsec_sa_command_fn,
566};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800567
568VLIB_CLI_COMMAND (clear_ipsec_sa_command, static) = {
569 .path = "clear ipsec sa",
570 .short_help = "clear ipsec sa [index]",
571 .function = clear_ipsec_sa_command_fn,
572};
Neale Rannsb294f102019-04-03 13:17:50 +0000573/* *INDENT-ON* */
574
575static clib_error_t *
576show_ipsec_spd_command_fn (vlib_main_t * vm,
577 unformat_input_t * input, vlib_cli_command_t * cmd)
578{
579 ipsec_main_t *im = &ipsec_main;
580 u8 show_bindings = 0;
581 u32 spdi = ~0;
582
583 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
584 {
585 if (unformat (input, "%u", &spdi))
586 ;
587 else if (unformat (input, "bindings"))
588 show_bindings = 1;
589 else
590 break;
591 }
592
593 if (show_bindings)
594 ipsec_spd_bindings_show_all (vm, im);
595 else if (~0 != spdi)
596 vlib_cli_output (vm, "%U", format_ipsec_spd, spdi);
597 else
598 ipsec_spd_show_all (vm, im);
599
600 return 0;
601}
602
603/* *INDENT-OFF* */
604VLIB_CLI_COMMAND (show_ipsec_spd_command, static) = {
605 .path = "show ipsec spd",
606 .short_help = "show ipsec spd [index]",
607 .function = show_ipsec_spd_command_fn,
608};
609/* *INDENT-ON* */
610
611static clib_error_t *
612show_ipsec_tunnel_command_fn (vlib_main_t * vm,
613 unformat_input_t * input,
614 vlib_cli_command_t * cmd)
615{
Neale Ranns12989b52019-09-26 16:20:19 +0000616 ipsec_tunnel_show_all (vm);
Neale Rannsb294f102019-04-03 13:17:50 +0000617
618 return 0;
619}
620
621/* *INDENT-OFF* */
622VLIB_CLI_COMMAND (show_ipsec_tunnel_command, static) = {
623 .path = "show ipsec tunnel",
Neale Ranns12989b52019-09-26 16:20:19 +0000624 .short_help = "show ipsec tunnel",
Neale Rannsb294f102019-04-03 13:17:50 +0000625 .function = show_ipsec_tunnel_command_fn,
626};
627/* *INDENT-ON* */
628
629static clib_error_t *
Klement Sekerab4d30532018-11-08 13:00:02 +0100630ipsec_show_backends_command_fn (vlib_main_t * vm,
631 unformat_input_t * input,
632 vlib_cli_command_t * cmd)
633{
634 ipsec_main_t *im = &ipsec_main;
635 u32 verbose = 0;
636
637 (void) unformat (input, "verbose %u", &verbose);
638
639 vlib_cli_output (vm, "IPsec AH backends available:");
640 u8 *s = format (NULL, "%=25s %=25s %=10s\n", "Name", "Index", "Active");
641 ipsec_ah_backend_t *ab;
642 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100643 pool_foreach (ab, im->ah_backends) {
Klement Sekerab4d30532018-11-08 13:00:02 +0100644 s = format (s, "%=25s %=25u %=10s\n", ab->name, ab - im->ah_backends,
645 ab - im->ah_backends == im->ah_current_backend ? "yes" : "no");
646 if (verbose) {
647 vlib_node_t *n;
648 n = vlib_get_node (vm, ab->ah4_encrypt_node_index);
649 s = format (s, " enc4 %s (next %d)\n", n->name, ab->ah4_encrypt_next_index);
650 n = vlib_get_node (vm, ab->ah4_decrypt_node_index);
651 s = format (s, " dec4 %s (next %d)\n", n->name, ab->ah4_decrypt_next_index);
652 n = vlib_get_node (vm, ab->ah6_encrypt_node_index);
653 s = format (s, " enc6 %s (next %d)\n", n->name, ab->ah6_encrypt_next_index);
654 n = vlib_get_node (vm, ab->ah6_decrypt_node_index);
655 s = format (s, " dec6 %s (next %d)\n", n->name, ab->ah6_decrypt_next_index);
656 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100657 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100658 /* *INDENT-ON* */
659 vlib_cli_output (vm, "%v", s);
Damjan Marion8bea5892022-04-04 22:40:45 +0200660 vec_set_len (s, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100661 vlib_cli_output (vm, "IPsec ESP backends available:");
662 s = format (s, "%=25s %=25s %=10s\n", "Name", "Index", "Active");
663 ipsec_esp_backend_t *eb;
664 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100665 pool_foreach (eb, im->esp_backends) {
Klement Sekerab4d30532018-11-08 13:00:02 +0100666 s = format (s, "%=25s %=25u %=10s\n", eb->name, eb - im->esp_backends,
667 eb - im->esp_backends == im->esp_current_backend ? "yes"
668 : "no");
669 if (verbose) {
670 vlib_node_t *n;
671 n = vlib_get_node (vm, eb->esp4_encrypt_node_index);
672 s = format (s, " enc4 %s (next %d)\n", n->name, eb->esp4_encrypt_next_index);
673 n = vlib_get_node (vm, eb->esp4_decrypt_node_index);
674 s = format (s, " dec4 %s (next %d)\n", n->name, eb->esp4_decrypt_next_index);
675 n = vlib_get_node (vm, eb->esp6_encrypt_node_index);
676 s = format (s, " enc6 %s (next %d)\n", n->name, eb->esp6_encrypt_next_index);
677 n = vlib_get_node (vm, eb->esp6_decrypt_node_index);
678 s = format (s, " dec6 %s (next %d)\n", n->name, eb->esp6_decrypt_next_index);
679 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100680 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100681 /* *INDENT-ON* */
682 vlib_cli_output (vm, "%v", s);
683
684 vec_free (s);
685 return 0;
686}
687
688/* *INDENT-OFF* */
689VLIB_CLI_COMMAND (ipsec_show_backends_command, static) = {
690 .path = "show ipsec backends",
691 .short_help = "show ipsec backends",
692 .function = ipsec_show_backends_command_fn,
693};
694/* *INDENT-ON* */
695
696static clib_error_t *
697ipsec_select_backend_command_fn (vlib_main_t * vm,
698 unformat_input_t * input,
699 vlib_cli_command_t * cmd)
700{
Klement Sekerab4d30532018-11-08 13:00:02 +0100701 unformat_input_t _line_input, *line_input = &_line_input;
Neale Rannse8915fc2019-04-23 20:57:55 -0400702 ipsec_main_t *im = &ipsec_main;
703 clib_error_t *error;
704 u32 backend_index;
705
706 error = ipsec_rsc_in_use (im);
707
708 if (error)
709 return error;
710
Klement Sekerab4d30532018-11-08 13:00:02 +0100711 /* Get a line of input. */
712 if (!unformat_user (input, unformat_line_input, line_input))
713 return 0;
714
715 if (unformat (line_input, "ah"))
716 {
717 if (unformat (line_input, "%u", &backend_index))
718 {
719 if (ipsec_select_ah_backend (im, backend_index) < 0)
720 {
721 return clib_error_return (0, "Invalid AH backend index `%u'",
722 backend_index);
723 }
724 }
725 else
726 {
727 return clib_error_return (0, "Invalid backend index `%U'",
728 format_unformat_error, line_input);
729 }
730 }
731 else if (unformat (line_input, "esp"))
732 {
733 if (unformat (line_input, "%u", &backend_index))
734 {
735 if (ipsec_select_esp_backend (im, backend_index) < 0)
736 {
737 return clib_error_return (0, "Invalid ESP backend index `%u'",
738 backend_index);
739 }
740 }
741 else
742 {
743 return clib_error_return (0, "Invalid backend index `%U'",
744 format_unformat_error, line_input);
745 }
746 }
747 else
748 {
749 return clib_error_return (0, "Unknown input `%U'",
750 format_unformat_error, line_input);
751 }
752
753 return 0;
754}
755
756/* *INDENT-OFF* */
757VLIB_CLI_COMMAND (ipsec_select_backend_command, static) = {
758 .path = "ipsec select backend",
759 .short_help = "ipsec select backend <ah|esp> <backend index>",
760 .function = ipsec_select_backend_command_fn,
761};
762
763/* *INDENT-ON* */
764
765static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766clear_ipsec_counters_command_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700767 unformat_input_t * input,
768 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800770 vlib_clear_combined_counters (&ipsec_spd_policy_counters);
Neale Rannseba31ec2019-02-17 18:04:27 +0000771 vlib_clear_combined_counters (&ipsec_sa_counters);
Neale Rannse11203e2021-09-21 12:34:19 +0000772 vlib_clear_simple_counters (&ipsec_sa_lost_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800774 return (NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775}
776
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700777/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778VLIB_CLI_COMMAND (clear_ipsec_counters_command, static) = {
779 .path = "clear ipsec counters",
780 .short_help = "clear ipsec counters",
781 .function = clear_ipsec_counters_command_fn,
782};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700783/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784
Neale Rannsc87b66c2019-02-07 07:26:12 -0800785static clib_error_t *
786ipsec_tun_protect_cmd (vlib_main_t * vm,
787 unformat_input_t * input, vlib_cli_command_t * cmd)
788{
789 unformat_input_t _line_input, *line_input = &_line_input;
790 u32 sw_if_index, is_del, sa_in, sa_out, *sa_ins = NULL;
Neale Ranns28287212019-12-16 00:53:11 +0000791 ip_address_t peer = { };
Neale Rannsc87b66c2019-02-07 07:26:12 -0800792 vnet_main_t *vnm;
793
794 is_del = 0;
795 sw_if_index = ~0;
796 vnm = vnet_get_main ();
797
798 if (!unformat_user (input, unformat_line_input, line_input))
799 return 0;
800
801 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
802 {
803 if (unformat (line_input, "del"))
804 is_del = 1;
805 else if (unformat (line_input, "add"))
806 is_del = 0;
807 else if (unformat (line_input, "sa-in %d", &sa_in))
808 vec_add1 (sa_ins, sa_in);
809 else if (unformat (line_input, "sa-out %d", &sa_out))
810 ;
811 else if (unformat (line_input, "%U",
812 unformat_vnet_sw_interface, vnm, &sw_if_index))
813 ;
Neale Ranns28287212019-12-16 00:53:11 +0000814 else if (unformat (line_input, "%U", unformat_ip_address, &peer))
815 ;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800816 else
817 return (clib_error_return (0, "unknown input '%U'",
818 format_unformat_error, line_input));
819 }
820
821 if (!is_del)
Neale Ranns28287212019-12-16 00:53:11 +0000822 ipsec_tun_protect_update (sw_if_index, &peer, sa_out, sa_ins);
Eric Kinzie609d5792020-10-13 20:02:11 -0400823 else
824 ipsec_tun_protect_del (sw_if_index, &peer);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800825
826 unformat_free (line_input);
827 return NULL;
828}
829
830/**
831 * Protect tunnel with IPSEC
832 */
833/* *INDENT-OFF* */
834VLIB_CLI_COMMAND (ipsec_tun_protect_cmd_node, static) =
835{
836 .path = "ipsec tunnel protect",
837 .function = ipsec_tun_protect_cmd,
Eric Kinzie609d5792020-10-13 20:02:11 -0400838 .short_help = "ipsec tunnel protect <interface> input-sa <SA> output-sa <SA> [add|del]",
Neale Rannsc87b66c2019-02-07 07:26:12 -0800839 // this is not MP safe
840};
841/* *INDENT-ON* */
842
Neale Rannsc87b66c2019-02-07 07:26:12 -0800843
844static clib_error_t *
845ipsec_tun_protect_show (vlib_main_t * vm,
846 unformat_input_t * input, vlib_cli_command_t * cmd)
847{
848 ipsec_tun_protect_walk (ipsec_tun_protect_show_one, vm);
849
850 return NULL;
851}
852
853/**
854 * show IPSEC tunnel protection
855 */
856/* *INDENT-OFF* */
857VLIB_CLI_COMMAND (ipsec_tun_protect_show_node, static) =
858{
859 .path = "show ipsec protect",
860 .function = ipsec_tun_protect_show,
861 .short_help = "show ipsec protect",
862};
863/* *INDENT-ON* */
864
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000865static int
Neale Ranns302b25a2020-10-19 13:23:33 +0000866ipsec_tun_protect4_hash_show_one (clib_bihash_kv_8_16_t * kv, void *arg)
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000867{
868 ipsec4_tunnel_kv_t *ikv = (ipsec4_tunnel_kv_t *) kv;
869 vlib_main_t *vm = arg;
870
871 vlib_cli_output (vm, " %U", format_ipsec4_tunnel_kv, ikv);
872
873 return (BIHASH_WALK_CONTINUE);
874}
875
876static int
Neale Ranns302b25a2020-10-19 13:23:33 +0000877ipsec_tun_protect6_hash_show_one (clib_bihash_kv_24_16_t * kv, void *arg)
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000878{
879 ipsec6_tunnel_kv_t *ikv = (ipsec6_tunnel_kv_t *) kv;
880 vlib_main_t *vm = arg;
881
882 vlib_cli_output (vm, " %U", format_ipsec6_tunnel_kv, ikv);
883
884 return (BIHASH_WALK_CONTINUE);
885}
886
Neale Ranns41afb332019-07-16 06:19:35 -0700887static clib_error_t *
888ipsec_tun_protect_hash_show (vlib_main_t * vm,
889 unformat_input_t * input,
890 vlib_cli_command_t * cmd)
891{
892 ipsec_main_t *im = &ipsec_main;
893
894 {
Neale Ranns41afb332019-07-16 06:19:35 -0700895 vlib_cli_output (vm, "IPv4:");
896
Neale Ranns302b25a2020-10-19 13:23:33 +0000897 clib_bihash_foreach_key_value_pair_8_16
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000898 (&im->tun4_protect_by_key, ipsec_tun_protect4_hash_show_one, vm);
Neale Ranns41afb332019-07-16 06:19:35 -0700899
900 vlib_cli_output (vm, "IPv6:");
901
Neale Ranns302b25a2020-10-19 13:23:33 +0000902 clib_bihash_foreach_key_value_pair_24_16
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000903 (&im->tun6_protect_by_key, ipsec_tun_protect6_hash_show_one, vm);
Neale Ranns41afb332019-07-16 06:19:35 -0700904 }
905
906 return NULL;
907}
908
909/**
910 * show IPSEC tunnel protection hash tables
911 */
912/* *INDENT-OFF* */
913VLIB_CLI_COMMAND (ipsec_tun_protect_hash_show_node, static) =
914{
915 .path = "show ipsec protect-hash",
916 .function = ipsec_tun_protect_hash_show,
917 .short_help = "show ipsec protect-hash",
918};
919/* *INDENT-ON* */
920
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921clib_error_t *
922ipsec_cli_init (vlib_main_t * vm)
923{
924 return 0;
925}
926
927VLIB_INIT_FUNCTION (ipsec_cli_init);
928
Fan Zhangf5395782020-04-29 14:00:03 +0100929static clib_error_t *
930set_async_mode_command_fn (vlib_main_t * vm, unformat_input_t * input,
931 vlib_cli_command_t * cmd)
932{
933 unformat_input_t _line_input, *line_input = &_line_input;
934 int async_enable = 0;
935
936 if (!unformat_user (input, unformat_line_input, line_input))
937 return 0;
938
939 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
940 {
941 if (unformat (line_input, "on"))
942 async_enable = 1;
943 else if (unformat (line_input, "off"))
944 async_enable = 0;
945 else
946 return (clib_error_return (0, "unknown input '%U'",
947 format_unformat_error, line_input));
948 }
949
Fan Zhangf5395782020-04-29 14:00:03 +0100950 ipsec_set_async_mode (async_enable);
951
952 unformat_free (line_input);
953 return (NULL);
954}
955
956/* *INDENT-OFF* */
957VLIB_CLI_COMMAND (set_async_mode_command, static) = {
958 .path = "set ipsec async mode",
959 .short_help = "set ipsec async mode on|off",
960 .function = set_async_mode_command_fn,
961};
962/* *INDENT-ON* */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700963
964/*
965 * fd.io coding-style-patch-verification: ON
966 *
967 * Local Variables:
968 * eval: (c-set-style "gnu")
969 * End:
970 */