All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: Jean Delvare <jdelvare@suse.de>
Cc: Linux I2C <linux-i2c@vger.kernel.org>
Subject: Re: i2c-tools: i2cbusses: Avoid buffer overflows in sysfs paths
Date: Wed, 8 Nov 2017 10:29:59 +0100	[thread overview]
Message-ID: <20171108092959.a5niuh3z4ftgzj53@pengutronix.de> (raw)
In-Reply-To: <20171108095752.300e95c6@endymion>

Hello Jean,

On Wed, Nov 08, 2017 at 09:57:52AM +0100, Jean Delvare wrote:
> > > --- a/tools/i2cbusses.c
> > > +++ b/tools/i2cbusses.c
> > > @@ -220,18 +220,18 @@ struct i2c_adap *gather_i2c_busses(void)
> > >  
> > >  		/* this should work for kernels 2.6.5 or higher and */
> > >  		/* is preferred because is unambiguous */
> > > -		sprintf(n, "%s/%s/name", sysfs, de->d_name);
> > > +		snprintf(n, NAME_MAX, "%s/%s/name", sysfs, de->d_name);  
> > 
> > OK, now instead of running in a buffer overflow in sprintf you might
> > call fopen with a partial (maybe unterminated?) filename. While this is
> > definitively better, you should check the return value of snprintf to be
> > completely safe here.
> 
> To be honest, I never thought the buffer overflows could ever happen,
> my motivation to fix them was to allow the code to build in OBS, where
> FORTIFY_SOURCE is enabled. So I went for the most simple change that
> made gcc happy.
> 
> That being said, I have no problem additionally checking the value
> returned by snprintf. Something like this?
> 
> From: Jean Delvare
> Subject: i2cbusses: Check the return value of snprintf
> 
> It's very unlikely that these paths will ever be truncated, but
> better safe than sorry.
> ---
>  tools/i2cbusses.c |   34 ++++++++++++++++++++++++++++------
>  1 file changed, 28 insertions(+), 6 deletions(-)
> 
> --- i2c-tools.orig/tools/i2cbusses.c	2017-11-02 16:17:50.698383029 +0100
> +++ i2c-tools/tools/i2cbusses.c	2017-11-08 09:49:40.365339644 +0100
> @@ -137,7 +137,7 @@ struct i2c_adap *gather_i2c_busses(void)
>  	FILE *f;
>  	char fstype[NAME_MAX], sysfs[NAME_MAX], n[NAME_MAX];
>  	int foundsysfs = 0;
> -	int count=0;
> +	int len, count = 0;
>  	struct i2c_adap *adapters;
>  
>  	adapters = calloc(BUNCH, sizeof(struct i2c_adap));
> @@ -220,18 +220,32 @@ struct i2c_adap *gather_i2c_busses(void)
>  
>  		/* this should work for kernels 2.6.5 or higher and */
>  		/* is preferred because is unambiguous */
> -		snprintf(n, NAME_MAX, "%s/%s/name", sysfs, de->d_name);
> +		len = snprintf(n, NAME_MAX, "%s/%s/name", sysfs, de->d_name);
> +		if (len >= NAME_MAX) {
> +			fprintf(stderr, "%s: path truncated\n", n);
> +			continue;
> +		}

According to C99 snprintf et al return "the number of characters which
would have been written to the final string if enough space had been
available". Up to glibc 2.0.6 -1 was returned though if the output was
truncated. Does one still have to show consideration for a libc that
old? Hmm, probably not.

Then your change looks fine.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-31  7:16 i2c-tools: i2cbusses: Avoid buffer overflows in sysfs paths Jean Delvare
2017-11-06 12:04 ` Uwe Kleine-König
2017-11-08  8:57   ` Jean Delvare
2017-11-08  9:29     ` Uwe Kleine-König [this message]
2017-11-08 21:14       ` Jean Delvare

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=20171108092959.a5niuh3z4ftgzj53@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=jdelvare@suse.de \
    --cc=linux-i2c@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.