Skip to content

Commit c3f8acf

Browse files
laanwjPastaPastaPasta
authored andcommitted
Merge bitcoin#21985: net: Return IPv6 scope id in CNetAddr::ToStringIP()
6c280ad net: Return IPv6 scope id in `CNetAddr::ToStringIP()` (W. J. van der Laan) Pull request description: If a scope id is provided, return it back in the string representation. Also bring back the test (now in platform independent fashion). Closes bitcoin#21982. Includes bitcoin#21961 (apart from the MacOS remark). ACKs for top commit: practicalswift: cr ACK 6c280ad Tree-SHA512: 77792c35679b6c3545fd3a8d3d74c4f515ac2ee9f02d983251aeaaac715d55c122bbb0141abbeac272011f15520b439bd2db4ec8541a58df9b366921d212ca5f
1 parent 28daf0d commit c3f8acf

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

src/netaddress.cpp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ static std::string IPv4ToString(Span<const uint8_t> a)
544544

545545
// Return an IPv6 address text representation with zero compression as described in RFC 5952
546546
// ("A Recommendation for IPv6 Address Text Representation").
547-
static std::string IPv6ToString(Span<const uint8_t> a)
547+
static std::string IPv6ToString(Span<const uint8_t> a, uint32_t scope_id)
548548
{
549549
assert(a.size() == ADDR_IPV6_SIZE);
550550
const std::array groups{
@@ -592,6 +592,10 @@ static std::string IPv6ToString(Span<const uint8_t> a)
592592
r += strprintf("%s%x", ((!r.empty() && r.back() != ':') ? ":" : ""), groups[i]);
593593
}
594594

595+
if (scope_id != 0) {
596+
r += strprintf("%%%u", scope_id);
597+
}
598+
595599
return r;
596600
}
597601

@@ -612,14 +616,14 @@ std::string CNetAddr::ToStringIP() const
612616
case NET_IPV4:
613617
return IPv4ToString(m_addr);
614618
case NET_IPV6: {
615-
return IPv6ToString(m_addr);
619+
return IPv6ToString(m_addr, m_scope_id);
616620
}
617621
case NET_ONION:
618622
return OnionToString(m_addr);
619623
case NET_I2P:
620624
return EncodeBase32(m_addr, false /* don't pad with = */) + ".b32.i2p";
621625
case NET_CJDNS:
622-
return IPv6ToString(m_addr);
626+
return IPv6ToString(m_addr, 0);
623627
case NET_INTERNAL:
624628
return EncodeBase32(m_addr) + ".internal";
625629
case NET_UNROUTABLE: // m_net is never and should not be set to NET_UNROUTABLE

src/test/net_tests.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,13 +302,17 @@ BOOST_AUTO_TEST_CASE(cnetaddr_basic)
302302

303303
// IPv6, scoped/link-local. See https://tools.ietf.org/html/rfc4007
304304
// We support non-negative decimal integers (uint32_t) as zone id indices.
305-
// Test with a fairly-high value, e.g. 32, to avoid locally reserved ids.
305+
// Normal link-local scoped address functionality is to append "%" plus the
306+
// zone id, for example, given a link-local address of "fe80::1" and a zone
307+
// id of "32", return the address as "fe80::1%32".
306308
const std::string link_local{"fe80::1"};
307309
const std::string scoped_addr{link_local + "%32"};
308310
BOOST_REQUIRE(LookupHost(scoped_addr, addr, false));
309311
BOOST_REQUIRE(addr.IsValid());
310312
BOOST_REQUIRE(addr.IsIPv6());
311313
BOOST_CHECK(!addr.IsBindAny());
314+
BOOST_CHECK_EQUAL(addr.ToString(), scoped_addr);
315+
312316
// Test that the delimiter "%" and default zone id of 0 can be omitted for the default scope.
313317
BOOST_REQUIRE(LookupHost(link_local + "%0", addr, false));
314318
BOOST_REQUIRE(addr.IsValid());

0 commit comments

Comments
 (0)