blob: 9204b1c090d12679b5585cd848e208a834e66b76 [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>
Neale Ranns8d7c5022019-02-06 01:41:05 -080022#include <vnet/fib/fib_table.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <vnet/ipsec/ipsec.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080025#include <vnet/ipsec/ipsec_tun.h>
Neale Ranns6ba4e412020-10-19 09:59:41 +000026#include <vnet/ipsec/ipsec_itf.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
28u8 *
29format_ipsec_policy_action (u8 * s, va_list * args)
30{
31 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070032 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070033
34 switch (i)
35 {
36#define _(v,f,str) case IPSEC_POLICY_ACTION_##f: t = str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070037 foreach_ipsec_policy_action
Ed Warnickecb9cada2015-12-08 15:45:58 -070038#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070039 default:
40 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -070041 }
42 s = format (s, "%s", t);
43 return s;
44}
45
Neale Ranns9f231d42019-03-19 10:06:00 +000046u8 *
47format_ipsec_policy_type (u8 * s, va_list * args)
48{
49 u32 i = va_arg (*args, u32);
50 char *t = 0;
51
52 switch (i)
53 {
54#define _(f,str) case IPSEC_SPD_POLICY_##f: t = str; break;
55 foreach_ipsec_spd_policy_type
56#undef _
57 default:
58 s = format (s, "unknown");
59 }
60 s = format (s, "%s", t);
61 return s;
62}
63
Ed Warnickecb9cada2015-12-08 15:45:58 -070064uword
65unformat_ipsec_policy_action (unformat_input_t * input, va_list * args)
66{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070067 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070069 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_POLICY_ACTION_##f;
71 foreach_ipsec_policy_action
72#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070073 else
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 return 0;
75 return 1;
76}
77
78u8 *
79format_ipsec_crypto_alg (u8 * s, va_list * args)
80{
81 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070082 u8 *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
84 switch (i)
85 {
86#define _(v,f,str) case IPSEC_CRYPTO_ALG_##f: t = (u8 *) str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070087 foreach_ipsec_crypto_alg
Ed Warnickecb9cada2015-12-08 15:45:58 -070088#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070089 default:
90 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 }
92 s = format (s, "%s", t);
93 return s;
94}
95
96uword
97unformat_ipsec_crypto_alg (unformat_input_t * input, va_list * args)
98{
BenoƮt Gannef6422ff2020-11-06 10:51:47 +010099 ipsec_crypto_alg_t *r = va_arg (*args, ipsec_crypto_alg_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700101 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_CRYPTO_ALG_##f;
103 foreach_ipsec_crypto_alg
104#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700105 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 return 0;
107 return 1;
108}
109
110u8 *
111format_ipsec_integ_alg (u8 * s, va_list * args)
112{
113 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700114 u8 *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115
116 switch (i)
117 {
118#define _(v,f,str) case IPSEC_INTEG_ALG_##f: t = (u8 *) str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700119 foreach_ipsec_integ_alg
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700121 default:
122 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 }
124 s = format (s, "%s", t);
125 return s;
126}
127
128uword
129unformat_ipsec_integ_alg (unformat_input_t * input, va_list * args)
130{
BenoƮt Gannef6422ff2020-11-06 10:51:47 +0100131 ipsec_integ_alg_t *r = va_arg (*args, ipsec_integ_alg_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700133 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_INTEG_ALG_##f;
135 foreach_ipsec_integ_alg
136#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700137 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 return 0;
139 return 1;
140}
141
142u8 *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700143format_ipsec_replay_window (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144{
145 u64 w = va_arg (*args, u64);
146 u8 i;
147
148 for (i = 0; i < 64; i++)
149 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700150 s = format (s, "%u", w & (1ULL << i) ? 1 : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 }
152
153 return s;
154}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700155
Fan Zhang93bc4312022-05-25 19:42:08 +0000156static u8 *
157format_ipsec_policy_with_suffix (u8 *s, va_list *args, u8 *suffix)
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800158{
159 u32 pi = va_arg (*args, u32);
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200160 ip46_type_t ip_type = IP46_TYPE_IP4;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800161 ipsec_main_t *im = &ipsec_main;
162 ipsec_policy_t *p;
163 vlib_counter_t counts;
164
165 p = pool_elt_at_index (im->policies, pi);
166
Neale Ranns9f231d42019-03-19 10:06:00 +0000167 s = format (s, " [%d] priority %d action %U type %U protocol ",
168 pi, p->priority,
169 format_ipsec_policy_action, p->policy,
170 format_ipsec_policy_type, p->type);
Piotr Bronowski815c6a42022-06-09 09:09:28 +0000171 if (p->protocol != IPSEC_POLICY_PROTOCOL_ANY)
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800172 {
173 s = format (s, "%U", format_ip_protocol, p->protocol);
174 }
175 else
176 {
177 s = format (s, "any");
178 }
179 if (p->policy == IPSEC_POLICY_ACTION_PROTECT)
180 {
181 s = format (s, " sa %u", p->sa_id);
182 }
Fan Zhang93bc4312022-05-25 19:42:08 +0000183 if (suffix)
184 s = format (s, " %s", suffix);
185
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200186 if (p->is_ipv6)
187 {
188 ip_type = IP46_TYPE_IP6;
189 }
Neale Ranns231c4692019-03-18 17:11:28 +0000190
191 s = format (s, "\n local addr range %U - %U port range %u - %u",
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200192 format_ip46_address, &p->laddr.start, ip_type,
193 format_ip46_address, &p->laddr.stop, ip_type,
Neale Rannsa4d24312019-07-10 13:46:21 +0000194 p->lport.start, p->lport.stop);
Neale Ranns231c4692019-03-18 17:11:28 +0000195 s = format (s, "\n remote addr range %U - %U port range %u - %u",
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200196 format_ip46_address, &p->raddr.start, ip_type,
197 format_ip46_address, &p->raddr.stop, ip_type,
Neale Rannsa4d24312019-07-10 13:46:21 +0000198 p->rport.start, p->rport.stop);
Neale Ranns231c4692019-03-18 17:11:28 +0000199
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800200 vlib_get_combined_counter (&ipsec_spd_policy_counters, pi, &counts);
201 s = format (s, "\n packets %u bytes %u", counts.packets, counts.bytes);
202
203 return (s);
204}
205
206u8 *
Fan Zhang93bc4312022-05-25 19:42:08 +0000207format_ipsec_policy (u8 *s, va_list *args)
208{
209 return format_ipsec_policy_with_suffix (s, args, 0);
210}
211
212u8 *
213format_ipsec_policy_fp (u8 *s, va_list *args)
214{
215 return format_ipsec_policy_with_suffix (s, args, (u8 *) "<fast-path>");
216}
217
218u8 *
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800219format_ipsec_spd (u8 * s, va_list * args)
220{
221 u32 si = va_arg (*args, u32);
222 ipsec_main_t *im = &ipsec_main;
223 ipsec_spd_t *spd;
224 u32 *i;
225
Neale Rannsb294f102019-04-03 13:17:50 +0000226 if (pool_is_free_index (im->spds, si))
227 {
228 s = format (s, "No such SPD index: %d", si);
229 goto done;
230 }
231
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800232 spd = pool_elt_at_index (im->spds, si);
233
234 s = format (s, "spd %u", spd->id);
235
Fan Zhang93bc4312022-05-25 19:42:08 +0000236#define _(v, n) \
237 s = format (s, "\n %s:", n); \
238 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_##v]) \
239 { \
240 s = format (s, "\n %U", format_ipsec_policy, *i); \
241 } \
242 vec_foreach (i, spd->fp_spd.fp_policies[IPSEC_SPD_POLICY_##v]) \
243 { \
244 s = format (s, "\n %U", format_ipsec_policy_fp, *i); \
245 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800246 foreach_ipsec_spd_policy_type;
247#undef _
248
Neale Rannsb294f102019-04-03 13:17:50 +0000249done:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800250 return (s);
251}
252
Neale Ranns8d7c5022019-02-06 01:41:05 -0800253u8 *
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500254format_ipsec_out_spd_flow_cache (u8 *s, va_list *args)
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000255{
256 ipsec_main_t *im = &ipsec_main;
257
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500258 s = format (s, "\nipv4-outbound-spd-flow-cache-entries: %u",
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000259 im->ipsec4_out_spd_flow_cache_entries);
260
261 return (s);
262}
263
264u8 *
Zachary Leaf7cd35f52021-06-25 08:11:15 -0500265format_ipsec_in_spd_flow_cache (u8 *s, va_list *args)
266{
267 ipsec_main_t *im = &ipsec_main;
268
269 s = format (s, "\nipv4-inbound-spd-flow-cache-entries: %u",
270 im->ipsec4_in_spd_flow_cache_entries);
271
272 return (s);
273}
274
275u8 *
Neale Ranns8d7c5022019-02-06 01:41:05 -0800276format_ipsec_key (u8 * s, va_list * args)
277{
278 ipsec_key_t *key = va_arg (*args, ipsec_key_t *);
279
280 return (format (s, "%U", format_hex_bytes, key->data, key->len));
281}
282
283uword
284unformat_ipsec_key (unformat_input_t * input, va_list * args)
285{
286 ipsec_key_t *key = va_arg (*args, ipsec_key_t *);
287 u8 *data;
288
289 if (unformat (input, "%U", unformat_hex_string, &data))
290 {
291 ipsec_mk_key (key, data, vec_len (data));
292 vec_free (data);
293 }
294 else
295 return 0;
296 return 1;
297}
298
299u8 *
Neale Rannse524d452019-02-19 15:22:46 +0000300format_ipsec_sa_flags (u8 * s, va_list * args)
301{
302 ipsec_sa_flags_t flags = va_arg (*args, int);
303
Neale Ranns41afb332019-07-16 06:19:35 -0700304#define _(v, f, str) if (flags & IPSEC_SA_FLAG_##f) s = format(s, "%s ", str);
Neale Rannse524d452019-02-19 15:22:46 +0000305 foreach_ipsec_sa_flags
306#undef _
307 return (s);
308}
309
310u8 *
Neale Ranns8d7c5022019-02-06 01:41:05 -0800311format_ipsec_sa (u8 * s, va_list * args)
312{
313 u32 sai = va_arg (*args, u32);
Neale Rannsb294f102019-04-03 13:17:50 +0000314 ipsec_format_flags_t flags = va_arg (*args, ipsec_format_flags_t);
Neale Rannseba31ec2019-02-17 18:04:27 +0000315 vlib_counter_t counts;
Neale Rannse11203e2021-09-21 12:34:19 +0000316 counter_t lost;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800317 ipsec_sa_t *sa;
318
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000319 if (pool_is_free_index (ipsec_sa_pool, sai))
Neale Rannsb294f102019-04-03 13:17:50 +0000320 {
321 s = format (s, "No such SA index: %d", sai);
322 goto done;
323 }
324
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000325 sa = ipsec_sa_get (sai);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800326
Neale Ranns41afb332019-07-16 06:19:35 -0700327 s = format (s, "[%d] sa %u (0x%x) spi %u (0x%08x) protocol:%s flags:[%U]",
Neale Ranns495d7ff2019-07-12 09:15:26 +0000328 sai, sa->id, sa->id, sa->spi, sa->spi,
Neale Rannse524d452019-02-19 15:22:46 +0000329 sa->protocol ? "esp" : "ah", format_ipsec_sa_flags, sa->flags);
Neale Rannsb294f102019-04-03 13:17:50 +0000330
331 if (!(flags & IPSEC_FORMAT_DETAIL))
332 goto done;
333
Neale Ranns495d7ff2019-07-12 09:15:26 +0000334 s = format (s, "\n locks %d", sa->node.fn_locks);
Neale Ranns80f6fd52019-04-16 02:41:34 +0000335 s = format (s, "\n salt 0x%x", clib_net_to_host_u32 (sa->salt));
Neale Ranns1a52d372021-02-04 11:33:32 +0000336 s = format (s, "\n thread-index:%d", sa->thread_index);
Neale Ranns00a44202019-03-21 16:36:28 +0000337 s = format (s, "\n seq %u seq-hi %u", sa->seq, sa->seq_hi);
Neale Ranns5b891102021-06-28 13:31:28 +0000338 s = format (s, "\n window %U", format_ipsec_replay_window,
339 sa->replay_window);
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700340 s = format (s, "\n crypto alg %U",
341 format_ipsec_crypto_alg, sa->crypto_alg);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400342 if (sa->crypto_alg && (flags & IPSEC_FORMAT_INSECURE))
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700343 s = format (s, " key %U", format_ipsec_key, &sa->crypto_key);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400344 else
345 s = format (s, " key [redacted]");
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700346 s = format (s, "\n integrity alg %U",
347 format_ipsec_integ_alg, sa->integ_alg);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400348 if (sa->integ_alg && (flags & IPSEC_FORMAT_INSECURE))
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700349 s = format (s, " key %U", format_ipsec_key, &sa->integ_key);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400350 else
351 s = format (s, " key [redacted]");
Neale Rannsabc56602020-04-01 09:45:23 +0000352 s = format (s, "\n UDP:[src:%d dst:%d]",
353 clib_host_to_net_u16 (sa->udp_hdr.src_port),
354 clib_host_to_net_u16 (sa->udp_hdr.dst_port));
Neale Ranns80f6fd52019-04-16 02:41:34 +0000355
Neale Rannseba31ec2019-02-17 18:04:27 +0000356 vlib_get_combined_counter (&ipsec_sa_counters, sai, &counts);
Neale Rannse11203e2021-09-21 12:34:19 +0000357 lost = vlib_get_simple_counter (&ipsec_sa_lost_counters, sai);
358 s = format (s, "\n tx/rx:[packets:%Ld bytes:%Ld], lost:[packets:%Ld]",
359 counts.packets, counts.bytes, lost);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800360
Damjan Mariond709cbc2019-03-26 13:16:42 +0100361 if (ipsec_sa_is_set_IS_TUNNEL (sa))
Neale Ranns9ec846c2021-02-09 14:04:02 +0000362 s = format (s, "\n%U", format_tunnel, &sa->tunnel, 3);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800363
Neale Rannsb294f102019-04-03 13:17:50 +0000364done:
365 return (s);
366}
367
368u8 *
Neale Ranns28287212019-12-16 00:53:11 +0000369format_ipsec_tun_protect_index (u8 * s, va_list * args)
370{
371 u32 itpi = va_arg (*args, index_t);
372 ipsec_tun_protect_t *itp;
373
374 if (pool_is_free_index (ipsec_tun_protect_pool, itpi))
375 return (format (s, "No such tunnel index: %d", itpi));
376
377 itp = pool_elt_at_index (ipsec_tun_protect_pool, itpi);
378
379 return (format (s, "%U", format_ipsec_tun_protect, itp));
380}
381
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000382u8 *
383format_ipsec_tun_protect_flags (u8 * s, va_list * args)
384{
385 ipsec_protect_flags_t flags = va_arg (*args, int);
386
387 if (IPSEC_PROTECT_NONE == flags)
388 s = format (s, "none");
389#define _(a,b,c) \
390 else if (flags & IPSEC_PROTECT_##a) \
391 s = format (s, "%s", c); \
392 foreach_ipsec_protect_flags
393#undef _
394
395 return (s);
396}
Neale Ranns28287212019-12-16 00:53:11 +0000397
398u8 *
Neale Rannsc87b66c2019-02-07 07:26:12 -0800399format_ipsec_tun_protect (u8 * s, va_list * args)
400{
Neale Ranns28287212019-12-16 00:53:11 +0000401 ipsec_tun_protect_t *itp = va_arg (*args, ipsec_tun_protect_t *);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800402 u32 sai;
403
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000404 s = format (s, "%U flags:[%U]", format_vnet_sw_if_index_name,
405 vnet_get_main (), itp->itp_sw_if_index,
406 format_ipsec_tun_protect_flags, itp->itp_flags);
Neale Ranns28287212019-12-16 00:53:11 +0000407 if (!ip_address_is_zero (itp->itp_key))
408 s = format (s, ": %U", format_ip_address, itp->itp_key);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800409 s = format (s, "\n output-sa:");
Neale Ranns28287212019-12-16 00:53:11 +0000410 s = format (s, "\n %U", format_ipsec_sa, itp->itp_out_sa,
411 IPSEC_FORMAT_BRIEF);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800412
413 s = format (s, "\n input-sa:");
414 /* *INDENT-OFF* */
415 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
416 ({
417 s = format (s, "\n %U", format_ipsec_sa, sai, IPSEC_FORMAT_BRIEF);
418 }));
419 /* *INDENT-ON* */
420
Neale Rannsc87b66c2019-02-07 07:26:12 -0800421 return (s);
422}
423
Neale Ranns41afb332019-07-16 06:19:35 -0700424u8 *
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000425format_ipsec4_tunnel_kv (u8 * s, va_list * args)
Neale Ranns41afb332019-07-16 06:19:35 -0700426{
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000427 ipsec4_tunnel_kv_t *kv = va_arg (*args, ipsec4_tunnel_kv_t *);
428 ip4_address_t ip;
429 u32 spi;
Neale Ranns41afb332019-07-16 06:19:35 -0700430
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000431 ipsec4_tunnel_extract_key (kv, &ip, &spi);
432
433 s = format (s, "remote:%U spi:%u (0x%08x) sa:%d tun:%d",
434 format_ip4_address, &ip,
435 clib_net_to_host_u32 (spi),
436 clib_net_to_host_u32 (spi),
437 kv->value.sa_index, kv->value.tun_index);
Neale Ranns41afb332019-07-16 06:19:35 -0700438
439 return (s);
440}
441
442u8 *
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000443format_ipsec6_tunnel_kv (u8 * s, va_list * args)
Neale Ranns41afb332019-07-16 06:19:35 -0700444{
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000445 ipsec6_tunnel_kv_t *kv = va_arg (*args, ipsec6_tunnel_kv_t *);
Neale Ranns41afb332019-07-16 06:19:35 -0700446
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000447 s = format (s, "remote:%U spi:%u (0x%08x) sa:%d tun:%d",
448 format_ip6_address, &kv->key.remote_ip,
449 clib_net_to_host_u32 (kv->key.spi),
450 clib_net_to_host_u32 (kv->key.spi),
451 kv->value.sa_index, kv->value.tun_index);
Neale Ranns41afb332019-07-16 06:19:35 -0700452
453 return (s);
454}
455
Neale Ranns6ba4e412020-10-19 09:59:41 +0000456u8 *
457format_ipsec_itf (u8 * s, va_list * a)
458{
459 index_t ii = va_arg (*a, index_t);
460 ipsec_itf_t *itf;
461
462 itf = ipsec_itf_get (ii);
463 s = format (s, "[%d] %U %U",
464 ii, format_vnet_sw_if_index_name, vnet_get_main (),
465 itf->ii_sw_if_index, format_tunnel_mode, itf->ii_mode);
466
467 return (s);
468}
469
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700470/*
471 * fd.io coding-style-patch-verification: ON
472 *
473 * Local Variables:
474 * eval: (c-set-style "gnu")
475 * End:
476 */