gcc warning this:
drivers/net/ieee802154/ca8210.c:730:10: warning:
comparison is always false due to limited range of data type [-Wtype-limits]
'len' is u8 type, we get it from buf[1] adding 2, which can overflow.
This patch change the type of 'len' to unsigned int to avoid this,also fix
the gcc warning.
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: YueHaibing <redacted>
---
drivers/net/ieee802154/ca8210.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
From: David Miller <davem@davemloft.net> Date: 2018-12-11 06:01:10
From: YueHaibing <redacted>
Date: Tue, 11 Dec 2018 11:13:39 +0800
gcc warning this:
drivers/net/ieee802154/ca8210.c:730:10: warning:
comparison is always false due to limited range of data type [-Wtype-limits]
'len' is u8 type, we get it from buf[1] adding 2, which can overflow.
This patch change the type of 'len' to unsigned int to avoid this,also fix
the gcc warning.
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: YueHaibing <redacted>
WPAN maintainers, I am assuming that as maintainers you will be
picking this up and sending it to me.
From: Stefan Schmidt <stefan@datenfreihafen.org> Date: 2018-12-11 08:27:11
Hello Dave.
On 11.12.18 07:01, David Miller wrote:
From: YueHaibing <redacted>
Date: Tue, 11 Dec 2018 11:13:39 +0800
quoted
gcc warning this:
drivers/net/ieee802154/ca8210.c:730:10: warning:
comparison is always false due to limited range of data type [-Wtype-limits]
'len' is u8 type, we get it from buf[1] adding 2, which can overflow.
This patch change the type of 'len' to unsigned int to avoid this,also fix
the gcc warning.
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: YueHaibing <redacted>
WPAN maintainers, I am assuming that as maintainers you will be
picking this up and sending it to me.
That's correct. On driver patches I always wait 2 days or so to give the
driver maintainer a chance to reply before I go ahead and apply it.
I will take this one directly now and do some smoke testing. It will
come together with another fix as pull request to you.
regards
Stefan Schmidt
From: Stefan Schmidt <stefan@datenfreihafen.org> Date: 2018-12-11 08:39:09
Hello.
On 11.12.18 04:13, YueHaibing wrote:
quoted hunk
gcc warning this:
drivers/net/ieee802154/ca8210.c:730:10: warning:
comparison is always false due to limited range of data type [-Wtype-limits]
'len' is u8 type, we get it from buf[1] adding 2, which can overflow.
This patch change the type of 'len' to unsigned int to avoid this,also fix
the gcc warning.
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: YueHaibing <redacted>
---
drivers/net/ieee802154/ca8210.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
From: Alexander Aring <hidden> Date: 2018-12-11 15:23:57
Hi Stefan,
On Tue, Dec 11, 2018 at 09:26:37AM +0100, Stefan Schmidt wrote:
Hello Dave.
On 11.12.18 07:01, David Miller wrote:
quoted
From: YueHaibing <redacted>
Date: Tue, 11 Dec 2018 11:13:39 +0800
quoted
gcc warning this:
drivers/net/ieee802154/ca8210.c:730:10: warning:
comparison is always false due to limited range of data type [-Wtype-limits]
'len' is u8 type, we get it from buf[1] adding 2, which can overflow.
This patch change the type of 'len' to unsigned int to avoid this,also fix
the gcc warning.
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: YueHaibing <redacted>
WPAN maintainers, I am assuming that as maintainers you will be
picking this up and sending it to me.
That's correct. On driver patches I always wait 2 days or so to give the
driver maintainer a chance to reply before I go ahead and apply it.
I will take this one directly now and do some smoke testing. It will
come together with another fix as pull request to you.
If this "len" is related to the frame (error message says packet) length when
"rx_done()" what the function name tells me, I think what the drivers
is looking for is:
ieee802154_is_valid_psdu_len() plus maybe before calculation of the length
depends what else the transceiver put as payload.
side note:
All drivers need to check if the length is valid as this is transmitted
in the PHY header and even not portected by CRC which is only for the
MAC payload. I had some ugly bufferoverflows expierence with some
at86rf2xx while my microwave was on.
- Alex