mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-10 16:40:46 +02:00
* filer: let a nested path rule turn worm off mergePathConf ORs the booleans, so worm set on a bucket could never be lifted on a directory under it, while every string field is overridden by the more specific rule. Make worm tri-state instead: unset inherits, set wins. readOnly, fsync and disableChunkDeletion keep the OR, so a nested rule still cannot escape a lock the bucket set. Configurations written before this carry an explicit "worm": false on every rule, because they are marshalled with EmitUnpopulated. Reading those back as an override would quietly drop worm from nested paths, so filer.conf is now stamped with a version and the flag is dropped to unset when the version predates it. * filer: copy the worm value out of the matched rule mergePathConf aliased the pointer into the merged result, so a caller that wrote through it would reach into the stored rule.
108 lines
2.6 KiB
Go
108 lines
2.6 KiB
Go
package mount
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
"github.com/seaweedfs/seaweedfs/weed/mount/meta_cache"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
)
|
|
|
|
func (wfs *WFS) subscribeFilerConfEvents() (*meta_cache.MetadataFollower, error) {
|
|
confDir := filer.DirectoryEtcSeaweedFS
|
|
confName := filer.FilerConfName
|
|
confFullName := filepath.Join(filer.DirectoryEtcSeaweedFS, filer.FilerConfName)
|
|
|
|
// read current conf
|
|
err := wfs.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
|
content, err := filer.ReadInsideFiler(context.Background(), client, confDir, confName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fc := filer.NewFilerConf()
|
|
if len(content) > 0 {
|
|
if err := fc.LoadFromBytes(content); err != nil {
|
|
return fmt.Errorf("parse %s: %v", confFullName, err)
|
|
}
|
|
}
|
|
|
|
wfs.FilerConf = fc
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
if errors.Is(err, filer_pb.ErrNotFound) {
|
|
glog.V(0).Infof("fuse filer conf %s not found", confFullName)
|
|
} else {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
processEventFn := func(resp *filer_pb.SubscribeMetadataResponse) error {
|
|
if !isFilerConfUpdateEvent(resp, confDir, confName) {
|
|
return nil
|
|
}
|
|
|
|
content := resp.EventNotification.NewEntry.Content
|
|
fc := filer.NewFilerConf()
|
|
if len(content) > 0 {
|
|
if err = fc.LoadFromBytes(content); err != nil {
|
|
return fmt.Errorf("parse %s: %v", confFullName, err)
|
|
}
|
|
}
|
|
|
|
wfs.FilerConf = fc
|
|
|
|
return nil
|
|
}
|
|
return &meta_cache.MetadataFollower{
|
|
PathPrefixToWatch: confFullName,
|
|
ProcessEventFn: processEventFn,
|
|
}, nil
|
|
}
|
|
|
|
func isFilerConfUpdateEvent(resp *filer_pb.SubscribeMetadataResponse, confDir, confName string) bool {
|
|
if resp == nil || resp.EventNotification == nil || resp.EventNotification.NewEntry == nil {
|
|
return false
|
|
}
|
|
return filer_pb.MetadataEventTargetDirectory(resp) == confDir &&
|
|
resp.EventNotification.NewEntry.Name == confName
|
|
}
|
|
|
|
func (wfs *WFS) wormEnforcedForEntry(path util.FullPath, entry *filer_pb.Entry) (wormEnforced, wormEnabled bool) {
|
|
if entry == nil || wfs.FilerConf == nil {
|
|
return false, false
|
|
}
|
|
|
|
rule := wfs.FilerConf.MatchStorageRule(string(path))
|
|
if !rule.GetWorm() {
|
|
return false, false
|
|
}
|
|
|
|
// worm is not enforced
|
|
if entry.WormEnforcedAtTsNs == 0 {
|
|
return false, true
|
|
}
|
|
|
|
// worm will never expire
|
|
if rule.WormRetentionTimeSeconds == 0 {
|
|
return true, true
|
|
}
|
|
|
|
enforcedAt := time.Unix(0, entry.WormEnforcedAtTsNs)
|
|
|
|
// worm is expired
|
|
if time.Now().Sub(enforcedAt).Seconds() >= float64(rule.WormRetentionTimeSeconds) {
|
|
return false, true
|
|
}
|
|
|
|
return true, true
|
|
}
|