Re: Unaligned accesses in net/ipv4/netfilter/arp_tables.c:184

From: Alex Williamson
Date: Wed Jun 09 2004 - 16:54:11 EST


On Wed, 2004-06-09 at 15:33, Harald Welte wrote:
> On Wed, Jun 09, 2004 at 01:29:37PM -0700, David S. Miller wrote:
> >
> > Right. I distinctly remember a similar fix being needed to
> > ip_tables.c many months ago, a search though the change history
> > for that file might prove profitable :-)
>
> Or alternatively look into the netfilter bugzilla at:
>
> https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=84
>
> If somebody wants to prepare a trivial merge of that fix with arptables
> - it should be extermely straight forward ;)

That change is probably appropriate, but IIRC, that's not the
alignment problem I saw, and that one certainly wouldn't have been fixed
by a change to the arpt_arp structure. Looking at the code snippet
again:

/* Look for ifname matches; this should unroll nicely. */
for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
ret |= (((const unsigned long *)indev)[i]
^ ((const unsigned long *)arpinfo->iniface)[i])
& ((const unsigned long *)arpinfo->iniface_mask)[i];
}

The alignment problem I remember was with iniface and iniface_mask. If
we can't change the structure alignment, the easiest fix is to change
the stride length to something appropriate for the arch or maybe just a
least common demoninator. Maybe someone is smart enough to get the
preprocessor to figure this out automatically... dunno if that's
possible.

While we're on this little piece of code, there's another bug here.
ret is defined as an int in arp_packet_match() so we're losing the upper
half of the result anyway. ip_packet_match() appears to already have
this correct. At a minimum, I think we need the trivial patch below.
Thanks,

Alex

===== net/ipv4/netfilter/arp_tables.c 1.13 vs edited =====
--- 1.13/net/ipv4/netfilter/arp_tables.c Sun Jun 6 21:15:04 2004
+++ edited/net/ipv4/netfilter/arp_tables.c Wed Jun 9 15:38:16 2004
@@ -106,7 +106,8 @@
char *arpptr = (char *)(arphdr + 1);
char *src_devaddr, *tgt_devaddr;
u32 *src_ipaddr, *tgt_ipaddr;
- int i, ret;
+ int i;
+ unsigned long ret;

#define FWINV(bool,invflg) ((bool) ^ !!(arpinfo->invflags & invflg))




-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/