Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755797AbaJNWL4 (ORCPT ); Tue, 14 Oct 2014 18:11:56 -0400 Received: from mail-la0-f42.google.com ([209.85.215.42]:45467 "EHLO mail-la0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755754AbaJNWLz (ORCPT ); Tue, 14 Oct 2014 18:11:55 -0400 MIME-Version: 1.0 In-Reply-To: <20140915.165620.1169777676117933052.davem@davemloft.net> References: <20140914190557.690183d2@urahara> <20140915.130721.589682835868904320.davem@davemloft.net> <20140915135339.0659f618@urahara> <20140915.165620.1169777676117933052.davem@davemloft.net> From: Rickard Strandqvist Date: Wed, 15 Oct 2014 00:11:33 +0200 Message-ID: Subject: Re: [PATCH] net: ethernet: marvell: sky2.c: Cleaning up missing null-terminate in conjunction with strncpy To: David Miller Cc: Stephen Hemminger , Mirko Lindner , Network Development , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2014-09-15 22:56 GMT+02:00 David Miller : > From: Stephen Hemminger > Date: Mon, 15 Sep 2014 13:53:39 -0700 > >> On Mon, 15 Sep 2014 13:07:21 -0400 (EDT) >> David Miller wrote: >> >>> From: Stephen Hemminger >>> Date: Sun, 14 Sep 2014 19:05:57 -0700 >>> >>> > On Sun, 14 Sep 2014 19:33:43 +0200 >>> > Rickard Strandqvist wrote: >>> > >>> >> Replacing strncpy with strlcpy to avoid strings that lacks null terminate. >>> >> >>> >> Signed-off-by: Rickard Strandqvist >>> >> --- >>> >> drivers/net/ethernet/marvell/sky2.c | 2 +- >>> >> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >> >>> >> diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c >>> >> index dba48a5c..7053d38 100644 >>> >> --- a/drivers/net/ethernet/marvell/sky2.c >>> >> +++ b/drivers/net/ethernet/marvell/sky2.c >>> >> @@ -4907,7 +4907,7 @@ static const char *sky2_name(u8 chipid, char *buf, int sz) >>> >> }; >>> >> >>> >> if (chipid >= CHIP_ID_YUKON_XL && chipid <= CHIP_ID_YUKON_OP_2) >>> >> - strncpy(buf, name[chipid - CHIP_ID_YUKON_XL], sz); >>> >> + strlcpy(buf, name[chipid - CHIP_ID_YUKON_XL], sz); >>> >> else >>> >> snprintf(buf, sz, "(chip %#x)", chipid); >>> >> return buf; >>> > >>> > Useless and unnecessary since the list of names is right there. >>> > Why not avoid the copy all together? >>> > >>> > Subject: sky2: avoid strncpy >>> > >>> > Don't use strncpy() since security thought police think it is bad. >>> > >>> > Signed-off-by: Stephen Hemminger >>> >>> I think providing the buffer on the stack of the thread executing the >>> probe is superior because it will allow enabling parallel probing >>> in the future. >>> >>> I don't think you have to change that aspect to achieve your goal >>> of returning the const char * string when possible. >> >> What is benefit of s/strncpy/strlcpy/ for known safe code? >> Seems like more of the checkpatch police state. >> > > Stephen, read my reply again. > > I didn't say to go back to the strlcpy change. > > I said to use your patch, but keep the buf[] parameter allocated on > the caller's stack. > > Thanks. Hi Has not happened anything here ... Stephen, how can this be "." Then you might as well use strcpy, because the use here does not guarantee that the string will be null terminated, anyway. And David, as I understand you want to use code like this: static const char *sky2_name(u8 chipid, char *buf, int sz) { .... if (chipid >= CHIP_ID_YUKON_XL && chipid <= CHIP_ID_YUKON_OP_2) return name[chipid - CHIP_ID_YUKON_XL]; snprintf(buf, sz, "(chip %#x)", chipid); return buf; } Or? And we can all easily see how the code is used here. So Stephen statement as true, sz = 16. And David, since we only use the return value. But is it really such we should assume always is true? What if someone uses it like this: char tmp[8]; ... sky2_name(id, tmp, sizeof(tmp)); printf("The chip: %s\n", tmp); Kind regards Rickard Strandqvist -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/