From: nmordech@redhat.com Date: Tue, 2 Apr 2024 15:57:41 +0000 (+0000) Subject: common/pick_address: check if address in subnet all public address X-Git-Tag: testing/wip-jcollin-testing-20240701.061036-squid~15^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=aaa47e1dcd145ac9909fb2468a3292be33614590;p=ceph-ci.git common/pick_address: check if address in subnet all public address When mon trying to check if osd joining within subnet address, it will check only the first subnet and not the rest of the subnets. this fix will loop over all the other subnet for checks. Fixes: https://tracker.ceph.com/issues/65186 Signed-off-by: Nitzan Mordechai (cherry picked from commit 3e2ef5ec2be7a9662458db63fa1bcac08611d727) --- diff --git a/src/common/pick_address.cc b/src/common/pick_address.cc index 70a18c25dc3..aa6b765bc56 100644 --- a/src/common/pick_address.cc +++ b/src/common/pick_address.cc @@ -644,15 +644,24 @@ bool is_addr_in_subnet( { const auto nets = get_str_list(networks); ceph_assert(!nets.empty()); - const auto &net = nets.front(); - struct ifaddrs ifa; + unsigned ipv = CEPH_PICK_ADDRESS_IPV4; struct sockaddr_in public_addr; - - ifa.ifa_next = nullptr; - ifa.ifa_addr = (struct sockaddr*)&public_addr; public_addr.sin_family = AF_INET; - inet_pton(AF_INET, addr.c_str(), &public_addr.sin_addr); - return matches_with_net(cct, ifa, net, ipv); + if(inet_pton(AF_INET, addr.c_str(), &public_addr.sin_addr) != 1) { + lderr(cct) << "unable to convert chosen address to string: " << addr << dendl; + return false; + } + + for (const auto &net : nets) { + struct ifaddrs ifa; + memset(&ifa, 0, sizeof(ifa)); + ifa.ifa_next = nullptr; + ifa.ifa_addr = (struct sockaddr*)&public_addr; + if(matches_with_net(cct, ifa, net, ipv)) { + return true; + } + } + return false; }