2021-02-24 09:58:02 +00:00
|
|
|
package steward
|
|
|
|
|
|
|
|
import (
|
2021-04-07 16:54:08 +00:00
|
|
|
"context"
|
2021-02-24 09:58:02 +00:00
|
|
|
"fmt"
|
2021-03-12 11:08:11 +00:00
|
|
|
"log"
|
2021-08-11 08:11:57 +00:00
|
|
|
"sync"
|
2021-03-09 10:58:50 +00:00
|
|
|
"time"
|
2021-03-04 15:27:55 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-02-24 09:58:02 +00:00
|
|
|
)
|
|
|
|
|
2021-08-11 08:11:57 +00:00
|
|
|
// processes holds all the information about running processes
|
|
|
|
type processes struct {
|
2021-08-11 10:23:37 +00:00
|
|
|
// The main context for subscriber processes.
|
|
|
|
ctx context.Context
|
|
|
|
// cancel func to send cancel signal to the subscriber processes context.
|
|
|
|
cancel context.CancelFunc
|
2021-08-11 08:11:57 +00:00
|
|
|
// The active spawned processes
|
2022-04-01 05:09:55 +00:00
|
|
|
// server
|
|
|
|
server *server
|
2021-10-08 10:07:10 +00:00
|
|
|
active procsMap
|
2021-08-11 08:11:57 +00:00
|
|
|
// mutex to lock the map
|
2021-10-08 20:39:46 +00:00
|
|
|
// mu sync.RWMutex
|
2021-08-11 08:11:57 +00:00
|
|
|
// The last processID created
|
|
|
|
lastProcessID int
|
2021-08-18 10:16:21 +00:00
|
|
|
// The instance global prometheus registry.
|
|
|
|
metrics *metrics
|
2022-02-02 07:54:36 +00:00
|
|
|
// Waitgroup to keep track of all the processes started.
|
2021-08-12 07:21:56 +00:00
|
|
|
wg sync.WaitGroup
|
2022-01-12 06:42:41 +00:00
|
|
|
// tui
|
|
|
|
tui *tui
|
2022-01-19 04:44:20 +00:00
|
|
|
// errorKernel
|
|
|
|
errorKernel *errorKernel
|
2022-02-02 07:54:36 +00:00
|
|
|
// configuration
|
|
|
|
configuration *Configuration
|
|
|
|
|
2022-02-04 09:33:31 +00:00
|
|
|
// Signatures
|
2022-04-21 11:21:36 +00:00
|
|
|
nodeAuth *nodeAuth
|
2021-08-11 08:11:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// newProcesses will prepare and return a *processes which
|
|
|
|
// is map containing all the currently running processes.
|
2022-04-01 05:09:55 +00:00
|
|
|
func newProcesses(ctx context.Context, server *server) *processes {
|
2021-08-11 08:11:57 +00:00
|
|
|
p := processes{
|
2022-04-01 05:09:55 +00:00
|
|
|
server: server,
|
2022-02-02 07:54:36 +00:00
|
|
|
active: *newProcsMap(),
|
2022-04-01 05:09:55 +00:00
|
|
|
tui: server.tui,
|
|
|
|
errorKernel: server.errorKernel,
|
|
|
|
configuration: server.configuration,
|
2022-04-21 11:21:36 +00:00
|
|
|
nodeAuth: server.nodeAuth,
|
2022-04-01 06:51:14 +00:00
|
|
|
metrics: server.metrics,
|
2021-08-11 08:11:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-16 11:01:12 +00:00
|
|
|
// Prepare the parent context for the subscribers.
|
2021-08-11 10:23:37 +00:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
|
2021-10-08 11:42:19 +00:00
|
|
|
// // Start the processes map.
|
|
|
|
// go func() {
|
|
|
|
// p.active.run(ctx)
|
|
|
|
// }()
|
2021-10-08 10:07:10 +00:00
|
|
|
|
2021-08-11 10:23:37 +00:00
|
|
|
p.ctx = ctx
|
|
|
|
p.cancel = cancel
|
|
|
|
|
2021-08-11 08:11:57 +00:00
|
|
|
return &p
|
|
|
|
}
|
|
|
|
|
2021-10-08 06:16:12 +00:00
|
|
|
// ----------------------
|
|
|
|
|
2022-02-02 07:54:36 +00:00
|
|
|
// ----------------------
|
|
|
|
|
2021-10-08 06:16:12 +00:00
|
|
|
type procsMap struct {
|
2021-11-16 18:07:24 +00:00
|
|
|
procNames map[processName]process
|
2021-11-16 09:21:44 +00:00
|
|
|
mu sync.Mutex
|
2021-10-08 06:16:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newProcsMap() *procsMap {
|
|
|
|
cM := procsMap{
|
2021-11-16 18:07:24 +00:00
|
|
|
procNames: make(map[processName]process),
|
2021-10-08 06:16:12 +00:00
|
|
|
}
|
|
|
|
return &cM
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------
|
|
|
|
|
2021-08-11 08:11:57 +00:00
|
|
|
// Start all the subscriber processes.
|
|
|
|
// Takes an initial process as it's input. All processes
|
|
|
|
// will be tied to this single process's context.
|
|
|
|
func (p *processes) Start(proc process) {
|
2021-08-11 10:23:37 +00:00
|
|
|
// Set the context for the initial process.
|
|
|
|
proc.ctx = p.ctx
|
2021-03-26 08:08:47 +00:00
|
|
|
|
|
|
|
// --- Subscriber services that can be started via flags
|
|
|
|
|
2021-09-20 04:40:34 +00:00
|
|
|
{
|
|
|
|
log.Printf("Starting REQOpProcessList subscriber: %#v\n", proc.node)
|
|
|
|
sub := newSubject(REQOpProcessList, string(proc.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(proc.ctx, p.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-09-20 04:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
log.Printf("Starting REQOpProcessStart subscriber: %#v\n", proc.node)
|
|
|
|
sub := newSubject(REQOpProcessStart, string(proc.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(proc.ctx, p.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-09-20 04:40:34 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 09:53:17 +00:00
|
|
|
{
|
|
|
|
log.Printf("Starting REQOpProcessStop subscriber: %#v\n", proc.node)
|
|
|
|
sub := newSubject(REQOpProcessStop, string(proc.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(proc.ctx, p.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-09-20 09:53:17 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQToFileAppend {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQToFileAppend(proc)
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQToFile {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQToFile(proc)
|
2021-04-06 17:42:03 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 14:02:43 +00:00
|
|
|
if proc.configuration.StartSubREQToFileNACK {
|
|
|
|
proc.startup.subREQToFileNACK(proc)
|
|
|
|
}
|
|
|
|
|
2021-11-17 12:02:48 +00:00
|
|
|
if proc.configuration.StartSubREQCopyFileFrom {
|
|
|
|
proc.startup.subREQCopyFileFrom(proc)
|
|
|
|
}
|
|
|
|
|
2021-11-18 08:34:16 +00:00
|
|
|
if proc.configuration.StartSubREQCopyFileTo {
|
|
|
|
proc.startup.subREQCopyFileTo(proc)
|
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQHello {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQHello(proc)
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|
2021-02-24 14:43:31 +00:00
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQErrorLog {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQErrorLog(proc)
|
2021-02-24 14:43:31 +00:00
|
|
|
}
|
2021-03-09 10:58:50 +00:00
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQPing {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQPing(proc)
|
2021-03-26 08:08:47 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQPong {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQPong(proc)
|
2021-03-26 08:08:47 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQCliCommand {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQCliCommand(proc)
|
2021-03-26 08:08:47 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQToConsole {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQToConsole(proc)
|
2021-03-26 08:08:47 +00:00
|
|
|
}
|
|
|
|
|
2022-01-13 07:34:22 +00:00
|
|
|
if proc.configuration.EnableTUI {
|
|
|
|
proc.startup.subREQTuiToConsole(proc)
|
|
|
|
}
|
|
|
|
|
2021-08-11 08:11:57 +00:00
|
|
|
if proc.configuration.StartPubREQHello != 0 {
|
|
|
|
proc.startup.pubREQHello(proc)
|
2021-03-09 10:58:50 +00:00
|
|
|
}
|
2021-04-06 17:42:03 +00:00
|
|
|
|
2022-04-07 07:34:06 +00:00
|
|
|
if proc.configuration.StartPubREQPublicKeysGet {
|
|
|
|
proc.startup.pubREQPublicKeysGet(proc)
|
|
|
|
}
|
|
|
|
|
2022-04-07 12:18:28 +00:00
|
|
|
if proc.configuration.IsCentralAuth {
|
2022-04-07 07:34:06 +00:00
|
|
|
proc.startup.subREQPublicKeysGet(proc)
|
2022-04-20 16:33:52 +00:00
|
|
|
proc.startup.subREQPublicKeysAllow(proc)
|
2022-05-18 12:43:35 +00:00
|
|
|
proc.startup.subREQAclAddCommand(proc)
|
|
|
|
proc.startup.subREQAclDeleteCommand(proc)
|
2022-05-19 19:35:14 +00:00
|
|
|
proc.startup.subREQAclDeleteSource(proc)
|
2022-05-19 20:19:22 +00:00
|
|
|
proc.startup.subREQAclGroupNodesAddNode(proc)
|
|
|
|
proc.startup.subREQAclGroupNodesDeleteNode(proc)
|
2022-05-20 03:18:26 +00:00
|
|
|
proc.startup.subREQAclGroupNodesDeleteGroup(proc)
|
2022-05-20 03:59:34 +00:00
|
|
|
proc.startup.subREQAclGroupCommandsAddCommand(proc)
|
2022-05-20 04:27:46 +00:00
|
|
|
proc.startup.subREQAclGroupCommandsDeleteCommand(proc)
|
2022-05-20 11:56:17 +00:00
|
|
|
proc.startup.subREQAclGroupCommandsDeleteGroup(proc)
|
2022-05-21 05:09:35 +00:00
|
|
|
proc.startup.subREQAclExport(proc)
|
2022-05-21 05:26:36 +00:00
|
|
|
proc.startup.subREQAclImport(proc)
|
2022-04-07 07:34:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 04:26:01 +00:00
|
|
|
if proc.configuration.StartSubREQPublicKeysToNode {
|
|
|
|
proc.startup.subREQPublicKeysToNode(proc)
|
2022-04-07 07:34:06 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQHttpGet {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQHttpGet(proc)
|
2021-04-06 17:42:03 +00:00
|
|
|
}
|
2021-04-13 09:28:52 +00:00
|
|
|
|
2022-02-11 06:27:51 +00:00
|
|
|
if proc.configuration.StartSubREQHttpGetScheduled {
|
|
|
|
proc.startup.subREQHttpGetScheduled(proc)
|
|
|
|
}
|
|
|
|
|
2021-09-08 16:56:23 +00:00
|
|
|
if proc.configuration.StartSubREQTailFile {
|
2021-08-11 08:11:57 +00:00
|
|
|
proc.startup.subREQTailFile(proc)
|
2021-04-13 09:28:52 +00:00
|
|
|
}
|
2021-07-01 08:05:34 +00:00
|
|
|
|
2021-09-17 08:17:10 +00:00
|
|
|
if proc.configuration.StartSubREQCliCommandCont {
|
|
|
|
proc.startup.subREQCliCommandCont(proc)
|
2021-08-10 10:49:42 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 10:21:38 +00:00
|
|
|
if proc.configuration.StartSubREQRelay {
|
|
|
|
proc.startup.subREQRelay(proc)
|
|
|
|
}
|
|
|
|
|
2021-11-19 08:35:53 +00:00
|
|
|
proc.startup.subREQRelayInitial(proc)
|
|
|
|
|
2022-02-08 10:49:32 +00:00
|
|
|
proc.startup.subREQPublicKey(proc)
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|
2021-04-08 11:43:47 +00:00
|
|
|
|
2021-08-11 10:23:37 +00:00
|
|
|
// Stop all subscriber processes.
|
|
|
|
func (p *processes) Stop() {
|
2021-08-12 10:27:47 +00:00
|
|
|
log.Printf("info: canceling all subscriber processes...\n")
|
2021-08-11 10:23:37 +00:00
|
|
|
p.cancel()
|
2021-08-12 10:27:47 +00:00
|
|
|
p.wg.Wait()
|
|
|
|
log.Printf("info: done canceling all subscriber processes.\n")
|
|
|
|
|
2021-08-11 10:23:37 +00:00
|
|
|
}
|
|
|
|
|
2021-04-09 09:30:40 +00:00
|
|
|
// ---------------------------------------------------------------------------------------
|
2021-04-08 11:43:47 +00:00
|
|
|
|
2021-08-11 08:11:57 +00:00
|
|
|
// Startup holds all the startup methods for subscribers.
|
2021-08-18 10:16:21 +00:00
|
|
|
type startup struct {
|
2022-04-05 08:35:59 +00:00
|
|
|
server *server
|
|
|
|
centralAuth *centralAuth
|
|
|
|
metrics *metrics
|
2021-08-18 10:16:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
func newStartup(server *server) *startup {
|
2022-04-01 07:21:50 +00:00
|
|
|
s := startup{
|
2022-04-05 08:35:59 +00:00
|
|
|
server: server,
|
|
|
|
centralAuth: server.centralAuth,
|
|
|
|
metrics: server.metrics,
|
2022-04-01 07:21:50 +00:00
|
|
|
}
|
2021-08-18 10:16:21 +00:00
|
|
|
|
|
|
|
return &s
|
|
|
|
}
|
2021-04-09 09:30:40 +00:00
|
|
|
|
|
|
|
func (s startup) subREQHttpGet(p process) {
|
|
|
|
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting Http Get subscriber: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
sub := newSubject(REQHttpGet, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, p.processes.server, sub, processKindSubscriber, nil)
|
2021-11-09 13:01:42 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-02-11 06:27:51 +00:00
|
|
|
func (s startup) subREQHttpGetScheduled(p process) {
|
|
|
|
|
|
|
|
log.Printf("Starting Http Get Scheduled subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQHttpGetScheduled, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, p.server, sub, processKindSubscriber, nil)
|
2022-02-11 06:27:51 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2022-02-11 06:27:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-04-09 09:30:40 +00:00
|
|
|
func (s startup) pubREQHello(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting Hello Publisher: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
|
|
|
|
sub := newSubject(REQHello, p.configuration.CentralNodeName)
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindPublisher, nil)
|
2021-04-09 09:30:40 +00:00
|
|
|
|
|
|
|
// Define the procFunc to be used for the process.
|
2022-03-31 12:57:30 +00:00
|
|
|
proc.procFunc = func(ctx context.Context, procFuncCh chan Message) error {
|
|
|
|
ticker := time.NewTicker(time.Second * time.Duration(p.configuration.StartPubREQHello))
|
|
|
|
for {
|
|
|
|
|
2022-04-04 08:29:14 +00:00
|
|
|
// d := fmt.Sprintf("Hello from %v\n", p.node)
|
2022-04-19 16:30:00 +00:00
|
|
|
// Send the ed25519 public key used for signing as the payload of the message.
|
2022-04-21 11:21:36 +00:00
|
|
|
d := s.server.nodeAuth.SignPublicKey
|
2022-03-31 12:57:30 +00:00
|
|
|
|
|
|
|
m := Message{
|
|
|
|
FileName: "hello.log",
|
|
|
|
Directory: "hello-messages",
|
|
|
|
ToNode: Node(p.configuration.CentralNodeName),
|
|
|
|
FromNode: Node(p.node),
|
|
|
|
Data: []byte(d),
|
|
|
|
Method: REQHello,
|
|
|
|
ACKTimeout: 10,
|
|
|
|
Retries: 1,
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
2022-03-31 12:57:30 +00:00
|
|
|
|
|
|
|
sam, err := newSubjectAndMessage(m)
|
|
|
|
if err != nil {
|
|
|
|
// In theory the system should drop the message before it reaches here.
|
2022-04-01 06:43:14 +00:00
|
|
|
p.errorKernel.errSend(p, m, err)
|
2022-03-31 12:57:30 +00:00
|
|
|
log.Printf("error: ProcessesStart: %v\n", err)
|
|
|
|
}
|
|
|
|
proc.toRingbufferCh <- []subjectAndMessage{sam}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
|
|
|
case <-ctx.Done():
|
|
|
|
er := fmt.Errorf("info: stopped handleFunc for: publisher %v", proc.subject.name())
|
|
|
|
// sendErrorLogMessage(proc.toRingbufferCh, proc.node, er)
|
|
|
|
log.Printf("%v\n", er)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 07:34:06 +00:00
|
|
|
// pubREQPublicKeysGet defines the startup of a publisher that will send REQPublicKeysGet
|
|
|
|
// to central server and ask for publics keys, and to get them deliver back with a request
|
2022-04-20 04:26:01 +00:00
|
|
|
// of type pubREQPublicKeysToNode.
|
2022-04-07 07:34:06 +00:00
|
|
|
func (s startup) pubREQPublicKeysGet(p process) {
|
|
|
|
log.Printf("Starting PublicKeysGet Publisher: %#v\n", p.node)
|
|
|
|
|
|
|
|
sub := newSubject(REQPublicKeysGet, p.configuration.CentralNodeName)
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindPublisher, nil)
|
|
|
|
|
|
|
|
// Define the procFunc to be used for the process.
|
|
|
|
proc.procFunc = func(ctx context.Context, procFuncCh chan Message) error {
|
|
|
|
ticker := time.NewTicker(time.Second * time.Duration(p.configuration.PublicKeysGetInterval))
|
|
|
|
for {
|
|
|
|
|
2022-05-11 11:45:49 +00:00
|
|
|
// TODO: We could send with the hash of the currently stored keys,
|
|
|
|
// so we would know on the subscriber at central if it should send
|
|
|
|
// and update with new keys back.
|
|
|
|
|
2022-05-16 05:15:38 +00:00
|
|
|
proc.nodeAuth.publicKeys.mu.Lock()
|
|
|
|
fmt.Printf("\n ----> REQPublicKeysGet: sending our current hash: %v\n\n", []byte(proc.nodeAuth.publicKeys.keysAndHash.Hash[:]))
|
|
|
|
|
2022-04-07 07:34:06 +00:00
|
|
|
m := Message{
|
2022-05-16 05:15:38 +00:00
|
|
|
FileName: "publickeysget.log",
|
|
|
|
Directory: "publickeysget",
|
|
|
|
ToNode: Node(p.configuration.CentralNodeName),
|
|
|
|
FromNode: Node(p.node),
|
|
|
|
Data: []byte(proc.nodeAuth.publicKeys.keysAndHash.Hash[:]),
|
2022-04-07 07:34:06 +00:00
|
|
|
Method: REQPublicKeysGet,
|
2022-04-20 04:26:01 +00:00
|
|
|
ReplyMethod: REQPublicKeysToNode,
|
2022-04-07 07:34:06 +00:00
|
|
|
ACKTimeout: proc.configuration.DefaultMessageTimeout,
|
|
|
|
Retries: 1,
|
|
|
|
}
|
2022-05-16 05:15:38 +00:00
|
|
|
proc.nodeAuth.publicKeys.mu.Unlock()
|
2022-04-07 07:34:06 +00:00
|
|
|
|
|
|
|
sam, err := newSubjectAndMessage(m)
|
|
|
|
if err != nil {
|
|
|
|
// In theory the system should drop the message before it reaches here.
|
|
|
|
p.errorKernel.errSend(p, m, err)
|
|
|
|
log.Printf("error: ProcessesStart: %v\n", err)
|
|
|
|
}
|
|
|
|
proc.toRingbufferCh <- []subjectAndMessage{sam}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
|
|
|
case <-ctx.Done():
|
|
|
|
er := fmt.Errorf("info: stopped handleFunc for: publisher %v", proc.subject.name())
|
|
|
|
// sendErrorLogMessage(proc.toRingbufferCh, proc.node, er)
|
|
|
|
log.Printf("%v\n", er)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQPublicKeysGet(p process) {
|
|
|
|
log.Printf("Starting Public keys get subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQPublicKeysGet, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-04-20 16:33:52 +00:00
|
|
|
func (s startup) subREQPublicKeysAllow(p process) {
|
|
|
|
log.Printf("Starting Public keys allow subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQPublicKeysAllow, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:26:01 +00:00
|
|
|
func (s startup) subREQPublicKeysToNode(p process) {
|
|
|
|
log.Printf("Starting Public keys to Node subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQPublicKeysToNode, string(p.node))
|
2022-04-07 07:34:06 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-18 12:43:35 +00:00
|
|
|
func (s startup) subREQAclAddCommand(p process) {
|
|
|
|
log.Printf("Starting Acl Add Command subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclAddCommand, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQAclDeleteCommand(p process) {
|
|
|
|
log.Printf("Starting Acl Delete Command subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclDeleteCommand, string(p.node))
|
2022-05-18 09:26:06 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-19 19:35:14 +00:00
|
|
|
func (s startup) subREQAclDeleteSource(p process) {
|
|
|
|
log.Printf("Starting Acl Delete Source subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclDeleteSource, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-19 20:19:22 +00:00
|
|
|
func (s startup) subREQAclGroupNodesAddNode(p process) {
|
|
|
|
log.Printf("Starting Acl Add node to nodeGroup subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclGroupNodesAddNode, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQAclGroupNodesDeleteNode(p process) {
|
|
|
|
log.Printf("Starting Acl Delete node from nodeGroup subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclGroupNodesDeleteNode, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-20 03:18:26 +00:00
|
|
|
func (s startup) subREQAclGroupNodesDeleteGroup(p process) {
|
|
|
|
log.Printf("Starting Acl Delete nodeGroup subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclGroupNodesDeleteGroup, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-20 03:59:34 +00:00
|
|
|
func (s startup) subREQAclGroupCommandsAddCommand(p process) {
|
|
|
|
log.Printf("Starting Acl add command to command group subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclGroupCommandsAddCommand, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-20 04:27:46 +00:00
|
|
|
func (s startup) subREQAclGroupCommandsDeleteCommand(p process) {
|
|
|
|
log.Printf("Starting Acl delete command from command group subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclGroupCommandsDeleteCommand, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-20 11:56:17 +00:00
|
|
|
func (s startup) subREQAclGroupCommandsDeleteGroup(p process) {
|
|
|
|
log.Printf("Starting Acl delete command group subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclGroupCommandsDeleteGroup, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-21 05:09:35 +00:00
|
|
|
func (s startup) subREQAclExport(p process) {
|
|
|
|
log.Printf("Starting Acl export subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclExport, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2022-05-21 05:26:36 +00:00
|
|
|
func (s startup) subREQAclImport(p process) {
|
|
|
|
log.Printf("Starting Acl import subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQAclImport, string(p.node))
|
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
|
|
|
}
|
|
|
|
|
2021-04-13 15:22:25 +00:00
|
|
|
func (s startup) subREQToConsole(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting Text To Console subscriber: %#v\n", p.node)
|
2021-04-13 15:22:25 +00:00
|
|
|
sub := newSubject(REQToConsole, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2022-01-13 07:34:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQTuiToConsole(p process) {
|
|
|
|
log.Printf("Starting Tui To Console subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQTuiToConsole, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQCliCommand(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting CLICommand Request subscriber: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
sub := newSubject(REQCliCommand, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQPong(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting Pong subscriber: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
sub := newSubject(REQPong, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQPing(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting Ping Request subscriber: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
sub := newSubject(REQPing, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQErrorLog(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting REQErrorLog subscriber: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
sub := newSubject(REQErrorLog, "errorCentral")
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
2022-01-01 09:13:35 +00:00
|
|
|
// subREQHello is the handler that is triggered when we are receiving a hello
|
|
|
|
// message. To keep the state of all the hello's received from nodes we need
|
|
|
|
// to also start a procFunc that will live as a go routine tied to this process,
|
|
|
|
// where the procFunc will receive messages from the handler when a message is
|
|
|
|
// received, the handler will deliver the message to the procFunc on the
|
|
|
|
// proc.procFuncCh, and we can then read that message from the procFuncCh in
|
|
|
|
// the procFunc running.
|
2021-04-09 09:30:40 +00:00
|
|
|
func (s startup) subREQHello(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting Hello subscriber: %#v\n", p.node)
|
2021-04-09 09:30:40 +00:00
|
|
|
sub := newSubject(REQHello, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-04-09 09:30:40 +00:00
|
|
|
|
|
|
|
// The reason for running the say hello subscriber as a procFunc is that
|
|
|
|
// a handler are not able to hold state, and we need to hold the state
|
|
|
|
// of the nodes we've received hello's from in the sayHelloNodes map,
|
|
|
|
// which is the information we pass along to generate metrics.
|
2022-03-31 12:57:30 +00:00
|
|
|
proc.procFunc = func(ctx context.Context, procFuncCh chan Message) error {
|
2022-04-04 08:29:14 +00:00
|
|
|
// sayHelloNodes := make(map[Node]struct{})
|
2022-03-31 12:57:30 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
// Receive a copy of the message sent from the method handler.
|
|
|
|
var m Message
|
|
|
|
|
|
|
|
select {
|
|
|
|
case m = <-procFuncCh:
|
|
|
|
case <-ctx.Done():
|
|
|
|
er := fmt.Errorf("info: stopped handleFunc for: subscriber %v", proc.subject.name())
|
|
|
|
// sendErrorLogMessage(proc.toRingbufferCh, proc.node, er)
|
|
|
|
log.Printf("%v\n", er)
|
|
|
|
return nil
|
2022-03-31 12:54:39 +00:00
|
|
|
}
|
2022-03-31 12:57:30 +00:00
|
|
|
|
2022-05-12 07:25:10 +00:00
|
|
|
s.centralAuth.pki.addPublicKey(proc, m)
|
2022-03-31 12:57:30 +00:00
|
|
|
|
|
|
|
// update the prometheus metrics
|
2022-04-20 16:33:52 +00:00
|
|
|
|
2022-05-16 05:15:38 +00:00
|
|
|
s.server.centralAuth.pki.nodesAcked.mu.Lock()
|
|
|
|
mapLen := len(s.server.centralAuth.pki.nodesAcked.keysAndHash.Keys)
|
|
|
|
s.server.centralAuth.pki.nodesAcked.mu.Unlock()
|
2022-04-20 16:33:52 +00:00
|
|
|
s.metrics.promHelloNodesTotal.Set(float64(mapLen))
|
2022-04-01 07:21:50 +00:00
|
|
|
s.metrics.promHelloNodesContactLast.With(prometheus.Labels{"nodeName": string(m.FromNode)}).SetToCurrentTime()
|
2022-03-31 12:57:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 15:15:13 +00:00
|
|
|
func (s startup) subREQToFile(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting text to file subscriber: %#v\n", p.node)
|
2021-04-13 15:15:13 +00:00
|
|
|
sub := newSubject(REQToFile, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-09 13:01:42 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-04-09 09:30:40 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 14:02:43 +00:00
|
|
|
func (s startup) subREQToFileNACK(p process) {
|
|
|
|
log.Printf("Starting text to file subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQToFileNACK, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2022-03-04 14:02:43 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2022-03-04 14:02:43 +00:00
|
|
|
}
|
|
|
|
|
2021-11-17 12:02:48 +00:00
|
|
|
func (s startup) subREQCopyFileFrom(p process) {
|
|
|
|
log.Printf("Starting copy file from subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQCopyFileFrom, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-17 12:02:48 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-11-17 12:02:48 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 08:34:16 +00:00
|
|
|
func (s startup) subREQCopyFileTo(p process) {
|
|
|
|
log.Printf("Starting copy file to subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQCopyFileTo, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-18 08:34:16 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-11-18 08:34:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 13:54:04 +00:00
|
|
|
func (s startup) subREQToFileAppend(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting text logging subscriber: %#v\n", p.node)
|
2021-04-13 13:54:04 +00:00
|
|
|
sub := newSubject(REQToFileAppend, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-09 13:01:42 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-04-08 11:43:47 +00:00
|
|
|
}
|
2021-04-13 09:28:52 +00:00
|
|
|
|
|
|
|
func (s startup) subREQTailFile(p process) {
|
2021-04-16 11:43:58 +00:00
|
|
|
log.Printf("Starting tail log files subscriber: %#v\n", p.node)
|
2021-04-13 09:28:52 +00:00
|
|
|
sub := newSubject(REQTailFile, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-09 13:01:42 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-04-13 09:28:52 +00:00
|
|
|
}
|
2021-07-01 08:05:34 +00:00
|
|
|
|
2021-09-17 08:17:10 +00:00
|
|
|
func (s startup) subREQCliCommandCont(p process) {
|
2021-08-10 10:49:42 +00:00
|
|
|
log.Printf("Starting cli command with continous delivery: %#v\n", p.node)
|
2021-09-17 08:17:10 +00:00
|
|
|
sub := newSubject(REQCliCommandCont, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-10 10:21:38 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-11-10 10:21:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQRelay(p process) {
|
2021-12-06 13:57:02 +00:00
|
|
|
nodeWithRelay := fmt.Sprintf("*.%v", p.node)
|
|
|
|
log.Printf("Starting Relay: %#v\n", nodeWithRelay)
|
|
|
|
sub := newSubject(REQRelay, string(nodeWithRelay))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-19 08:35:53 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-11-19 08:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s startup) subREQRelayInitial(p process) {
|
|
|
|
log.Printf("Starting Relay Initial: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQRelayInitial, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2021-11-09 13:01:42 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2021-08-10 10:49:42 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 10:49:32 +00:00
|
|
|
func (s startup) subREQPublicKey(p process) {
|
|
|
|
log.Printf("Starting get Public Key subscriber: %#v\n", p.node)
|
|
|
|
sub := newSubject(REQPublicKey, string(p.node))
|
2022-04-01 05:09:55 +00:00
|
|
|
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
|
2022-02-08 10:49:32 +00:00
|
|
|
|
2022-04-01 05:09:55 +00:00
|
|
|
go proc.spawnWorker()
|
2022-02-08 10:49:32 +00:00
|
|
|
}
|
|
|
|
|
2021-08-11 10:23:37 +00:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
// Print the content of the processes map.
|
|
|
|
func (p *processes) printProcessesMap() {
|
|
|
|
log.Printf("*** Output of processes map :\n")
|
2021-10-08 10:07:10 +00:00
|
|
|
|
2021-11-16 09:21:44 +00:00
|
|
|
{
|
|
|
|
p.active.mu.Lock()
|
2021-10-08 10:07:10 +00:00
|
|
|
|
2021-11-16 18:07:24 +00:00
|
|
|
for pName, proc := range p.active.procNames {
|
|
|
|
log.Printf("* proc - pub/sub: %v, procName in map: %v , id: %v, subject: %v\n", proc.processKind, pName, proc.processID, proc.subject.name())
|
2021-08-11 10:23:37 +00:00
|
|
|
}
|
|
|
|
|
2022-04-01 07:21:50 +00:00
|
|
|
p.metrics.promProcessesTotal.Set(float64(len(p.active.procNames)))
|
2021-11-16 09:21:44 +00:00
|
|
|
|
|
|
|
p.active.mu.Unlock()
|
|
|
|
}
|
2021-08-11 10:23:37 +00:00
|
|
|
|
|
|
|
}
|