Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net: ResolveTCPAddr fails with error when resolving a link-local IPv4 address containing a zone #73071

Open
mihpr opened this issue Mar 27, 2025 · 3 comments
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.

Comments

@mihpr
Copy link

mihpr commented Mar 27, 2025

Go version

go version go1.24.1 windows/amd64

Output of go env in your module/workspace:

set AR=ar
set CC=gcc
set CGO_CFLAGS=-O2 -g
set CGO_CPPFLAGS=
set CGO_CXXFLAGS=-O2 -g
set CGO_ENABLED=1
set CGO_FFLAGS=-O2 -g
set CGO_LDFLAGS=-O2 -g
set CXX=g++
set GCCGO=gccgo
set GO111MODULE=
set GOAMD64=v1
set GOARCH=amd64
set GOAUTH=netrc
set GOBIN=
set GOCACHE=C:\Users\mikhail\AppData\Local\go-build
set GOCACHEPROG=
set GODEBUG=
set GOENV=C:\Users\mikhail\AppData\Roaming\go\env
set GOEXE=.exe
set GOEXPERIMENT=
set GOFIPS140=off
set GOFLAGS=
set GOGCCFLAGS=-m64 -mthreads -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=C:\Users\mikhail\AppData\Local\Temp\go-build1405411102=/tmp/go-build -gno-record-gcc-switches
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOINSECURE=
set GOMOD=NUL
set GOMODCACHE=C:\Users\mikhail\go\pkg\mod
set GONOPROXY=
set GONOSUMDB=
set GOOS=windows
set GOPATH=C:\Users\mikhail\go
set GOPRIVATE=
set GOPROXY=https://proxy.golang.org,direct
set GOROOT=C:\Program Files\Go
set GOSUMDB=sum.golang.org
set GOTELEMETRY=local
set GOTELEMETRYDIR=C:\Users\mikhail\AppData\Roaming\go\telemetry
set GOTMPDIR=
set GOTOOLCHAIN=auto
set GOTOOLDIR=C:\Program Files\Go\pkg\tool\windows_amd64
set GOVCS=
set GOVERSION=go1.24.1
set GOWORK=
set PKG_CONFIG=pkg-config

What did you do?

There is a handler that handles HTTP requests:

func (h *handler) report(w http.ResponseWriter, r *http.Request) {
...
	remoteTcpAddr, err := net.ResolveTCPAddr("tcp", r.RemoteAddr)
...
}

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.

@gabyhelp gabyhelp added the BugReport Issues describing a possible bug in the Go implementation. label Mar 27, 2025
@dmitshur dmitshur changed the title net/src/net/tcpsock.go: net.ResolveTCPAddr fails with error when resolving a link-local IPv4 address containing a zone net: ResolveTCPAddr fails with error when resolving a link-local IPv4 address containing a zone Mar 28, 2025
@dmitshur
Copy link
Contributor

CC @ianlancetaylor, @neild.

@dmitshur dmitshur added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Mar 28, 2025
@neild
Copy link
Contributor

neild commented Mar 28, 2025

The net package does not, so far as I know, support zone IDs in IPv4 addresses.

While there are some exceptions, in general systems which handle IPv4 addresses do not include a zone ID as part of the address. For example, Unix APIs dealing with IPv4 addresses generally operate on a sockaddr_in, which includes an address and port but no zone ID.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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.
Projects
None yet
Development

No branches or pull requests

4 participants