mirror of https://github.com/tailscale/tailscale/
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
167 lines
2.9 KiB
Go
167 lines
2.9 KiB
Go
5 years ago
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package ipn
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"sync"
|
||
|
"time"
|
||
|
|
||
|
"github.com/tailscale/wireguard-go/wgcfg"
|
||
|
"tailscale.com/logger"
|
||
|
)
|
||
|
|
||
|
type Handle struct {
|
||
|
serverURL string
|
||
|
frontendLogID string
|
||
|
b Backend
|
||
|
xnotify func(n Notify)
|
||
|
logf logger.Logf
|
||
|
|
||
|
// Mutex protects everything below
|
||
|
mu sync.Mutex
|
||
|
netmapCache *NetworkMap
|
||
|
engineStatusCache EngineStatus
|
||
|
stateCache State
|
||
|
prefsCache Prefs
|
||
|
}
|
||
|
|
||
|
func NewHandle(b Backend, logf logger.Logf, opts Options) (*Handle, error) {
|
||
|
h := &Handle{
|
||
|
b: b,
|
||
|
logf: logf,
|
||
|
}
|
||
|
|
||
|
err := h.Start(opts)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return h, nil
|
||
|
}
|
||
|
|
||
|
func (h *Handle) Start(opts Options) error {
|
||
|
h.serverURL = strings.TrimRight(opts.ServerURL, "/")
|
||
|
h.frontendLogID = opts.FrontendLogID
|
||
|
h.xnotify = opts.Notify
|
||
|
h.netmapCache = nil
|
||
|
h.engineStatusCache = EngineStatus{}
|
||
|
h.stateCache = NoState
|
||
|
h.prefsCache = opts.Prefs
|
||
|
xopts := opts
|
||
|
xopts.Notify = h.notify
|
||
|
return h.b.Start(xopts)
|
||
|
}
|
||
|
|
||
|
func (h *Handle) Reset() {
|
||
|
st := NoState
|
||
|
h.notify(Notify{State: &st})
|
||
|
}
|
||
|
|
||
|
func (h *Handle) notify(n Notify) {
|
||
|
h.mu.Lock()
|
||
|
if n.BackendLogID != nil {
|
||
|
h.logf("Handle: logs: be:%v fe:%v\n",
|
||
|
*n.BackendLogID, h.frontendLogID)
|
||
|
}
|
||
|
if n.State != nil {
|
||
|
h.stateCache = *n.State
|
||
|
}
|
||
|
if n.Prefs != nil {
|
||
|
h.prefsCache = *n.Prefs
|
||
|
}
|
||
|
if n.NetMap != nil {
|
||
|
h.netmapCache = n.NetMap
|
||
|
}
|
||
|
if n.Engine != nil {
|
||
|
h.engineStatusCache = *n.Engine
|
||
|
}
|
||
|
h.mu.Unlock()
|
||
|
|
||
|
if h.xnotify != nil {
|
||
|
// Forward onward to our parent's notifier
|
||
|
h.xnotify(n)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (h *Handle) Prefs() Prefs {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
return h.prefsCache
|
||
|
}
|
||
|
|
||
|
func (h *Handle) UpdatePrefs(updateFn func(old Prefs) (new Prefs)) {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
new := updateFn(h.prefsCache)
|
||
|
h.prefsCache = new
|
||
|
h.b.SetPrefs(new)
|
||
|
}
|
||
|
|
||
|
func (h *Handle) State() State {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
return h.stateCache
|
||
|
}
|
||
|
|
||
|
func (h *Handle) EngineStatus() EngineStatus {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
return h.engineStatusCache
|
||
|
}
|
||
|
|
||
|
func (h *Handle) LocalAddrs() []wgcfg.CIDR {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
nm := h.netmapCache
|
||
|
if nm != nil {
|
||
|
return nm.Addresses
|
||
|
}
|
||
|
return []wgcfg.CIDR{}
|
||
|
}
|
||
|
|
||
|
func (h *Handle) NetMap() *NetworkMap {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
return h.netmapCache
|
||
|
}
|
||
|
|
||
|
func (h *Handle) Expiry() time.Time {
|
||
|
h.mu.Lock()
|
||
|
defer h.mu.Unlock()
|
||
|
|
||
|
nm := h.netmapCache
|
||
|
if nm != nil {
|
||
|
return nm.Expiry
|
||
|
}
|
||
|
return time.Time{}
|
||
|
}
|
||
|
|
||
|
func (h *Handle) AdminPageURL() string {
|
||
|
return h.serverURL + "/admin/machines"
|
||
|
}
|
||
|
|
||
|
func (h *Handle) StartLoginInteractive() {
|
||
|
h.b.StartLoginInteractive()
|
||
|
}
|
||
|
|
||
|
func (h *Handle) Logout() {
|
||
|
h.b.Logout()
|
||
|
}
|
||
|
|
||
|
func (h *Handle) RequestEngineStatus() {
|
||
|
h.b.RequestEngineStatus()
|
||
|
}
|
||
|
|
||
|
func (h *Handle) FakeExpireAfter(x time.Duration) {
|
||
|
h.b.FakeExpireAfter(x)
|
||
|
}
|