diff options
author | Nikolay Aleksandrov <nikolay@cumulusnetworks.com> | 2020-02-24 19:46:22 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-02-24 22:11:19 +0300 |
commit | 823d81b0fa2cd83a640734e74caee338b5d3c093 (patch) | |
tree | ca6ce51db8e585d6cb80c1bfe3f1358f64cc5237 /net/dcb | |
parent | e4686c2d08ea1a45c262af5269c2aa6b977b85e2 (diff) | |
download | linux-823d81b0fa2cd83a640734e74caee338b5d3c093.tar.xz |
net: bridge: fix stale eth hdr pointer in br_dev_xmit
In br_dev_xmit() we perform vlan filtering in br_allowed_ingress() but
if the packet has the vlan header inside (e.g. bridge with disabled
tx-vlan-offload) then the vlan filtering code will use skb_vlan_untag()
to extract the vid before filtering which in turn calls pskb_may_pull()
and we may end up with a stale eth pointer. Moreover the cached eth header
pointer will generally be wrong after that operation. Remove the eth header
caching and just use eth_hdr() directly, the compiler does the right thing
and calculates it only once so we don't lose anything.
Fixes: 057658cb33fb ("bridge: suppress arp pkts on BR_NEIGH_SUPPRESS ports")
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb')
0 files changed, 0 insertions, 0 deletions