* [PATCH] Input: zforce_ts - fix playload length check @ 2015-07-27 21:06 Dmitry Torokhov 2015-07-27 21:35 ` Heiko Stübner 2015-07-28 10:23 ` Geert Uytterhoeven 0 siblings, 2 replies; 8+ messages in thread From: Dmitry Torokhov @ 2015-07-27 21:06 UTC (permalink / raw) To: linux-input; +Cc: Dirk Behme, Heiko Stuebner, Oleksij Rempel, linux-kernel Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't overwrite the stack") attempted to add a check for payload size being too large for the supplied buffer. Unfortunately with the currently selected buffer size the comparison is always false as buffer size is larger than the value a single byte can hold, and that results in compiler warnings. Additionally the check was incorrect as it was not accounting for the already read 2 bytes of data stored in the buffer. Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- This seems to shut up my GCC, I wonder if it is going to work gfor everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a comment and remove check. drivers/input/touchscreen/zforce_ts.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/input/touchscreen/zforce_ts.c b/drivers/input/touchscreen/zforce_ts.c index 2554efd..542ff02 100644 --- a/drivers/input/touchscreen/zforce_ts.c +++ b/drivers/input/touchscreen/zforce_ts.c @@ -441,7 +441,9 @@ static int zforce_read_packet(struct zforce_ts *ts, u8 *buf) goto unlock; } - if (buf[PAYLOAD_LENGTH] == 0 || buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE) { + if (buf[PAYLOAD_LENGTH] == 0 || + (FRAME_MAXSIZE - 2 < 255 && + buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE - 2)) { dev_err(&client->dev, "invalid payload length: %d\n", buf[PAYLOAD_LENGTH]); ret = -EIO; -- 2.5.0.rc2.392.g76e840b -- Dmitry ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-27 21:06 [PATCH] Input: zforce_ts - fix playload length check Dmitry Torokhov @ 2015-07-27 21:35 ` Heiko Stübner 2015-07-27 21:44 ` Dmitry Torokhov 2015-07-28 10:23 ` Geert Uytterhoeven 1 sibling, 1 reply; 8+ messages in thread From: Heiko Stübner @ 2015-07-27 21:35 UTC (permalink / raw) To: Dmitry Torokhov; +Cc: linux-input, Dirk Behme, Oleksij Rempel, linux-kernel Hi Dmitry, Am Montag, 27. Juli 2015, 14:06:19 schrieb Dmitry Torokhov: > Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't > overwrite the stack") attempted to add a check for payload size being too > large for the supplied buffer. Unfortunately with the currently selected > buffer size the comparison is always false as buffer size is larger than > the value a single byte can hold, and that results in compiler warnings. > Additionally the check was incorrect as it was not accounting for the > already read 2 bytes of data stored in the buffer. > > Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a > Reported-by: kbuild test robot <fengguang.wu@intel.com> > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > --- > > This seems to shut up my GCC, I wonder if it is going to work gfor > everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a > comment and remove check. needed a bit to get to know my old zforce driver again ;-) I may be blind, but currently I fail to see what problem the original patch actually tries to fix. buf[PAYLOAD_LENGTH] is an u8, so the max value it can contain is 255. The i2c_master_recv reads buf[PAYLOAD_LENGTH]-bytes into the buffer starting at buf[PAYLOAD_BODY] (= buf[2]). So it reads at max 255 bytes into a 257 byte big buffer starting at index 2. zforce_read_packet, also is an internal function used only by the interrupt handler, which always only calls it with a buffer of FRAME_MAXSIZE size. The original patch said "If we get a corrupted packet with PAYLOAD_LENGTH > FRAME_MAXSIZE, we will silently overwrite the stack." but payload_length can never actually be greater than the buffer size? Very confused Heiko > drivers/input/touchscreen/zforce_ts.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/input/touchscreen/zforce_ts.c > b/drivers/input/touchscreen/zforce_ts.c index 2554efd..542ff02 100644 > --- a/drivers/input/touchscreen/zforce_ts.c > +++ b/drivers/input/touchscreen/zforce_ts.c > @@ -441,7 +441,9 @@ static int zforce_read_packet(struct zforce_ts *ts, u8 > *buf) goto unlock; > } > > - if (buf[PAYLOAD_LENGTH] == 0 || buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE) { > + if (buf[PAYLOAD_LENGTH] == 0 || > + (FRAME_MAXSIZE - 2 < 255 && > + buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE - 2)) { > dev_err(&client->dev, "invalid payload length: %d\n", > buf[PAYLOAD_LENGTH]); > ret = -EIO; ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-27 21:35 ` Heiko Stübner @ 2015-07-27 21:44 ` Dmitry Torokhov 2015-07-27 21:53 ` Heiko Stübner 0 siblings, 1 reply; 8+ messages in thread From: Dmitry Torokhov @ 2015-07-27 21:44 UTC (permalink / raw) To: Heiko Stübner; +Cc: linux-input, Dirk Behme, Oleksij Rempel, linux-kernel On Mon, Jul 27, 2015 at 11:35:23PM +0200, Heiko Stübner wrote: > Hi Dmitry, > > Am Montag, 27. Juli 2015, 14:06:19 schrieb Dmitry Torokhov: > > Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't > > overwrite the stack") attempted to add a check for payload size being too > > large for the supplied buffer. Unfortunately with the currently selected > > buffer size the comparison is always false as buffer size is larger than > > the value a single byte can hold, and that results in compiler warnings. > > Additionally the check was incorrect as it was not accounting for the > > already read 2 bytes of data stored in the buffer. > > > > Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a > > Reported-by: kbuild test robot <fengguang.wu@intel.com> > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > > --- > > > > This seems to shut up my GCC, I wonder if it is going to work gfor > > everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a > > comment and remove check. > > needed a bit to get to know my old zforce driver again ;-) > > > I may be blind, but currently I fail to see what problem the original patch > actually tries to fix. > > buf[PAYLOAD_LENGTH] is an u8, so the max value it can contain is 255. The > i2c_master_recv reads buf[PAYLOAD_LENGTH]-bytes into the buffer starting at > buf[PAYLOAD_BODY] (= buf[2]). So it reads at max 255 bytes into a 257 byte big > buffer starting at index 2. > > zforce_read_packet, also is an internal function used only by the interrupt > handler, which always only calls it with a buffer of FRAME_MAXSIZE size. > > > The original patch said "If we get a corrupted packet with PAYLOAD_LENGTH > > FRAME_MAXSIZE, we will silently overwrite the stack." but payload_length can > never actually be greater than the buffer size? Right, not unless we for some reason decide to adjust FRAME_MAXSIZE to make it smaller than 257 and then fail to add the check to make sure we do not go past the buffer. So everything is fine now, but I guess we'd like to be more safe in the future... Thanks. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-27 21:44 ` Dmitry Torokhov @ 2015-07-27 21:53 ` Heiko Stübner 2015-07-27 22:16 ` Dmitry Torokhov 0 siblings, 1 reply; 8+ messages in thread From: Heiko Stübner @ 2015-07-27 21:53 UTC (permalink / raw) To: Dmitry Torokhov; +Cc: linux-input, Dirk Behme, Oleksij Rempel, linux-kernel Am Montag, 27. Juli 2015, 14:44:42 schrieb Dmitry Torokhov: > On Mon, Jul 27, 2015 at 11:35:23PM +0200, Heiko Stübner wrote: > > Hi Dmitry, > > > > Am Montag, 27. Juli 2015, 14:06:19 schrieb Dmitry Torokhov: > > > Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't > > > overwrite the stack") attempted to add a check for payload size being > > > too > > > large for the supplied buffer. Unfortunately with the currently selected > > > buffer size the comparison is always false as buffer size is larger than > > > the value a single byte can hold, and that results in compiler warnings. > > > Additionally the check was incorrect as it was not accounting for the > > > already read 2 bytes of data stored in the buffer. > > > > > > Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a > > > Reported-by: kbuild test robot <fengguang.wu@intel.com> > > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > > > --- > > > > > > This seems to shut up my GCC, I wonder if it is going to work gfor > > > everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a > > > comment and remove check. > > > > needed a bit to get to know my old zforce driver again ;-) > > > > > > I may be blind, but currently I fail to see what problem the original > > patch > > actually tries to fix. > > > > buf[PAYLOAD_LENGTH] is an u8, so the max value it can contain is 255. The > > i2c_master_recv reads buf[PAYLOAD_LENGTH]-bytes into the buffer starting > > at > > buf[PAYLOAD_BODY] (= buf[2]). So it reads at max 255 bytes into a 257 byte > > big buffer starting at index 2. > > > > zforce_read_packet, also is an internal function used only by the > > interrupt > > handler, which always only calls it with a buffer of FRAME_MAXSIZE size. > > > > > > The original patch said "If we get a corrupted packet with PAYLOAD_LENGTH > > > > > FRAME_MAXSIZE, we will silently overwrite the stack." but payload_length > > can never actually be greater than the buffer size? > > Right, not unless we for some reason decide to adjust FRAME_MAXSIZE to > make it smaller than 257 and then fail to add the check to make sure we > do not go past the buffer. > > So everything is fine now, but I guess we'd like to be more safe in the > future... I would argue that FRAME_MAXSIZE already indicates that it should not be changed. It's the maximum size a single frame can be. And this size is a property of the hardware itself, because of the format, 257 bytes is always the maximum you could get (2 bytes header + at max 255 bytes payload). So this second check (while only taking up a minimal amount of time) actually only checks against kernel-developer making errors in the future and not something the hardware can cause. But your change itself looks correct, so if you prefer to keep that check you can also add my Reviewed-by: Heiko Stuebner <heiko.stuebner@bq.com> Heiko -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-27 21:53 ` Heiko Stübner @ 2015-07-27 22:16 ` Dmitry Torokhov 0 siblings, 0 replies; 8+ messages in thread From: Dmitry Torokhov @ 2015-07-27 22:16 UTC (permalink / raw) To: Heiko Stübner; +Cc: linux-input, Dirk Behme, Oleksij Rempel, linux-kernel On Mon, Jul 27, 2015 at 11:53:27PM +0200, Heiko Stübner wrote: > Am Montag, 27. Juli 2015, 14:44:42 schrieb Dmitry Torokhov: > > On Mon, Jul 27, 2015 at 11:35:23PM +0200, Heiko Stübner wrote: > > > Hi Dmitry, > > > > > > Am Montag, 27. Juli 2015, 14:06:19 schrieb Dmitry Torokhov: > > > > Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't > > > > overwrite the stack") attempted to add a check for payload size being > > > > too > > > > large for the supplied buffer. Unfortunately with the currently selected > > > > buffer size the comparison is always false as buffer size is larger than > > > > the value a single byte can hold, and that results in compiler warnings. > > > > Additionally the check was incorrect as it was not accounting for the > > > > already read 2 bytes of data stored in the buffer. > > > > > > > > Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a > > > > Reported-by: kbuild test robot <fengguang.wu@intel.com> > > > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > > > > --- > > > > > > > > This seems to shut up my GCC, I wonder if it is going to work gfor > > > > everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a > > > > comment and remove check. > > > > > > needed a bit to get to know my old zforce driver again ;-) > > > > > > > > > I may be blind, but currently I fail to see what problem the original > > > patch > > > actually tries to fix. > > > > > > buf[PAYLOAD_LENGTH] is an u8, so the max value it can contain is 255. The > > > i2c_master_recv reads buf[PAYLOAD_LENGTH]-bytes into the buffer starting > > > at > > > buf[PAYLOAD_BODY] (= buf[2]). So it reads at max 255 bytes into a 257 byte > > > big buffer starting at index 2. > > > > > > zforce_read_packet, also is an internal function used only by the > > > interrupt > > > handler, which always only calls it with a buffer of FRAME_MAXSIZE size. > > > > > > > > > The original patch said "If we get a corrupted packet with PAYLOAD_LENGTH > > > > > > > FRAME_MAXSIZE, we will silently overwrite the stack." but payload_length > > > can never actually be greater than the buffer size? > > > > Right, not unless we for some reason decide to adjust FRAME_MAXSIZE to > > make it smaller than 257 and then fail to add the check to make sure we > > do not go past the buffer. > > > > So everything is fine now, but I guess we'd like to be more safe in the > > future... > > I would argue that FRAME_MAXSIZE already indicates that it should not be > changed. It's the maximum size a single frame can be. And this size is a > property of the hardware itself, because of the format, 257 bytes is always > the maximum you could get (2 bytes header + at max 255 bytes payload). > > So this second check (while only taking up a minimal amount of time) It does not take any time as it gets optimized out completely (with current FRAME_MAXSIZE value). > actually > only checks against kernel-developer making errors in the future and not > something the hardware can cause. Right. > > > But your change itself looks correct, so if you prefer to keep that check you > can also add my > Reviewed-by: Heiko Stuebner <heiko.stuebner@bq.com> I guess I'll sit on it. Another option is to revert the original change and be done with it. Thanks. -- Dmitry ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-27 21:06 [PATCH] Input: zforce_ts - fix playload length check Dmitry Torokhov 2015-07-27 21:35 ` Heiko Stübner @ 2015-07-28 10:23 ` Geert Uytterhoeven 2015-07-28 11:28 ` Dirk Behme 1 sibling, 1 reply; 8+ messages in thread From: Geert Uytterhoeven @ 2015-07-28 10:23 UTC (permalink / raw) To: Dmitry Torokhov Cc: linux-input@vger.kernel.org, Dirk Behme, Heiko Stuebner, Oleksij Rempel, linux-kernel@vger.kernel.org On Mon, Jul 27, 2015 at 11:06 PM, Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote: > Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't > overwrite the stack") attempted to add a check for payload size being too > large for the supplied buffer. Unfortunately with the currently selected > buffer size the comparison is always false as buffer size is larger than > the value a single byte can hold, and that results in compiler warnings. > Additionally the check was incorrect as it was not accounting for the > already read 2 bytes of data stored in the buffer. The check was indeed incorrect. > Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a > Reported-by: kbuild test robot <fengguang.wu@intel.com> > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > --- > > This seems to shut up my GCC, I wonder if it is going to work gfor > everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a > comment and remove check. > > drivers/input/touchscreen/zforce_ts.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/input/touchscreen/zforce_ts.c b/drivers/input/touchscreen/zforce_ts.c > index 2554efd..542ff02 100644 > --- a/drivers/input/touchscreen/zforce_ts.c > +++ b/drivers/input/touchscreen/zforce_ts.c > @@ -441,7 +441,9 @@ static int zforce_read_packet(struct zforce_ts *ts, u8 *buf) > goto unlock; > } > > - if (buf[PAYLOAD_LENGTH] == 0 || buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE) { > + if (buf[PAYLOAD_LENGTH] == 0 || > + (FRAME_MAXSIZE - 2 < 255 && > + buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE - 2)) { Doesn't help with gcc 4.1.2 :-( Before: drivers/input/touchscreen/zforce_ts.c: In function ‘zforce_read_packet’: drivers/input/touchscreen/zforce_ts.c:432: warning: comparison is always false due to limited range of data type After: drivers/input/touchscreen/zforce_ts.c: In function ‘zforce_read_packet’: drivers/input/touchscreen/zforce_ts.c:434: warning: comparison is always false due to limited range of data type Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-28 10:23 ` Geert Uytterhoeven @ 2015-07-28 11:28 ` Dirk Behme 2015-07-28 16:30 ` Dmitry Torokhov 0 siblings, 1 reply; 8+ messages in thread From: Dirk Behme @ 2015-07-28 11:28 UTC (permalink / raw) To: Dmitry Torokhov Cc: Geert Uytterhoeven, linux-input@vger.kernel.org, Heiko Stuebner, Oleksij Rempel, linux-kernel@vger.kernel.org On 28.07.2015 12:23, Geert Uytterhoeven wrote: > On Mon, Jul 27, 2015 at 11:06 PM, Dmitry Torokhov > <dmitry.torokhov@gmail.com> wrote: >> Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't >> overwrite the stack") attempted to add a check for payload size being too >> large for the supplied buffer. Unfortunately with the currently selected >> buffer size the comparison is always false as buffer size is larger than >> the value a single byte can hold, and that results in compiler warnings. >> Additionally the check was incorrect as it was not accounting for the >> already read 2 bytes of data stored in the buffer. > > The check was indeed incorrect. > >> Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a >> Reported-by: kbuild test robot <fengguang.wu@intel.com> >> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> >> --- >> >> This seems to shut up my GCC, I wonder if it is going to work gfor >> everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a >> comment and remove check. >> >> drivers/input/touchscreen/zforce_ts.c | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/input/touchscreen/zforce_ts.c b/drivers/input/touchscreen/zforce_ts.c >> index 2554efd..542ff02 100644 >> --- a/drivers/input/touchscreen/zforce_ts.c >> +++ b/drivers/input/touchscreen/zforce_ts.c >> @@ -441,7 +441,9 @@ static int zforce_read_packet(struct zforce_ts *ts, u8 *buf) >> goto unlock; >> } >> >> - if (buf[PAYLOAD_LENGTH] == 0 || buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE) { >> + if (buf[PAYLOAD_LENGTH] == 0 || >> + (FRAME_MAXSIZE - 2 < 255 && >> + buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE - 2)) { > > Doesn't help with gcc 4.1.2 :-( > > Before: > > drivers/input/touchscreen/zforce_ts.c: In function ‘zforce_read_packet’: > drivers/input/touchscreen/zforce_ts.c:432: warning: comparison is > always false due to limited range of data type > > After: > > drivers/input/touchscreen/zforce_ts.c: In function ‘zforce_read_packet’: > drivers/input/touchscreen/zforce_ts.c:434: warning: comparison is > always false due to limited range of data type If it's easier, then just revert 7d01cd261c76f95913c81. Sorry! It seems that at least 4 people have overlooked this issue :( Best regards Dirk Btw: Could anybody give me a hint how to get this warning? My GCC 4.8.1 with kernel default ARM Cortex A9 kernel options doesn't give me anything about this. -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Input: zforce_ts - fix playload length check 2015-07-28 11:28 ` Dirk Behme @ 2015-07-28 16:30 ` Dmitry Torokhov 0 siblings, 0 replies; 8+ messages in thread From: Dmitry Torokhov @ 2015-07-28 16:30 UTC (permalink / raw) To: Dirk Behme Cc: Geert Uytterhoeven, linux-input@vger.kernel.org, Heiko Stuebner, Oleksij Rempel, linux-kernel@vger.kernel.org On Tue, Jul 28, 2015 at 01:28:32PM +0200, Dirk Behme wrote: > On 28.07.2015 12:23, Geert Uytterhoeven wrote: > >On Mon, Jul 27, 2015 at 11:06 PM, Dmitry Torokhov > ><dmitry.torokhov@gmail.com> wrote: > >>Commit 7d01cd261c76f95913c81554a751968a1d282d3a ("Input: zforce - don't > >>overwrite the stack") attempted to add a check for payload size being too > >>large for the supplied buffer. Unfortunately with the currently selected > >>buffer size the comparison is always false as buffer size is larger than > >>the value a single byte can hold, and that results in compiler warnings. > >>Additionally the check was incorrect as it was not accounting for the > >>already read 2 bytes of data stored in the buffer. > > > >The check was indeed incorrect. > > > >>Fixes: 7d01cd261c76f95913c81554a751968a1d282d3a > >>Reported-by: kbuild test robot <fengguang.wu@intel.com> > >>Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > >>--- > >> > >>This seems to shut up my GCC, I wonder if it is going to work gfor > >>everyone or we better add BUILD_BUG_ON(FRAME_MAXSIZE < 257) and a > >>comment and remove check. > >> > >> drivers/input/touchscreen/zforce_ts.c | 4 +++- > >> 1 file changed, 3 insertions(+), 1 deletion(-) > >> > >>diff --git a/drivers/input/touchscreen/zforce_ts.c b/drivers/input/touchscreen/zforce_ts.c > >>index 2554efd..542ff02 100644 > >>--- a/drivers/input/touchscreen/zforce_ts.c > >>+++ b/drivers/input/touchscreen/zforce_ts.c > >>@@ -441,7 +441,9 @@ static int zforce_read_packet(struct zforce_ts *ts, u8 *buf) > >> goto unlock; > >> } > >> > >>- if (buf[PAYLOAD_LENGTH] == 0 || buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE) { > >>+ if (buf[PAYLOAD_LENGTH] == 0 || > >>+ (FRAME_MAXSIZE - 2 < 255 && > >>+ buf[PAYLOAD_LENGTH] > FRAME_MAXSIZE - 2)) { > > > >Doesn't help with gcc 4.1.2 :-( > > > >Before: > > > >drivers/input/touchscreen/zforce_ts.c: In function ‘zforce_read_packet’: > >drivers/input/touchscreen/zforce_ts.c:432: warning: comparison is > >always false due to limited range of data type > > > >After: > > > >drivers/input/touchscreen/zforce_ts.c: In function ‘zforce_read_packet’: > >drivers/input/touchscreen/zforce_ts.c:434: warning: comparison is > >always false due to limited range of data type > > > If it's easier, then just revert 7d01cd261c76f95913c81. > > Sorry! It seems that at least 4 people have overlooked this issue :( Yes, I guess that is an example where unified diff provides too little of a context... > > Best regards > > Dirk > > Btw: Could anybody give me a hint how to get this warning? My GCC > 4.8.1 with kernel default ARM Cortex A9 kernel options doesn't give > me anything about this. make KBUILD_CFLAGS="-Wtype-limits" drivers/input/touchscreen/zforce_ts.o may trigger it. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-07-28 16:30 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-07-27 21:06 [PATCH] Input: zforce_ts - fix playload length check Dmitry Torokhov 2015-07-27 21:35 ` Heiko Stübner 2015-07-27 21:44 ` Dmitry Torokhov 2015-07-27 21:53 ` Heiko Stübner 2015-07-27 22:16 ` Dmitry Torokhov 2015-07-28 10:23 ` Geert Uytterhoeven 2015-07-28 11:28 ` Dirk Behme 2015-07-28 16:30 ` Dmitry Torokhov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).