android: don't set vpnService to nil when state is Stopped (#523)

We are currently setting vpnService.service to nil:
-any time there’s an error with updateTUN
-when we exit out of runBackend
-if the config is the default config (aka when the ipn state is Stopped)

When it gets set to nil, we don’t handle state or config updates by calling updateTUN until after startVPN is called again.
The second case never happens because there’s no condition to break out of the loop in runBackend and ctx is uncancelable per the doc for context.Background()
In the third case, we should not establish the VPN; the state is already in the correct Stopped state, but there’s no need to set the service to nil and prevent updateTUN from being called. The quick settings tile bug is caused by this third case, where because the saved prefs starts the app up in the Stopped state, the config is set to the default config, and the service is set to nil, and we can't updateTUN until there’s another startVPN call.

This PR:
-cleans up the updateTUN error handling to be more consistent
-removes the IPNService parameter from updateTUN so that vpnService.service is not set to nil in the third case
-updates IPNService to use stopSelf and not stopForeground when we disconnect the VPN; the latter only disconnects if there is a memory need

Fixes tailscale/tailscale#12489

Signed-off-by: kari-ts <kari@tailscale.com>
pull/524/head
kari-ts 2 months ago committed by GitHub
parent 25e7681c32
commit c10aca720b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -73,10 +73,14 @@ open class IPNService : VpnService(), libtailscale.IPNService {
override fun close() { override fun close() {
app.setWantRunning(false) {} app.setWantRunning(false) {}
Notifier.setState(Ipn.State.Stopping) Notifier.setState(Ipn.State.Stopping)
stopForeground(STOP_FOREGROUND_REMOVE) disconnectVPN()
Libtailscale.serviceDisconnect(this) Libtailscale.serviceDisconnect(this)
} }
override fun disconnectVPN(){
stopSelf()
}
override fun onDestroy() { override fun onDestroy() {
close() close()
updateVpnStatus(false) updateVpnStatus(false)

@ -11,6 +11,7 @@ import (
"net/http" "net/http"
"os" "os"
"path/filepath" "path/filepath"
"reflect"
"runtime/debug" "runtime/debug"
"sync" "sync"
"sync/atomic" "sync/atomic"
@ -165,36 +166,24 @@ func (a *App) runBackend(ctx context.Context) error {
select { select {
case s := <-stateCh: case s := <-stateCh:
state = s state = s
if cfg.rcfg != nil && state >= ipn.Starting && vpnService.service != nil { if state >= ipn.Starting && vpnService.service != nil && b.isConfigNonNilAndDifferent(cfg.rcfg, cfg.dcfg) {
// On state change, check if there are router or config changes requiring an update to VPNBuilder // On state change, check if there are router or config changes requiring an update to VPNBuilder
if err := b.updateTUN(vpnService.service, cfg.rcfg, cfg.dcfg); err != nil { if err := b.updateTUN(cfg.rcfg, cfg.dcfg); err != nil {
if errors.Is(err, errMultipleUsers) { if errors.Is(err, errMultipleUsers) {
// TODO: surface error to user // TODO: surface error to user
} }
log.Printf("VPN update failed: %v", err) a.closeVpnService(err, b)
mp := new(ipn.MaskedPrefs)
mp.WantRunning = false
mp.WantRunningSet = true
_, err := a.EditPrefs(*mp)
if err != nil {
log.Printf("localapi edit prefs error %v", err)
}
b.lastCfg = nil
b.CloseTUNs()
} }
} }
case n := <-netmapCh: case n := <-netmapCh:
networkMap = n networkMap = n
case c := <-configs: case c := <-configs:
cfg = c cfg = c
if b == nil || vpnService.service == nil || cfg.rcfg == nil { if vpnService.service == nil || !b.isConfigNonNilAndDifferent(cfg.rcfg, cfg.dcfg) {
configErrs <- nil configErrs <- nil
break break
} }
configErrs <- b.updateTUN(vpnService.service, cfg.rcfg, cfg.dcfg) configErrs <- b.updateTUN(cfg.rcfg, cfg.dcfg)
case s := <-onVPNRequested: case s := <-onVPNRequested:
if vpnService.service != nil && vpnService.service.ID() == s.ID() { if vpnService.service != nil && vpnService.service.ID() == s.ID() {
// Still the same VPN instance, do nothing // Still the same VPN instance, do nothing
@ -230,12 +219,9 @@ func (a *App) runBackend(ctx context.Context) error {
if networkMap != nil { if networkMap != nil {
// TODO // TODO
} }
if cfg.rcfg != nil && state >= ipn.Starting { if state >= ipn.Starting && b.isConfigNonNilAndDifferent(cfg.rcfg, cfg.dcfg) {
if err := b.updateTUN(vpnService.service, cfg.rcfg, cfg.dcfg); err != nil { if err := b.updateTUN(cfg.rcfg, cfg.dcfg); err != nil {
log.Printf("VPN update failed: %v", err) a.closeVpnService(err, b)
vpnService.service.Close()
b.lastCfg = nil
b.CloseTUNs()
} }
} }
case s := <-onDisconnect: case s := <-onDisconnect:
@ -245,9 +231,7 @@ func (a *App) runBackend(ctx context.Context) error {
vpnService.service = nil vpnService.service = nil
} }
case i := <-onDNSConfigChanged: case i := <-onDNSConfigChanged:
if b != nil { go b.NetworkChanged(i)
go b.NetworkChanged(i)
}
} }
} }
} }
@ -346,3 +330,29 @@ func (a *App) newBackend(dataDir, directFileRoot string, appCtx AppContext, stor
}() }()
return b, nil return b, nil
} }
func (b *backend) isConfigNonNilAndDifferent(rcfg *router.Config, dcfg *dns.OSConfig) bool {
if reflect.DeepEqual(rcfg, b.lastCfg) && reflect.DeepEqual(dcfg, b.lastDNSCfg) {
b.logger.Logf("isConfigNonNilAndDifferent: no change to Routes or DNS, ignore")
return false
}
return rcfg != nil
}
func (a *App) closeVpnService(err error, b *backend) {
log.Printf("VPN update failed: %v", err)
mp := new(ipn.MaskedPrefs)
mp.WantRunning = false
mp.WantRunningSet = true
if _, localApiErr := a.EditPrefs(*mp); localApiErr != nil {
log.Printf("localapi edit prefs error %v", localApiErr)
}
b.lastCfg = nil
b.CloseTUNs()
vpnService.service.DisconnectVPN()
vpnService.service = nil
}

@ -80,6 +80,8 @@ type IPNService interface {
Close() Close()
DisconnectVPN()
UpdateVpnStatus(bool) UpdateVpnStatus(bool)
} }

@ -9,7 +9,6 @@ import (
"log" "log"
"net" "net"
"net/netip" "net/netip"
"reflect"
"runtime/debug" "runtime/debug"
"strings" "strings"
"syscall" "syscall"
@ -125,12 +124,7 @@ var googleDNSServers = []netip.Addr{
netip.MustParseAddr("2001:4860:4860::8844"), netip.MustParseAddr("2001:4860:4860::8844"),
} }
func (b *backend) updateTUN(service IPNService, rcfg *router.Config, dcfg *dns.OSConfig) error { func (b *backend) updateTUN(rcfg *router.Config, dcfg *dns.OSConfig) error {
if reflect.DeepEqual(rcfg, b.lastCfg) && reflect.DeepEqual(dcfg, b.lastDNSCfg) {
b.logger.Logf("updateTUN: no change to Routes or DNS, ignore")
return nil
}
b.logger.Logf("updateTUN: changed") b.logger.Logf("updateTUN: changed")
defer b.logger.Logf("updateTUN: finished") defer b.logger.Logf("updateTUN: finished")
@ -147,7 +141,6 @@ func (b *backend) updateTUN(service IPNService, rcfg *router.Config, dcfg *dns.O
if len(rcfg.LocalAddrs) == 0 { if len(rcfg.LocalAddrs) == 0 {
return nil return nil
} }
vpnService.service = service
builder := vpnService.service.NewBuilder() builder := vpnService.service.NewBuilder()
b.logger.Logf("updateTUN: got new builder") b.logger.Logf("updateTUN: got new builder")
@ -258,7 +251,6 @@ func closeFileDescriptor() error {
func (b *backend) CloseTUNs() { func (b *backend) CloseTUNs() {
b.lastCfg = nil b.lastCfg = nil
b.devices.Shutdown() b.devices.Shutdown()
vpnService.service = nil
} }
// ifname is the interface name retrieved from LinkProperties on network change. If a network is lost, an empty string is passed in. // ifname is the interface name retrieved from LinkProperties on network change. If a network is lost, an empty string is passed in.

Loading…
Cancel
Save