This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathplugin_manager.go
852 lines (751 loc) · 23.8 KB
/
plugin_manager.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
/*
http://www.apache.org/licenses/LICENSE-2.0.txt
Copyright 2015 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package control PluginManger manages loading, unloading, and swapping
// of plugins
package control
import (
"crypto/sha256"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"os"
"path/filepath"
"runtime"
"strconv"
"strings"
"sync"
"time"
"github.com/appc/spec/schema"
log "github.com/sirupsen/logrus"
"github.com/intelsdi-x/gomit"
"github.com/intelsdi-x/snap/control/plugin"
"github.com/intelsdi-x/snap/control/plugin/client"
"github.com/intelsdi-x/snap/control/plugin/cpolicy"
"github.com/intelsdi-x/snap/core"
"github.com/intelsdi-x/snap/core/cdata"
"github.com/intelsdi-x/snap/core/serror"
)
const (
// DetectedState is the detected state of a plugin
DetectedState pluginState = "detected"
// LoadingState is the loading state of a plugin
LoadingState pluginState = "loading"
// LoadedState is the loaded state of a plugin
LoadedState pluginState = "loaded"
// UnloadedState is the unloaded state of a plugin
UnloadedState pluginState = "unloaded"
)
var (
// ErrPluginNotFound - error message when a plugin is not found
ErrPluginNotFound = errors.New("plugin not found")
// ErrPluginAlreadyLoaded - error message when a plugin is already loaded
ErrPluginAlreadyLoaded = errors.New("plugin is already loaded")
// ErrPluginCannotBeUnloaded - error message when a plugin cannot be unloaded because is already in use by running task(s)
ErrPluginCannotBeUnloaded = errors.New("Plugin is used by running task. Stop the task to be able to unload the plugin")
// ErrPluginNotInLoadedState - error message when a plugin must ne in a loaded state
ErrPluginNotInLoadedState = errors.New("Plugin must be in a LoadedState")
pmLogger = log.WithField("_module", "control-plugin-mgr")
defaultManagerOpts = []pluginManagerOpt{optDefaultManagerSecurity()}
)
func errorPluginCannotBeUnloaded(impactedTaskIDs []string) error {
var impactedTasks string
for _, id := range impactedTaskIDs {
impactedTasks += fmt.Sprintf("\n%s", id)
}
return fmt.Errorf("%s:%s", ErrPluginCannotBeUnloaded, impactedTasks)
}
type pluginState string
type loadedPlugins struct {
*sync.RWMutex
table map[string]*loadedPlugin
}
func newLoadedPlugins() *loadedPlugins {
return &loadedPlugins{
RWMutex: &sync.RWMutex{},
table: make(map[string]*loadedPlugin),
}
}
// add adds a loadedPlugin pointer to the table
func (l *loadedPlugins) add(lp *loadedPlugin) serror.SnapError {
l.Lock()
defer l.Unlock()
if _, exists := l.table[lp.Key()]; exists {
return serror.New(ErrPluginAlreadyLoaded, map[string]interface{}{
"plugin-name": lp.Meta.Name,
"plugin-version": lp.Meta.Version,
"plugin-type": lp.Type.String(),
})
}
l.table[lp.Key()] = lp
return nil
}
// get retrieves a plugin from the table
func (l *loadedPlugins) get(key string) (*loadedPlugin, error) {
l.RLock()
defer l.RUnlock()
lp, ok := l.table[key]
if !ok {
tnv := strings.Split(key, core.Separator)
if len(tnv) != 3 {
return nil, ErrBadKey
}
v, err := strconv.Atoi(tnv[2])
if err != nil {
return nil, ErrBadKey
}
if v < 1 {
pmLogger.Info("finding latest plugin")
return l.findLatest(tnv[0], tnv[1])
}
return nil, ErrPluginNotFound
}
return lp, nil
}
func (l *loadedPlugins) remove(key string) {
l.Lock()
delete(l.table, key)
l.Unlock()
}
func (l *loadedPlugins) findLatest(typeName, name string) (*loadedPlugin, error) {
l.RLock()
defer l.RUnlock()
// quick check to see if there exists a plugin with the name/version we're looking for.
// if not we just return ErrNotFound before we check versions.
var latest *loadedPlugin
for _, lp := range l.table {
if lp.TypeName() == typeName && lp.Name() == name {
latest = lp
break
}
}
if latest != nil {
for _, lp := range l.table {
if lp.TypeName() == typeName && lp.Name() == name && lp.Version() > latest.Version() {
latest = lp
}
}
return latest, nil
}
return nil, ErrPluginNotFound
}
// the struct representing a plugin that is loaded into snap
type pluginDetails struct {
CheckSum [sha256.Size]byte
Exec []string
ExecPath string
IsPackage bool
Manifest *schema.ImageManifest
Path string
Signed bool
Signature []byte
CertPath string
KeyPath string
CACertPaths string
TLSEnabled bool
Uri *url.URL
}
type loadedPlugin struct {
Meta plugin.PluginMeta
Details *pluginDetails
Type plugin.PluginType
State pluginState
Token string
LoadedTime time.Time
ConfigPolicy *cpolicy.ConfigPolicy
}
// Name returns plugin name
// implements the CatalogedPlugin interface
func (lp *loadedPlugin) Name() string {
return lp.Meta.Name
}
// PluginPath returns the plugin path
func (lp *loadedPlugin) PluginPath() string {
return lp.Details.Path
}
// Key returns plugin type, name and version
func (lp *loadedPlugin) Key() string {
return fmt.Sprintf("%s"+core.Separator+"%s"+core.Separator+"%d", lp.TypeName(), lp.Name(), lp.Version())
}
// Version returns plugin version
// implements the CatalogedPlugin interface
func (lp *loadedPlugin) Version() int {
return lp.Meta.Version
}
// TypeName returns plugin type as a string
// implements the CatalogedPlugin interface
func (lp *loadedPlugin) TypeName() string {
return lp.Type.String()
}
// Status returns current plugin state
// implements the CatalogedPlugin interface
func (lp *loadedPlugin) Status() string {
return string(lp.State)
}
// IsSigned returns plugin signing as a bool
// implements the CatalogedPlugin interface
func (lp *loadedPlugin) IsSigned() bool {
return lp.Details.Signed
}
// LoadedTimestamp returns a unix timestamp of the LoadTime of a plugin
// implements the CatalogedPlugin interface
func (lp *loadedPlugin) LoadedTimestamp() *time.Time {
return &lp.LoadedTime
}
func (lp *loadedPlugin) Policy() *cpolicy.ConfigPolicy {
return lp.ConfigPolicy
}
// the struct representing the object responsible for
// loading and unloading plugins
type pluginManager struct {
pluginLoadTimeout int
metricCatalog catalogsMetrics
loadedPlugins *loadedPlugins
logPath string
pluginConfig *pluginConfig
pluginTags map[string]map[string]string
pprof bool
tempDirPath string
grpcSecurity client.GRPCSecurity
}
func newPluginManager(opts ...pluginManagerOpt) *pluginManager {
logPath := "/tmp"
if runtime.GOOS == "windows" {
logPath = `c:\temp`
}
p := &pluginManager{
pluginLoadTimeout: defaultPluginLoadTimeout,
loadedPlugins: newLoadedPlugins(),
logPath: logPath,
pluginConfig: newPluginConfig(),
pluginTags: newPluginTags(),
}
mergedOpts := append([]pluginManagerOpt{}, defaultManagerOpts...)
mergedOpts = append(mergedOpts, opts...)
for _, opt := range mergedOpts {
opt(p)
}
return p
}
type pluginManagerOpt func(*pluginManager)
// OptSetPprof sets the pprof flag on the plugin manager
func OptSetTempDirPath(path string) pluginManagerOpt {
return func(p *pluginManager) {
p.tempDirPath = path
}
}
// OptSetPprof sets the pprof flag on the plugin manager
func OptSetPprof(pprof bool) pluginManagerOpt {
return func(p *pluginManager) {
p.pprof = pprof
}
}
// OptEnableManagerTLS enables the TLS configuration in plugin manager.
func OptEnableManagerTLS(grpcSecurity client.GRPCSecurity) pluginManagerOpt {
return func(p *pluginManager) {
p.grpcSecurity = grpcSecurity
}
}
// OptSetPluginConfig sets the config on the plugin manager
func OptSetPluginConfig(cf *pluginConfig) pluginManagerOpt {
return func(p *pluginManager) {
p.pluginConfig = cf
}
}
// OptSetPluginTags sets the tags on the plugin manager
func OptSetPluginTags(tags map[string]map[string]string) pluginManagerOpt {
return func(p *pluginManager) {
p.pluginTags = tags
}
}
func optDefaultManagerSecurity() pluginManagerOpt {
return func(p *pluginManager) {
p.grpcSecurity = client.SecurityTLSOff()
}
}
// SetPluginLoadTimeout sets plugin load timeout
func (p *pluginManager) SetPluginLoadTimeout(to int) {
p.pluginLoadTimeout = to
}
// SetPluginConfig sets plugin config
func (p *pluginManager) SetPluginConfig(cf *pluginConfig) {
p.pluginConfig = cf
}
// GetPluginConfig gets the plugin config
func (p *pluginManager) GetPluginConfig() *pluginConfig {
return p.pluginConfig
}
// SetPluginTags sets plugin tags
func (p *pluginManager) SetPluginTags(tags map[string]map[string]string) {
p.pluginTags = tags
}
// SetMetricCatalog sets metric catalog
func (p *pluginManager) SetMetricCatalog(mc catalogsMetrics) {
p.metricCatalog = mc
}
// LoadPlugin is the method for loading a plugin and
// saving plugin into the LoadedPlugins array
func (p *pluginManager) LoadPlugin(details *pluginDetails, emitter gomit.Emitter) (*loadedPlugin, serror.SnapError) {
type result struct {
lp *loadedPlugin
err serror.SnapError
}
resultChan := make(chan result)
go func() {
lPlugin := new(loadedPlugin)
lPlugin.Details = details
lPlugin.State = DetectedState
var (
ePlugin *plugin.ExecutablePlugin
resp plugin.Response
err error
)
if lPlugin.Details.Uri == nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"path": filepath.Base(lPlugin.Details.Exec[0]),
}).Info("plugin load called")
// We will create commands by appending the ExecPath to the actual command.
// The ExecPath is a temporary location where the plugin/package will be
// run from.
commands := make([]string, len(lPlugin.Details.Exec))
for i, e := range lPlugin.Details.Exec {
commands[i] = filepath.Join(lPlugin.Details.ExecPath, e)
}
ePlugin, err = plugin.NewExecutablePlugin(
p.GenerateArgs(int(log.GetLevel())).
SetCertPath(details.CertPath).
SetKeyPath(details.KeyPath).
SetCACertPaths(details.CACertPaths).
SetTLSEnabled(details.TLSEnabled),
commands...)
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": err.Error(),
}).Error("load plugin error while creating executable plugin")
resultChan <- result{nil, serror.New(err)}
return
}
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"path": lPlugin.Details.Exec,
}).Debug(fmt.Sprintf("plugin load timeout set to %ds", p.pluginLoadTimeout))
resp, err = ePlugin.Run(time.Second * time.Duration(p.pluginLoadTimeout))
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": err.Error(),
}).Error("load plugin error when starting plugin")
resultChan <- result{nil, serror.New(err)}
return
}
ePlugin.SetName(resp.Meta.Name)
key := fmt.Sprintf("%s"+core.Separator+"%s"+core.Separator+"%d", resp.Meta.Type.String(), resp.Meta.Name, resp.Meta.Version)
if _, exists := p.loadedPlugins.table[key]; exists {
resultChan <- result{nil, serror.New(ErrPluginAlreadyLoaded, map[string]interface{}{
"plugin-name": resp.Meta.Name,
"plugin-version": resp.Meta.Version,
"plugin-type": resp.Type.String(),
})}
}
} else {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"uri": lPlugin.Details.Uri.String(),
}).Info("plugin load called")
res, err := http.Get(lPlugin.Details.Uri.String())
if err != nil {
resultChan <- result{nil, serror.New(err)}
return
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
resultChan <- result{nil, serror.New(err)}
return
}
err = json.Unmarshal(body, &resp)
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": err.Error(),
}).Error("error during json unmarshal")
}
}
ap, err := newAvailablePlugin(resp, emitter, ePlugin, p.grpcSecurity)
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": err.Error(),
}).Error("load plugin error while creating available plugin")
resultChan <- result{nil, serror.New(err)}
return
}
if lPlugin.Details.Uri != nil {
ap.SetIsRemote(true)
}
if resp.Meta.Unsecure {
err = ap.client.Ping()
} else {
err = ap.client.SetKey()
}
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": err.Error(),
}).Error("load plugin error while pinging the plugin")
resultChan <- result{nil, serror.New(err)}
return
}
// Get the ConfigPolicy and add it to the loaded plugin
c, ok := ap.client.(plugin.Plugin)
if !ok {
resultChan <- result{nil, serror.New(errors.New("missing GetConfigPolicy function"))}
return
}
cp, err := c.GetConfigPolicy()
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"plugin-type": "collector",
"error": err.Error(),
"plugin-name": ap.Name(),
"plugin-version": ap.Version(),
"plugin-id": ap.ID(),
}).Error("error in getting config policy")
resultChan <- result{nil, serror.New(err)}
return
}
lPlugin.ConfigPolicy = cp
lPlugin.Meta = resp.Meta
lPlugin.Type = resp.Type
lPlugin.Token = resp.Token
lPlugin.LoadedTime = time.Now()
lPlugin.State = LoadedState
if resp.Type == plugin.CollectorPluginType || resp.Type == plugin.StreamCollectorPluginType {
cfgNode := p.pluginConfig.getPluginConfigDataNode(core.PluginType(resp.Type), resp.Meta.Name, resp.Meta.Version)
if lPlugin.ConfigPolicy != nil {
// Get plugin config defaults
defaults := cdata.NewNode()
for _, cpolicy := range lPlugin.ConfigPolicy.GetAll() {
_, errs := cpolicy.AddDefaults(defaults.Table())
if len(errs.Errors()) > 0 {
for _, err := range errs.Errors() {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"plugin-type": "collector",
"plugin-name": ap.Name(),
"plugin-version": ap.Version(),
"plugin-id": ap.ID(),
}).Error(err.Error())
}
resultChan <- result{nil, serror.New(errors.New("error getting default config"))}
return
}
}
// Update config policy with defaults
cfgNode = cfgNode.ReverseMerge(defaults)
cp, err = c.GetConfigPolicy()
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"plugin-type": "collector",
"error": err.Error(),
"plugin-name": ap.Name(),
"plugin-version": ap.Version(),
"plugin-id": ap.ID(),
}).Error("error in getting config policy")
resultChan <- result{nil, serror.New(err)}
return
}
lPlugin.ConfigPolicy = cp
}
colClient := ap.client.(client.PluginCollectorClient)
if !ap.isRemote {
defer ap.client.(client.PluginCollectorClient).Close()
}
cfg := plugin.ConfigType{
ConfigDataNode: cfgNode,
}
metricTypes, err := colClient.GetMetricTypes(cfg)
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"plugin-type": resp.Type.String(),
"error": err.Error(),
"plugin-name": ap.Name(),
"plugin-version": ap.Version(),
}).Error("error in getting metric types")
resultChan <- result{nil, serror.New(err)}
return
}
// Add metric types to metric catalog
for _, nmt := range metricTypes {
// If the version is 0 default it to the plugin version
// This honors the plugins explicit version but falls back
// to the plugin version as default
if nmt.Version() < 1 {
// Since we have to override version we convert to a internal struct
nmt = &metricType{
namespace: nmt.Namespace(),
version: resp.Meta.Version,
lastAdvertisedTime: nmt.LastAdvertisedTime(),
config: nmt.Config(),
data: nmt.Data(),
tags: nmt.Tags(),
description: nmt.Description(),
unit: nmt.Unit(),
}
}
// We quit and throw an error on bad metric versions (<1)
// the is a safety catch otherwise the catalog will be corrupted
if nmt.Version() < 1 {
err := errors.New("Bad metric version from plugin")
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"plugin-name": resp.Meta.Name,
"plugin-version": resp.Meta.Version,
"plugin-type": resp.Meta.Type.String(),
"plugin-path": filepath.Base(lPlugin.Details.ExecPath),
"metric-namespace": nmt.Namespace(),
"metric-version": nmt.Version(),
"error": err.Error(),
}).Error("received metric with bad version")
resultChan <- result{nil, serror.New(err)}
return
}
//Add standard tags
nmt = p.AddStandardAndWorkflowTags(nmt, nil)
if err := p.metricCatalog.AddLoadedMetricType(lPlugin, nmt); err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"plugin-name": resp.Meta.Name,
"plugin-version": resp.Meta.Version,
"plugin-type": resp.Meta.Type.String(),
"plugin-path": filepath.Base(lPlugin.Details.ExecPath),
"metric-namespace": nmt.Namespace(),
"metric-version": nmt.Version(),
"error": err.Error(),
}).Error("error adding loaded metric type")
resultChan <- result{nil, serror.New(err)}
return
}
}
}
if lPlugin.Details.Uri == nil {
// Added so clients can adequately clean up connections
ap.client.Kill("Retrieved necessary plugin info")
err = ePlugin.Kill()
if err != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": err.Error(),
}).Error("load plugin error while killing plugin executable plugin")
resultChan <- result{nil, serror.New(err)}
return
}
}
if resp.State != plugin.PluginSuccess {
e := fmt.Errorf("plugin loading did not succeed: %s\n", resp.ErrorMessage)
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": e,
"plugin response": resp.ErrorMessage,
}).Error("load plugin error")
resultChan <- result{nil, serror.New(e)}
return
}
aErr := p.loadedPlugins.add(lPlugin)
if aErr != nil {
pmLogger.WithFields(log.Fields{
"_block": "load-plugin",
"error": aErr,
}).Error("load plugin error while adding loaded plugin to load plugins collection")
resultChan <- result{nil, aErr}
}
if ap.isRemote && aErr == nil {
// monitor standalone plugins. Unload them from the plugin catalog and metrics list
// when we detect they are no longer online.
go func() {
defer ap.client.(client.PluginCollectorClient).Close()
for {
time.Sleep(5 * time.Second)
go ap.CheckHealth()
if ap.failedHealthChecks > 3 {
p.UnloadPlugin(lPlugin)
return
}
if _, err := p.loadedPlugins.get(lPlugin.Key()); err != nil {
// prevent leaking routine when plugin is unloaded normally
return
}
}
}()
}
resultChan <- result{lPlugin, nil}
return
}()
select {
case results := <-resultChan:
return results.lp, results.err
case <-time.After(time.Second * time.Duration(p.pluginLoadTimeout)):
e := serror.New(errors.New("timed out waiting for plugin to load"))
return nil, e
}
}
// UnloadPlugin unloads a plugin from the LoadedPlugins table
func (p *pluginManager) UnloadPlugin(pl core.Plugin) (*loadedPlugin, serror.SnapError) {
plugin, err := p.loadedPlugins.get(fmt.Sprintf("%s"+core.Separator+"%s"+core.Separator+"%d", pl.TypeName(), pl.Name(), pl.Version()))
if err != nil {
se := serror.New(ErrPluginNotFound, map[string]interface{}{
"plugin-name": pl.Name(),
"plugin-version": pl.Version(),
"plugin-type": pl.TypeName(),
})
return nil, se
}
pmLogger.WithFields(log.Fields{
"_block": "unload-plugin",
"path": plugin.Details.Exec,
}).Info("plugin unload called")
if plugin.State != LoadedState {
se := serror.New(ErrPluginNotInLoadedState, map[string]interface{}{
"plugin-name": plugin.Name(),
"plugin-version": plugin.Version(),
"plugin-type": pl.TypeName(),
})
return nil, se
}
pmLogger.WithFields(log.Fields{
"plugin-type": plugin.TypeName(),
"plugin-name": plugin.Name(),
"plugin-version": plugin.Version(),
"plugin-path": plugin.Details.Path,
}).Debugf("Removing plugin")
// remove plugin binary from tempDirPath (do not apply for remote plugin)
if strings.Contains(plugin.Details.Path, p.tempDirPath) {
if err := os.RemoveAll(filepath.Dir(plugin.Details.Path)); err != nil {
pmLogger.WithFields(log.Fields{
"plugin-type": plugin.TypeName(),
"plugin-name": plugin.Name(),
"plugin-version": plugin.Version(),
"plugin-path": plugin.Details.Path,
}).Error(err)
se := serror.New(err)
se.SetFields(map[string]interface{}{
"plugin-type": plugin.TypeName(),
"plugin-name": plugin.Name(),
"plugin-version": plugin.Version(),
"plugin-path": plugin.Details.Path,
})
return nil, se
}
} else {
pmLogger.WithFields(log.Fields{
"plugin-type": plugin.TypeName(),
"plugin-name": plugin.Name(),
"plugin-version": plugin.Version(),
"plugin-path": plugin.Details.Path,
}).Debug("Nothing to delete as temp path is empty")
}
// remove plugin key
p.loadedPlugins.remove(plugin.Key())
// remove any metrics from the catalog if this was a collector
if plugin.TypeName() == core.CollectorPluginType.String() || plugin.TypeName() == core.StreamingCollectorPluginType.String() {
p.metricCatalog.RmUnloadedPluginMetrics(plugin)
}
return plugin, nil
}
// GenerateArgs generates the cli args to send when stating a plugin
func (p *pluginManager) GenerateArgs(logLevel int) plugin.Arg {
return plugin.NewArg(logLevel, p.pprof)
}
func (p *pluginManager) teardown() {
for _, lp := range p.loadedPlugins.table {
_, err := p.UnloadPlugin(lp)
if err != nil {
runnerLog.WithFields(log.Fields{
"plugin-type": lp.TypeName(),
"plugin-name": lp.Name(),
"plugin-version": lp.Version(),
"plugin-path": lp.Details.Path,
}).Warn("error removing plugin in teardown:", err)
}
}
}
func (p *pluginManager) get(key string) (*loadedPlugin, error) {
return p.loadedPlugins.get(key)
}
func (p *pluginManager) all() map[string]*loadedPlugin {
p.loadedPlugins.RLock()
defer p.loadedPlugins.RUnlock()
return p.loadedPlugins.table
}
func hasPrefix(ns1 []string, ns2 []string) bool {
for i := range ns2 {
if i > len(ns1)-1 || ns1[i] != ns2[i] {
return false
}
}
return true
}
func split(ns string) []string {
// the first character is the separator
if len(ns) <= 1 {
return nil
}
sep := string(ns[0])
ns = strings.TrimSuffix(ns, sep)
ns = strings.TrimPrefix(ns, sep)
return strings.Split(ns, sep)
}
func (p *pluginManager) AddStandardAndWorkflowTags(m core.Metric, allTags map[string]map[string]string) core.Metric {
hostname := hostnameReader.Hostname()
tags := m.Tags()
if tags == nil {
tags = map[string]string{}
}
// apply standard tag
tags[core.STD_TAG_PLUGIN_RUNNING_ON] = hostname
// apply tags from global tags
for ns, nsTags := range p.pluginTags {
if hasPrefix(m.Namespace().Strings(), split(ns)) {
for k, v := range nsTags {
tags[k] = v
}
}
}
// apply tags from workflow
for ns, nsTags := range allTags {
if hasPrefix(m.Namespace().Strings(), split(ns)) {
for k, v := range nsTags {
tags[k] = v
}
}
}
metric := plugin.MetricType{
Namespace_: m.Namespace(),
Version_: m.Version(),
LastAdvertisedTime_: m.LastAdvertisedTime(),
Config_: m.Config(),
Data_: m.Data(),
Tags_: tags,
Description_: m.Description(),
Unit_: m.Unit(),
Timestamp_: m.Timestamp(),
}
return metric
}