Skip to content

Commit 28c1382

Browse files
wyjwangdavem330
authored andcommitted
net: bridge: Fix ethernet header pointer before check skb forwardable
The skb header should be set to ethernet header before using is_skb_forwardable. Because the ethernet header length has been considered in is_skb_forwardable(including dev->hard_header_len length). To reproduce the issue: 1, add 2 ports on linux bridge br using following commands: $ brctl addbr br $ brctl addif br eth0 $ brctl addif br eth1 2, the MTU of eth0 and eth1 is 1500 3, send a packet(Data 1480, UDP 8, IP 20, Ethernet 14, VLAN 4) from eth0 to eth1 So the expect result is packet larger than 1500 cannot pass through eth0 and eth1. But currently, the packet passes through success, it means eth1's MTU limit doesn't take effect. Fixes: f6367b4 ("bridge: use is_skb_forwardable in forward path") Cc: bridge@lists.linux-foundation.org Cc: Nkolay Aleksandrov <nikolay@cumulusnetworks.com> Cc: Roopa Prabhu <roopa@cumulusnetworks.com> Cc: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: Yunjian Wang <wangyunjian@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent cc5e710 commit 28c1382

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

net/bridge/br_forward.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ static inline int should_deliver(const struct net_bridge_port *p,
3636

3737
int br_dev_queue_push_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
3838
{
39+
skb_push(skb, ETH_HLEN);
3940
if (!is_skb_forwardable(skb->dev, skb))
4041
goto drop;
4142

42-
skb_push(skb, ETH_HLEN);
4343
br_drop_fake_rtable(skb);
4444

4545
if (skb->ip_summed == CHECKSUM_PARTIAL &&
@@ -98,12 +98,11 @@ static void __br_forward(const struct net_bridge_port *to,
9898
net = dev_net(indev);
9999
} else {
100100
if (unlikely(netpoll_tx_running(to->br->dev))) {
101-
if (!is_skb_forwardable(skb->dev, skb)) {
101+
skb_push(skb, ETH_HLEN);
102+
if (!is_skb_forwardable(skb->dev, skb))
102103
kfree_skb(skb);
103-
} else {
104-
skb_push(skb, ETH_HLEN);
104+
else
105105
br_netpoll_send_skb(to, skb);
106-
}
107106
return;
108107
}
109108
br_hook = NF_BR_LOCAL_OUT;

0 commit comments

Comments
 (0)