-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
[client] Fix mgmt cache bypass overlay #5987
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
Open
pappz
wants to merge
6
commits into
main
Choose a base branch
from
fix-mgmt-cache-bypass-overlay
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+373
−23
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
77ec257
client/dns/mgmt: bypass overlay for control-plane FQDN resolution
pappz 14be474
client/dns: register pool-root domains as host-manager match domains
pappz c89c30b
client/dns: canonicalize pool-root membership check with toZone
pappz b0b52b6
client/dns/mgmt: singleflight on-demand resolves
pappz 12d0eda
client/dns: split UpdateServerConfig helpers to cut cognitive complexity
pappz 3cdfa11
client/dns/mgmt: strip wildcard prefix in pool-root membership check
pappz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| package mgmt | ||
|
|
||
| import ( | ||
| "context" | ||
| "fmt" | ||
| "net" | ||
| "net/netip" | ||
|
|
||
| nbnet "github.com/netbirdio/netbird/client/net" | ||
| ) | ||
|
|
||
| // NewBypassResolver builds a *net.Resolver that sends queries directly to | ||
| // the supplied nameservers through a socket that bypasses the NetBird | ||
| // overlay interface. This lets the mgmt cache refresh control-plane | ||
| // FQDNs (api/signal/relay/stun/turn) even when an exit-node default | ||
| // route is installed on the overlay before its peer is live. | ||
| // | ||
| // Returns nil if nameservers is empty. The caller must not pass | ||
| // loopback/overlay IPs (e.g. 127.0.0.1, the overlay listener address); | ||
| // those would defeat the purpose of bypassing. | ||
| func NewBypassResolver(nameservers []netip.Addr) *net.Resolver { | ||
| if len(nameservers) == 0 { | ||
| return nil | ||
| } | ||
|
|
||
| servers := make([]string, 0, len(nameservers)) | ||
| for _, ns := range nameservers { | ||
| if !ns.IsValid() || ns.IsLoopback() || ns.IsUnspecified() { | ||
| continue | ||
| } | ||
| servers = append(servers, netip.AddrPortFrom(ns, 53).String()) | ||
| } | ||
| if len(servers) == 0 { | ||
| return nil | ||
| } | ||
|
|
||
| return &net.Resolver{ | ||
| PreferGo: true, | ||
| Dial: func(ctx context.Context, network, _ string) (net.Conn, error) { | ||
| nbDialer := nbnet.NewDialer() | ||
| var lastErr error | ||
| for _, ns := range servers { | ||
| conn, err := nbDialer.DialContext(ctx, network, ns) | ||
| if err == nil { | ||
| return conn, nil | ||
| } | ||
| lastErr = err | ||
| } | ||
| if lastErr == nil { | ||
| return nil, fmt.Errorf("no bypass nameservers configured") | ||
| } | ||
| return nil, fmt.Errorf("dial bypass nameservers: %w", lastErr) | ||
| }, | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.