|
|
@ -362,8 +362,13 @@ type LocalBackend struct {
|
|
|
|
// captiveCtx will always be non-nil, though it might be a canceled
|
|
|
|
// captiveCtx will always be non-nil, though it might be a canceled
|
|
|
|
// context. captiveCancel is non-nil if checkCaptivePortalLoop is
|
|
|
|
// context. captiveCancel is non-nil if checkCaptivePortalLoop is
|
|
|
|
// running, and is set to nil after being canceled.
|
|
|
|
// running, and is set to nil after being canceled.
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// captiveDetected is true if the backend is currently behind a captive
|
|
|
|
|
|
|
|
// portal, and is used to temporarily disable exit nodes and other
|
|
|
|
|
|
|
|
// features that require connectivity.
|
|
|
|
captiveCtx context.Context
|
|
|
|
captiveCtx context.Context
|
|
|
|
captiveCancel context.CancelFunc
|
|
|
|
captiveCancel context.CancelFunc
|
|
|
|
|
|
|
|
captiveDetected bool
|
|
|
|
// needsCaptiveDetection is a channel that is used to signal either
|
|
|
|
// needsCaptiveDetection is a channel that is used to signal either
|
|
|
|
// that captive portal detection is required (sending true) or that the
|
|
|
|
// that captive portal detection is required (sending true) or that the
|
|
|
|
// backend is healthy and captive portal detection is not required
|
|
|
|
// backend is healthy and captive portal detection is not required
|
|
|
@ -812,7 +817,7 @@ func (b *LocalBackend) onHealthChange(w *health.Warnable, us *health.UnhealthySt
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// If connectivity is not impacted, we know for sure we're not behind a captive portal,
|
|
|
|
// If connectivity is not impacted, we know for sure we're not behind a captive portal,
|
|
|
|
// so drop any warning, and signal that we don't need captive portal detection.
|
|
|
|
// so drop any warning, and signal that we don't need captive portal detection.
|
|
|
|
b.health.SetHealthy(captivePortalWarnable)
|
|
|
|
b.setCaptivePortalDetected(false)
|
|
|
|
select {
|
|
|
|
select {
|
|
|
|
case b.needsCaptiveDetection <- false:
|
|
|
|
case b.needsCaptiveDetection <- false:
|
|
|
|
case <-ctx.Done():
|
|
|
|
case <-ctx.Done():
|
|
|
@ -820,6 +825,33 @@ func (b *LocalBackend) onHealthChange(w *health.Warnable, us *health.UnhealthySt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (b *LocalBackend) setCaptivePortalDetected(found bool) {
|
|
|
|
|
|
|
|
b.mu.Lock()
|
|
|
|
|
|
|
|
prev := b.captiveDetected
|
|
|
|
|
|
|
|
b.captiveDetected = found
|
|
|
|
|
|
|
|
b.mu.Unlock()
|
|
|
|
|
|
|
|
b.logf("b.captiveDetected = %v, was %v", found, prev)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if found {
|
|
|
|
|
|
|
|
b.health.SetUnhealthy(captivePortalWarnable, nil)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
b.health.SetHealthy(captivePortalWarnable)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if b.wantsExitNodeDisablementBehindCaptivePortal() && prev != found {
|
|
|
|
|
|
|
|
b.logf("b.captiveDetected changed to %v (was %v), calling authReconfig()", found, prev)
|
|
|
|
|
|
|
|
b.authReconfig()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (b *LocalBackend) wantsExitNodeDisablementBehindCaptivePortal() bool {
|
|
|
|
|
|
|
|
b.mu.Lock()
|
|
|
|
|
|
|
|
defer b.mu.Unlock()
|
|
|
|
|
|
|
|
res := b.ControlKnobs().DisableExitNodeBehindCaptivePortal.Load()
|
|
|
|
|
|
|
|
b.logf("wantsExitNodeDisablementBehindCaptivePortal = %v", res)
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Shutdown halts the backend and all its sub-components. The backend
|
|
|
|
// Shutdown halts the backend and all its sub-components. The backend
|
|
|
|
// can no longer be used after Shutdown returns.
|
|
|
|
// can no longer be used after Shutdown returns.
|
|
|
|
func (b *LocalBackend) Shutdown() {
|
|
|
|
func (b *LocalBackend) Shutdown() {
|
|
|
@ -2318,11 +2350,7 @@ func (b *LocalBackend) performCaptiveDetection() {
|
|
|
|
netMon := b.NetMon()
|
|
|
|
netMon := b.NetMon()
|
|
|
|
b.mu.Unlock()
|
|
|
|
b.mu.Unlock()
|
|
|
|
found := d.Detect(ctx, netMon, dm, preferredDERP)
|
|
|
|
found := d.Detect(ctx, netMon, dm, preferredDERP)
|
|
|
|
if found {
|
|
|
|
b.setCaptivePortalDetected(found)
|
|
|
|
b.health.SetUnhealthy(captivePortalWarnable, health.Args{})
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
b.health.SetHealthy(captivePortalWarnable)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// shouldRunCaptivePortalDetection reports whether captive portal detection
|
|
|
|
// shouldRunCaptivePortalDetection reports whether captive portal detection
|
|
|
@ -4673,6 +4701,22 @@ func (b *LocalBackend) routerConfig(cfg *wgcfg.Config, prefs ipn.PrefsView, oneC
|
|
|
|
b.logf("warning: ExitNodeAllowLANAccess has no effect on " + runtime.GOOS)
|
|
|
|
b.logf("warning: ExitNodeAllowLANAccess has no effect on " + runtime.GOOS)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
b.logf("routerConfig: b.captiveDetected is %v", b.captiveDetected)
|
|
|
|
|
|
|
|
if b.captiveDetected && b.wantsExitNodeDisablementBehindCaptivePortal() {
|
|
|
|
|
|
|
|
isZeroRouteFunc := func(p netip.Prefix) bool {
|
|
|
|
|
|
|
|
return p == ipv4Default || p == ipv6Default
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
hasZeroRoutes := slices.ContainsFunc(rs.Routes, isZeroRouteFunc)
|
|
|
|
|
|
|
|
if hasZeroRoutes {
|
|
|
|
|
|
|
|
b.logf("captive portal detected, dropping zero routes")
|
|
|
|
|
|
|
|
// If a captive portal is present, remove the zero routes (ipv4Default and ipv6Default)
|
|
|
|
|
|
|
|
// to allow the user to authenticate with the captive portal.
|
|
|
|
|
|
|
|
rs.Routes = slices.DeleteFunc(rs.Routes, isZeroRouteFunc)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
b.logf("captive portal detected, but no zero routes to drop")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if slices.ContainsFunc(rs.LocalAddrs, tsaddr.PrefixIs4) {
|
|
|
|
if slices.ContainsFunc(rs.LocalAddrs, tsaddr.PrefixIs4) {
|
|
|
|