diff options
author | Gavrilov Ilia <Ilia.Gavrilov@infotecs.ru> | 2023-05-23 10:29:44 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-05-24 09:43:39 +0200 |
commit | 878ecb0897f4737a4c9401f3523fd49589025671 (patch) | |
tree | 6dd2f5ec7fe7f198dcc376e27b8c8adc38d6c3ef /net | |
parent | Merge tag 'mlx5-fixes-2023-05-22' of git://git.kernel.org/pub/scm/linux/kerne... (diff) | |
download | linux-878ecb0897f4737a4c9401f3523fd49589025671.tar.xz linux-878ecb0897f4737a4c9401f3523fd49589025671.zip |
ipv6: Fix out-of-bounds access in ipv6_find_tlv()
optlen is fetched without checking whether there is more than one byte to parse.
It can lead to out-of-bounds access.
Found by InfoTeCS on behalf of Linux Verification Center
(linuxtesting.org) with SVACE.
Fixes: c61a40432509 ("[IPV6]: Find option offset by type.")
Signed-off-by: Gavrilov Ilia <Ilia.Gavrilov@infotecs.ru>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/exthdrs_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv6/exthdrs_core.c b/net/ipv6/exthdrs_core.c index da46c4284676..49e31e4ae7b7 100644 --- a/net/ipv6/exthdrs_core.c +++ b/net/ipv6/exthdrs_core.c @@ -143,6 +143,8 @@ int ipv6_find_tlv(const struct sk_buff *skb, int offset, int type) optlen = 1; break; default: + if (len < 2) + goto bad; optlen = nh[offset + 1] + 2; if (optlen > len) goto bad; |