rtnetlink: add the missing IFLA_GRO_ tb check in validate_linkmsg
authorXin Long <lucien.xin@gmail.com>
Wed, 31 May 2023 16:01:44 +0000 (12:01 -0400)
committerJakub Kicinski <kuba@kernel.org>
Thu, 1 Jun 2023 16:59:44 +0000 (09:59 -0700)
commit65d6914e253f3d83b724a9bbfc889ae95711e512
treefa38af826be9ec3a389807e96f46581a05805d73
parentfef5b228dd38378148bc850f7e69a7783f3b95a4
rtnetlink: add the missing IFLA_GRO_ tb check in validate_linkmsg

This fixes the issue that dev gro_max_size and gso_ipv4_max_size
can be set to a huge value:

  # ip link add dummy1 type dummy
  # ip link set dummy1 gro_max_size 4294967295
  # ip -d link show dummy1
    dummy addrgenmode eui64 ... gro_max_size 4294967295

Fixes: 0fe79f28bfaf ("net: allow gro_max_size to exceed 65536")
Fixes: 9eefedd58ae1 ("net: add gso_ipv4_max_size and gro_ipv4_max_size per device")
Reported-by: Xiumei Mu <xmu@redhat.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/core/rtnetlink.c