mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-06-12 00:13:02 -04:00

keyservice joinservice upgrade-agent measurement-reader debugd disk-mapper rewrote joinservice main rewrote some unit tests rewrote upgrade-agent + some grpc functions rewrote measurement-reader rewrote debugd removed unused import removed forgotten zap reference in measurements reader rewrote disk-mapper + tests rewrote packages verify disk-mapper malicious join bootstrapper attestationconfigapi versionapi internal/cloud/azure disk-mapper tests image/upload/internal/cmd rewrote verify (WIP with loglevel increase) rewrote forgotten zap references in disk-mapper rewrote malicious join rewrote bootstrapper rewrote parts of internal/ rewrote attestationconfigapi (WIP) rewrote versionapi cli rewrote internal/cloud/azure rewrote disk-mapper tests (untested by me rn) rewrote image/upload/internal/cmd removed forgotten zap references in verify/cmd rewrote packages hack/oci-pin hack/qemu-metadata-api debugd/internal/debugd/deploy hack/bazel-deps-mirror cli/internal/cmd cli-k8s-compatibility rewrote hack/qemu-metadata-api/server rewrote debugd/internal/debugd/deploy rewrote hack/bazel-deps-mirror rewrote rest of hack/qemu-metadata-api rewrote forgotten zap references in joinservice server rewrote cli/internal/cmd rewrote cli-k8s-compatibility rewrote packages internal/staticupload e2d/internal/upgrade internal/constellation/helm internal/attestation/aws/snp internal/attestation/azure/trustedlaunch joinservice/internal/certcache/amkds some missed unit tests rewrote e2e/internal/upgrade rewrote internal/constellation/helm internal/attestation/aws/snp internal/attestation/azure/trustedlaunch joinservice/internal/certcache/amkds search and replace test logging over all left *_test.go
120 lines
2.8 KiB
Go
120 lines
2.8 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// Package watcher implements a file watcher to update an object on file changes.
|
|
package watcher
|
|
|
|
import (
|
|
"fmt"
|
|
"log/slog"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/logger"
|
|
"github.com/fsnotify/fsnotify"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// FileWatcher watches for changes to the file and calls the waiter's Update method.
|
|
type FileWatcher struct {
|
|
log *slog.Logger
|
|
updater updater
|
|
watcher eventWatcher
|
|
done chan struct{}
|
|
}
|
|
|
|
// New creates a new FileWatcher for the given validator.
|
|
func New(log *slog.Logger, updater updater) (*FileWatcher, error) {
|
|
watcher, err := fsnotify.NewWatcher()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &FileWatcher{
|
|
log: log,
|
|
watcher: &fsnotifyWatcher{watcher},
|
|
updater: updater,
|
|
done: make(chan struct{}, 1),
|
|
}, nil
|
|
}
|
|
|
|
// Close closes the watcher.
|
|
// It should only be called once.
|
|
func (f *FileWatcher) Close() error {
|
|
err := f.watcher.Close()
|
|
<-f.done
|
|
return err
|
|
}
|
|
|
|
// Watch starts watching the file at the given path.
|
|
// It will call the watcher's Update method when the file is modified.
|
|
func (f *FileWatcher) Watch(file string) error {
|
|
log := f.log.With("file", file)
|
|
defer func() { f.done <- struct{}{} }()
|
|
if err := f.watcher.Add(file); err != nil {
|
|
return err
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case event, ok := <-f.watcher.Events():
|
|
if !ok {
|
|
log.Info("Watcher closed")
|
|
return nil
|
|
}
|
|
|
|
// file changes may be indicated by either a WRITE, CHMOD, CREATE or RENAME event
|
|
if event.Op&(fsnotify.Write|fsnotify.Chmod|fsnotify.Create|fsnotify.Rename) != 0 {
|
|
if err := f.updater.Update(); err != nil {
|
|
log.With(slog.Any("error", err)).Error("Update failed")
|
|
}
|
|
}
|
|
|
|
// if a file gets removed, e.g. by a rename event, we need to re-add the file to the watcher
|
|
if event.Has(fsnotify.Remove) {
|
|
if err := f.watcher.Add(event.Name); err != nil {
|
|
log.With(slog.Any("error", err)).Error("Failed to re-add file to watcher")
|
|
return fmt.Errorf("failed to re-add file %q to watcher: %w", event.Name, err)
|
|
}
|
|
}
|
|
|
|
case err := <-f.watcher.Errors():
|
|
if err != nil {
|
|
log.With(slog.Any("error", err)).Error("Watching for measurements updates")
|
|
return fmt.Errorf("watching for measurements updates: %w", err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
type updater interface {
|
|
Update() error
|
|
}
|
|
|
|
type eventWatcher interface {
|
|
Add(string) error
|
|
Close() error
|
|
Events() <-chan fsnotify.Event
|
|
Errors() <-chan error
|
|
}
|
|
|
|
type fsnotifyWatcher struct {
|
|
watcher *fsnotify.Watcher
|
|
}
|
|
|
|
func (w *fsnotifyWatcher) Add(file string) error {
|
|
return w.watcher.Add(file)
|
|
}
|
|
|
|
func (w *fsnotifyWatcher) Close() error {
|
|
return w.watcher.Close()
|
|
}
|
|
|
|
func (w *fsnotifyWatcher) Events() <-chan fsnotify.Event {
|
|
return w.watcher.Events
|
|
}
|
|
|
|
func (w *fsnotifyWatcher) Errors() <-chan error {
|
|
return w.watcher.Errors
|
|
}
|