From: Benoît Ganne Date: Fri, 17 Jul 2020 09:42:07 +0000 (+0200) Subject: lacp: fix vector overflow X-Git-Tag: v21.01-rc0~164 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=c72995dd79500dd5791e71fd3edeae527c257351;p=vpp.git lacp: fix vector overflow Type: fix Change-Id: I8f776ce10ee8c29689db5ceef70df42dfb6b747c Signed-off-by: Benoît Ganne --- 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;