OSDN Git Service

tcp: Set route scope properly in cookie_v4_check().
authorGuillaume Nault <gnault@redhat.com>
Mon, 5 Jun 2023 21:55:30 +0000 (23:55 +0200)
committerJakub Kicinski <kuba@kernel.org>
Wed, 7 Jun 2023 04:13:03 +0000 (21:13 -0700)
commit6f8a76f8022121f7e4dc9cc29da7fb716b7db45f
treef373b5b6180bd75f2773500c0c01c4ca8561d098
parent4b095281cacab0b62e7f11d6d8c4a6d49ecaae42
tcp: Set route scope properly in cookie_v4_check().

RT_CONN_FLAGS(sk) overloads flowi4_tos with the RTO_ONLINK bit when
sk has the SOCK_LOCALROUTE flag set. This allows
ip_route_output_key_hash() to eventually adjust flowi4_scope.

Instead of relying on special handling of the RTO_ONLINK bit, we can
just set the route scope correctly. This will eventually allow to avoid
special interpretation of tos variables and to convert ->flowi4_tos to
dscp_t.

Signed-off-by: Guillaume Nault <gnault@redhat.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ipv4/syncookies.c