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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 08 Nov 2011 07:19:51 +0100
From:	Takashi Iwai <tiwai@...e.de>
To:	Éric Piel <eric.piel@...mplin-utc.net>
Cc:	Andrew Morton <akpm@...ux-foundation.org>,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] lis3lv02d: Avoid zero-division

At Tue, 08 Nov 2011 04:57:42 +0100,
Éric Piel wrote:
> 
> Op 03-11-11 13:09, Takashi Iwai schreef:
> > In some weird situation, HP DriveGuard chip can't read ODR value
> > correctly, and it results in a zero-division Oops in lis3lv02d driver.
> > This patch fixes the Oops by checking the value appopriately, and skips
> > if any weird value is read.
> Hi Takashi,
> Actually, a similar patch already just landed in linus' tree:
> 1510dd5954 (lis3lv02d: avoid divide by zero due to unchecked)
> 
> However, in the patch applied, the device is disabled (until next 
> reboot) while in yours, the sleep is just skipped. Does it work again 
> after the read of odr fails? If so, maybe I could improve the current 
> version by, after the odr read fails, sleeping a long and safe time and 
> then trying to read the odr again. Then if it fails again, we give up, 
> otherwise the device can be used again.

I guess it's possible to use the device afterward.  The possible
reason is either the chip is set to an invalid mode or ACPI isn't set
up properly.  But this path usually means that ACPI does work more or
less since you could read WHOAMI.

> Do you have such a device yourself? Could you let me know if after a 
> failing read of the odr, the device keeps working?

I have a machine but I'm not quite sure how to reproduce this error.
It happened casually during the installation of a new system, so it's
not so trivial to switch the module during it...


thanks,

Takashi

> 
> Cheers,
> Éric
> 
> >
> > Cc:<stable@...nel.org>
> > Signed-off-by: Takashi Iwai<tiwai@...e.de>
> > ---
> >   drivers/misc/lis3lv02d/lis3lv02d.c |   14 +++++++++++---
> >   1 files changed, 11 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/misc/lis3lv02d/lis3lv02d.c b/drivers/misc/lis3lv02d/lis3lv02d.c
> > index 8b51cd6..c4eb2f3 100644
> > --- a/drivers/misc/lis3lv02d/lis3lv02d.c
> > +++ b/drivers/misc/lis3lv02d/lis3lv02d.c
> > @@ -228,6 +228,14 @@ static int lis3lv02d_set_odr(int rate)
> >   	return -EINVAL;
> >   }
> >
> > +static void lis3lv02d_power_delay(struct lis3lv02d *lis3)
> > +{
> > +	int odr = lis3lv02d_get_odr();
> > +	if (odr<= 0)
> > +		return;
> > +	msleep(lis3->pwron_delay / odr);
> > +}
> > +
> >   static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
> >   {
> >   	u8 ctlreg, reg;
> > @@ -266,7 +274,7 @@ static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
> >
> >   	lis3->read(lis3, ctlreg,&reg);
> >   	lis3->write(lis3, ctlreg, (reg | selftest));
> > -	msleep(lis3->pwron_delay / lis3lv02d_get_odr());
> > +	lis3lv02d_power_delay(lis3);
> >
> >   	/* Read directly to avoid axis remap */
> >   	x = lis3->read_data(lis3, OUTX);
> > @@ -275,7 +283,7 @@ static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
> >
> >   	/* back to normal settings */
> >   	lis3->write(lis3, ctlreg, reg);
> > -	msleep(lis3->pwron_delay / lis3lv02d_get_odr());
> > +	lis3lv02d_power_delay(lis3);
> >
> >   	results[0] = x - lis3->read_data(lis3, OUTX);
> >   	results[1] = y - lis3->read_data(lis3, OUTY);
> > @@ -385,7 +393,7 @@ void lis3lv02d_poweron(struct lis3lv02d *lis3)
> >   	}
> >
> >   	/* LIS3 power on delay is quite long */
> > -	msleep(lis3->pwron_delay / lis3lv02d_get_odr());
> > +	lis3lv02d_power_delay(lis3);
> >
> >   	if (lis3->reg_ctrl)
> >   		lis3_context_restore(lis3);
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ