From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jasvinder Singh Subject: [PATCH] examples/ip_pipeline: fix buffer not null terminated Date: Mon, 16 Apr 2018 17:57:08 +0100 Message-ID: <20180416165708.120699-1-jasvinder.singh@intel.com> Cc: cristian.dumitrescu@intel.com To: dev@dpdk.org Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 003A48E5F for ; Mon, 16 Apr 2018 18:57:11 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The destination string may not have a null termination if the source string's length is equal to the sizeof(link->name). Fix by replacing strncpy with strlcpy that guarantees NULL-termination. Coverty issue: 272594 Fixes: 133c2c6565d6 ("examples/ip_pipeline: add link object") Signed-off-by: Jasvinder Singh --- examples/ip_pipeline/link.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/ip_pipeline/link.c b/examples/ip_pipeline/link.c index 26ff41b..b8a431f 100644 --- a/examples/ip_pipeline/link.c +++ b/examples/ip_pipeline/link.c @@ -6,6 +6,7 @@ #include #include +#include #include "link.h" #include "mempool.h" @@ -236,7 +237,7 @@ link_create(const char *name, struct link_params *params) } /* Node fill in */ - strncpy(link->name, name, sizeof(link->name)); + strlcpy(link->name, name, sizeof(link->name)); link->port_id = port_id; link->n_rxq = params->rx.n_queues; link->n_txq = params->tx.n_queues; -- 2.9.3