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] [day] [month] [year] [list]
Date:   Thu, 5 Jan 2017 14:18:48 -0800
From:   Dmitry Torokhov <dmitry.torokhov@...il.com>
To:     Guenter Roeck <linux@...ck-us.net>
Cc:     linux-input@...r.kernel.org, linux-kernel@...r.kernel.org,
        Johnny Chuang <johnny.chuang@....com.tw>
Subject: Re: [PATCH] Input: elants_i2c - Avoid divide by 0 errors on bad
 touchscreen data

On Thu, Jan 05, 2017 at 10:17:45AM -0800, Guenter Roeck wrote:
> The following crash may be seen if bad data is received from the
> touchscreen.
> 
> [ 2189.425150] elants_i2c i2c-ELAN0001:00: unknown packet ff ff ff ff
> [ 2189.430738] divide error: 0000 [#1] PREEMPT SMP
...
> 
> The problem was seen with a 3.18 based kernel, but there is no reason
> to believe that the upstream code is safe.
> 
> Signed-off-by: Guenter Roeck <linux@...ck-us.net>

Applied and marked for stable, thank you.

> ---
>  drivers/input/touchscreen/elants_i2c.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/input/touchscreen/elants_i2c.c b/drivers/input/touchscreen/elants_i2c.c
> index 02aec284deca..3e6003d32e56 100644
> --- a/drivers/input/touchscreen/elants_i2c.c
> +++ b/drivers/input/touchscreen/elants_i2c.c
> @@ -914,9 +914,9 @@ static irqreturn_t elants_i2c_irq(int irq, void *_dev)
>  
>  		case QUEUE_HEADER_NORMAL:
>  			report_count = ts->buf[FW_HDR_COUNT];
> -			if (report_count > 3) {
> +			if (report_count == 0 || report_count > 3) {
>  				dev_err(&client->dev,
> -					"too large report count: %*ph\n",
> +					"bad report count: %*ph\n",
>  					HEADER_SIZE, ts->buf);
>  				break;
>  			}
> -- 
> 2.7.4
> 

-- 
Dmitry

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ