Commit 4f1c3b7e authored by Eric Dumazet's avatar Eric Dumazet Committed by Patrick McHardy

netfilter: xt_physdev fixes

1) physdev_mt() incorrectly assumes nulldevname[] is aligned on an int

2) It also uses word comparisons, while it could use long word ones.
Signed-off-by: default avatarEric Dumazet <dada1@cosmosbay.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent cfac5ef7
...@@ -24,9 +24,9 @@ static bool ...@@ -24,9 +24,9 @@ static bool
physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par) physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par)
{ {
int i; int i;
static const char nulldevname[IFNAMSIZ]; static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
const struct xt_physdev_info *info = par->matchinfo; const struct xt_physdev_info *info = par->matchinfo;
bool ret; unsigned long ret;
const char *indev, *outdev; const char *indev, *outdev;
const struct nf_bridge_info *nf_bridge; const struct nf_bridge_info *nf_bridge;
...@@ -68,10 +68,10 @@ physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par) ...@@ -68,10 +68,10 @@ physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par)
if (!(info->bitmask & XT_PHYSDEV_OP_IN)) if (!(info->bitmask & XT_PHYSDEV_OP_IN))
goto match_outdev; goto match_outdev;
indev = nf_bridge->physindev ? nf_bridge->physindev->name : nulldevname; indev = nf_bridge->physindev ? nf_bridge->physindev->name : nulldevname;
for (i = 0, ret = false; i < IFNAMSIZ/sizeof(unsigned int); i++) { for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
ret |= (((const unsigned int *)indev)[i] ret |= (((const unsigned long *)indev)[i]
^ ((const unsigned int *)info->physindev)[i]) ^ ((const unsigned long *)info->physindev)[i])
& ((const unsigned int *)info->in_mask)[i]; & ((const unsigned long *)info->in_mask)[i];
} }
if (!ret ^ !(info->invert & XT_PHYSDEV_OP_IN)) if (!ret ^ !(info->invert & XT_PHYSDEV_OP_IN))
...@@ -82,13 +82,12 @@ physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par) ...@@ -82,13 +82,12 @@ physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par)
return true; return true;
outdev = nf_bridge->physoutdev ? outdev = nf_bridge->physoutdev ?
nf_bridge->physoutdev->name : nulldevname; nf_bridge->physoutdev->name : nulldevname;
for (i = 0, ret = false; i < IFNAMSIZ/sizeof(unsigned int); i++) { for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
ret |= (((const unsigned int *)outdev)[i] ret |= (((const unsigned long *)outdev)[i]
^ ((const unsigned int *)info->physoutdev)[i]) ^ ((const unsigned long *)info->physoutdev)[i])
& ((const unsigned int *)info->out_mask)[i]; & ((const unsigned long *)info->out_mask)[i];
} }
return (!!ret ^ !(info->invert & XT_PHYSDEV_OP_OUT));
return ret ^ !(info->invert & XT_PHYSDEV_OP_OUT);
} }
static bool physdev_mt_check(const struct xt_mtchk_param *par) static bool physdev_mt_check(const struct xt_mtchk_param *par)
......
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