diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:03:40 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:03:40 +0200 |
commit | 8e370bfa141067363204c13bb747c7b8410368e8 (patch) | |
tree | 27d7e3430763b2e3b167dd7d544af7510050144d /ospf6d/ospf6_network.h | |
parent | ospf6d: ospfv3-stub-area-support.patch (diff) | |
download | frr-8e370bfa141067363204c13bb747c7b8410368e8.tar.xz frr-8e370bfa141067363204c13bb747c7b8410368e8.zip |
ospf6d: ospfv3-setsocket-retry.patch
SYMPTOM:
With quagga running on Linux, 'ifdown <if-name>' followed by 'ifup <ifname>
can cause OSPFv3 to not receive Hello packets on the interface.
ISSUE:
Operating System's interface IPv6 readiness may not be guaranteed at the
time of interface-up event. Thats because the ipv6 components in an OS may
also be listening to the same interface-up event that (in this case) is
relayed to OSPFv3.
In this failure case, setsockopt with option IPV6_JOIN_GROUP on the interface
returned EINVAL.
Error logs -
OSPF6: Zebra Interface state change: swp1 index 3 flags 11043 metric 1 mtu 1500
OSPF6: Interface Event swp1: [InterfaceUp]
OSPF6: Network: setsockopt (20) on ifindex 3 failed: Invalid argument
FIX:
To take care of this possible race condition, any address-family related
setting should be retried. Given it's a rare condition and window of this
race should be short, the patch adds a limited retry mechanism for the
IPV6 membership setting on the socket.
Signed-off-by: Vipin Kumar <vipin@cumulusnetworks.com>
Reviewed-by: Dinesh Dutt <ddutt@cumulusnetworks.com>
Satish Ashok <sashok@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_network.h')
-rw-r--r-- | ospf6d/ospf6_network.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_network.h b/ospf6d/ospf6_network.h index 947834d56..7208845d2 100644 --- a/ospf6d/ospf6_network.h +++ b/ospf6d/ospf6_network.h @@ -35,7 +35,7 @@ extern void ospf6_set_pktinfo (void); extern void ospf6_set_checksum (void); extern int ospf6_serv_sock (void); -extern void ospf6_sso (u_int ifindex, struct in6_addr *group, int option); +extern int ospf6_sso (u_int ifindex, struct in6_addr *group, int option); extern int ospf6_sendmsg (struct in6_addr *, struct in6_addr *, unsigned int *, struct iovec *); |