OSDN Git Service

6lowpan: Off by one handling ->nexthdr
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 3 Apr 2019 05:34:16 +0000 (08:34 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Jan 2020 09:21:42 +0000 (10:21 +0100)
commit4271d07335ff71bc6e0f257b73221d08cd3ecb09
tree21b995a4248e481449e5852b6f6657a872d3441e
parentad584317ddab405113663e13b322ff91e1e67ddd
6lowpan: Off by one handling ->nexthdr

[ Upstream commit f57c4bbf34439531adccd7d3a4ecc14f409c1399 ]

NEXTHDR_MAX is 255.  What happens here is that we take a u8 value
"hdr->nexthdr" from the network and then look it up in
lowpan_nexthdr_nhcs[].  The problem is that if hdr->nexthdr is 0xff then
we read one element beyond the end of the array so the array needs to
be one element larger.

Fixes: 92aa7c65d295 ("6lowpan: add generic nhc layer interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Acked-by: Alexander Aring <aring@mojatatu.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/6lowpan/nhc.c