lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20250112131313.749b58ec@jic23-huawei>
Date: Sun, 12 Jan 2025 13:13:13 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Vasileios Amoiridis <vassilisamir@...il.com>
Cc: Dan Carpenter <dan.carpenter@...aro.org>, Lars-Peter Clausen
 <lars@...afoo.de>, linux-iio@...r.kernel.org, linux-kernel@...r.kernel.org,
 kernel-janitors@...r.kernel.org
Subject: Re: [PATCH] iio: chemical: bme680: Fix uninitialized variable in
 __bme680_read_raw()

On Wed, 8 Jan 2025 22:29:40 +0100
Vasileios Amoiridis <vassilisamir@...il.com> wrote:

> On Wed, Jan 08, 2025 at 12:37:22PM +0300, Dan Carpenter wrote:
> > The bme680_read_temp() function takes a pointer to s16 but we're passing
> > an int pointer to it.  This will not work on big endian systems and it
> > also means that the other 16 bits are uninitialized.
> > 
> > Pass an s16 type variable.
> > 
> > Fixes: f51171ce2236 ("iio: chemical: bme680: Add SCALE and RAW channels")
> > Signed-off-by: Dan Carpenter <dan.carpenter@...aro.org>
> > ---
> >  drivers/iio/chemical/bme680_core.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/iio/chemical/bme680_core.c b/drivers/iio/chemical/bme680_core.c
> > index 26eb0fa77a43..9d73fd2cf52c 100644
> > --- a/drivers/iio/chemical/bme680_core.c
> > +++ b/drivers/iio/chemical/bme680_core.c
> > @@ -879,11 +879,11 @@ static int __bme680_read_raw(struct iio_dev *indio_dev,
> >  	case IIO_CHAN_INFO_RAW:
> >  		switch (chan->type) {
> >  		case IIO_TEMP:
> > -			ret = bme680_read_temp(data, (s16 *)&chan_val);
> > +			ret = bme680_read_temp(data, &temp_chan_val);
> >  			if (ret)
> >  				return ret;
> >  
> > -			*val = chan_val;
> > +			*val = temp_chan_val;
> >  			return IIO_VAL_INT;
> >  		case IIO_PRESSURE:
> >  			ret = bme680_read_press(data, &chan_val);
> > -- 
> > 2.45.2
> >  
> 
> Acked-by: Vasileios Amoiridis <vassilisamir@...il.com>
> 
> Hi Dan,
> 
> I had already applied this for IIO_CHAN_INFO_PROCESSED but not for the
> IIO_CHAN_INFO_RAW channel... Very good that you spotted it!
Applied to the fixes-togreg branch of iio.git and marked for stable.

Most likely will go in during the merge window or slightly after.

> 
> Cheers,
> Vasilis
> 


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ