提交 1b04ab45 编写于 作者: J Joonwoo Park 提交者: David S. Miller

[NETFILTER]: fix ebtable targets return

The function ebt_do_table doesn't take NF_DROP as a verdict from the targets.
Signed-off-by: NJoonwoo Park <joonwpark81@gmail.com>
Signed-off-by: NPatrick McHardy <kaber@trash.net>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 34cc7ba6
...@@ -21,7 +21,7 @@ static int ebt_target_dnat(struct sk_buff *skb, unsigned int hooknr, ...@@ -21,7 +21,7 @@ static int ebt_target_dnat(struct sk_buff *skb, unsigned int hooknr,
const struct ebt_nat_info *info = data; const struct ebt_nat_info *info = data;
if (!skb_make_writable(skb, 0)) if (!skb_make_writable(skb, 0))
return NF_DROP; return EBT_DROP;
memcpy(eth_hdr(skb)->h_dest, info->mac, ETH_ALEN); memcpy(eth_hdr(skb)->h_dest, info->mac, ETH_ALEN);
return info->target; return info->target;
......
...@@ -22,7 +22,7 @@ static int ebt_target_redirect(struct sk_buff *skb, unsigned int hooknr, ...@@ -22,7 +22,7 @@ static int ebt_target_redirect(struct sk_buff *skb, unsigned int hooknr,
const struct ebt_redirect_info *info = data; const struct ebt_redirect_info *info = data;
if (!skb_make_writable(skb, 0)) if (!skb_make_writable(skb, 0))
return NF_DROP; return EBT_DROP;
if (hooknr != NF_BR_BROUTING) if (hooknr != NF_BR_BROUTING)
memcpy(eth_hdr(skb)->h_dest, memcpy(eth_hdr(skb)->h_dest,
......
...@@ -23,7 +23,7 @@ static int ebt_target_snat(struct sk_buff *skb, unsigned int hooknr, ...@@ -23,7 +23,7 @@ static int ebt_target_snat(struct sk_buff *skb, unsigned int hooknr,
const struct ebt_nat_info *info = data; const struct ebt_nat_info *info = data;
if (!skb_make_writable(skb, 0)) if (!skb_make_writable(skb, 0))
return NF_DROP; return EBT_DROP;
memcpy(eth_hdr(skb)->h_source, info->mac, ETH_ALEN); memcpy(eth_hdr(skb)->h_source, info->mac, ETH_ALEN);
if (!(info->target & NAT_ARP_BIT) && if (!(info->target & NAT_ARP_BIT) &&
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册