2022-10-08 17:20:50 +00:00
|
|
|
# Nimbus
|
2022-08-04 08:04:30 +00:00
|
|
|
# Copyright (c) 2021 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
import
|
2022-10-20 16:59:54 +00:00
|
|
|
std/hashes,
|
|
|
|
eth/[common, p2p],
|
|
|
|
stew/[interval_set, keyed_queue],
|
|
|
|
../../db/select_backend,
|
|
|
|
../sync_desc,
|
2022-10-14 16:40:32 +00:00
|
|
|
./worker/[com/com_error, db/snapdb_desc, ticker],
|
2022-08-04 08:04:30 +00:00
|
|
|
./range_desc
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
const
|
|
|
|
snapRequestBytesLimit* = 2 * 1024 * 1024
|
|
|
|
## Soft bytes limit to request in `snap` protocol calls.
|
|
|
|
|
2022-10-08 17:20:50 +00:00
|
|
|
minPivotBlockDistance* = 128
|
|
|
|
## The minimal depth of two block headers needed to activate a new state
|
|
|
|
## root pivot.
|
2022-08-24 13:44:18 +00:00
|
|
|
##
|
2022-10-08 17:20:50 +00:00
|
|
|
## Effects on assembling the state via `snap/1` protocol:
|
|
|
|
##
|
|
|
|
## * A small value of this constant increases the propensity to update the
|
|
|
|
## pivot header more often. This is so because each new peer negoiates a
|
|
|
|
## pivot block number at least the current one.
|
|
|
|
##
|
|
|
|
## * A large value keeps the current pivot more stable but some experiments
|
|
|
|
## suggest that the `snap/1` protocol is answered only for later block
|
|
|
|
## numbers (aka pivot blocks.) So a large value tends to keep the pivot
|
|
|
|
## farther away from the chain head.
|
|
|
|
##
|
|
|
|
## Note that 128 is the magic distance for snapshots used by *Geth*.
|
|
|
|
|
|
|
|
backPivotBlockDistance* = 64
|
|
|
|
## When a pivot header is found, move pivot back `backPivotBlockDistance`
|
|
|
|
## blocks so that the pivot is guaranteed to have some distance from the
|
|
|
|
## chain head.
|
|
|
|
##
|
|
|
|
## Set `backPivotBlockDistance` to zero for disabling this feature.
|
|
|
|
|
|
|
|
backPivotBlockThreshold* = backPivotBlockDistance + minPivotBlockDistance
|
|
|
|
## Ignore `backPivotBlockDistance` unless the current block number is
|
|
|
|
## larger than this constant (which must be at least
|
|
|
|
## `backPivotBlockDistance`.)
|
|
|
|
|
|
|
|
healAccountsTrigger* = 0.95
|
|
|
|
## Apply accounts healing if the global snap download coverage factor
|
|
|
|
## exceeds this setting. The global coverage factor is derived by merging
|
|
|
|
## all account ranges retrieved for all pivot state roots (see
|
|
|
|
## `coveredAccounts` in `CtxData`.)
|
2022-08-24 13:44:18 +00:00
|
|
|
|
2022-10-19 10:04:06 +00:00
|
|
|
healSlorageSlotsTrigger* = 0.70
|
|
|
|
## Consider per account storage slost healing if this particular sub-trie
|
|
|
|
## has reached this factor of completeness
|
|
|
|
|
|
|
|
maxStoragesFetch* = 5 * 1024
|
|
|
|
## Maximal number of storage tries to fetch with a single message.
|
|
|
|
|
|
|
|
maxStoragesHeal* = 32
|
|
|
|
## Maximal number of storage tries to to heal in a single batch run.
|
2022-10-14 16:40:32 +00:00
|
|
|
|
2022-09-30 08:22:14 +00:00
|
|
|
maxTrieNodeFetch* = 1024
|
|
|
|
## Informal maximal number of trie nodes to fetch at once. This is nor
|
|
|
|
## an official limit but found on several implementations (e.g. geth.)
|
|
|
|
##
|
|
|
|
## Resticting the fetch list length early allows to better paralellise
|
|
|
|
## healing.
|
|
|
|
|
2022-10-08 17:20:50 +00:00
|
|
|
maxHealingLeafPaths* = 1024
|
|
|
|
## Retrieve this many leave nodes with proper 32 bytes path when inspecting
|
|
|
|
## for dangling nodes. This allows to run healing paralell to accounts or
|
|
|
|
## storage download without requestinng an account/storage slot found by
|
|
|
|
## healing again with the download.
|
2022-08-24 13:44:18 +00:00
|
|
|
|
2022-10-08 17:20:50 +00:00
|
|
|
noPivotEnvChangeIfComplete* = true
|
|
|
|
## If set `true`, new peers will not change the pivot even if the
|
|
|
|
## negotiated pivot would be newer. This should be the default.
|
2022-08-04 08:04:30 +00:00
|
|
|
|
|
|
|
type
|
2022-10-19 10:04:06 +00:00
|
|
|
SnapSlotsQueue* = KeyedQueue[NodeKey,SnapSlotQueueItemRef]
|
2022-10-14 16:40:32 +00:00
|
|
|
## Handles list of storage slots data for fetch indexed by storage root.
|
2022-09-02 18:16:09 +00:00
|
|
|
##
|
2022-10-14 16:40:32 +00:00
|
|
|
## Typically, storage data requests cover the full storage slots trie. If
|
|
|
|
## there is only a partial list of slots to fetch, the queue entry is
|
|
|
|
## stored left-most for easy access.
|
|
|
|
|
2022-10-19 10:04:06 +00:00
|
|
|
SnapSlotsQueuePair* = KeyedQueuePair[NodeKey,SnapSlotQueueItemRef]
|
|
|
|
## Key-value return code from `SnapSlotsQueue` handler
|
|
|
|
|
2022-10-14 16:40:32 +00:00
|
|
|
SnapSlotQueueItemRef* = ref object
|
|
|
|
## Storage slots request data. This entry is similar to `AccountSlotsHeader`
|
|
|
|
## where the optional `subRange` interval has been replaced by an interval
|
|
|
|
## range + healing support.
|
|
|
|
accHash*: Hash256 ## Owner account, maybe unnecessary
|
|
|
|
slots*: SnapTrieRangeBatchRef ## slots to fetch, nil => all slots
|
2022-10-19 10:04:06 +00:00
|
|
|
inherit*: bool ## mark this trie seen already
|
2022-09-02 18:16:09 +00:00
|
|
|
|
2022-09-30 08:22:14 +00:00
|
|
|
SnapSlotsSet* = HashSet[SnapSlotQueueItemRef]
|
|
|
|
## Ditto but without order, to be used as veto set
|
|
|
|
|
2022-10-14 16:40:32 +00:00
|
|
|
SnapAccountRanges* = array[2,NodeTagRangeSet]
|
2022-10-08 17:20:50 +00:00
|
|
|
## Pair of account hash range lists. The first entry must be processed
|
|
|
|
## first. This allows to coordinate peers working on different state roots
|
|
|
|
## to avoid ovelapping accounts as long as they fetch from the first entry.
|
2022-09-16 07:24:12 +00:00
|
|
|
|
2022-10-14 16:40:32 +00:00
|
|
|
SnapTrieRangeBatch* = object
|
|
|
|
## `NodeTag` ranges to fetch, healing support
|
|
|
|
unprocessed*: SnapAccountRanges ## Range of slots not covered, yet
|
|
|
|
checkNodes*: seq[Blob] ## Nodes with prob. dangling child links
|
|
|
|
missingNodes*: seq[Blob] ## Dangling links to fetch and merge
|
|
|
|
|
|
|
|
SnapTrieRangeBatchRef* = ref SnapTrieRangeBatch
|
|
|
|
## Referenced object, so it can be made optional for the storage
|
|
|
|
## batch list
|
|
|
|
|
|
|
|
|
2022-08-04 08:04:30 +00:00
|
|
|
SnapPivotRef* = ref object
|
2022-08-17 07:30:11 +00:00
|
|
|
## Per-state root cache for particular snap data environment
|
2022-09-02 18:16:09 +00:00
|
|
|
stateHeader*: BlockHeader ## Pivot state, containg state root
|
2022-10-08 17:20:50 +00:00
|
|
|
|
|
|
|
# Accounts download
|
2022-10-14 16:40:32 +00:00
|
|
|
fetchAccounts*: SnapTrieRangeBatch ## Set of accounts ranges to fetch
|
2022-10-08 17:20:50 +00:00
|
|
|
accountsDone*: bool ## All accounts have been processed
|
|
|
|
|
|
|
|
# Storage slots download
|
|
|
|
fetchStorage*: SnapSlotsQueue ## Fetch storage for these accounts
|
|
|
|
serialSync*: bool ## Done with storage, block sync next
|
|
|
|
|
|
|
|
# Info
|
2022-10-19 10:04:06 +00:00
|
|
|
nAccounts*: uint64 ## Imported # of accounts
|
2022-10-21 19:29:42 +00:00
|
|
|
nSlotLists*: uint64 ## Imported # of account storage tries
|
2022-08-04 08:04:30 +00:00
|
|
|
|
|
|
|
SnapPivotTable* = ##\
|
|
|
|
## LRU table, indexed by state root
|
|
|
|
KeyedQueue[Hash256,SnapPivotRef]
|
|
|
|
|
|
|
|
BuddyData* = object
|
2022-08-17 07:30:11 +00:00
|
|
|
## Per-worker local descriptor data extension
|
2022-10-08 17:20:50 +00:00
|
|
|
errors*: ComErrorStatsRef ## For error handling
|
|
|
|
pivotFinder*: RootRef ## Opaque object reference for sub-module
|
|
|
|
pivotEnv*: SnapPivotRef ## Environment containing state root
|
2022-08-24 13:44:18 +00:00
|
|
|
|
2022-08-04 08:04:30 +00:00
|
|
|
CtxData* = object
|
|
|
|
## Globally shared data extension
|
2022-09-02 18:16:09 +00:00
|
|
|
rng*: ref HmacDrbgContext ## Random generator
|
|
|
|
dbBackend*: ChainDB ## Low level DB driver access (if any)
|
|
|
|
pivotTable*: SnapPivotTable ## Per state root environment
|
2022-10-08 17:20:50 +00:00
|
|
|
pivotFinderCtx*: RootRef ## Opaque object reference for sub-module
|
|
|
|
snapDb*: SnapDbRef ## Accounts snapshot DB
|
2022-10-14 16:40:32 +00:00
|
|
|
coveredAccounts*: NodeTagRangeSet ## Derived from all available accounts
|
2022-10-08 17:20:50 +00:00
|
|
|
|
|
|
|
# Info
|
|
|
|
ticker*: TickerRef ## Ticker, logger
|
2022-08-24 13:44:18 +00:00
|
|
|
|
|
|
|
SnapBuddyRef* = BuddyRef[CtxData,BuddyData]
|
2022-08-04 08:04:30 +00:00
|
|
|
## Extended worker peer descriptor
|
|
|
|
|
2022-08-24 13:44:18 +00:00
|
|
|
SnapCtxRef* = CtxRef[CtxData]
|
2022-08-04 08:04:30 +00:00
|
|
|
## Extended global descriptor
|
|
|
|
|
2022-10-08 17:20:50 +00:00
|
|
|
static:
|
|
|
|
doAssert healAccountsTrigger < 1.0 # larger values make no sense
|
|
|
|
doAssert backPivotBlockDistance <= backPivotBlockThreshold
|
|
|
|
|
2022-08-04 08:04:30 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2022-09-02 18:16:09 +00:00
|
|
|
proc hash*(a: SnapSlotQueueItemRef): Hash =
|
|
|
|
## Table/KeyedQueue mixin
|
|
|
|
cast[pointer](a).hash
|
|
|
|
|
2022-10-08 17:20:50 +00:00
|
|
|
proc hash*(a: Hash256): Hash =
|
|
|
|
## Table/KeyedQueue mixin
|
|
|
|
a.data.hash
|
|
|
|
|
2022-10-14 16:40:32 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2022-10-19 10:04:06 +00:00
|
|
|
proc merge*(q: var SnapSlotsQueue; kvp: SnapSlotsQueuePair) =
|
|
|
|
## Append/prepend a queue item record into the batch queue.
|
|
|
|
let
|
|
|
|
reqKey = kvp.key
|
|
|
|
rc = q.eq(reqKey)
|
|
|
|
if rc.isOk:
|
|
|
|
# Entry exists already
|
|
|
|
let qData = rc.value
|
|
|
|
if not qData.slots.isNil:
|
|
|
|
# So this entry is not maximal and can be extended
|
|
|
|
if kvp.data.slots.isNil:
|
|
|
|
# Remove restriction for this entry and move it to the right end
|
|
|
|
qData.slots = nil
|
|
|
|
discard q.lruFetch(reqKey)
|
|
|
|
else:
|
|
|
|
# Merge argument intervals into target set
|
|
|
|
for ivSet in kvp.data.slots.unprocessed:
|
|
|
|
for iv in ivSet.increasing:
|
|
|
|
discard qData.slots.unprocessed[0].reduce(iv)
|
|
|
|
discard qData.slots.unprocessed[1].merge(iv)
|
|
|
|
else:
|
|
|
|
# Only add non-existing entries
|
|
|
|
if kvp.data.slots.isNil:
|
|
|
|
# Append full range to the right of the list
|
|
|
|
discard q.append(reqKey, kvp.data)
|
|
|
|
else:
|
|
|
|
# Partial range, add healing support and interval
|
|
|
|
discard q.unshift(reqKey, kvp.data)
|
|
|
|
|
2022-10-14 16:40:32 +00:00
|
|
|
proc merge*(q: var SnapSlotsQueue; fetchReq: AccountSlotsHeader) =
|
|
|
|
## Append/prepend a slot header record into the batch queue.
|
2022-10-19 10:04:06 +00:00
|
|
|
let
|
|
|
|
reqKey = fetchReq.storageRoot.to(NodeKey)
|
|
|
|
rc = q.eq(reqKey)
|
|
|
|
if rc.isOk:
|
|
|
|
# Entry exists already
|
|
|
|
let qData = rc.value
|
|
|
|
if not qData.slots.isNil:
|
|
|
|
# So this entry is not maximal and can be extended
|
|
|
|
if fetchReq.subRange.isNone:
|
|
|
|
# Remove restriction for this entry and move it to the right end
|
|
|
|
qData.slots = nil
|
|
|
|
discard q.lruFetch(reqKey)
|
|
|
|
else:
|
|
|
|
# Merge argument interval into target set
|
|
|
|
let iv = fetchReq.subRange.unsafeGet
|
|
|
|
discard qData.slots.unprocessed[0].reduce(iv)
|
|
|
|
discard qData.slots.unprocessed[1].merge(iv)
|
|
|
|
else:
|
2022-10-14 16:40:32 +00:00
|
|
|
let reqData = SnapSlotQueueItemRef(accHash: fetchReq.accHash)
|
|
|
|
|
|
|
|
# Only add non-existing entries
|
|
|
|
if fetchReq.subRange.isNone:
|
|
|
|
# Append full range to the right of the list
|
|
|
|
discard q.append(reqKey, reqData)
|
|
|
|
else:
|
|
|
|
# Partial range, add healing support and interval
|
|
|
|
reqData.slots = SnapTrieRangeBatchRef()
|
|
|
|
for n in 0 ..< reqData.slots.unprocessed.len:
|
|
|
|
reqData.slots.unprocessed[n] = NodeTagRangeSet.init()
|
|
|
|
discard reqData.slots.unprocessed[0].merge(fetchReq.subRange.unsafeGet)
|
|
|
|
discard q.unshift(reqKey, reqData)
|
|
|
|
|
2022-10-19 10:04:06 +00:00
|
|
|
proc merge*(
|
|
|
|
q: var SnapSlotsQueue;
|
|
|
|
reqList: openArray[SnapSlotsQueuePair|AccountSlotsHeader]) =
|
2022-10-14 16:40:32 +00:00
|
|
|
## Variant fof `merge()` for a list argument
|
|
|
|
for w in reqList:
|
|
|
|
q.merge w
|
|
|
|
|
2022-08-04 08:04:30 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|