-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: Resolve{TCP,UDP,IP}Addr doesn't return error when net and address are in different family #14037
Comments
Yes, that's surprising. /cc @mikioh |
Yup, I reserved this issue for people who want to figure out what's the best way to grab literal IPv4, IPv6 and Ipv6 translator addresses. ;) Please consider all possibilities. For example,
|
Also ResolveIPAddr has the same issue. |
Also ResolveIPAddr has the same issue. => that's true. |
I think that ResolveUnixAddr is ok parsing blank as it's equivalent to 0.0.0.0 from what I understand |
The resolver code already has a filter it applies to the addresses it gets back from DNS. The literal IP path was bypassing that filter. The simplest and therefore most compelling fix is to apply the filter to the literal IPs too. That is, the code has already made a decision for the question @mikioh asked. Empirically, it is:
The failure of tcp6 for [::ffff:127.0.0.1]:http is maybe a little surprising, but it keeps the tcp4 and tcp6 successes disjoint, which seems correct. Since ::ffff:127.0.0.1 is just a funny way to spell an IPv4 address, semantically this seems right. It is at least in keeping with the rest of the package: remember, I didn't do anything except call the existing filtering routine. Will send a CL. |
@rsc, The failure on |
CL https://golang.org/cl/32100 mentions this issue. |
CL https://golang.org/cl/34670 mentions this issue. |
Also retightens test cases for Resolve{TCP,UDP,IP}Addr which are using interface names for specifying IPv6 zone. Updates #14037. Fixes #18362. Change-Id: I7444b6302e2847dfbdab8a0ad5b2e702bed1a3d6 Reviewed-on: https://go-review.googlesource.com/34670 Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
https://play.golang.org/p/1lf51v8MII
I think resolver should return error it this case, Someone is expecting to get ipv4:port when resolving tcp4 address.
ResolveUDPAddr has the same issue
The text was updated successfully, but these errors were encountered: