Commit f88de8de authored by Changli Gao's avatar Changli Gao Committed by David S. Miller

net: bridge: check the length of skb after nf_bridge_maybe_copy_header()

Since nf_bridge_maybe_copy_header() may change the length of skb,
we should check the length of skb after it to handle the ppoe skbs.
Signed-off-by: default avatarChangli Gao <xiaosuo@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 38cfb907
...@@ -41,17 +41,13 @@ static inline unsigned packet_length(const struct sk_buff *skb) ...@@ -41,17 +41,13 @@ static inline unsigned packet_length(const struct sk_buff *skb)
int br_dev_queue_push_xmit(struct sk_buff *skb) int br_dev_queue_push_xmit(struct sk_buff *skb)
{ {
/* drop mtu oversized packets except gso */ /* ip_fragment doesn't copy the MAC header */
if (packet_length(skb) > skb->dev->mtu && !skb_is_gso(skb)) if (nf_bridge_maybe_copy_header(skb) ||
(packet_length(skb) > skb->dev->mtu && !skb_is_gso(skb))) {
kfree_skb(skb); kfree_skb(skb);
else { } else {
/* ip_fragment doesn't copy the MAC header */ skb_push(skb, ETH_HLEN);
if (nf_bridge_maybe_copy_header(skb)) dev_queue_xmit(skb);
kfree_skb(skb);
else {
skb_push(skb, ETH_HLEN);
dev_queue_xmit(skb);
}
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment