package main import ( "sync" "time" "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/container" "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/netmap" cntClient "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client/container" putsvc "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/object/put" apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status" cid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id" netmapSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap" "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user" lru "github.com/hashicorp/golang-lru/v2" ) type netValueReader[K any, V any] func(K) (V, error) type valueWithTime[V any] struct { v V t time.Time // cached error in order to not repeat failed request for some time e error } type locker struct { mtx *sync.Mutex waiters int // not protected by mtx, must used outer mutex to update concurrently } type keyLocker[K comparable] struct { lockers map[K]*locker lockersMtx *sync.Mutex } func newKeyLocker[K comparable]() *keyLocker[K] { return &keyLocker[K]{ lockers: make(map[K]*locker), lockersMtx: &sync.Mutex{}, } } func (l *keyLocker[K]) LockKey(key K) { l.lockersMtx.Lock() if locker, found := l.lockers[key]; found { locker.waiters++ l.lockersMtx.Unlock() locker.mtx.Lock() return } locker := &locker{ mtx: &sync.Mutex{}, waiters: 1, } locker.mtx.Lock() l.lockers[key] = locker l.lockersMtx.Unlock() } func (l *keyLocker[K]) UnlockKey(key K) { l.lockersMtx.Lock() defer l.lockersMtx.Unlock() locker, found := l.lockers[key] if !found { return } if locker.waiters == 1 { delete(l.lockers, key) } locker.waiters-- locker.mtx.Unlock() } // entity that provides TTL cache interface. type ttlNetCache[K comparable, V any] struct { ttl time.Duration sz int cache *lru.Cache[K, *valueWithTime[V]] netRdr netValueReader[K, V] keyLocker *keyLocker[K] } // complicates netValueReader with TTL caching mechanism. func newNetworkTTLCache[K comparable, V any](sz int, ttl time.Duration, netRdr netValueReader[K, V]) *ttlNetCache[K, V] { cache, err := lru.New[K, *valueWithTime[V]](sz) fatalOnErr(err) return &ttlNetCache[K, V]{ ttl: ttl, sz: sz, cache: cache, netRdr: netRdr, keyLocker: newKeyLocker[K](), } } // reads value by the key. // // updates the value from the network on cache miss or by TTL. // // returned value should not be modified. func (c *ttlNetCache[K, V]) get(key K) (V, error) { val, ok := c.cache.Peek(key) if ok && time.Since(val.t) < c.ttl { return val.v, val.e } c.keyLocker.LockKey(key) defer c.keyLocker.UnlockKey(key) val, ok = c.cache.Peek(key) if ok && time.Since(val.t) < c.ttl { return val.v, val.e } v, err := c.netRdr(key) c.cache.Add(key, &valueWithTime[V]{ v: v, t: time.Now(), e: err, }) return v, err } func (c *ttlNetCache[K, V]) set(k K, v V, e error) { c.keyLocker.LockKey(k) defer c.keyLocker.UnlockKey(k) c.cache.Add(k, &valueWithTime[V]{ v: v, t: time.Now(), e: e, }) } func (c *ttlNetCache[K, V]) remove(key K) { c.keyLocker.LockKey(key) defer c.keyLocker.UnlockKey(key) c.cache.Remove(key) } // entity that provides LRU cache interface. type lruNetCache struct { cache *lru.Cache[uint64, *netmapSDK.NetMap] netRdr netValueReader[uint64, *netmapSDK.NetMap] } // newNetworkLRUCache returns wrapper over netValueReader with LRU cache. func newNetworkLRUCache(sz int, netRdr netValueReader[uint64, *netmapSDK.NetMap]) *lruNetCache { cache, err := lru.New[uint64, *netmapSDK.NetMap](sz) fatalOnErr(err) return &lruNetCache{ cache: cache, netRdr: netRdr, } } // reads value by the key. // // updates the value from the network on cache miss. // // returned value should not be modified. func (c *lruNetCache) get(key uint64) (*netmapSDK.NetMap, error) { val, ok := c.cache.Get(key) if ok { return val, nil } val, err := c.netRdr(key) if err != nil { return nil, err } c.cache.Add(key, val) return val, nil } // wrapper over TTL cache of values read from the network // that implements container storage. type ttlContainerStorage struct { *ttlNetCache[cid.ID, *container.Container] } func newCachedContainerStorage(v container.Source, ttl time.Duration) ttlContainerStorage { const containerCacheSize = 100 lruCnrCache := newNetworkTTLCache(containerCacheSize, ttl, func(id cid.ID) (*container.Container, error) { return v.Get(id) }) return ttlContainerStorage{lruCnrCache} } func (s ttlContainerStorage) handleRemoval(cnr cid.ID) { s.set(cnr, nil, apistatus.ContainerNotFound{}) } // Get returns container value from the cache. If value is missing in the cache // or expired, then it returns value from side chain and updates the cache. func (s ttlContainerStorage) Get(cnr cid.ID) (*container.Container, error) { return s.get(cnr) } type ttlEACLStorage struct { *ttlNetCache[cid.ID, *container.EACL] } func newCachedEACLStorage(v container.EACLSource, ttl time.Duration) ttlEACLStorage { const eaclCacheSize = 100 lruCnrCache := newNetworkTTLCache(eaclCacheSize, ttl, func(id cid.ID) (*container.EACL, error) { return v.GetEACL(id) }) return ttlEACLStorage{lruCnrCache} } // GetEACL returns eACL value from the cache. If value is missing in the cache // or expired, then it returns value from side chain and updates cache. func (s ttlEACLStorage) GetEACL(cnr cid.ID) (*container.EACL, error) { return s.get(cnr) } // InvalidateEACL removes cached eACL value. func (s ttlEACLStorage) InvalidateEACL(cnr cid.ID) { s.remove(cnr) } type lruNetmapSource struct { netState netmap.State cache *lruNetCache } func newCachedNetmapStorage(s netmap.State, v netmap.Source) netmap.Source { const netmapCacheSize = 10 lruNetmapCache := newNetworkLRUCache(netmapCacheSize, func(key uint64) (*netmapSDK.NetMap, error) { return v.GetNetMapByEpoch(key) }) return &lruNetmapSource{ netState: s, cache: lruNetmapCache, } } func (s *lruNetmapSource) GetNetMap(diff uint64) (*netmapSDK.NetMap, error) { return s.getNetMapByEpoch(s.netState.CurrentEpoch() - diff) } func (s *lruNetmapSource) GetNetMapByEpoch(epoch uint64) (*netmapSDK.NetMap, error) { return s.getNetMapByEpoch(epoch) } func (s *lruNetmapSource) getNetMapByEpoch(epoch uint64) (*netmapSDK.NetMap, error) { val, err := s.cache.get(epoch) if err != nil { return nil, err } return val, nil } func (s *lruNetmapSource) Epoch() (uint64, error) { return s.netState.CurrentEpoch(), nil } // wrapper over TTL cache of values read from the network // that implements container lister. type ttlContainerLister struct { inner *ttlNetCache[string, *cacheItemContainerList] client *cntClient.Client } // value type for ttlNetCache used by ttlContainerLister. type cacheItemContainerList struct { // protects list from concurrent add/remove ops mtx sync.RWMutex // actual list of containers owner by the particular user list []cid.ID } func newCachedContainerLister(c *cntClient.Client, ttl time.Duration) ttlContainerLister { const containerListerCacheSize = 100 lruCnrListerCache := newNetworkTTLCache(containerListerCacheSize, ttl, func(strID string) (*cacheItemContainerList, error) { var id *user.ID if strID != "" { id = new(user.ID) err := id.DecodeString(strID) if err != nil { return nil, err } } list, err := c.ContainersOf(id) if err != nil { return nil, err } return &cacheItemContainerList{ list: list, }, nil }) return ttlContainerLister{inner: lruCnrListerCache, client: c} } // List returns list of container IDs from the cache. If list is missing in the // cache or expired, then it returns container IDs from side chain and updates // the cache. func (s ttlContainerLister) List(id *user.ID) ([]cid.ID, error) { if id == nil { return s.client.ContainersOf(nil) } item, err := s.inner.get(id.EncodeToString()) if err != nil { return nil, err } item.mtx.RLock() res := make([]cid.ID, len(item.list)) copy(res, item.list) item.mtx.RUnlock() return res, nil } // updates cached list of owner's containers: cnr is added if flag is true, otherwise it's removed. // Concurrent calls can lead to some races: // - two parallel additions to missing owner's cache can lead to only one container to be cached // - async cache value eviction can lead to idle addition // // All described race cases aren't critical since cache values expire anyway, we just try // to increase cache actuality w/o huge overhead on synchronization. func (s *ttlContainerLister) update(owner user.ID, cnr cid.ID, add bool) { strOwner := owner.EncodeToString() val, ok := s.inner.cache.Peek(strOwner) if !ok { // we could cache the single cnr but in this case we will disperse // with the Sidechain a lot return } if s.inner.ttl <= time.Since(val.t) { return } item := val.v item.mtx.Lock() { found := false for i := range item.list { if found = item.list[i].Equals(cnr); found { if !add { item.list = append(item.list[:i], item.list[i+1:]...) // if list became empty we don't remove the value from the cache // since empty list is a correct value, and we don't want to insta // re-request it from the Sidechain } break } } if add && !found { item.list = append(item.list, cnr) } } item.mtx.Unlock() } type cachedIRFetcher struct { *ttlNetCache[struct{}, [][]byte] } func newCachedIRFetcher(f interface{ InnerRingKeys() ([][]byte, error) }) cachedIRFetcher { const ( irFetcherCacheSize = 1 // we intend to store only one value // Without the cache in the testnet we can see several hundred simultaneous // requests (frostfs-node #1278), so limiting the request rate solves the issue. // // Exact request rate doesn't really matter because Inner Ring list update // happens extremely rare, but there is no side chain events for that as // for now (frostfs-contract v0.15.0 notary disabled env) to monitor it. irFetcherCacheTTL = 30 * time.Second ) irFetcherCache := newNetworkTTLCache(irFetcherCacheSize, irFetcherCacheTTL, func(_ struct{}) ([][]byte, error) { return f.InnerRingKeys() }, ) return cachedIRFetcher{irFetcherCache} } // InnerRingKeys returns cached list of Inner Ring keys. If keys are missing in // the cache or expired, then it returns keys from side chain and updates // the cache. func (f cachedIRFetcher) InnerRingKeys() ([][]byte, error) { val, err := f.get(struct{}{}) if err != nil { return nil, err } return val, nil } type ttlMaxObjectSizeCache struct { mtx sync.RWMutex lastUpdated time.Time lastSize uint64 src putsvc.MaxSizeSource } func newCachedMaxObjectSizeSource(src putsvc.MaxSizeSource) putsvc.MaxSizeSource { return &ttlMaxObjectSizeCache{ src: src, } } func (c *ttlMaxObjectSizeCache) MaxObjectSize() uint64 { const ttl = time.Second * 30 c.mtx.RLock() prevUpdated := c.lastUpdated size := c.lastSize c.mtx.RUnlock() if time.Since(prevUpdated) < ttl { return size } c.mtx.Lock() size = c.lastSize if !c.lastUpdated.After(prevUpdated) { size = c.src.MaxObjectSize() c.lastSize = size c.lastUpdated = time.Now() } c.mtx.Unlock() return size }