-
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: go/cgo resolvers report malformed domains differently #12421
Comments
CL https://golang.org/cl/18383 mentions this issue. |
Note that "!!!.local" is valid for multicast DNS. |
Reopened because of #13878. |
Reverted the earlier fix. These will keep being inconsistent in Go 1.6. |
Fixing this seems easy, but we need a Decider to pick the right fix. The only restrictions on domain names imposed by DNS are: labels must be 1 to 63 bytes, and total name length (including label length bytes and terminating zero byte) must be <= 255 bytes (or 256 for mDNS). When comparing names for equality, labels are compared ASCII case-insensitively, but otherwise they can contain arbitrary byte values. For example, running Beyond that, it's not uncommon for DNS utilities to support escape sequences: On the other hand, RFC 952 restricts domain names to match the grammar:
RFC 1123 relaxes the initial mDNS relaxes the rules for .local names to allow UTF-8 in RFC 6762 section 16. I'd rather have more time to think about the best solution for Go. Punting to 1.8. |
My opinion is that we should allow DNS queries for any string, and thus the bug here is that the Go resolver isn't dispatching the query for |
What about backslashes? Do we handle them as escape sequences like libresolv does? |
There are two questions here:
So I would suggest for Go 1.8 we simply change the path that fails on isDomainName to return 'no such host' instead of 'invalid domain name', to match netdns=cgo mode. |
@rsc To be clear, the cgo path does send an actual DNS query for !!!.local. The "no such host" error isn't synthetic: it's because the DNS server sent an NXDOMAIN response. |
OK, well sending the DNS request is OK too. |
I personally don't put my oar in, but a bit.
There are use cases of Net-Unicode for unicast DNS in the wild. I noticed that "ah, Active Directory and a few directory service implementations do support Net-Unicode for unicast DNS" when I saw #16739. As far as I know, https://tools.ietf.org/html/draft-ietf-dnssd-mdns-dns-interop is the active informational document that addresses interoperability issues with multiple types of DNS-labels. Of course, the existing built-in DNS stub resolver doesn't support unicast DNS labels encoded in Net-Unicode from its brith. So just FYI. |
CL https://golang.org/cl/31468 mentions this issue. |
|
Given the following program:
A different error message is produced, depending on whether the go or cgo resolver is used:
This discrepancy exists because
src/net/dnsclient.go
usesisDomainName
as a filter before starting the lookup, whilegetaddrinfo
has no such filter, and returns the same error for malformed and nonexistent (NXDOMAIN) names.I think it's debatable whether this qualifies as a bug, but in theory it could be fixed by having the cgo implementation check
isDomainName
.The text was updated successfully, but these errors were encountered: