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

Fix ipv6 support for DNS servers #695

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

pinheadmz
Copy link
Member

Requires chjj/bns#33

Inspired by #685 I went looking for other problems with 127.0.0.1 and tried configuring hsd's DNS servers to listen on ipv6 addresses ::1. There were several problems with this that need to be addressed in both bns (see above PR) as well as hsd.

The misbehavior can be observed on master branch:

  • start hsd with hsd --rs-host=::1
  • try to dig @::1 ...

Other combinations will also break such as hsd --ns-host=::1 and then dig @127.0.0.1 ... because the recursive resolver (unbound) thinks ipv6 is false and will just return SERVFAIL even though the root name server is happily listening on ::1

REVIEWERS: be sure to rm -rf node_modules && npm i because this PR pulls in the bns PR

Copy link
Member

@rithvikvibhu rithvikvibhu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Rebased on master locally to test, IPv6 binds without issues.
  • Listening ns and rs on both ::1 and a specific ipv6 address (used Tailscale, dns queried from another device) works.
  • Was curious so looked at Wireshark and ipv4-ns-ipv6-rs and vice versa chosen properly by rs.
  • IPv4 behaviour same as before.

But it still needs rebase for tests to pass I think. (And ofc dropping the temp commit)

Once this is merged, I'll try to add binding to multiple addresses/interfaces so nodes can listen on 4 and 6 - discussed on telegram or discord, idr.

@pinheadmz
Copy link
Member Author

Turns out our initial approach to IPv6 stuff was a little off and required a follow-up: #723

see also #722 and related issues from there.

I'd like @nodech input on this PR and the change to bns before we merge.

@pinheadmz pinheadmz requested a review from nodech August 16, 2022 13:07
@rithvikvibhu
Copy link
Member

I think this PR only enables IPv6, not use it by default when available.

Saw the reverted localhost change, this shouldn't be a breaking change since it still defaults to IPv4 127.0.0.1.

@pinheadmz
Copy link
Member Author

Ok I looked through this all again, here's my current understanding:

First of all - the ipv6 setting for unbound (do-ip6: yes) means two things:
https://unbound.docs.nlnetlabs.nl/en/latest/manpages/unbound.conf.html#term-do-ip6-yes-or-no
It both listens to ::1 but also uses AAAA records to query nameservers on ipv6. This means the original plan here of allowing the rs to listen on ::1 even if the user doesn't have actual ipv6 access doesn't make sense.

Next, bns: the default inet6 option is determined by the operating system telling nodejs that it has PUBLIC ipv6 addresses. This certainly garuntees ipv6 access but could also be very false-negative. The bns PR I opened will tell us if we have ANY ipv6 interfaces but since that includes ::1 it could be a false positive (sure we have ::1 but that doesn't mean we can actually use ipv6)

so solution-wise: there is this test in bns which checks for ipv6 access in really the only possible way: try it. But I think relying on a hard-coded external IP address, even a icann dns root server, is sorta problematic.

In discussions, Nodar suggested that we trust the user. Meaning, if the user sets --rs-host to an ipv6 address, then we just switch inet6: true and hope they know what they are doing. So to accomplish that, I think THIS hsd PR would stay as-is (remove the hard coded inet6: false) and then the bns PR will have to change. Over there, we'll keep the "pass inet6 option to unbound" but then instead of Use less-restrictive method to determine default IPv6 status, maybe we trust the user's host option

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants