Skip to content
Commit 49688c84 authored by David S. Miller's avatar David S. Miller
Browse files

[NETFILTER] arp_tables: Fix unaligned accesses.



There are two device string comparison loops in arp_packet_match().
The first one goes byte-by-byte but the second one tries to be
clever and cast the string to a long and compare by longs.

The device name strings in the arp table entries are not guarenteed
to be aligned enough to make this value, so just use byte-by-byte
for both cases.

Based upon a report by <drraid@gmail.com>.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 612f09e8
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