mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: <Mario.Limonciello@dell.com>
To: <sathyanarayanan.kuppuswamy@linux.intel.com>, <arnd@arndb.de>,
	<pali.rohar@gmail.com>, <dvhart@infradead.org>,
	<andy@infradead.org>
Cc: <quasisec@google.com>, <hdegoede@redhat.com>,
	<platform-driver-x86@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: RE: [PATCH] dell-smbios: fix string overflow
Date: Wed, 8 Nov 2017 18:30:08 +0000	[thread overview]
Message-ID: <01d8cf85a7984a3cb1dd92771b65b8ea@ausx13mpc120.AMER.DELL.COM> (raw)
In-Reply-To: <8b46d25f-f9e6-d2e5-1b7c-abbc6dd47298@linux.intel.com>



> -----Original Message-----
> From: sathyanarayanan kuppuswamy
> [mailto:sathyanarayanan.kuppuswamy@linux.intel.com]
> Sent: Wednesday, November 8, 2017 12:23 PM
> To: Arnd Bergmann <arnd@arndb.de>; Pali Rohár <pali.rohar@gmail.com>;
> Limonciello, Mario <Mario_Limonciello@Dell.com>; Darren Hart
> <dvhart@infradead.org>; Andy Shevchenko <andy@infradead.org>
> Cc: Edward O'Callaghan <quasisec@google.com>; Hans de Goede
> <hdegoede@redhat.com>; platform-driver-x86@vger.kernel.org; linux-
> kernel@vger.kernel.org
> Subject: Re: [PATCH] dell-smbios: fix string overflow
> 
> Hi,
> 
> I recommend using "platform/x86: dell-smbios:" in commit header.
> 
> On 11/08/2017 04:08 AM, Arnd Bergmann wrote:
> > The new sysfs code overwrites two fixed-length character arrays
> > that are each one byte shorter than they need to be, to hold
> > the trailing \0:
> >
> > drivers/platform/x86/dell-smbios.c: In function 'build_tokens_sysfs':
> > drivers/platform/x86/dell-smbios.c:494:42: error: 'sprintf' writing a terminating
> nul past the end of the destination [-Werror=format-overflow=]
> >     sprintf(buffer_location, "%04x_location",
> > drivers/platform/x86/dell-smbios.c:494:3: note: 'sprintf' output 14 bytes into a
> destination of size 13
> > drivers/platform/x86/dell-smbios.c:506:36: error: 'sprintf' writing a terminating
> nul past the end of the destination [-Werror=format-overflow=]
> >     sprintf(buffer_value, "%04x_value",
> > drivers/platform/x86/dell-smbios.c:506:3: note: 'sprintf' output 11 bytes into a
> destination of size 10
> Don't need to include the error log in commit message. Just explaining
> the issue is good enough.
> >
> > This changes it to just use kasprintf(), which always gets it right.
> >
> > Fixes: 33b9ca1e53b4 ("platform/x86: dell-smbios: Add a sysfs interface for
> SMBIOS tokens")
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > ---
> >   drivers/platform/x86/dell-smbios.c | 12 ++++--------
> >   1 file changed, 4 insertions(+), 8 deletions(-)
> >
> > diff --git a/drivers/platform/x86/dell-smbios.c b/drivers/platform/x86/dell-
> smbios.c
> > index d99edd803c19..6a60db515bda 100644
> > --- a/drivers/platform/x86/dell-smbios.c
> > +++ b/drivers/platform/x86/dell-smbios.c
> > @@ -463,8 +463,6 @@ static struct platform_driver platform_driver = {
> >
> >   static int build_tokens_sysfs(struct platform_device *dev)
> >   {
> > -	char buffer_location[13];
> > -	char buffer_value[10];
> >   	char *location_name;
> >   	char *value_name;
> >   	size_t size;
> > @@ -491,9 +489,8 @@ static int build_tokens_sysfs(struct platform_device
> *dev)
> >   		if (da_tokens[i].tokenID == 0)
> >   			continue;
> >   		/* add location */
> > -		sprintf(buffer_location, "%04x_location",
> > -			da_tokens[i].tokenID);
> > -		location_name = kstrdup(buffer_location, GFP_KERNEL);
> > +		location_name = kasprintf(GFP_KERNEL, "%04x_location",
> > +					  da_tokens[i].tokenID);
> >   		if (location_name == NULL)
> >   			goto out_unwind_strings;
> >   		sysfs_attr_init(&token_location_attrs[i].attr);
> > @@ -503,9 +500,8 @@ static int build_tokens_sysfs(struct platform_device
> *dev)
> >   		token_attrs[j++] = &token_location_attrs[i].attr;
> >
> >   		/* add value */
> > -		sprintf(buffer_value, "%04x_value",
> > -			da_tokens[i].tokenID);
> > -		value_name = kstrdup(buffer_value, GFP_KERNEL);
> > +		value_name = kasprintf(GFP_KERNEL, "%04x_value",
> > +				       da_tokens[i].tokenID);
> >   		if (value_name == NULL)
> >   			goto loop_fail_create_value;
> >   		sysfs_attr_init(&token_value_attrs[i].attr);
> 
> --

Arnd,

Assuming Darren will do the fixup for title and message as recommended by 
Sathyanarayanan before committing:
Acked-by: Mario Limonciello <mario.limonciello@dell.com>

Thanks, for the fix.  For my own information and improvement, would you 
share how you caught that?  Just added "-Werror=format-overflow=" to CFLAGS?
I wasn't seeing the compile errors with default flags in my own testing, so I'd like 
to make sure I'm doing better testing in the future.

  reply	other threads:[~2017-11-08 18:30 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-08 12:08 Arnd Bergmann
2017-11-08 18:22 ` sathyanarayanan kuppuswamy
2017-11-08 18:30   ` Mario.Limonciello [this message]
2017-11-08 19:03     ` Andy Shevchenko
2017-11-08 20:02       ` Arnd Bergmann
2017-11-08 20:01   ` Arnd Bergmann
2017-11-08 20:45 ` Darren Hart
2017-11-09  8:31 ` Pali Rohár

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=01d8cf85a7984a3cb1dd92771b65b8ea@ausx13mpc120.AMER.DELL.COM \
    --to=mario.limonciello@dell.com \
    --cc=andy@infradead.org \
    --cc=arnd@arndb.de \
    --cc=dvhart@infradead.org \
    --cc=hdegoede@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pali.rohar@gmail.com \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=quasisec@google.com \
    --cc=sathyanarayanan.kuppuswamy@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®