From 0e67a25052dde565e5a6a30e1fb37bba770074b6 Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Fri, 17 Jul 2020 11:42:07 +0200 Subject: lacp: fix vector overflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Type: fix Change-Id: I8f776ce10ee8c29689db5ceef70df42dfb6b747c Signed-off-by: Benoît Ganne (cherry picked from commit c72995dd79500dd5791e71fd3edeae527c257351) --- src/plugins/lacp/cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/lacp/cli.c b/src/plugins/lacp/cli.c index 36a6f9bfbdf..fee1be19463 100644 --- a/src/plugins/lacp/cli.c +++ b/src/plugins/lacp/cli.c @@ -38,12 +38,12 @@ lacp_dump_ifs (lacp_interface_details_t ** out_lacpifs) hi = vnet_get_hw_interface (vnm, sif->hw_if_index); clib_memcpy(lacpif->interface_name, hi->name, MIN (ARRAY_LEN (lacpif->interface_name) - 1, - strlen ((const char *) hi->name))); + vec_len (hi->name))); bif = bond_get_master_by_dev_instance (sif->bif_dev_instance); hi = vnet_get_hw_interface (vnm, bif->hw_if_index); clib_memcpy(lacpif->bond_interface_name, hi->name, MIN (ARRAY_LEN (lacpif->bond_interface_name) - 1, - strlen ((const char *) hi->name))); + vec_len (hi->name))); clib_memcpy (lacpif->actor_system, sif->actor.system, 6); lacpif->actor_system_priority = sif->actor.system_priority; lacpif->actor_key = sif->actor.key; -- cgit 1.2.3-korg