|
|
@ -68,7 +68,8 @@ type StateDB struct { |
|
|
|
|
|
|
|
|
|
|
|
// This map holds 'live' objects, which will get modified while processing a state transition.
|
|
|
|
// This map holds 'live' objects, which will get modified while processing a state transition.
|
|
|
|
stateObjects map[common.Address]*stateObject |
|
|
|
stateObjects map[common.Address]*stateObject |
|
|
|
stateObjectsDirty map[common.Address]struct{} |
|
|
|
stateObjectsPending map[common.Address]struct{} // State objects finalized but not yet written to the trie
|
|
|
|
|
|
|
|
stateObjectsDirty map[common.Address]struct{} // State objects modified in the current execution
|
|
|
|
|
|
|
|
|
|
|
|
// DB error.
|
|
|
|
// DB error.
|
|
|
|
// State objects are used by the consensus core and VM which are
|
|
|
|
// State objects are used by the consensus core and VM which are
|
|
|
@ -114,6 +115,7 @@ func New(root common.Hash, db Database) (*StateDB, error) { |
|
|
|
db: db, |
|
|
|
db: db, |
|
|
|
trie: tr, |
|
|
|
trie: tr, |
|
|
|
stateObjects: make(map[common.Address]*stateObject), |
|
|
|
stateObjects: make(map[common.Address]*stateObject), |
|
|
|
|
|
|
|
stateObjectsPending: make(map[common.Address]struct{}), |
|
|
|
stateObjectsDirty: make(map[common.Address]struct{}), |
|
|
|
stateObjectsDirty: make(map[common.Address]struct{}), |
|
|
|
logs: make(map[common.Hash][]*types.Log), |
|
|
|
logs: make(map[common.Hash][]*types.Log), |
|
|
|
preimages: make(map[common.Hash][]byte), |
|
|
|
preimages: make(map[common.Hash][]byte), |
|
|
@ -141,6 +143,7 @@ func (self *StateDB) Reset(root common.Hash) error { |
|
|
|
} |
|
|
|
} |
|
|
|
self.trie = tr |
|
|
|
self.trie = tr |
|
|
|
self.stateObjects = make(map[common.Address]*stateObject) |
|
|
|
self.stateObjects = make(map[common.Address]*stateObject) |
|
|
|
|
|
|
|
self.stateObjectsPending = make(map[common.Address]struct{}) |
|
|
|
self.stateObjectsDirty = make(map[common.Address]struct{}) |
|
|
|
self.stateObjectsDirty = make(map[common.Address]struct{}) |
|
|
|
self.thash = common.Hash{} |
|
|
|
self.thash = common.Hash{} |
|
|
|
self.bhash = common.Hash{} |
|
|
|
self.bhash = common.Hash{} |
|
|
@ -421,15 +424,15 @@ func (self *StateDB) Suicide(addr common.Address) bool { |
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
// updateStateObject writes the given object to the trie.
|
|
|
|
// updateStateObject writes the given object to the trie.
|
|
|
|
func (s *StateDB) updateStateObject(stateObject *stateObject) { |
|
|
|
func (s *StateDB) updateStateObject(obj *stateObject) { |
|
|
|
// Track the amount of time wasted on updating the account from the trie
|
|
|
|
// Track the amount of time wasted on updating the account from the trie
|
|
|
|
if metrics.EnabledExpensive { |
|
|
|
if metrics.EnabledExpensive { |
|
|
|
defer func(start time.Time) { s.AccountUpdates += time.Since(start) }(time.Now()) |
|
|
|
defer func(start time.Time) { s.AccountUpdates += time.Since(start) }(time.Now()) |
|
|
|
} |
|
|
|
} |
|
|
|
// Encode the account and update the account trie
|
|
|
|
// Encode the account and update the account trie
|
|
|
|
addr := stateObject.Address() |
|
|
|
addr := obj.Address() |
|
|
|
|
|
|
|
|
|
|
|
data, err := rlp.EncodeToBytes(stateObject) |
|
|
|
data, err := rlp.EncodeToBytes(obj) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
panic(fmt.Errorf("can't encode object at %x: %v", addr[:], err)) |
|
|
|
panic(fmt.Errorf("can't encode object at %x: %v", addr[:], err)) |
|
|
|
} |
|
|
|
} |
|
|
@ -437,25 +440,33 @@ func (s *StateDB) updateStateObject(stateObject *stateObject) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// deleteStateObject removes the given object from the state trie.
|
|
|
|
// deleteStateObject removes the given object from the state trie.
|
|
|
|
func (s *StateDB) deleteStateObject(stateObject *stateObject) { |
|
|
|
func (s *StateDB) deleteStateObject(obj *stateObject) { |
|
|
|
// Track the amount of time wasted on deleting the account from the trie
|
|
|
|
// Track the amount of time wasted on deleting the account from the trie
|
|
|
|
if metrics.EnabledExpensive { |
|
|
|
if metrics.EnabledExpensive { |
|
|
|
defer func(start time.Time) { s.AccountUpdates += time.Since(start) }(time.Now()) |
|
|
|
defer func(start time.Time) { s.AccountUpdates += time.Since(start) }(time.Now()) |
|
|
|
} |
|
|
|
} |
|
|
|
// Delete the account from the trie
|
|
|
|
// Delete the account from the trie
|
|
|
|
stateObject.deleted = true |
|
|
|
addr := obj.Address() |
|
|
|
|
|
|
|
|
|
|
|
addr := stateObject.Address() |
|
|
|
|
|
|
|
s.setError(s.trie.TryDelete(addr[:])) |
|
|
|
s.setError(s.trie.TryDelete(addr[:])) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Retrieve a state object given by the address. Returns nil if not found.
|
|
|
|
// getStateObject retrieves a state object given by the address, returning nil if
|
|
|
|
func (s *StateDB) getStateObject(addr common.Address) (stateObject *stateObject) { |
|
|
|
// the object is not found or was deleted in this execution context. If you need
|
|
|
|
// Prefer live objects
|
|
|
|
// to differentiate between non-existent/just-deleted, use getDeletedStateObject.
|
|
|
|
if obj := s.stateObjects[addr]; obj != nil { |
|
|
|
func (s *StateDB) getStateObject(addr common.Address) *stateObject { |
|
|
|
if obj.deleted { |
|
|
|
if obj := s.getDeletedStateObject(addr); obj != nil && !obj.deleted { |
|
|
|
|
|
|
|
return obj |
|
|
|
|
|
|
|
} |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// getDeletedStateObject is similar to getStateObject, but instead of returning
|
|
|
|
|
|
|
|
// nil for a deleted state object, it returns the actual object with the deleted
|
|
|
|
|
|
|
|
// flag set. This is needed by the state journal to revert to the correct self-
|
|
|
|
|
|
|
|
// destructed object instead of wiping all knowledge about the state object.
|
|
|
|
|
|
|
|
func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject { |
|
|
|
|
|
|
|
// Prefer live objects if any is available
|
|
|
|
|
|
|
|
if obj := s.stateObjects[addr]; obj != nil { |
|
|
|
return obj |
|
|
|
return obj |
|
|
|
} |
|
|
|
} |
|
|
|
// Track the amount of time wasted on loading the object from the database
|
|
|
|
// Track the amount of time wasted on loading the object from the database
|
|
|
@ -486,7 +497,7 @@ func (self *StateDB) setStateObject(object *stateObject) { |
|
|
|
// Retrieve a state object or create a new state object if nil.
|
|
|
|
// Retrieve a state object or create a new state object if nil.
|
|
|
|
func (self *StateDB) GetOrNewStateObject(addr common.Address) *stateObject { |
|
|
|
func (self *StateDB) GetOrNewStateObject(addr common.Address) *stateObject { |
|
|
|
stateObject := self.getStateObject(addr) |
|
|
|
stateObject := self.getStateObject(addr) |
|
|
|
if stateObject == nil || stateObject.deleted { |
|
|
|
if stateObject == nil { |
|
|
|
stateObject, _ = self.createObject(addr) |
|
|
|
stateObject, _ = self.createObject(addr) |
|
|
|
} |
|
|
|
} |
|
|
|
return stateObject |
|
|
|
return stateObject |
|
|
@ -495,7 +506,8 @@ func (self *StateDB) GetOrNewStateObject(addr common.Address) *stateObject { |
|
|
|
// createObject creates a new state object. If there is an existing account with
|
|
|
|
// createObject creates a new state object. If there is an existing account with
|
|
|
|
// the given address, it is overwritten and returned as the second return value.
|
|
|
|
// the given address, it is overwritten and returned as the second return value.
|
|
|
|
func (self *StateDB) createObject(addr common.Address) (newobj, prev *stateObject) { |
|
|
|
func (self *StateDB) createObject(addr common.Address) (newobj, prev *stateObject) { |
|
|
|
prev = self.getStateObject(addr) |
|
|
|
prev = self.getDeletedStateObject(addr) // Note, prev might have been deleted, we need that!
|
|
|
|
|
|
|
|
|
|
|
|
newobj = newObject(self, addr, Account{}) |
|
|
|
newobj = newObject(self, addr, Account{}) |
|
|
|
newobj.setNonce(0) // sets the object to dirty
|
|
|
|
newobj.setNonce(0) // sets the object to dirty
|
|
|
|
if prev == nil { |
|
|
|
if prev == nil { |
|
|
@ -561,6 +573,7 @@ func (self *StateDB) Copy() *StateDB { |
|
|
|
db: self.db, |
|
|
|
db: self.db, |
|
|
|
trie: self.db.CopyTrie(self.trie), |
|
|
|
trie: self.db.CopyTrie(self.trie), |
|
|
|
stateObjects: make(map[common.Address]*stateObject, len(self.journal.dirties)), |
|
|
|
stateObjects: make(map[common.Address]*stateObject, len(self.journal.dirties)), |
|
|
|
|
|
|
|
stateObjectsPending: make(map[common.Address]struct{}, len(self.stateObjectsPending)), |
|
|
|
stateObjectsDirty: make(map[common.Address]struct{}, len(self.journal.dirties)), |
|
|
|
stateObjectsDirty: make(map[common.Address]struct{}, len(self.journal.dirties)), |
|
|
|
refund: self.refund, |
|
|
|
refund: self.refund, |
|
|
|
logs: make(map[common.Hash][]*types.Log, len(self.logs)), |
|
|
|
logs: make(map[common.Hash][]*types.Log, len(self.logs)), |
|
|
@ -582,11 +595,17 @@ func (self *StateDB) Copy() *StateDB { |
|
|
|
// Above, we don't copy the actual journal. This means that if the copy is copied, the
|
|
|
|
// Above, we don't copy the actual journal. This means that if the copy is copied, the
|
|
|
|
// loop above will be a no-op, since the copy's journal is empty.
|
|
|
|
// loop above will be a no-op, since the copy's journal is empty.
|
|
|
|
// Thus, here we iterate over stateObjects, to enable copies of copies
|
|
|
|
// Thus, here we iterate over stateObjects, to enable copies of copies
|
|
|
|
|
|
|
|
for addr := range self.stateObjectsPending { |
|
|
|
|
|
|
|
if _, exist := state.stateObjects[addr]; !exist { |
|
|
|
|
|
|
|
state.stateObjects[addr] = self.stateObjects[addr].deepCopy(state) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
state.stateObjectsPending[addr] = struct{}{} |
|
|
|
|
|
|
|
} |
|
|
|
for addr := range self.stateObjectsDirty { |
|
|
|
for addr := range self.stateObjectsDirty { |
|
|
|
if _, exist := state.stateObjects[addr]; !exist { |
|
|
|
if _, exist := state.stateObjects[addr]; !exist { |
|
|
|
state.stateObjects[addr] = self.stateObjects[addr].deepCopy(state) |
|
|
|
state.stateObjects[addr] = self.stateObjects[addr].deepCopy(state) |
|
|
|
state.stateObjectsDirty[addr] = struct{}{} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
state.stateObjectsDirty[addr] = struct{}{} |
|
|
|
} |
|
|
|
} |
|
|
|
for hash, logs := range self.logs { |
|
|
|
for hash, logs := range self.logs { |
|
|
|
cpy := make([]*types.Log, len(logs)) |
|
|
|
cpy := make([]*types.Log, len(logs)) |
|
|
@ -631,11 +650,12 @@ func (self *StateDB) GetRefund() uint64 { |
|
|
|
return self.refund |
|
|
|
return self.refund |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Finalise finalises the state by removing the self destructed objects
|
|
|
|
// Finalise finalises the state by removing the self destructed objects and clears
|
|
|
|
// and clears the journal as well as the refunds.
|
|
|
|
// the journal as well as the refunds. Finalise, however, will not push any updates
|
|
|
|
|
|
|
|
// into the tries just yet. Only IntermediateRoot or Commit will do that.
|
|
|
|
func (s *StateDB) Finalise(deleteEmptyObjects bool) { |
|
|
|
func (s *StateDB) Finalise(deleteEmptyObjects bool) { |
|
|
|
for addr := range s.journal.dirties { |
|
|
|
for addr := range s.journal.dirties { |
|
|
|
stateObject, exist := s.stateObjects[addr] |
|
|
|
obj, exist := s.stateObjects[addr] |
|
|
|
if !exist { |
|
|
|
if !exist { |
|
|
|
// ripeMD is 'touched' at block 1714175, in tx 0x1237f737031e40bcde4a8b7e717b2d15e3ecadfe49bb1bbc71ee9deb09c6fcf2
|
|
|
|
// ripeMD is 'touched' at block 1714175, in tx 0x1237f737031e40bcde4a8b7e717b2d15e3ecadfe49bb1bbc71ee9deb09c6fcf2
|
|
|
|
// That tx goes out of gas, and although the notion of 'touched' does not exist there, the
|
|
|
|
// That tx goes out of gas, and although the notion of 'touched' does not exist there, the
|
|
|
@ -645,13 +665,12 @@ func (s *StateDB) Finalise(deleteEmptyObjects bool) { |
|
|
|
// Thus, we can safely ignore it here
|
|
|
|
// Thus, we can safely ignore it here
|
|
|
|
continue |
|
|
|
continue |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if obj.suicided || (deleteEmptyObjects && obj.empty()) { |
|
|
|
if stateObject.suicided || (deleteEmptyObjects && stateObject.empty()) { |
|
|
|
obj.deleted = true |
|
|
|
s.deleteStateObject(stateObject) |
|
|
|
|
|
|
|
} else { |
|
|
|
} else { |
|
|
|
stateObject.updateRoot(s.db) |
|
|
|
obj.finalise() |
|
|
|
s.updateStateObject(stateObject) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
s.stateObjectsPending[addr] = struct{}{} |
|
|
|
s.stateObjectsDirty[addr] = struct{}{} |
|
|
|
s.stateObjectsDirty[addr] = struct{}{} |
|
|
|
} |
|
|
|
} |
|
|
|
// Invalidate journal because reverting across transactions is not allowed.
|
|
|
|
// Invalidate journal because reverting across transactions is not allowed.
|
|
|
@ -662,8 +681,21 @@ func (s *StateDB) Finalise(deleteEmptyObjects bool) { |
|
|
|
// It is called in between transactions to get the root hash that
|
|
|
|
// It is called in between transactions to get the root hash that
|
|
|
|
// goes into transaction receipts.
|
|
|
|
// goes into transaction receipts.
|
|
|
|
func (s *StateDB) IntermediateRoot(deleteEmptyObjects bool) common.Hash { |
|
|
|
func (s *StateDB) IntermediateRoot(deleteEmptyObjects bool) common.Hash { |
|
|
|
|
|
|
|
// Finalise all the dirty storage states and write them into the tries
|
|
|
|
s.Finalise(deleteEmptyObjects) |
|
|
|
s.Finalise(deleteEmptyObjects) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for addr := range s.stateObjectsPending { |
|
|
|
|
|
|
|
obj := s.stateObjects[addr] |
|
|
|
|
|
|
|
if obj.deleted { |
|
|
|
|
|
|
|
s.deleteStateObject(obj) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
obj.updateRoot(s.db) |
|
|
|
|
|
|
|
s.updateStateObject(obj) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if len(s.stateObjectsPending) > 0 { |
|
|
|
|
|
|
|
s.stateObjectsPending = make(map[common.Address]struct{}) |
|
|
|
|
|
|
|
} |
|
|
|
// Track the amount of time wasted on hashing the account trie
|
|
|
|
// Track the amount of time wasted on hashing the account trie
|
|
|
|
if metrics.EnabledExpensive { |
|
|
|
if metrics.EnabledExpensive { |
|
|
|
defer func(start time.Time) { s.AccountHashes += time.Since(start) }(time.Now()) |
|
|
|
defer func(start time.Time) { s.AccountHashes += time.Since(start) }(time.Now()) |
|
|
@ -680,46 +712,40 @@ func (self *StateDB) Prepare(thash, bhash common.Hash, ti int) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (s *StateDB) clearJournalAndRefund() { |
|
|
|
func (s *StateDB) clearJournalAndRefund() { |
|
|
|
|
|
|
|
if len(s.journal.entries) > 0 { |
|
|
|
s.journal = newJournal() |
|
|
|
s.journal = newJournal() |
|
|
|
s.validRevisions = s.validRevisions[:0] |
|
|
|
|
|
|
|
s.refund = 0 |
|
|
|
s.refund = 0 |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
s.validRevisions = s.validRevisions[:0] // Snapshots can be created without journal entires
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Commit writes the state to the underlying in-memory trie database.
|
|
|
|
// Commit writes the state to the underlying in-memory trie database.
|
|
|
|
func (s *StateDB) Commit(deleteEmptyObjects bool) (root common.Hash, err error) { |
|
|
|
func (s *StateDB) Commit(deleteEmptyObjects bool) (common.Hash, error) { |
|
|
|
defer s.clearJournalAndRefund() |
|
|
|
// Finalize any pending changes and merge everything into the tries
|
|
|
|
|
|
|
|
s.IntermediateRoot(deleteEmptyObjects) |
|
|
|
|
|
|
|
|
|
|
|
for addr := range s.journal.dirties { |
|
|
|
|
|
|
|
s.stateObjectsDirty[addr] = struct{}{} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// Commit objects to the trie, measuring the elapsed time
|
|
|
|
// Commit objects to the trie, measuring the elapsed time
|
|
|
|
for addr, stateObject := range s.stateObjects { |
|
|
|
for addr := range s.stateObjectsDirty { |
|
|
|
_, isDirty := s.stateObjectsDirty[addr] |
|
|
|
if obj := s.stateObjects[addr]; !obj.deleted { |
|
|
|
switch { |
|
|
|
|
|
|
|
case stateObject.suicided || (isDirty && deleteEmptyObjects && stateObject.empty()): |
|
|
|
|
|
|
|
// If the object has been removed, don't bother syncing it
|
|
|
|
|
|
|
|
// and just mark it for deletion in the trie.
|
|
|
|
|
|
|
|
s.deleteStateObject(stateObject) |
|
|
|
|
|
|
|
case isDirty: |
|
|
|
|
|
|
|
// Write any contract code associated with the state object
|
|
|
|
// Write any contract code associated with the state object
|
|
|
|
if stateObject.code != nil && stateObject.dirtyCode { |
|
|
|
if obj.code != nil && obj.dirtyCode { |
|
|
|
s.db.TrieDB().InsertBlob(common.BytesToHash(stateObject.CodeHash()), stateObject.code) |
|
|
|
s.db.TrieDB().InsertBlob(common.BytesToHash(obj.CodeHash()), obj.code) |
|
|
|
stateObject.dirtyCode = false |
|
|
|
obj.dirtyCode = false |
|
|
|
} |
|
|
|
} |
|
|
|
// Write any storage changes in the state object to its storage trie.
|
|
|
|
// Write any storage changes in the state object to its storage trie
|
|
|
|
if err := stateObject.CommitTrie(s.db); err != nil { |
|
|
|
if err := obj.CommitTrie(s.db); err != nil { |
|
|
|
return common.Hash{}, err |
|
|
|
return common.Hash{}, err |
|
|
|
} |
|
|
|
} |
|
|
|
// Update the object in the main account trie.
|
|
|
|
|
|
|
|
s.updateStateObject(stateObject) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
delete(s.stateObjectsDirty, addr) |
|
|
|
} |
|
|
|
|
|
|
|
if len(s.stateObjectsDirty) > 0 { |
|
|
|
|
|
|
|
s.stateObjectsDirty = make(map[common.Address]struct{}) |
|
|
|
} |
|
|
|
} |
|
|
|
// Write the account trie changes, measuing the amount of wasted time
|
|
|
|
// Write the account trie changes, measuing the amount of wasted time
|
|
|
|
if metrics.EnabledExpensive { |
|
|
|
if metrics.EnabledExpensive { |
|
|
|
defer func(start time.Time) { s.AccountCommits += time.Since(start) }(time.Now()) |
|
|
|
defer func(start time.Time) { s.AccountCommits += time.Since(start) }(time.Now()) |
|
|
|
} |
|
|
|
} |
|
|
|
root, err = s.trie.Commit(func(leaf []byte, parent common.Hash) error { |
|
|
|
return s.trie.Commit(func(leaf []byte, parent common.Hash) error { |
|
|
|
var account Account |
|
|
|
var account Account |
|
|
|
if err := rlp.DecodeBytes(leaf, &account); err != nil { |
|
|
|
if err := rlp.DecodeBytes(leaf, &account); err != nil { |
|
|
|
return nil |
|
|
|
return nil |
|
|
@ -733,5 +759,4 @@ func (s *StateDB) Commit(deleteEmptyObjects bool) (root common.Hash, err error) |
|
|
|
} |
|
|
|
} |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
}) |
|
|
|
}) |
|
|
|
return root, err |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|