From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH] drivers: fix to replace strcat with strncat Date: Mon, 14 Jan 2019 08:24:37 -0800 Message-ID: <20190114082437.09600862@hermes.lan> References: <1547445875-24601-1-git-send-email-tallurix.chaitanya.babu@intel.com> <4eefd77e-aaec-90ce-05df-f320dc01af66@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Chaitanya Babu Talluri , dev@dpdk.org, alejandro.lucero@netronome.com, reshma.pattan@intel.com, rmody@marvell.com, shshaikh@marvell.com, beilei.xing@intel.com, qi.z.zhang@intel.com, pablo.de.lara.guarch@intel.com, declan.doherty@intel.com, stable@dpdk.org To: Ferruh Yigit Return-path: Received: from mail-pl1-f193.google.com (mail-pl1-f193.google.com [209.85.214.193]) by dpdk.org (Postfix) with ESMTP id 4E8FE1B1D6 for ; Mon, 14 Jan 2019 17:24:45 +0100 (CET) Received: by mail-pl1-f193.google.com with SMTP id e11so10353436plt.11 for ; Mon, 14 Jan 2019 08:24:45 -0800 (PST) In-Reply-To: <4eefd77e-aaec-90ce-05df-f320dc01af66@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, 14 Jan 2019 13:29:38 +0000 Ferruh Yigit wrote: > On 1/14/2019 6:04 AM, Chaitanya Babu Talluri wrote: > > Strcat does not check the destination length and there might be > > chances of string overflow so insted of strcat, strncat is used. > > > > Fixes: 540a211084 ("bnx2x: driver core") > > Fixes: e163c18a15 ("net/i40e: update ptype and pctype info") > > Fixes: ef28aa96e5 ("net/nfp: support multiprocess") > > Fixes: 6f4eec2565 ("test/crypto: enhance scheduler unit tests") > > Cc: stable@dpdk.org > > > > Signed-off-by: Chaitanya Babu Talluri > > <...> > > > @@ -685,11 +687,11 @@ nfp_acquire_secondary_process_lock(struct nfp_pcie_user *desc) > > * driver is used because that implies root user. > > */ > > home_path = getenv("HOME"); > > - lockfile = calloc(strlen(home_path) + strlen(lockname) + 1, > > + lockfile = calloc(LOCKFILE_HOME_PATH + strlen(lockname) + 1, > > sizeof(char)); > > > > - strcat(lockfile, home_path); > > - strcat(lockfile, "/.lock_nfp_secondary"); > > + strncat(lockfile, home_path, LOCKFILE_HOME_PATH); > > + strncat(lockfile, lockname, strlen(lockfile)); > > I guess this need to be 'LOCKFILE_HOME_PATH - strlen(lockfile) - 1' instead. > But also this can be implemented as 'snprintf()' > > Since 'lockfile' allocated dynamically based on sizes of existing strings, using > 'lockname' instead of "/.lock_nfp_secondary" will show that there won't be any > overflow but tools still may be complaining about 'strcat' usage. > > Why not use vasprintf() instead of doing manual construction?