Avoid calling getnameinfo
when formatting IPv6 addresses in CNetAddr::ToStringIP
.
The IPv4 case was fixed in #21564.
getnameinfo
when formatting IPv6 addresses in CNetAddr::ToStringIP
#21756
ACK c10f27fdb2d335954dd1017ce6d5800159427374
I’ve reviewed the code and it looks good. Also ran unit tests and make check
completes successfully.
IPv6ToString
. However there are for the higher-level functions. As this passes the CNetAddr ToString tests, I think this is covered sufficiently.
614@@ -578,15 +615,6 @@ std::string CNetAddr::ToStringIP() const
615 case NET_IPV4:
616 return IPv4ToString(m_addr);
617 case NET_IPV6: {
618- CService serv(*this, 0);
619- struct sockaddr_storage sockaddr;
620- socklen_t socklen = sizeof(sockaddr);
621- if (serv.GetSockAddr((struct sockaddr*)&sockaddr, &socklen)) {
622- char name[1025] = "";
623- if (!getnameinfo((const struct sockaddr*)&sockaddr, socklen, name,
m_scope_id
to IPv6ToString
and append it if non-zero.
According to #21982 (comment), no longer returning scoped ids was an intentional part of this PR. Maybe that wasn’t obvious to reviewers. After test coverage was removed by #21689, no other tests signalled the change.
It would be good to be more explicit in the PR description regarding why make the change, and straightforward about what support was being dropped.
There seems to be two “functionalities” being discussed together, it took me some time to figure it out:
getnameinfo()
which included %zoneid
(on all or most platforms). Now we roll our own which does not include %zoneid
.For reference, here is the FreeBSD implementation of getnameinfo()
(which is under… eh… the BSD license):
Exactly. Thanks for bringing some sense to this.
What this entire discussion boils down to is if the expectation is that CNetAddr::ToStringIP()
should print the IPv6 address or the IPv6 socket address:
The comment I referred to above in #21982 (comment):
If you by “functionality” mean not appending an unwanted %zone_index string to CNetAddr::ToString(), then yes that non-appending of an unwanted string is obviously intentional. The new implementation of IPv6ToString (which is called from CNetAddr::ToString) follows Rust’s std::net::Ipv6Addr which does not append %zone_index. FWIW that is how the previous implementation of CNetAddr::ToString worked under macOS.
Yes, as the removed test and as #21690 showed, macOS returns a different getnameinfo format for scoped ids, without the zone id, from all the other platforms that do provide support for it. Why should we align with the macOS exception without discussing it? Does it not make sense to call attention to this change?