net: ResolveTCPAddr fails with error when resolving a link-local IPv4 address containing a zone #73071
Labels
BugReport
Issues describing a possible bug in the Go implementation.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Go version
go version go1.24.1 windows/amd64
Output of
go env
in your module/workspace:What did you do?
There is a handler that handles HTTP requests:
I had 2 hosts on virtual machines connected to a local network network having link-local IPv4 addresses assigned.
I sent a HTTP request from a Linux machine with IP 169.254.100.101 to my Windows machine 169.254.100.102, where the HTTP handler (see above) was executed.
What did you see happen?
In this case r.RemoteAddr was equal to "169.254.100.101%Ethernet 3:34018". For link-local addresses, it contains zone (network adapter) name, which was "Ethernet 3" in my case.
net.ResolveTCPAddr() failed with an error.
err.Error() ="lookup 169.254.100.101%Ethernet 3: no such host".
It worked fine with link-local IPv6 addresses. It worked fine with non link-local IPv4 and IPv6 addresses, which did not have a zone specified. net.ResolveTCPAddr() behaves the same way on Ubuntu Linux as well at the same Go version. I checked that with a unit test, where input "169.254.100.101%Ethernet 3:34018" was hard coded.
What did you expect to see?
I expected net.ResolveTCPAddr() to return: a *TCPAddr having IP="169.254.100.101", Zone="Ethernet 3", Port="34018". The error was expected to be nil.
The text was updated successfully, but these errors were encountered: