ipn/ipnlocal: sanitize prefs before sending over IPN Bus

Signed-off-by: Maisem Ali <maisem@tailscale.com>
pull/6425/head
Maisem Ali 2 years ago committed by Maisem Ali
parent 0a10a5632b
commit ad41cbd9d5

@ -904,8 +904,7 @@ func (b *LocalBackend) setClientStatus(st controlclient.Status) {
// Now complete the lock-free parts of what we started while locked. // Now complete the lock-free parts of what we started while locked.
if prefsChanged { if prefsChanged {
p := prefs.View() b.notifyPrefs(prefs.View())
b.send(ipn.Notify{Prefs: &p})
} }
if st.NetMap != nil { if st.NetMap != nil {
@ -1314,7 +1313,7 @@ func (b *LocalBackend) Start(opts ipn.Options) error {
blid := b.backendLogID blid := b.backendLogID
b.logf("Backend: logs: be:%v fe:%v", blid, opts.FrontendLogID) b.logf("Backend: logs: be:%v fe:%v", blid, opts.FrontendLogID)
b.send(ipn.Notify{BackendLogID: &blid}) b.send(ipn.Notify{BackendLogID: &blid})
b.send(ipn.Notify{Prefs: &prefs}) b.notifyPrefs(prefs)
if !loggedOut && b.hasNodeKey() { if !loggedOut && b.hasNodeKey() {
// Even if !WantRunning, we should verify our key, if there // Even if !WantRunning, we should verify our key, if there
@ -1326,6 +1325,19 @@ func (b *LocalBackend) Start(opts ipn.Options) error {
return nil return nil
} }
// notifyPrefs delivers prefs to the connected frontend and any API watchers
// from LocalBackend.WatchNotifications (via the LocalAPI).
// It strips keys and other sensitive data prior to sending.
//
// If no frontend is connected or API watchers are backed up, the notification
// is dropped without being delivered.
//
// b.mu must not be held.
func (b *LocalBackend) notifyPrefs(p ipn.PrefsView) {
np := stripKeysFromPrefs(p)
b.send(ipn.Notify{Prefs: &np})
}
var warnInvalidUnsignedNodes = health.NewWarnable() var warnInvalidUnsignedNodes = health.NewWarnable()
// updateFilterLocked updates the packet filter in wgengine based on the // updateFilterLocked updates the packet filter in wgengine based on the
@ -1762,6 +1774,8 @@ func (b *LocalBackend) pollRequestEngineStatus(ctx context.Context) {
// //
// If no frontend is connected or API watchers are backed up, the notification // If no frontend is connected or API watchers are backed up, the notification
// is dropped without being delivered. // is dropped without being delivered.
//
// b.mu must not be held.
func (b *LocalBackend) send(n ipn.Notify) { func (b *LocalBackend) send(n ipn.Notify) {
n.Version = version.Long n.Version = version.Long
@ -2520,7 +2534,7 @@ func (b *LocalBackend) setPrefsLockedOnEntry(caller string, newp *ipn.Prefs) ipn
b.authReconfig() b.authReconfig()
} }
b.send(ipn.Notify{Prefs: &prefs}) b.notifyPrefs(prefs)
return prefs return prefs
} }

Loading…
Cancel
Save