-
Notifications
You must be signed in to change notification settings - Fork 53
/
loader.go
332 lines (290 loc) · 7.97 KB
/
loader.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
package plugins
import (
"context"
"fmt"
"runtime"
"sync"
"time"
"github.com/hashicorp/go-plugin"
"github.com/samber/lo"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/trace"
"go.uber.org/atomic"
"go.uber.org/zap"
controlv1 "github.com/rancher/opni/pkg/apis/control/v1"
"github.com/rancher/opni/pkg/config/v1beta1"
"github.com/rancher/opni/pkg/logger"
"github.com/rancher/opni/pkg/plugins/hooks"
"github.com/rancher/opni/pkg/plugins/meta"
)
const DefaultPluginGlob = "plugin_*"
type LoaderInterface interface {
// Adds a hook to the loader, which will be invoked at a specific time according
// to the hook type. See the specific hooks for more information.
Hook(h any)
}
type noopLoader struct{}
func (noopLoader) Hook(h any) {
if c, ok := h.(hooks.LoadingCompletedHook); ok {
go c.Invoke(0)
}
}
var NoopLoader = noopLoader{}
type activePlugin struct {
md meta.PluginMeta
client *plugin.GRPCClient
raw any
}
type hook[T any] struct {
hook T
caller string
}
type PluginLoader struct {
PluginLoaderOptions
hooksMu sync.RWMutex
pluginsMu sync.RWMutex
loadHooks []hook[hooks.PluginLoadHook]
completedHooks []hook[hooks.LoadingCompletedHook]
activePlugins []activePlugin
completed *atomic.Bool
}
type PluginLoaderOptions struct {
logger *zap.SugaredLogger
}
type PluginLoaderOption func(*PluginLoaderOptions)
func (o *PluginLoaderOptions) apply(opts ...PluginLoaderOption) {
for _, op := range opts {
op(o)
}
}
func WithLogger(lg *zap.SugaredLogger) PluginLoaderOption {
return func(o *PluginLoaderOptions) {
o.logger = lg
}
}
func NewPluginLoader(opts ...PluginLoaderOption) *PluginLoader {
options := PluginLoaderOptions{}
options.apply(opts...)
if options.logger == nil {
options.logger = logger.New().Named("pluginloader")
} else {
options.logger = options.logger.Named("pluginloader")
}
return &PluginLoader{
PluginLoaderOptions: options,
completed: atomic.NewBool(false),
}
}
func (p *PluginLoader) Hook(h any) {
if p.completed.Load() {
p.hooksMu.RLock()
defer p.hooksMu.RUnlock()
} else {
p.hooksMu.Lock()
defer p.hooksMu.Unlock()
}
// save the caller so we can log it later if needed
_, file, line, _ := runtime.Caller(1)
caller := fmt.Sprintf("%s:%d", file, line)
switch h := h.(type) {
case hooks.PluginLoadHook:
p.loadHooks = append(p.loadHooks, hook[hooks.PluginLoadHook]{
hook: h,
caller: caller,
})
// late join
p.pluginsMu.RLock()
defer p.pluginsMu.RUnlock()
for _, ap := range p.activePlugins {
if h.ShouldInvoke(ap.raw) {
h.Invoke(ap.raw, ap.md, ap.client.Conn)
}
}
case hooks.LoadingCompletedHook:
p.completedHooks = append(p.completedHooks, hook[hooks.LoadingCompletedHook]{
hook: h,
caller: caller,
})
// late join
if p.completed.Load() {
go h.Invoke(len(p.activePlugins))
}
}
}
// LoadOne loads a single plugin. It invokes PluginLoadHooks for the type of
// the plugin being loaded and will block until all load hooks have completed.
func (p *PluginLoader) LoadOne(ctx context.Context, md meta.PluginMeta, cc *plugin.ClientConfig) {
p.ensureNotCompleted()
tracer := otel.Tracer("pluginloader")
tc, span := tracer.Start(ctx, "LoadOne",
trace.WithAttributes(attribute.String("plugin", md.Module)))
defer span.End()
lg := p.logger.With(
zap.String("plugin", md.Module),
)
lg.Info("loading plugin")
client := plugin.NewClient(cc)
rpcClient, err := client.Client()
if err != nil {
lg.With(
zap.Error(err),
).Error("failed to load plugin")
return
}
lg.With(
"interfaces", lo.Keys(cc.Plugins),
).Debug("checking if plugin implements any interfaces in the scheme")
wg := &sync.WaitGroup{}
for id := range cc.Plugins {
raw, err := rpcClient.Dispense(id)
if err != nil {
lg.With(
zap.Error(err),
"id", id,
).Debug("no implementation found")
continue
}
lg.With(
"id", id,
).Debug("implementation found")
switch c := rpcClient.(type) {
case *plugin.GRPCClient:
p.hooksMu.RLock()
numHooks := len(p.loadHooks)
if numHooks > 0 {
lg.Debugf("invoking load hooks (%d)", numHooks)
}
for _, h := range p.loadHooks {
if h.hook.ShouldInvoke(raw) {
wg.Add(1)
h := h
go func() {
_, span := tracer.Start(tc, "PluginLoadHook",
trace.WithAttributes(attribute.String("caller", h.caller)))
defer span.End()
defer wg.Done()
done := h.hook.Invoke(raw, md, c.Conn)
select {
case <-done:
case <-time.After(time.Second * 5):
lg.With(
"id", id,
"caller", h.caller,
).Warn("hook is taking longer than expected to complete")
<-done
}
}()
}
}
p.hooksMu.RUnlock()
p.pluginsMu.Lock()
p.activePlugins = append(p.activePlugins, activePlugin{
md: md,
client: c,
raw: raw,
})
p.pluginsMu.Unlock()
}
}
wg.Wait()
}
type LoadOptions struct {
manifest *controlv1.PluginManifest
clientOptions []ClientOption
}
type LoadOption func(*LoadOptions)
func (o *LoadOptions) apply(opts ...LoadOption) {
for _, op := range opts {
op(o)
}
}
func WithClientOptions(clientOptions ...ClientOption) LoadOption {
return func(o *LoadOptions) {
o.clientOptions = clientOptions
}
}
// WithManifest will use the provided manifest to restrict the set of plugins
// that can be loaded, and verify plugin checksums before loading.
// If this option is not provided, plugins will be loaded without any
// restrictions or verification.
func WithManifest(manifest *controlv1.PluginManifest) LoadOption {
return func(o *LoadOptions) {
o.manifest = manifest
}
}
// LoadPlugins loads a set of plugins defined by the plugin configuration.
// This function loads plugins in parallel and does not block. It will invoke
// LoadingCompletedHooks once all plugins have been loaded. Once this function
// is called, it is unsafe to call LoadPlugins() or LoadOne() again for this
// plugin loader, although new hooks can still be added and will be invoked
// immediately according to the current state of the plugin loader.
func (p *PluginLoader) LoadPlugins(ctx context.Context, conf v1beta1.PluginsSpec, scheme meta.Scheme, opts ...LoadOption) {
options := LoadOptions{}
options.apply(opts...)
verifyManifest := (options.manifest != nil)
secureConfigs := make(map[string]*plugin.SecureConfig)
if verifyManifest {
for _, entry := range options.manifest.Items {
secureConfigs[entry.Module] = &plugin.SecureConfig{
Checksum: entry.DigestBytes(),
Hash: entry.DigestHash(),
}
}
}
tc, span := otel.Tracer("pluginloader").Start(ctx, "LoadPlugins")
wg := &sync.WaitGroup{}
dc := DiscoveryConfig{
Dir: conf.Dir,
Logger: p.logger,
}
plugins := dc.Discover()
for _, md := range plugins {
md := md
clientOpts := options.clientOptions
if verifyManifest {
if secureConfig, ok := secureConfigs[md.Module]; ok {
clientOpts = append(clientOpts, WithSecureConfig(secureConfig))
} else {
p.logger.With(
"module", md.Module,
"path", md.BinaryPath,
).Warn("plugin is not present in manifest, skipping")
continue
}
}
cc := ClientConfig(md, scheme, clientOpts...)
wg.Add(1)
go func() {
defer wg.Done()
p.LoadOne(tc, md, cc)
}()
}
go func() {
defer span.End()
wg.Wait()
p.Complete()
}()
}
// Complete marks the plugin loader as completed. This function will be called
// automatically by LoadPlugins(), although it can be called manually if
// LoadPlugins() is not used. It is not safe to call this function and
// LoadPlugins() on the same plugin loader. It will invoke LoadingCompletedHooks
// in parallel and does not block.
func (p *PluginLoader) Complete() {
p.ensureNotCompleted()
p.completed.Store(true)
p.pluginsMu.Lock()
numLoaded := len(p.activePlugins)
p.pluginsMu.Unlock()
p.hooksMu.RLock()
for _, h := range p.completedHooks {
go h.hook.Invoke(numLoaded)
}
p.hooksMu.RUnlock()
}
func (p *PluginLoader) ensureNotCompleted() {
if p.completed.Load() {
panic("use of PluginLoader after complete")
}
}