]> git.baikalelectronics.ru Git - kernel.git/commit
libcxgb: Don't accidentally set RTO_ONLINK in cxgb_find_route()
authorGuillaume Nault <gnault@redhat.com>
Mon, 10 Jan 2022 13:43:11 +0000 (14:43 +0100)
committerJakub Kicinski <kuba@kernel.org>
Wed, 12 Jan 2022 04:36:08 +0000 (20:36 -0800)
commit9fdafc0cade6af639eeaa7cdbac0e8c5cc566a57
treefa1f90b29df7e60086a3afb5eb0ab5b48351f172
parente178db5e9fae11faac351fba0734d33904d961cf
libcxgb: Don't accidentally set RTO_ONLINK in cxgb_find_route()

Mask the ECN bits before calling ip_route_output_ports(). The tos
variable might be passed directly from an IPv4 header, so it may have
the last ECN bit set. This interferes with the route lookup process as
ip_route_output_key_hash() interpretes this bit specially (to restrict
the route scope).

Found by code inspection, compile tested only.

Fixes: 6a3a3c7b2cca ("libcxgb,iw_cxgb4,cxgbit: add cxgb_find_route()")
Signed-off-by: Guillaume Nault <gnault@redhat.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.c