-
Notifications
You must be signed in to change notification settings - Fork 2
/
subsystem.go
618 lines (529 loc) · 15.8 KB
/
subsystem.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
package agent
import (
"bytes"
"context"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io/fs"
"os"
"os/exec"
"path"
"path/filepath"
"regexp"
"sync"
"syscall"
"time"
errw "github.com/pkg/errors"
pb "go.viam.com/api/app/agent/v1"
"go.viam.com/rdk/logging"
)
const (
ShortFailTime = time.Second * 30
StartTimeout = time.Minute
StopTermTimeout = time.Second * 30
StopKillTimeout = time.Second * 10
)
var ErrSubsystemDisabled = errors.New("subsystem disabled")
// BasicSubsystem is the minimal interface.
type BasicSubsystem interface {
// Start runs the subsystem
Start(ctx context.Context) error
// Stop signals the subsystem to shutdown
Stop(ctx context.Context) error
// HealthCheck reports if a subsystem is running correctly (it is restarted if not)
HealthCheck(ctx context.Context) error
}
// updatable is if a wrapped subsystem has it's own (additional) update code to run.
type updatable interface {
Update(ctx context.Context, cfg *pb.DeviceSubsystemConfig, newVersion bool) (bool, error)
}
// AgentSubsystem is a wrapper for the real subsystems, mostly allowing sharing of download/update code.
type AgentSubsystem struct {
mu sync.Mutex
CacheData *CacheData
startTime *time.Time
disable bool
name string
logger logging.Logger
inner BasicSubsystem
}
// CacheData stores VersionInfo and the current/previous versions for (TODO) rollback.
type CacheData struct {
CurrentVersion string `json:"current_version"`
PreviousVersion string `json:"previous_version"`
Versions map[string]*VersionInfo `json:"versions"`
}
// VersionInfo records details about each version of a subsystem.
type VersionInfo struct {
Version string
URL string
DlPath string
DlSHA []byte
UnpackedPath string
UnpackedSHA []byte
SymlinkPath string
Installed time.Time
StartCount uint
LongFailCount uint
ShortFailCount uint
}
// Version returns the running version.
func (s *AgentSubsystem) Version() string {
s.mu.Lock()
defer s.mu.Unlock()
if s.CacheData != nil {
return s.CacheData.CurrentVersion
}
return ""
}
// Start starts the subsystem.
func (s *AgentSubsystem) Start(ctx context.Context) error {
s.mu.Lock()
defer s.mu.Unlock()
if s.disable {
return ErrSubsystemDisabled
}
info, ok := s.CacheData.Versions[s.CacheData.CurrentVersion]
if !ok {
s.CacheData.CurrentVersion = "unknown"
info = &VersionInfo{Version: s.CacheData.CurrentVersion}
s.CacheData.Versions[s.CacheData.CurrentVersion] = info
s.logger.Warnf("cache info not found for %s, version: %s", s.name, s.CacheData.CurrentVersion)
}
info.StartCount++
start := time.Now()
s.startTime = &start
err := s.saveCache()
if err != nil {
return err
}
return s.inner.Start(ctx)
}
// Stop stops the subsystem.
func (s *AgentSubsystem) Stop(ctx context.Context) error {
s.mu.Lock()
defer s.mu.Unlock()
s.startTime = nil
return s.inner.Stop(ctx)
}
// HealthCheck calls the inner subsystem's HealthCheck() to verify, and logs failures/successes.
func (s *AgentSubsystem) HealthCheck(ctx context.Context) error {
s.mu.Lock()
defer s.mu.Unlock()
if s.disable {
return nil
}
err := s.inner.HealthCheck(ctx)
if err != nil {
if s.startTime == nil {
return err
}
failTime := time.Since(*s.startTime)
info, ok := s.CacheData.Versions[s.CacheData.CurrentVersion]
if !ok {
return errors.Join(err, errw.Errorf("cache info not found for %s, version: %s", s.name, s.CacheData.CurrentVersion))
}
if failTime <= ShortFailTime {
info.ShortFailCount++
} else {
info.LongFailCount++
}
s.startTime = nil
// TODO if shortfails exceed a threshold, revert to previous version.
return errors.Join(err, s.saveCache())
}
return nil
}
// NewAgentSubsystem returns a new wrapped subsystem.
func NewAgentSubsystem(
ctx context.Context,
name string,
logger logging.Logger,
subsys BasicSubsystem,
) (*AgentSubsystem, error) {
sub := &AgentSubsystem{name: name, logger: logger, inner: subsys}
err := sub.LoadCache()
if err != nil {
return nil, err
}
return sub, nil
}
// LoadCache loads the cached data for the subsystem from disk.
func (s *AgentSubsystem) LoadCache() error {
s.mu.Lock()
defer s.mu.Unlock()
cache := &CacheData{
Versions: make(map[string]*VersionInfo),
}
cacheFilePath := filepath.Join(ViamDirs["cache"], fmt.Sprintf("%s.json", s.name))
//nolint:gosec
cacheBytes, err := os.ReadFile(cacheFilePath)
if err != nil {
if !errors.Is(err, fs.ErrNotExist) {
s.logger.Error(err)
}
} else {
err = json.Unmarshal(cacheBytes, cache)
if err != nil {
s.logger.Error(errw.Wrap(err, "parsing subsystem cache, using new defaults"))
s.CacheData = &CacheData{
Versions: make(map[string]*VersionInfo),
}
return nil
}
}
s.CacheData = cache
return nil
}
// saveCache should only be run when protected by mutex locks. Use SaveCache() for normal use.
func (s *AgentSubsystem) saveCache() error {
cacheFilePath := filepath.Join(ViamDirs["cache"], fmt.Sprintf("%s.json", s.name))
cacheData, err := json.Marshal(s.CacheData)
if err != nil {
return err
}
//nolint:gosec
return errors.Join(os.WriteFile(cacheFilePath, cacheData, 0o644), SyncFS(cacheFilePath))
}
// SaveCache saves the cached data to disk.
func (s *AgentSubsystem) SaveCache() error {
s.mu.Lock()
defer s.mu.Unlock()
return s.saveCache()
}
// Update is the main function of the AgentSubsystem wrapper, as it's shared between subsystems. Returns true if a restart is needed.
//
//nolint:gocognit
func (s *AgentSubsystem) Update(ctx context.Context, cfg *pb.DeviceSubsystemConfig) (bool, error) {
s.mu.Lock()
defer s.mu.Unlock()
var needRestart bool
if s.disable != cfg.GetDisable() {
s.disable = cfg.GetDisable()
needRestart = true
if s.disable {
s.logger.Infof("%s %s", s.name, "disabled")
return true, nil
} else {
s.logger.Infof("%s %s", s.name, "enabled")
}
}
updateInfo := cfg.GetUpdateInfo()
// check if we already have the version given by the cloud
verData, ok := s.CacheData.Versions[updateInfo.GetVersion()]
//nolint:nestif
if ok && s.CacheData.CurrentVersion == updateInfo.GetVersion() {
// if a known version, make sure the symlink is correct
same, err := CheckIfSame(verData.DlPath, verData.SymlinkPath)
if err != nil {
return needRestart, err
}
if !same {
if err := ForceSymlink(verData.UnpackedPath, verData.SymlinkPath); err != nil {
return needRestart, err
}
}
// check for matching shasum, which won't be available for pin_url
checkSum := updateInfo.GetSha256()
// with pin_url, no SHA is available from the cloud, so we check the local copy for corruption and matching url.
if len(updateInfo.GetSha256()) <= 1 && verData.URL == updateInfo.GetUrl() {
checkSum = verData.UnpackedSHA
}
shasum, err := GetFileSum(verData.UnpackedPath)
if err == nil && bytes.Equal(shasum, checkSum) {
// No update, but let the inner logic run if needed.
return s.tryInner(ctx, cfg, needRestart)
}
}
// this is a new version, so instantiate the basics
if !ok {
verData = &VersionInfo{Version: updateInfo.GetVersion()}
s.CacheData.Versions[updateInfo.GetVersion()] = verData
s.logger.Infof("new version (%s) found for %s", verData.Version, s.name)
}
// always record the URL, it may be updated for "customURL" versions
verData.URL = updateInfo.GetUrl()
// download and record the sha of the download itself
var err error
verData.DlPath, err = DownloadFile(ctx, updateInfo.GetUrl())
if err != nil {
return needRestart, errw.Wrapf(err, "downloading %s subsystem", s.name)
}
verData.DlSHA, err = GetFileSum(verData.DlPath)
if err != nil {
return needRestart, errw.Wrap(err, "getting file shasum")
}
// extract and verify sha of contents if it's a compressed file
if updateInfo.GetFormat() == pb.PackageFormat_PACKAGE_FORMAT_XZ ||
updateInfo.GetFormat() == pb.PackageFormat_PACKAGE_FORMAT_XZ_EXECUTABLE {
verData.UnpackedPath, err = DecompressFile(verData.DlPath)
if err != nil {
return needRestart, errw.Wrapf(err, "decompressing %s subsystem", s.name)
}
} else {
verData.UnpackedPath = verData.DlPath
}
shasum, err := GetFileSum(verData.UnpackedPath)
if err != nil {
return needRestart, errw.Wrap(err, "getting file shasum")
}
verData.UnpackedSHA = shasum
if len(updateInfo.GetSha256()) > 1 && !bytes.Equal(shasum, updateInfo.GetSha256()) {
//nolint:goerr113
return needRestart, fmt.Errorf(
"sha256 (%s) of downloaded file (%s) does not match config (%s)",
base64.StdEncoding.EncodeToString(shasum),
verData.UnpackedPath,
base64.StdEncoding.EncodeToString(updateInfo.GetSha256()),
)
}
// chmod with execute permissions if the file is executable
if updateInfo.GetFormat() == pb.PackageFormat_PACKAGE_FORMAT_EXECUTABLE ||
updateInfo.GetFormat() == pb.PackageFormat_PACKAGE_FORMAT_XZ_EXECUTABLE {
//nolint:gosec
if err := os.Chmod(verData.UnpackedPath, 0o755); err != nil {
return needRestart, err
}
} else {
//nolint:gosec
if err := os.Chmod(verData.UnpackedPath, 0o644); err != nil {
return needRestart, err
}
}
// symlink the extracted file to bin
verData.SymlinkPath = path.Join(ViamDirs["bin"], updateInfo.GetFilename())
if err = ForceSymlink(verData.UnpackedPath, verData.SymlinkPath); err != nil {
return needRestart, errw.Wrap(err, "creating symlink")
}
// update current and previous versions
var previousVersion string
if s.CacheData.CurrentVersion != s.CacheData.PreviousVersion {
previousVersion = s.CacheData.PreviousVersion
s.CacheData.PreviousVersion = s.CacheData.CurrentVersion
}
s.CacheData.CurrentVersion = updateInfo.GetVersion()
verData.Installed = time.Now()
// if we made it here we performed an update and need to restart
s.logger.Infof("%s updated from %s to %s", s.name, previousVersion, verData.Version)
needRestart = true
// record the cache
err = s.saveCache()
if err != nil {
return needRestart, err
}
// if the subsystem has its own additional update code, run it
return s.tryInner(ctx, cfg, needRestart)
}
func (s *AgentSubsystem) tryInner(ctx context.Context, cfg *pb.DeviceSubsystemConfig, newVersion bool) (bool, error) {
inner, ok := s.inner.(updatable)
if ok {
return inner.Update(ctx, cfg, newVersion)
}
return newVersion, nil
}
// InternalSubsystem is shared start/stop/update code between "internal" (not viam-server) subsystems.
type InternalSubsystem struct {
// only set during New
name string
cmdArgs []string
logger logging.Logger
cfgPath string
uploadAll bool
// protected by mutex
mu sync.Mutex
cmd *exec.Cmd
running bool
shouldRun bool
lastExit int
exitChan chan struct{}
// for blocking start/stop/check ops while another is in progress
startStopMu sync.Mutex
}
func NewInternalSubsystem(name string, extraArgs []string, logger logging.Logger, uploadAll bool) (*InternalSubsystem, error) {
if name == "" {
return nil, errors.New("name cannot be empty")
}
if logger == nil {
return nil, errors.New("logger cannot be nil")
}
cfgPath := path.Join(ViamDirs["etc"], name+".json")
is := &InternalSubsystem{
name: name,
cmdArgs: append([]string{"--config", cfgPath}, extraArgs...),
cfgPath: cfgPath,
logger: logger,
uploadAll: uploadAll,
}
return is, nil
}
func (is *InternalSubsystem) Start(ctx context.Context) error {
is.startStopMu.Lock()
defer is.startStopMu.Unlock()
is.mu.Lock()
if is.running {
is.mu.Unlock()
return nil
}
if is.shouldRun {
is.logger.Warnf("Restarting %s after unexpected exit", is.name)
} else {
is.logger.Infof("Starting %s", is.name)
is.shouldRun = true
}
stdio := NewMatchingLogger(is.logger, false, is.uploadAll)
stderr := NewMatchingLogger(is.logger, true, is.uploadAll)
//nolint:gosec
is.cmd = exec.Command(path.Join(ViamDirs["bin"], is.name), is.cmdArgs...)
is.cmd.Dir = ViamDirs["viam"]
is.cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
is.cmd.Stdout = stdio
is.cmd.Stderr = stderr
// watch for this line in the logs to indicate successful startup
c, err := stdio.AddMatcher("checkStartup", regexp.MustCompile(`startup complete`), false)
if err != nil {
is.mu.Unlock()
return err
}
defer stdio.DeleteMatcher("checkStartup")
err = is.cmd.Start()
if err != nil {
is.mu.Unlock()
return errw.Wrapf(err, "starting %s", is.name)
}
is.running = true
is.exitChan = make(chan struct{})
// must be unlocked before spawning goroutine
is.mu.Unlock()
go func() {
err := is.cmd.Wait()
is.mu.Lock()
defer is.mu.Unlock()
is.running = false
is.logger.Infof("%s exited", is.name)
if err != nil {
is.logger.Errorw("error while getting process status", "error", err)
}
if is.cmd.ProcessState != nil {
is.lastExit = is.cmd.ProcessState.ExitCode()
if is.lastExit != 0 {
is.logger.Errorw("non-zero exit code", "exit code", is.lastExit)
}
}
close(is.exitChan)
}()
select {
case <-c:
is.logger.Infof("%s started", is.name)
return nil
case <-ctx.Done():
return ctx.Err()
case <-time.After(StartTimeout):
return errw.New("startup timed out")
case <-is.exitChan:
return errw.New("startup failed")
}
}
func (is *InternalSubsystem) Stop(ctx context.Context) error {
is.startStopMu.Lock()
defer is.startStopMu.Unlock()
is.mu.Lock()
running := is.running
is.shouldRun = false
is.mu.Unlock()
if !running {
return nil
}
// interrupt early in startup
if is.cmd == nil {
return nil
}
is.logger.Infof("Stopping %s", is.name)
err := is.cmd.Process.Signal(syscall.SIGTERM)
if err != nil {
is.logger.Error(err)
}
if is.waitForExit(ctx, StopTermTimeout) {
is.logger.Infof("%s successfully stopped", is.name)
return nil
}
is.logger.Warnf("%s refused to exit, killing", is.name)
err = syscall.Kill(-is.cmd.Process.Pid, syscall.SIGKILL)
if err != nil {
is.logger.Error(err)
}
if is.waitForExit(ctx, StopKillTimeout) {
is.logger.Infof("%s successfully killed", is.name)
return nil
}
return errw.Errorf("%s process couldn't be killed", is.name)
}
func (is *InternalSubsystem) waitForExit(ctx context.Context, timeout time.Duration) bool {
is.mu.Lock()
exitChan := is.exitChan
running := is.running
is.mu.Unlock()
if !running {
return true
}
select {
case <-exitChan:
return true
case <-ctx.Done():
return false
case <-time.After(timeout):
return false
}
}
// HealthCheck sends a USR1 signal to the subsystem process, which should cause it to log "HEALTHY" to stdout.
func (is *InternalSubsystem) HealthCheck(ctx context.Context) (errRet error) {
is.startStopMu.Lock()
defer is.startStopMu.Unlock()
is.mu.Lock()
defer is.mu.Unlock()
if !is.running {
return errw.Errorf("%s not running", is.name)
}
is.logger.Debugf("starting healthcheck for %s", is.name)
checkChan, err := is.cmd.Stdout.(*MatchingLogger).AddMatcher("healthcheck", regexp.MustCompile(`HEALTHY`), true)
if err != nil {
return err
}
defer func() {
matcher, ok := is.cmd.Stdout.(*MatchingLogger)
if ok {
matcher.DeleteMatcher("healthcheck")
}
}()
err = is.cmd.Process.Signal(syscall.SIGUSR1)
if err != nil {
is.logger.Error(err)
}
select {
case <-time.After(time.Second * 30):
case <-ctx.Done():
case <-checkChan:
is.logger.Debugf("healthcheck for %s is good", is.name)
return nil
}
return errw.Errorf("timeout waiting for healthcheck on %s", is.name)
}
func (is *InternalSubsystem) Update(ctx context.Context, cfg *pb.DeviceSubsystemConfig, newVersion bool) (bool, error) {
jsonBytes, err := cfg.GetAttributes().MarshalJSON()
if err != nil {
return true, err
}
fileBytes, err := os.ReadFile(is.cfgPath)
// If no changes, only restart if there was a new version.
if err == nil && bytes.Equal(fileBytes, jsonBytes) {
return newVersion, nil
}
// If an error reading the config file, restart and return the error
if err != nil && !errors.Is(err, fs.ErrNotExist) {
return true, err
}
// If attribute changes, restart after writing the new config file.
//nolint:gosec
return true, errors.Join(os.WriteFile(is.cfgPath, jsonBytes, 0o644), SyncFS(is.cfgPath))
}