all: another rework on discovering bootstrap IPs

Instead of re-query DNS record for upstream when re-bootstrapping, just
query all records on startup, then selecting the next bootstrap ip
depends on the current network stack.
This commit is contained in:
Cuong Manh Le
2023-03-08 11:38:46 +07:00
committed by Cuong Manh Le
parent 018f6651c1
commit fa50cd4df4
3 changed files with 108 additions and 76 deletions
+26 -14
View File
@@ -40,6 +40,24 @@ func init() {
stackOnce.Store(new(sync.Once))
}
func supportIPv4() bool {
_, err := Dialer.Dial("tcp4", net.JoinHostPort(controldIPv4Test, "80"))
return err == nil
}
func supportIPv6() bool {
_, err := Dialer.Dial("tcp6", net.JoinHostPort(controldIPv6Test, "80"))
return err == nil
}
func supportListenIPv6Local() bool {
if ln, err := net.Listen("tcp6", "[::1]:0"); err == nil {
ln.Close()
return true
}
return false
}
func probeStack() {
b := backoff.NewBackoff("probeStack", func(format string, args ...any) {}, time.Minute)
for {
@@ -50,20 +68,9 @@ func probeStack() {
b.BackOff(context.Background(), err)
}
}
if _, err := Dialer.Dial("tcp4", net.JoinHostPort(controldIPv4Test, "80")); err == nil {
ipv4Enabled = true
}
if _, err := Dialer.Dial("tcp6", net.JoinHostPort(controldIPv6Test, "80")); err == nil {
ipv6Enabled = true
}
if ln, err := net.Listen("tcp6", "[::1]:53"); err == nil {
ln.Close()
canListenIPv6Local = true
}
}
func Reset() {
stackOnce.Store(new(sync.Once))
ipv4Enabled = supportIPv4()
ipv6Enabled = supportIPv6()
canListenIPv6Local = supportListenIPv6Local()
}
func Up() bool {
@@ -86,6 +93,11 @@ func SupportsIPv6ListenLocal() bool {
return canListenIPv6Local
}
// IPv6Available is like SupportsIPv6, but always do the check without caching.
func IPv6Available() bool {
return supportIPv6()
}
// IsIPv6 checks if the provided IP is v6.
//
//lint:ignore U1000 use in os_windows.go