OSDN Git Service

Merge branch 'RTO_ONLINK'
authorDavid S. Miller <davem@davemloft.net>
Wed, 24 May 2023 07:22:06 +0000 (08:22 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 May 2023 07:22:06 +0000 (08:22 +0100)
commit18731fe01d3de0721c7f6ba326e838a034d3114e
tree0514973bc9d66e4584cd3741819437141b44c2c2
parenta695641c8eaac268ad7e373c7e33c00b88b2bcbf
parent0e26371db548834052a8f0c3e138c5ff07e253a0
Merge branch 'RTO_ONLINK'

Guillaume Nault says:

====================
ipv4: Remove RTO_ONLINK from udp, ping and raw sockets.

udp_sendmsg(), ping_v4_sendmsg() and raw_sendmsg() use similar patterns
for restricting their route lookup to on-link hosts. Although they use
slightly different code, they all use RTO_ONLINK to override the least
significant bit of their tos value.

RTO_ONLINK is used to restrict the route scope even when the scope is
set to RT_SCOPE_UNIVERSE. Therefore it isn't necessary: we can properly
set the scope to RT_SCOPE_LINK instead.

Removing RTO_ONLINK will allow to convert .flowi4_tos to dscp_t in the
future, thus allowing to properly separate the DSCP from the ECN bits
in the networking stack.

This patch series defines a common helper to figure out what's the
scope of the route lookup. This unifies the way udp, ping and raw
sockets get their routing scope and removes their dependency on
RTO_ONLINK.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>