]> git.dujemihanovic.xyz Git - linux.git/commitdiff
rtnetlink: Correct nested IFLA_VF_VLAN_LIST attribute validation
authorRoded Zats <rzats@paloaltonetworks.com>
Thu, 2 May 2024 15:57:51 +0000 (18:57 +0300)
committerJakub Kicinski <kuba@kernel.org>
Fri, 3 May 2024 22:57:50 +0000 (15:57 -0700)
Each attribute inside a nested IFLA_VF_VLAN_LIST is assumed to be a
struct ifla_vf_vlan_info so the size of such attribute needs to be at least
of sizeof(struct ifla_vf_vlan_info) which is 14 bytes.
The current size validation in do_setvfinfo is against NLA_HDRLEN (4 bytes)
which is less than sizeof(struct ifla_vf_vlan_info) so this validation
is not enough and a too small attribute might be cast to a
struct ifla_vf_vlan_info, this might result in an out of bands
read access when accessing the saved (casted) entry in ivvl.

Fixes: 79aab093a0b5 ("net: Update API for VF vlan protocol 802.1ad support")
Signed-off-by: Roded Zats <rzats@paloaltonetworks.com>
Reviewed-by: Donald Hunter <donald.hunter@gmail.com>
Link: https://lore.kernel.org/r/20240502155751.75705-1-rzats@paloaltonetworks.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/core/rtnetlink.c

index a3d7847ce69d36401051526acf30211d96e2b24e..8ba6a4e4be26667e3fc2dbd46214f6954f6b65e0 100644 (file)
@@ -2530,7 +2530,7 @@ static int do_setvfinfo(struct net_device *dev, struct nlattr **tb)
 
                nla_for_each_nested(attr, tb[IFLA_VF_VLAN_LIST], rem) {
                        if (nla_type(attr) != IFLA_VF_VLAN_INFO ||
-                           nla_len(attr) < NLA_HDRLEN) {
+                           nla_len(attr) < sizeof(struct ifla_vf_vlan_info)) {
                                return -EINVAL;
                        }
                        if (len >= MAX_VLAN_LIST_LEN)