]> git.baikalelectronics.ru Git - kernel.git/commit
arp: honour gratuitous ARP _replies_
authorIhar Hrachyshka <ihrachys@redhat.com>
Tue, 16 May 2017 14:53:43 +0000 (07:53 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 17 May 2017 15:32:44 +0000 (11:32 -0400)
commita5516378fcdfbd0ffba5ba07fa31ab8c5eb10ecf
tree7ba443cc3a7b10778fa888c075956fb2a3a5b375
parent2d2c7c1293e20dcf7c94d9e05c39163446eed262
arp: honour gratuitous ARP _replies_

When arp_accept is 1, gratuitous ARPs are supposed to override matching
entries irrespective of whether they arrive during locktime. This was
implemented in commit 59fc9ff96b4f ("ipv4: arp: update neighbour address
when a gratuitous arp is received and arp_accept is set")

There is a glitch in the patch though. RFC 2002, section 4.6, "ARP,
Proxy ARP, and Gratuitous ARP", defines gratuitous ARPs so that they can
be either of Request or Reply type. Those Reply gratuitous ARPs can be
triggered with standard tooling, for example, arping -A option does just
that.

This patch fixes the glitch, making both Request and Reply flavours of
gratuitous ARPs to behave identically.

As per RFC, if gratuitous ARPs are of Reply type, their Target Hardware
Address field should also be set to the link-layer address to which this
cache entry should be updated. The field is present in ARP over Ethernet
but not in IEEE 1394. In this patch, I don't consider any broadcasted
ARP replies as gratuitous if the field is not present, to conform the
standard. It's not clear whether there is such a thing for IEEE 1394 as
a gratuitous ARP reply; until it's cleared up, we will ignore such
broadcasts. Note that they will still update existing ARP cache entries,
assuming they arrive out of locktime time interval.

Signed-off-by: Ihar Hrachyshka <ihrachys@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/arp.c