mirror of
https://github.com/safing/portmaster
synced 2025-04-07 20:49:10 +00:00
* Move portbase into monorepo * Add new simple module mgr * [WIP] Switch to new simple module mgr * Add StateMgr and more worker variants * [WIP] Switch more modules * [WIP] Switch more modules * [WIP] swtich more modules * [WIP] switch all SPN modules * [WIP] switch all service modules * [WIP] Convert all workers to the new module system * [WIP] add new task system to module manager * [WIP] Add second take for scheduling workers * [WIP] Add FIXME for bugs in new scheduler * [WIP] Add minor improvements to scheduler * [WIP] Add new worker scheduler * [WIP] Fix more bug related to new module system * [WIP] Fix start handing of the new module system * [WIP] Improve startup process * [WIP] Fix minor issues * [WIP] Fix missing subsystem in settings * [WIP] Initialize managers in constructor * [WIP] Move module event initialization to constrictors * [WIP] Fix setting for enabling and disabling the SPN module * [WIP] Move API registeration into module construction * [WIP] Update states mgr for all modules * [WIP] Add CmdLine operation support * Add state helper methods to module group and instance * Add notification and module status handling to status package * Fix starting issues * Remove pilot widget and update security lock to new status data * Remove debug logs * Improve http server shutdown * Add workaround for cleanly shutting down firewall+netquery * Improve logging * Add syncing states with notifications for new module system * Improve starting, stopping, shutdown; resolve FIXMEs/TODOs * [WIP] Fix most unit tests * Review new module system and fix minor issues * Push shutdown and restart events again via API * Set sleep mode via interface * Update example/template module * [WIP] Fix spn/cabin unit test * Remove deprecated UI elements * Make log output more similar for the logging transition phase * Switch spn hub and observer cmds to new module system * Fix log sources * Make worker mgr less error prone * Fix tests and minor issues * Fix observation hub * Improve shutdown and restart handling * Split up big connection.go source file * Move varint and dsd packages to structures repo * Improve expansion test * Fix linter warnings * Fix interception module on windows * Fix linter errors --------- Co-authored-by: Vladimir Stoilov <vladimir@safing.io>
240 lines
5 KiB
Go
240 lines
5 KiB
Go
package client
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/tevino/abool"
|
|
|
|
"github.com/safing/portmaster/base/log"
|
|
)
|
|
|
|
const (
|
|
backOffTimer = 1 * time.Second
|
|
|
|
offlineSignal uint8 = 0
|
|
onlineSignal uint8 = 1
|
|
)
|
|
|
|
// The Client enables easy interaction with the API.
|
|
type Client struct {
|
|
sync.Mutex
|
|
|
|
server string
|
|
|
|
onlineSignal chan struct{}
|
|
offlineSignal chan struct{}
|
|
shutdownSignal chan struct{}
|
|
lastSignal uint8
|
|
|
|
send chan *Message
|
|
resend chan *Message
|
|
recv chan *Message
|
|
|
|
operations map[string]*Operation
|
|
nextOpID uint64
|
|
|
|
lastError string
|
|
}
|
|
|
|
// NewClient returns a new Client.
|
|
func NewClient(server string) *Client {
|
|
c := &Client{
|
|
server: server,
|
|
onlineSignal: make(chan struct{}),
|
|
offlineSignal: make(chan struct{}),
|
|
shutdownSignal: make(chan struct{}),
|
|
lastSignal: offlineSignal,
|
|
send: make(chan *Message, 100),
|
|
resend: make(chan *Message, 1),
|
|
recv: make(chan *Message, 100),
|
|
operations: make(map[string]*Operation),
|
|
}
|
|
go c.handler()
|
|
return c
|
|
}
|
|
|
|
// Connect connects to the API once.
|
|
func (c *Client) Connect() error {
|
|
defer c.signalOffline()
|
|
|
|
err := c.wsConnect()
|
|
if err != nil && err.Error() != c.lastError {
|
|
log.Errorf("client: error connecting to Portmaster: %s", err)
|
|
c.lastError = err.Error()
|
|
}
|
|
return err
|
|
}
|
|
|
|
// StayConnected calls Connect again whenever the connection is lost.
|
|
func (c *Client) StayConnected() {
|
|
log.Infof("client: connecting to Portmaster at %s", c.server)
|
|
|
|
_ = c.Connect()
|
|
for {
|
|
select {
|
|
case <-time.After(backOffTimer):
|
|
log.Infof("client: reconnecting...")
|
|
_ = c.Connect()
|
|
case <-c.shutdownSignal:
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// Shutdown shuts the client down.
|
|
func (c *Client) Shutdown() {
|
|
select {
|
|
case <-c.shutdownSignal:
|
|
default:
|
|
close(c.shutdownSignal)
|
|
}
|
|
}
|
|
|
|
func (c *Client) signalOnline() {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
if c.lastSignal == offlineSignal {
|
|
log.Infof("client: went online")
|
|
c.offlineSignal = make(chan struct{})
|
|
close(c.onlineSignal)
|
|
c.lastSignal = onlineSignal
|
|
|
|
// resend unsent request
|
|
for _, op := range c.operations {
|
|
if op.resuscitationEnabled.IsSet() && op.request.sent != nil && op.request.sent.SetToIf(true, false) {
|
|
op.client.send <- op.request
|
|
log.Infof("client: resuscitated %s %s %s", op.request.OpID, op.request.Type, op.request.Key)
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
func (c *Client) signalOffline() {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
if c.lastSignal == onlineSignal {
|
|
log.Infof("client: went offline")
|
|
c.onlineSignal = make(chan struct{})
|
|
close(c.offlineSignal)
|
|
c.lastSignal = offlineSignal
|
|
|
|
// signal offline status to operations
|
|
for _, op := range c.operations {
|
|
op.handle(&Message{
|
|
OpID: op.ID,
|
|
Type: MsgOffline,
|
|
})
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
// Online returns a closed channel read if the client is connected to the API.
|
|
func (c *Client) Online() <-chan struct{} {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
return c.onlineSignal
|
|
}
|
|
|
|
// Offline returns a closed channel read if the client is not connected to the API.
|
|
func (c *Client) Offline() <-chan struct{} {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
return c.offlineSignal
|
|
}
|
|
|
|
func (c *Client) handler() {
|
|
for {
|
|
select {
|
|
|
|
case m := <-c.recv:
|
|
|
|
if m == nil {
|
|
return
|
|
}
|
|
|
|
c.Lock()
|
|
op, ok := c.operations[m.OpID]
|
|
c.Unlock()
|
|
|
|
if ok {
|
|
log.Tracef("client: [%s] received %s msg: %s", m.OpID, m.Type, m.Key)
|
|
op.handle(m)
|
|
} else {
|
|
log.Tracef("client: received message for unknown operation %s", m.OpID)
|
|
}
|
|
|
|
case <-c.shutdownSignal:
|
|
return
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// Operation represents a single operation by a client.
|
|
type Operation struct {
|
|
ID string
|
|
request *Message
|
|
client *Client
|
|
handleFunc func(*Message)
|
|
handler chan *Message
|
|
resuscitationEnabled *abool.AtomicBool
|
|
}
|
|
|
|
func (op *Operation) handle(m *Message) {
|
|
if op.handleFunc != nil {
|
|
op.handleFunc(m)
|
|
} else {
|
|
select {
|
|
case op.handler <- m:
|
|
default:
|
|
log.Warningf("client: handler channel of operation %s overflowed", op.ID)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Cancel the operation.
|
|
func (op *Operation) Cancel() {
|
|
op.client.Lock()
|
|
defer op.client.Unlock()
|
|
delete(op.client.operations, op.ID)
|
|
close(op.handler)
|
|
}
|
|
|
|
// Send sends a request to the API.
|
|
func (op *Operation) Send(command, text string, data interface{}) {
|
|
op.request = &Message{
|
|
OpID: op.ID,
|
|
Type: command,
|
|
Key: text,
|
|
Value: data,
|
|
sent: abool.NewBool(false),
|
|
}
|
|
log.Tracef("client: [%s] sending %s msg: %s", op.request.OpID, op.request.Type, op.request.Key)
|
|
op.client.send <- op.request
|
|
}
|
|
|
|
// EnableResuscitation will resend the request after reconnecting to the API.
|
|
func (op *Operation) EnableResuscitation() {
|
|
op.resuscitationEnabled.Set()
|
|
}
|
|
|
|
// NewOperation returns a new operation.
|
|
func (c *Client) NewOperation(handleFunc func(*Message)) *Operation {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
c.nextOpID++
|
|
op := &Operation{
|
|
ID: fmt.Sprintf("#%d", c.nextOpID),
|
|
client: c,
|
|
handleFunc: handleFunc,
|
|
handler: make(chan *Message, 100),
|
|
resuscitationEnabled: abool.NewBool(false),
|
|
}
|
|
c.operations[op.ID] = op
|
|
return op
|
|
}
|