netfilter: xtables: clean up xt_mac match routine
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
This commit is contained in:
parent
7d5f7ed802
commit
1d1c397db9
1 changed files with 9 additions and 7 deletions
|
@ -26,14 +26,16 @@ MODULE_ALIAS("ip6t_mac");
|
|||
|
||||
static bool mac_mt(const struct sk_buff *skb, const struct xt_match_param *par)
|
||||
{
|
||||
const struct xt_mac_info *info = par->matchinfo;
|
||||
const struct xt_mac_info *info = par->matchinfo;
|
||||
bool ret;
|
||||
|
||||
/* Is mac pointer valid? */
|
||||
return skb_mac_header(skb) >= skb->head &&
|
||||
skb_mac_header(skb) + ETH_HLEN <= skb->data
|
||||
/* If so, compare... */
|
||||
&& ((!compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr))
|
||||
^ info->invert);
|
||||
if (skb_mac_header(skb) < skb->head)
|
||||
return false;
|
||||
if (skb_mac_header(skb) + ETH_HLEN > skb->data)
|
||||
return false;
|
||||
ret = compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr) == 0;
|
||||
ret ^= info->invert;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct xt_match mac_mt_reg __read_mostly = {
|
||||
|
|
Loading…
Reference in a new issue