lwtunnel: Validate RTA_ENCAP_TYPE attribute length
authorDavid Ahern <dsahern@kernel.org>
Fri, 31 Dec 2021 00:36:35 +0000 (17:36 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Jan 2022 14:25:00 +0000 (15:25 +0100)
commitf403b5f96e9a153f00d1f3503b4e4dbb066601f8
treeaca8a782694d20e12fcabd0b9729f19f24568219
parent48d5adb08d60116e9d05f01dcdbe698b5d54cdbb
lwtunnel: Validate RTA_ENCAP_TYPE attribute length

commit 8bda81a4d400cf8a72e554012f0d8c45e07a3904 upstream.

lwtunnel_valid_encap_type_attr is used to validate encap attributes
within a multipath route. Add length validation checking to the type.

lwtunnel_valid_encap_type_attr is called converting attributes to
fib{6,}_config struct which means it is used before fib_get_nhs,
ip6_route_multipath_add, and ip6_route_multipath_del - other
locations that use rtnh_ok and then nla_get_u16 on RTA_ENCAP_TYPE
attribute.

Fixes: 9ed59592e3e3 ("lwtunnel: fix autoload of lwt modules")

Signed-off-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/core/lwtunnel.c
net/ipv4/fib_semantics.c
net/ipv6/route.c