IPSEC: SA format; don't print keys when there's no algo 47/18947/1
authorNeale Ranns <nranns@cisco.com>
Tue, 16 Apr 2019 23:21:57 +0000 (16:21 -0700)
committerNeale Ranns <nranns@cisco.com>
Tue, 16 Apr 2019 23:21:57 +0000 (16:21 -0700)
Change-Id: I4d1d22cb24564896264e77c1810804ea3f54cb37
Signed-off-by: Neale Ranns <nranns@cisco.com>
src/vnet/ipsec/ipsec_format.c

index 80691f2..93b1efd 100644 (file)
@@ -295,13 +295,14 @@ format_ipsec_sa (u8 * s, va_list * args)
   s = format (s, "\n   last-seq %u last-seq-hi %u window %U",
              sa->last_seq, sa->last_seq_hi,
              format_ipsec_replay_window, sa->replay_window);
-  s = format (s, "\n   crypto alg %U%s%U",
-             format_ipsec_crypto_alg, sa->crypto_alg,
-             sa->crypto_alg ? " key " : "",
-             format_ipsec_key, &sa->crypto_key);
-  s = format (s, "\n   integrity alg %U%s%U",
-             format_ipsec_integ_alg, sa->integ_alg,
-             sa->integ_alg ? " key " : "", format_ipsec_key, &sa->integ_key);
+  s = format (s, "\n   crypto alg %U",
+             format_ipsec_crypto_alg, sa->crypto_alg);
+  if (sa->crypto_alg)
+    s = format (s, " key %U", format_ipsec_key, &sa->crypto_key);
+  s = format (s, "\n   integrity alg %U",
+             format_ipsec_integ_alg, sa->integ_alg);
+  if (sa->integ_alg)
+    s = format (s, " key %U", format_ipsec_key, &sa->integ_key);
   vlib_get_combined_counter (&ipsec_sa_counters, sai, &counts);
   s = format (s, "\n   packets %u bytes %u", counts.packets, counts.bytes);