summaryrefslogtreecommitdiffstats
path: root/sys/netinet/in.c
diff options
context:
space:
mode:
authorvangyzen <vangyzen@FreeBSD.org>2016-11-30 22:20:23 +0000
committervangyzen <vangyzen@FreeBSD.org>2016-11-30 22:20:23 +0000
commiteb77968c18f03c2025c676c2567f9afb4589263a (patch)
tree4eec1aed20764cb246ce808d6e1a08af843faef6 /sys/netinet/in.c
parenta855f664904c73843d39db9c7754a06e0cd95f8c (diff)
downloadFreeBSD-src-eb77968c18f03c2025c676c2567f9afb4589263a.zip
FreeBSD-src-eb77968c18f03c2025c676c2567f9afb4589263a.tar.gz
MFC r306577 r306652 306830
Add GARP retransmit capability A single gratuitous ARP (GARP) is always transmitted when an IPv4 address is added to an interface, and that is usually sufficient. However, in some circumstances, such as when a shared address is passed between cluster nodes, this single GARP may occasionally be dropped or lost. This can lead to neighbors on the network link working with a stale ARP cache and sending packets destined for that address to the node that previously owned the address, which may not respond. To avoid this situation, GARP retransmissions can be enabled by setting the net.link.ether.inet.garp_rexmit_count sysctl to a value greater than zero. The setting represents the maximum number of retransmissions. The interval between retransmissions is calculated using an exponential backoff algorithm, doubling each time, so the retransmission intervals are: {1, 2, 4, 8, 16, ...} (seconds). Due to the exponential backoff algorithm used for the interval between GARP retransmissions, the maximum number of retransmissions is limited to 16 for sanity. This limit corresponds to a maximum interval between retransmissions of 2^16 seconds ~= 18 hours. Increasing this limit is possible, but sending out GARPs spaced days apart would be of little use. Update arp(4) to document the net.link.ether.inet.garp_rexmit_count sysctl. Submitted by: dab Relnotes: yes Sponsored by: Dell EMC
Diffstat (limited to 'sys/netinet/in.c')
-rw-r--r--sys/netinet/in.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/netinet/in.c b/sys/netinet/in.c
index b61b4b6..119ddd6 100644
--- a/sys/netinet/in.c
+++ b/sys/netinet/in.c
@@ -417,6 +417,8 @@ in_control(struct socket *so, u_long cmd, caddr_t data, struct ifnet *ifp,
ifa->ifa_addr = (struct sockaddr *)&ia->ia_addr;
ifa->ifa_dstaddr = (struct sockaddr *)&ia->ia_dstaddr;
ifa->ifa_netmask = (struct sockaddr *)&ia->ia_sockmask;
+ callout_init_mtx(&ia->ia_garp_timer, &ifa->ifa_mtx,
+ CALLOUT_RETURNUNLOCKED);
ia->ia_sockmask.sin_len = 8;
ia->ia_sockmask.sin_family = AF_INET;
@@ -594,6 +596,10 @@ in_control(struct socket *so, u_long cmd, caddr_t data, struct ifnet *ifp,
} else
ifa_free(&iap->ia_ifa);
+ IFA_LOCK(&ia->ia_ifa);
+ if (callout_stop(&ia->ia_garp_timer))
+ ifa_free(&ia->ia_ifa);
+ IFA_UNLOCK(&ia->ia_ifa);
ifa_free(&ia->ia_ifa); /* in_ifaddrhead */
out:
if (ia != NULL)
OpenPOWER on IntegriCloud