summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorM. J. Fromberger <fromberger@tailscale.com>2026-04-15 11:07:42 -0700
committerGitHub <noreply@github.com>2026-04-15 11:07:42 -0700
commit1e4934659b510acbdeee23b7b60e9231e172e42e (patch)
treef934c26ce4a8433eaa57b71820e73e331fb0bc51
parent958bcda5bff512876c5d11aa10af4b056ca62c4b (diff)
downloadtailscale-1e4934659b510acbdeee23b7b60e9231e172e42e.tar.xz
tailscale-1e4934659b510acbdeee23b7b60e9231e172e42e.zip
ipn/ipnlocal: discard cached netmaps upon panic during SetNetworkMap (#19414)
For debugging purposes, unstable builds will sometimes intentionally panic for unexpected behaviours. We observed such a panic after loading a cached netmap, but because we had a valid cached map, the client was unable to recover on its own and the operator had to manually reset the cache. As a defensive hedge, when netmap caching is enabled, check for a panic during installation of a net network map: If one occurs, discard any cached netmaps before letting the panic unwind, so that we do not lose the panic itself, but reduce the need for manual intervention. Updates #12639 Updates tailscale/corp#27300 Change-Id: I0436889c6bdc2fa728c9cb83630cd7b00a72ce68 Signed-off-by: M. J. Fromberger <fromberger@tailscale.com>
-rw-r--r--ipn/ipnlocal/local.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/ipn/ipnlocal/local.go b/ipn/ipnlocal/local.go
index 5cd47212b..5d8b210f0 100644
--- a/ipn/ipnlocal/local.go
+++ b/ipn/ipnlocal/local.go
@@ -6402,6 +6402,23 @@ func (b *LocalBackend) resolveExitNodeInPrefsLocked(prefs *ipn.Prefs) (changed b
// received nm. If nm is nil, it resets all configuration as though
// Tailscale is turned off.
func (b *LocalBackend) setNetMapLocked(nm *netmap.NetworkMap) {
+ if buildfeatures.HasCacheNetMap {
+ // As a defensive measure, if something triggers a panic when we are
+ // installing a network map, make an effort to discard any cached netmaps.
+ // This helps avert the possibility that a restart after panic will stick in
+ // a cycle. Importantly, we do not attempt to swallow or handle the panic,
+ // since that indicates a real bug.
+ //
+ // See https://github.com/tailscale/tailscale/issues/12639
+ defer func() {
+ if p := recover(); p != nil {
+ b.logf("WARNING: Panic while installing netmap; discardng caches")
+ b.discardDiskCacheLocked()
+ panic(p) // propagate
+ }
+ }()
+ }
+
oldSelf := b.currentNode().NetMap().SelfNodeOrZero()
b.dialer.SetNetMap(nm)