-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathmsrv.go
721 lines (613 loc) · 20.5 KB
/
msrv.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
// Copyright (c) 2020-2024 Zededa, Inc.
// SPDX-License-Identifier: Apache-2.0
// Medatada server (msrv) creates an HTTP handler which is used by Zedrouter
// to create server exposed to App Instances to get information, i.e. network
// parameters and download patch envelopes.
// You can think of metadata server as a translator from pubsub to REST API for
// Application Instances
package msrv
import (
"bytes"
"context"
"encoding/gob"
"net/http"
"time"
"github.com/go-chi/chi/v5"
"github.com/google/uuid"
"github.com/lf-edge/eve/pkg/pillar/agentbase"
"github.com/lf-edge/eve/pkg/pillar/base"
"github.com/lf-edge/eve/pkg/pillar/cipher"
"github.com/lf-edge/eve/pkg/pillar/flextimer"
"github.com/lf-edge/eve/pkg/pillar/persistcache"
"github.com/lf-edge/eve/pkg/pillar/pidfile"
"github.com/lf-edge/eve/pkg/pillar/pubsub"
"github.com/lf-edge/eve/pkg/pillar/types"
"github.com/lf-edge/eve/pkg/pillar/utils/generics"
"github.com/lf-edge/eve/pkg/pillar/zedcloud"
"github.com/sirupsen/logrus"
)
const (
agentName = "msrv"
errorTime = 60 * time.Second
warningTime = 40 * time.Second
stillRunTime = 25 * time.Second
// Publish 4X more often than zedagent publishes to controller
// to reduce effect of quantization errors
publishTickerDivider = 4
)
// Really a constant
var nilUUID uuid.UUID
// KubeconfigFileSizeLimitInBytes holds the maximum expected size of Kubeconfig file
// received from k3s server appInst.
// Note: KubeconfigFileSizeLimitInBytes should always be < AppInstMetadataResponseSizeLimitInBytes.
const KubeconfigFileSizeLimitInBytes = 32768 // 32KB
// AppInstMetadataResponseSizeLimitInBytes holds the maximum expected size of appInst
// metadata received in the response.
// Note: KubeconfigFileSizeLimitInBytes should always be < AppInstMetadataResponseSizeLimitInBytes.
const AppInstMetadataResponseSizeLimitInBytes = 35840 // 35KB
// SignerMaxSize is how large objects we will sign
const SignerMaxSize = 65535
// DiagMaxSize is the max returned size for diag
const DiagMaxSize = 65535
// MetaDataServerIP is IP of meta data server
const MetaDataServerIP = "169.254.169.254"
// Msrv struct contains all PubSubs which are needed to compose REST APIs
// for App Instances
type Msrv struct {
agentbase.AgentBase
Log *base.LogObject
PubSub *pubsub.PubSub
Logger *logrus.Logger
gcInitialized bool
// Ticker for periodic publishing of metrics
metricInterval uint32 // In seconds
publishTicker *flextimer.FlexTickerHandle
subGlobalConfig pubsub.Subscription
deviceNetworkStatus *types.DeviceNetworkStatus
subNetworkInstanceStatus pubsub.Subscription
subEdgeNodeInfo pubsub.Subscription
// Decryption of cloud-init user data
pubCipherBlockStatus pubsub.Publication
subControllerCert pubsub.Subscription
subEdgeNodeCert pubsub.Subscription
decryptCipherContext cipher.DecryptCipherContext
cipherMetrics *cipher.AgentMetrics
// Configuration for application interfaces
subAppNetworkConfig pubsub.Subscription
subAppNetworkConfigAg pubsub.Subscription // From zedagent
subAppInstanceStatus pubsub.Subscription // From zedagent to cleanup appInstMetadata
subLocationInfo pubsub.Subscription
subWwanStatus pubsub.Subscription
subWwanMetrics pubsub.Subscription
pubAppInstMetaData pubsub.Publication
subDomainStatus pubsub.Subscription
subNetworkMetrics pubsub.Subscription
subAppNetworkStatus pubsub.Subscription
subDeviceNetworkStatus pubsub.Subscription
pubCipherMetrics pubsub.Publication
// Subscriptions to gather information about
// patch envelopes from volumemgr and zedagent
// external envelopes have to be downloaded via
// volumemgr, therefore we need to be subscribed
// to volume status to know filepath and download status
// patchEnvelopeInfo is list of patchEnvelopes which
// is coming from EdgeDevConfig containing information
// about inline patch envelopes and volume uuid as reference
// for external patch envelopes
subPatchEnvelopeInfo pubsub.Subscription
subVolumeStatus pubsub.Subscription
subContentTreeStatus pubsub.Subscription
PatchEnvelopes *PatchEnvelopes
patchEnvelopesUsage *generics.LockedMap[string, types.PatchEnvelopeUsage]
peUsagePersist *persistcache.PersistCache
pubPatchEnvelopesUsage pubsub.Publication
}
// Run starts up agent
func Run(ps *pubsub.PubSub, logger *logrus.Logger, log *base.LogObject, arguments []string) int {
msrv := &Msrv{
Log: log,
PubSub: ps,
Logger: logger,
}
agentbase.Init(msrv, logger, log, agentName,
agentbase.WithArguments(arguments))
if err := msrv.Init(types.PersistCachePatchEnvelopesUsage, false); err != nil {
log.Fatal(err)
}
if err := msrv.Run(context.Background()); err != nil {
log.Fatal(err)
}
return 0
}
// Init initializes metadata server
// persist flag is needed for testing. We don't want to store pubsubs
// but because of how memdriver works, we want them to be persisted
func (msrv *Msrv) Init(cachePath string, persist bool) (err error) {
msrv.patchEnvelopesUsage = generics.NewLockedMap[string, types.PatchEnvelopeUsage]()
if err = msrv.initPublications(); err != nil {
return err
}
if err = msrv.initSubscriptions(persist); err != nil {
return err
}
msrv.decryptCipherContext.Log = msrv.Log
msrv.decryptCipherContext.AgentName = agentName
msrv.decryptCipherContext.AgentMetrics = msrv.cipherMetrics
msrv.decryptCipherContext.PubSubControllerCert = msrv.subControllerCert
msrv.decryptCipherContext.PubSubEdgeNodeCert = msrv.subEdgeNodeCert
msrv.PatchEnvelopes = NewPatchEnvelopes(msrv)
msrv.patchEnvelopesUsage = generics.NewLockedMap[string, types.PatchEnvelopeUsage]()
msrv.peUsagePersist, err = persistcache.New(cachePath)
if err != nil {
return err
}
// restore cached patchEnvelopeUsage counters
for _, key := range msrv.peUsagePersist.Objects() {
cached, err := msrv.peUsagePersist.Get(key)
if err != nil {
return err
}
buf := bytes.NewBuffer(cached)
dec := gob.NewDecoder(buf)
var peUsage types.PatchEnvelopeUsage
if err := dec.Decode(&peUsage); err != nil {
return err
}
msrv.patchEnvelopesUsage.Store(key, peUsage)
}
return nil
}
func (msrv *Msrv) initPublications() (err error) {
msrv.pubAppInstMetaData, err = msrv.PubSub.NewPublication(
pubsub.PublicationOptions{
AgentName: agentName,
Persistent: true,
TopicType: types.AppInstMetaData{},
},
)
if err != nil {
return err
}
msrv.pubPatchEnvelopesUsage, err = msrv.PubSub.NewPublication(
pubsub.PublicationOptions{
AgentName: agentName,
TopicType: types.PatchEnvelopeUsage{},
},
)
if err != nil {
return err
}
msrv.pubCipherBlockStatus, err = msrv.PubSub.NewPublication(
pubsub.PublicationOptions{
AgentName: agentName,
Persistent: true,
TopicType: types.CipherBlockStatus{},
},
)
if err != nil {
return err
}
return nil
}
func (msrv *Msrv) initSubscriptions(persist bool) (err error) {
msrv.subGlobalConfig, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedagent",
MyAgentName: agentName,
TopicImpl: types.ConfigItemValueMap{},
Persistent: persist,
Activate: false,
CreateHandler: msrv.handleGlobalConfigCreate,
ModifyHandler: msrv.handleGlobalConfigModify,
DeleteHandler: msrv.handleGlobalConfigDelete,
WarningTime: warningTime,
ErrorTime: errorTime,
})
if err != nil {
return err
}
// Look for edge node info
msrv.subEdgeNodeInfo, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedagent",
MyAgentName: agentName,
TopicImpl: types.EdgeNodeInfo{},
Activate: false,
Persistent: persist,
})
if err != nil {
return err
}
msrv.subNetworkInstanceStatus, err = msrv.PubSub.NewSubscription(
pubsub.SubscriptionOptions{
AgentName: "zedrouter",
MyAgentName: agentName,
TopicImpl: types.NetworkInstanceStatus{},
Activate: false,
Persistent: persist,
},
)
if err != nil {
return err
}
// Look for controller certs which will be used for decryption
msrv.subControllerCert, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedagent",
MyAgentName: agentName,
TopicImpl: types.ControllerCert{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Look for edge node certs which will be used for decryption
msrv.subEdgeNodeCert, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "tpmmgr",
MyAgentName: agentName,
TopicImpl: types.EdgeNodeCert{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
msrv.cipherMetrics = cipher.NewAgentMetrics(agentName)
pubCipherMetrics, err := msrv.PubSub.NewPublication(
pubsub.PublicationOptions{
AgentName: agentName,
TopicType: types.CipherMetrics{},
})
if err != nil {
return err
}
msrv.pubCipherMetrics = pubCipherMetrics
// Subscribe to AppNetworkConfig from zedmanager
msrv.subAppNetworkConfig, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedmanager",
MyAgentName: agentName,
TopicImpl: types.AppNetworkConfig{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Subscribe to AppNetworkConfig from zedagent
msrv.subAppNetworkConfigAg, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedagent",
MyAgentName: agentName,
TopicImpl: types.AppNetworkConfig{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Subscribe to AppInstStatus from zedmanager
msrv.subAppInstanceStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedmanager",
MyAgentName: agentName,
TopicImpl: types.AppInstanceStatus{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Look for geographic location reports
msrv.subLocationInfo, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "wwan",
MyAgentName: agentName,
TopicImpl: types.WwanLocationInfo{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Look for cellular status
msrv.subWwanStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "wwan",
MyAgentName: agentName,
TopicImpl: types.WwanStatus{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Look for cellular metrics
msrv.subWwanMetrics, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "wwan",
MyAgentName: agentName,
TopicImpl: types.WwanMetrics{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
msrv.subDomainStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "domainmgr",
MyAgentName: agentName,
TopicImpl: types.DomainStatus{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
msrv.subAppNetworkStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedrouter",
MyAgentName: agentName,
TopicImpl: types.AppNetworkStatus{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
msrv.subDeviceNetworkStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "nim",
MyAgentName: agentName,
TopicImpl: types.DeviceNetworkStatus{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
})
if err != nil {
return err
}
// Information about patch envelopes
msrv.subPatchEnvelopeInfo, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedagent",
MyAgentName: agentName,
TopicImpl: types.PatchEnvelopeInfoList{},
Activate: false,
CreateHandler: msrv.handlePatchEnvelopeCreate,
ModifyHandler: msrv.handlePatchEnvelopeModify,
DeleteHandler: msrv.handlePatchEnvelopeDelete,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Information about volumes referred in external patch envelopes
msrv.subVolumeStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "volumemgr",
MyAgentName: agentName,
TopicImpl: types.VolumeStatus{},
Activate: false,
CreateHandler: msrv.handleVolumeStatusCreate,
ModifyHandler: msrv.handleVolumeStatusModify,
DeleteHandler: msrv.handleVolumeStatusDelete,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Information about volumes referred in external patch envelopes
msrv.subContentTreeStatus, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "volumemgr",
MyAgentName: agentName,
TopicImpl: types.ContentTreeStatus{},
Activate: false,
CreateHandler: msrv.handleContentTreeStatusCreate,
ModifyHandler: msrv.handleContentTreeStatusModify,
DeleteHandler: msrv.handleContentTreeStatusDelete,
WarningTime: warningTime,
ErrorTime: errorTime,
Persistent: persist,
})
if err != nil {
return err
}
// Subscribe to network metrics from zedrouter
msrv.subNetworkMetrics, err = msrv.PubSub.NewSubscription(pubsub.SubscriptionOptions{
AgentName: "zedrouter",
MyAgentName: agentName,
TopicImpl: types.NetworkMetrics{},
Activate: false,
WarningTime: warningTime,
ErrorTime: errorTime,
})
if err != nil {
return err
}
return nil
}
// Activate all subscriptions.
func (msrv *Msrv) Activate() error {
inactiveSubs := []pubsub.Subscription{
msrv.subNetworkInstanceStatus,
msrv.subEdgeNodeInfo,
msrv.subControllerCert,
msrv.subEdgeNodeCert,
msrv.subAppNetworkConfig,
msrv.subAppNetworkConfigAg,
msrv.subAppInstanceStatus,
msrv.subLocationInfo,
msrv.subWwanStatus,
msrv.subWwanMetrics,
msrv.subDomainStatus,
msrv.subNetworkMetrics,
msrv.subAppNetworkStatus,
msrv.subDeviceNetworkStatus,
msrv.subPatchEnvelopeInfo,
msrv.subVolumeStatus,
msrv.subContentTreeStatus,
msrv.subAppInstanceStatus,
}
for _, sub := range inactiveSubs {
if err := sub.Activate(); err != nil {
return err
}
}
return nil
}
// Run starts Metadata service
func (msrv *Msrv) Run(ctx context.Context) (err error) {
if err = pidfile.CheckAndCreatePidfile(msrv.Log, agentName); err != nil {
return err
}
msrv.Log.Noticef("Starting %s", agentName)
// Run a periodic timer so we always update StillRunning
stillRunning := time.NewTicker(stillRunTime)
msrv.PubSub.StillRunning(agentName, warningTime, errorTime)
if err = msrv.subGlobalConfig.Activate(); err != nil {
return err
}
for !msrv.gcInitialized {
msrv.Log.Noticef("Waiting for GCInitialized")
select {
case change := <-msrv.subGlobalConfig.MsgChan():
msrv.subGlobalConfig.ProcessChange(change)
case <-stillRunning.C:
}
msrv.PubSub.StillRunning(agentName, warningTime, errorTime)
}
msrv.Log.Noticef("Processed GlobalConfig")
// Publish network metrics (interface counters, etc.)
interval := time.Duration(msrv.metricInterval) * time.Second
max := float64(interval) / publishTickerDivider
min := max * 0.3
publishTicker := flextimer.NewRangeTicker(time.Duration(min),
time.Duration(max))
msrv.publishTicker = &publishTicker
if err = msrv.Activate(); err != nil {
return err
}
// Wait for the EdgeNodeInfo, and EdgeNodeCert and ControllerCert publications
var edgenodeCertInitialized, controllerCertInitialized, edgenodeInfoInitialized bool
for !edgenodeCertInitialized || !controllerCertInitialized || !edgenodeInfoInitialized {
select {
case change := <-msrv.subEdgeNodeCert.MsgChan():
msrv.subEdgeNodeCert.ProcessChange(change)
msrv.Log.Noticef("msrv: EdgeNodeCert, len %d", len(msrv.subEdgeNodeCert.GetAll()))
if len(msrv.subEdgeNodeCert.GetAll()) > 0 {
edgenodeCertInitialized = true
}
case change := <-msrv.subControllerCert.MsgChan():
msrv.subControllerCert.ProcessChange(change)
msrv.Log.Noticef("msrv: ControllerCert, len %d", len(msrv.subEdgeNodeCert.GetAll()))
if len(msrv.subControllerCert.GetAll()) > 0 {
controllerCertInitialized = true
}
case change := <-msrv.subEdgeNodeInfo.MsgChan():
msrv.subEdgeNodeInfo.ProcessChange(change)
msrv.Log.Noticef("msrv: EdgeNodeInfo, len %d", len(msrv.subEdgeNodeInfo.GetAll()))
if len(msrv.subEdgeNodeInfo.GetAll()) > 0 {
edgenodeInfoInitialized = true
}
case <-stillRunning.C:
}
msrv.PubSub.StillRunning(agentName, warningTime, errorTime)
}
for {
select {
case change := <-msrv.subNetworkInstanceStatus.MsgChan():
msrv.subNetworkInstanceStatus.ProcessChange(change)
case change := <-msrv.subEdgeNodeInfo.MsgChan():
msrv.subEdgeNodeInfo.ProcessChange(change)
case change := <-msrv.subControllerCert.MsgChan():
msrv.subControllerCert.ProcessChange(change)
case change := <-msrv.subEdgeNodeCert.MsgChan():
msrv.subEdgeNodeCert.ProcessChange(change)
case change := <-msrv.subAppNetworkConfig.MsgChan():
msrv.subAppNetworkConfig.ProcessChange(change)
case change := <-msrv.subAppNetworkConfigAg.MsgChan():
msrv.subAppNetworkConfigAg.ProcessChange(change)
case change := <-msrv.subLocationInfo.MsgChan():
msrv.subLocationInfo.ProcessChange(change)
case change := <-msrv.subWwanStatus.MsgChan():
msrv.subWwanStatus.ProcessChange(change)
case change := <-msrv.subAppInstanceStatus.MsgChan():
msrv.subAppInstanceStatus.ProcessChange(change)
case change := <-msrv.subWwanMetrics.MsgChan():
msrv.subWwanMetrics.ProcessChange(change)
case change := <-msrv.subNetworkMetrics.MsgChan():
msrv.subNetworkMetrics.ProcessChange(change)
case change := <-msrv.subDomainStatus.MsgChan():
msrv.subDomainStatus.ProcessChange(change)
case change := <-msrv.subAppNetworkStatus.MsgChan():
msrv.subAppNetworkStatus.ProcessChange(change)
case change := <-msrv.subDeviceNetworkStatus.MsgChan():
msrv.subDeviceNetworkStatus.ProcessChange(change)
case change := <-msrv.subPatchEnvelopeInfo.MsgChan():
msrv.subPatchEnvelopeInfo.ProcessChange(change)
case change := <-msrv.subVolumeStatus.MsgChan():
msrv.subVolumeStatus.ProcessChange(change)
case change := <-msrv.subContentTreeStatus.MsgChan():
msrv.subContentTreeStatus.ProcessChange(change)
case <-ctx.Done():
return nil
case <-msrv.publishTicker.C:
start := time.Now()
msrv.Log.Traceln("publishTicker at", time.Now())
msrv.PublishPatchEnvelopesUsage()
msrv.PubSub.CheckMaxTimeTopic(agentName, "publishMetrics", start,
warningTime, errorTime)
case <-stillRunning.C:
}
msrv.PubSub.StillRunning(agentName, warningTime, errorTime)
}
}
// MakeMetadataHandler creates http.Handler to be used by LinuxNIReconciler
func (msrv *Msrv) MakeMetadataHandler() http.Handler {
r := chi.NewRouter()
zedcloudCtx := zedcloud.NewContext(msrv.Log, zedcloud.ContextOptions{})
r.Route("/eve/v1", func(r chi.Router) {
r.Get("/network.json", msrv.handleNetwork())
r.Get("/external_ipv4", msrv.handleExternalIP())
r.Get("/hostname", msrv.handleHostname())
r.Post("/kubeconfig", msrv.handleAppInstMeta(
KubeconfigFileSizeLimitInBytes,
types.AppInstMetaDataTypeKubeConfig))
r.Post("/app/appCustomStatus", msrv.handleAppInstMeta(
KubeconfigFileSizeLimitInBytes,
types.AppInstMetaDataCustomStatus))
r.Get("/location.json", msrv.handleLocationInfo())
r.Get("/diag", msrv.handleDiag())
r.Get("/discover-network.json", msrv.handleAppInstanceDiscovery())
r.Get("/wwan/status.json", msrv.handleWWANStatus())
r.Get("/wwan/metrics.json", msrv.handleWWANMetrics())
r.Get("/networks/metrics.json", msrv.handleNetworkStatusMetrics())
r.Get("/app/info.json", msrv.handleAppInfo())
r.Post("/tpm/signer", msrv.handleSigner(&zedcloudCtx))
r.Post("/tpm/activatecredential/", msrv.handleActivateCredentialPost())
r.Get("/tpm/activatecredential/", msrv.handleActivateCredentialGet())
r.Route("/patch", func(r chi.Router) {
r.Use(msrv.withPatchEnvelopesByIP())
r.Get("/description.json", msrv.handlePatchDescription())
r.Get("/download/{patch}", msrv.handlePatchDownload())
r.Get("/download/{patch}/{file}", msrv.handlePatchFileDownload())
})
})
r.Get("/eve/app-custom-blobs", msrv.handleAppCustomBlobs())
r.Get("/openstack", msrv.handleOpenStack())
r.Get("/openstack/", msrv.handleOpenStack())
return r
}