From: Benoît Ganne Date: Mon, 29 Apr 2019 14:31:24 +0000 (+0200) Subject: ipsec: fix ipsec format overflow X-Git-Tag: v20.01-rc0~706 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=e7a527f928a65c4f489ba2f6d393de1924f161bd ipsec: fix ipsec format overflow hi->name is not NULL-terminated. Use specialized format function which does the right thing. Change-Id: Iadda51461af0c1ad4f38a6d24b76e816020f35c8 Signed-off-by: Benoît Ganne --- diff --git a/src/vnet/ipsec/ipsec_format.c b/src/vnet/ipsec/ipsec_format.c index 44f064d6112..284dd6f5513 100644 --- a/src/vnet/ipsec/ipsec_format.c +++ b/src/vnet/ipsec/ipsec_format.c @@ -336,7 +336,6 @@ format_ipsec_tunnel (u8 * s, va_list * args) { ipsec_main_t *im = &ipsec_main; u32 ti = va_arg (*args, u32); - vnet_hw_interface_t *hi; ipsec_tunnel_if_t *t; if (pool_is_free_index (im->tunnel_interfaces, ti)) @@ -350,9 +349,9 @@ format_ipsec_tunnel (u8 * s, va_list * args) if (t->hw_if_index == ~0) goto done; - hi = vnet_get_hw_interface (im->vnet_main, t->hw_if_index); - - s = format (s, "%s\n", hi->name); + s = + format (s, "%U\n", format_vnet_hw_if_index_name, im->vnet_main, + t->hw_if_index); s = format (s, " out-bound sa: "); s = format (s, "%U\n", format_ipsec_sa, t->output_sa_index,