forked from TrueCloudLab/neoneo-go
core: improve conflict records storage scheme
Implement the https://github.com/neo-project/neo/issues/2907#issuecomment-1722506014 and port a part of https://github.com/neo-project/neo/pull/2913. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
fce98a0af8
commit
32bfed4741
3 changed files with 83 additions and 77 deletions
|
@ -45,7 +45,7 @@ import (
|
||||||
|
|
||||||
// Tuning parameters.
|
// Tuning parameters.
|
||||||
const (
|
const (
|
||||||
version = "0.2.9"
|
version = "0.2.10"
|
||||||
|
|
||||||
defaultInitialGAS = 52000000_00000000
|
defaultInitialGAS = 52000000_00000000
|
||||||
defaultGCPeriod = 10000
|
defaultGCPeriod = 10000
|
||||||
|
@ -2488,7 +2488,7 @@ func (bc *Blockchain) verifyAndPoolTx(t *transaction.Transaction, pool *mempool.
|
||||||
return fmt.Errorf("%w: net fee is %v, need %v", ErrTxSmallNetworkFee, t.NetworkFee, needNetworkFee)
|
return fmt.Errorf("%w: net fee is %v, need %v", ErrTxSmallNetworkFee, t.NetworkFee, needNetworkFee)
|
||||||
}
|
}
|
||||||
// check that current tx wasn't included in the conflicts attributes of some other transaction which is already in the chain
|
// check that current tx wasn't included in the conflicts attributes of some other transaction which is already in the chain
|
||||||
if err := bc.dao.HasTransaction(t.Hash(), t.Signers); err != nil {
|
if err := bc.dao.HasTransaction(t.Hash(), t.Signers, height, bc.config.MaxTraceableBlocks); err != nil {
|
||||||
switch {
|
switch {
|
||||||
case errors.Is(err, dao.ErrAlreadyExists):
|
case errors.Is(err, dao.ErrAlreadyExists):
|
||||||
return ErrAlreadyExists
|
return ErrAlreadyExists
|
||||||
|
@ -2584,8 +2584,8 @@ func (bc *Blockchain) verifyTxAttributes(d *dao.Simple, tx *transaction.Transact
|
||||||
case transaction.ConflictsT:
|
case transaction.ConflictsT:
|
||||||
conflicts := tx.Attributes[i].Value.(*transaction.Conflicts)
|
conflicts := tx.Attributes[i].Value.(*transaction.Conflicts)
|
||||||
// Only fully-qualified dao.ErrAlreadyExists error bothers us here, thus, we
|
// Only fully-qualified dao.ErrAlreadyExists error bothers us here, thus, we
|
||||||
// can safely omit the payer argument to HasTransaction call to improve performance a bit.
|
// can safely omit the signers, current index and MTB arguments to HasTransaction call to improve performance a bit.
|
||||||
if err := bc.dao.HasTransaction(conflicts.Hash, nil); errors.Is(err, dao.ErrAlreadyExists) {
|
if err := bc.dao.HasTransaction(conflicts.Hash, nil, 0, 0); errors.Is(err, dao.ErrAlreadyExists) {
|
||||||
return fmt.Errorf("%w: conflicting transaction %s is already on chain", ErrInvalidAttribute, conflicts.Hash.StringLE())
|
return fmt.Errorf("%w: conflicting transaction %s is already on chain", ErrInvalidAttribute, conflicts.Hash.StringLE())
|
||||||
}
|
}
|
||||||
case transaction.NotaryAssistedT:
|
case transaction.NotaryAssistedT:
|
||||||
|
@ -2611,14 +2611,16 @@ func (bc *Blockchain) verifyTxAttributes(d *dao.Simple, tx *transaction.Transact
|
||||||
// was already done so we don't need to check basic things like size, input/output
|
// was already done so we don't need to check basic things like size, input/output
|
||||||
// correctness, presence in blocks before the new one, etc.
|
// correctness, presence in blocks before the new one, etc.
|
||||||
func (bc *Blockchain) IsTxStillRelevant(t *transaction.Transaction, txpool *mempool.Pool, isPartialTx bool) bool {
|
func (bc *Blockchain) IsTxStillRelevant(t *transaction.Transaction, txpool *mempool.Pool, isPartialTx bool) bool {
|
||||||
var recheckWitness bool
|
var (
|
||||||
var curheight = bc.BlockHeight()
|
recheckWitness bool
|
||||||
|
curheight = bc.BlockHeight()
|
||||||
|
)
|
||||||
|
|
||||||
if t.ValidUntilBlock <= curheight {
|
if t.ValidUntilBlock <= curheight {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if txpool == nil {
|
if txpool == nil {
|
||||||
if bc.dao.HasTransaction(t.Hash(), t.Signers) != nil {
|
if bc.dao.HasTransaction(t.Hash(), t.Signers, curheight, bc.config.MaxTraceableBlocks) != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
} else if txpool.HasConflicts(t, bc) {
|
} else if txpool.HasConflicts(t, bc) {
|
||||||
|
|
|
@ -14,6 +14,7 @@ import (
|
||||||
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/core/storage"
|
"github.com/nspcc-dev/neo-go/pkg/core/storage"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
||||||
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/encoding/bigint"
|
"github.com/nspcc-dev/neo-go/pkg/encoding/bigint"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/io"
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract/trigger"
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/trigger"
|
||||||
|
@ -610,14 +611,15 @@ func (dao *Simple) GetTransaction(hash util.Uint256) (*transaction.Transaction,
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, err
|
return nil, 0, err
|
||||||
}
|
}
|
||||||
if len(b) < 6 {
|
if len(b) < 1 {
|
||||||
return nil, 0, errors.New("bad transaction bytes")
|
return nil, 0, errors.New("bad transaction bytes")
|
||||||
}
|
}
|
||||||
if b[0] != storage.ExecTransaction {
|
if b[0] != storage.ExecTransaction {
|
||||||
// It may be a block.
|
// It may be a block.
|
||||||
return nil, 0, storage.ErrKeyNotFound
|
return nil, 0, storage.ErrKeyNotFound
|
||||||
}
|
}
|
||||||
if b[5] == transaction.DummyVersion {
|
if len(b) == 1+4 { // storage.ExecTransaction + index
|
||||||
|
// It's a conflict record stub.
|
||||||
return nil, 0, storage.ErrKeyNotFound
|
return nil, 0, storage.ErrKeyNotFound
|
||||||
}
|
}
|
||||||
r := io.NewBinReaderFromBuf(b)
|
r := io.NewBinReaderFromBuf(b)
|
||||||
|
@ -686,46 +688,48 @@ func (dao *Simple) StoreHeaderHashes(hashes []util.Uint256, height uint32) error
|
||||||
// or in the list of conflicting transactions. If non-zero signers are specified,
|
// or in the list of conflicting transactions. If non-zero signers are specified,
|
||||||
// then additional check against the conflicting transaction signers intersection
|
// then additional check against the conflicting transaction signers intersection
|
||||||
// is held. Do not omit signers in case if it's important to check the validity
|
// is held. Do not omit signers in case if it's important to check the validity
|
||||||
// of a supposedly conflicting on-chain transaction.
|
// of a supposedly conflicting on-chain transaction. The retrieved conflict isn't
|
||||||
func (dao *Simple) HasTransaction(hash util.Uint256, signers []transaction.Signer) error {
|
// checked against the maxTraceableBlocks setting if signers are omitted.
|
||||||
|
// HasTransaction does not consider the case of block executable.
|
||||||
|
func (dao *Simple) HasTransaction(hash util.Uint256, signers []transaction.Signer, currentIndex uint32, maxTraceableBlocks uint32) error {
|
||||||
key := dao.makeExecutableKey(hash)
|
key := dao.makeExecutableKey(hash)
|
||||||
bytes, err := dao.Store.Get(key)
|
bytes, err := dao.Store.Get(key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(bytes) < 6 {
|
if len(bytes) < 5 { // (storage.ExecTransaction + index) for conflict record
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if bytes[5] != transaction.DummyVersion {
|
if len(bytes) != 5 {
|
||||||
return ErrAlreadyExists
|
return ErrAlreadyExists // fully-qualified transaction
|
||||||
}
|
}
|
||||||
if len(signers) == 0 {
|
if len(signers) == 0 {
|
||||||
return ErrHasConflicts
|
return ErrHasConflicts
|
||||||
}
|
}
|
||||||
|
|
||||||
sMap := make(map[util.Uint160]struct{}, len(signers))
|
if !isTraceableBlock(bytes[1:], currentIndex, maxTraceableBlocks) {
|
||||||
for _, s := range signers {
|
// The most fresh conflict record is already outdated.
|
||||||
sMap[s.Account] = struct{}{}
|
return nil
|
||||||
}
|
}
|
||||||
br := io.NewBinReaderFromBuf(bytes[6:])
|
|
||||||
for {
|
for _, s := range signers {
|
||||||
var u util.Uint160
|
v, err := dao.Store.Get(append(key, s.Account.BytesBE()...))
|
||||||
u.DecodeBinary(br)
|
if err == nil {
|
||||||
if br.Err != nil {
|
if isTraceableBlock(v[1:], currentIndex, maxTraceableBlocks) {
|
||||||
if errors.Is(br.Err, iocore.EOF) {
|
return ErrHasConflicts
|
||||||
break
|
|
||||||
}
|
}
|
||||||
return fmt.Errorf("failed to decode conflict record: %w", err)
|
|
||||||
}
|
|
||||||
if _, ok := sMap[u]; ok {
|
|
||||||
return ErrHasConflicts
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func isTraceableBlock(indexBytes []byte, height, maxTraceableBlocks uint32) bool {
|
||||||
|
index := binary.LittleEndian.Uint32(indexBytes)
|
||||||
|
return index <= height && index+maxTraceableBlocks > height
|
||||||
|
}
|
||||||
|
|
||||||
// StoreAsBlock stores given block as DataBlock. It can reuse given buffer for
|
// StoreAsBlock stores given block as DataBlock. It can reuse given buffer for
|
||||||
// the purpose of value serialization.
|
// the purpose of value serialization.
|
||||||
func (dao *Simple) StoreAsBlock(block *block.Block, aer1 *state.AppExecResult, aer2 *state.AppExecResult) error {
|
func (dao *Simple) StoreAsBlock(block *block.Block, aer1 *state.AppExecResult, aer2 *state.AppExecResult) error {
|
||||||
|
@ -768,7 +772,30 @@ func (dao *Simple) DeleteBlock(h util.Uint256) error {
|
||||||
for _, attr := range tx.GetAttributes(transaction.ConflictsT) {
|
for _, attr := range tx.GetAttributes(transaction.ConflictsT) {
|
||||||
hash := attr.Value.(*transaction.Conflicts).Hash
|
hash := attr.Value.(*transaction.Conflicts).Hash
|
||||||
copy(key[1:], hash.BytesBE())
|
copy(key[1:], hash.BytesBE())
|
||||||
dao.Store.Delete(key)
|
|
||||||
|
v, err := dao.Store.Get(key)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to retrieve conflict record stub for %s (height %d, conflict %s): %w", tx.Hash().StringLE(), b.Index, hash.StringLE(), err)
|
||||||
|
}
|
||||||
|
index := binary.LittleEndian.Uint32(v[1:])
|
||||||
|
// We can check for `<=` here, but use equality comparison to be more precise
|
||||||
|
// and do not touch earlier conflict records (if any). Their removal must be triggered
|
||||||
|
// by the caller code.
|
||||||
|
if index == b.Index {
|
||||||
|
dao.Store.Delete(key)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, s := range tx.Signers {
|
||||||
|
sKey := append(key, s.Account.BytesBE()...)
|
||||||
|
v, err := dao.Store.Get(sKey)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to retrieve conflict record for %s (height %d, conflict %s, signer %s): %w", tx.Hash().StringLE(), b.Index, hash.StringLE(), address.Uint160ToString(s.Account), err)
|
||||||
|
}
|
||||||
|
index = binary.LittleEndian.Uint32(v[1:])
|
||||||
|
if index == b.Index {
|
||||||
|
dao.Store.Delete(sKey)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -826,51 +853,23 @@ func (dao *Simple) StoreAsTransaction(tx *transaction.Transaction, index uint32,
|
||||||
if buf.Err != nil {
|
if buf.Err != nil {
|
||||||
return buf.Err
|
return buf.Err
|
||||||
}
|
}
|
||||||
dao.Store.Put(key, buf.Bytes())
|
val := buf.Bytes()
|
||||||
|
dao.Store.Put(key, val)
|
||||||
|
|
||||||
var (
|
val = val[:5] // storage.ExecTransaction (1 byte) + index (4 bytes)
|
||||||
valuePrefix []byte
|
|
||||||
newSigners []byte
|
|
||||||
)
|
|
||||||
attrs := tx.GetAttributes(transaction.ConflictsT)
|
attrs := tx.GetAttributes(transaction.ConflictsT)
|
||||||
for _, attr := range attrs {
|
for _, attr := range attrs {
|
||||||
|
// Conflict record stub.
|
||||||
hash := attr.Value.(*transaction.Conflicts).Hash
|
hash := attr.Value.(*transaction.Conflicts).Hash
|
||||||
copy(key[1:], hash.BytesBE())
|
copy(key[1:], hash.BytesBE())
|
||||||
|
|
||||||
old, err := dao.Store.Get(key)
|
|
||||||
if err != nil && !errors.Is(err, storage.ErrKeyNotFound) {
|
|
||||||
return fmt.Errorf("failed to retrieve previous conflict record for %s: %w", hash.StringLE(), err)
|
|
||||||
}
|
|
||||||
if err == nil {
|
|
||||||
if len(old) <= 6 { // storage.ExecTransaction + U32LE index + transaction.DummyVersion
|
|
||||||
return fmt.Errorf("invalid conflict record format of length %d", len(old))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
buf.Reset()
|
|
||||||
buf.WriteBytes(old)
|
|
||||||
if len(old) == 0 {
|
|
||||||
if len(valuePrefix) != 0 {
|
|
||||||
buf.WriteBytes(valuePrefix)
|
|
||||||
} else {
|
|
||||||
buf.WriteB(storage.ExecTransaction)
|
|
||||||
buf.WriteU32LE(index)
|
|
||||||
buf.WriteB(transaction.DummyVersion)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
newSignersOffset := buf.Len()
|
|
||||||
if len(newSigners) == 0 {
|
|
||||||
for _, s := range tx.Signers {
|
|
||||||
s.Account.EncodeBinary(buf.BinWriter)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
buf.WriteBytes(newSigners)
|
|
||||||
}
|
|
||||||
val := buf.Bytes()
|
|
||||||
dao.Store.Put(key, val)
|
dao.Store.Put(key, val)
|
||||||
|
|
||||||
if len(attrs) > 1 && len(valuePrefix) == 0 {
|
// Conflicting signers.
|
||||||
valuePrefix = slice.Copy(val[:6])
|
sKey := make([]byte, len(key)+util.Uint160Size)
|
||||||
newSigners = slice.Copy(val[newSignersOffset:])
|
copy(sKey, key)
|
||||||
|
for _, s := range tx.Signers {
|
||||||
|
copy(sKey[len(key):], s.Account.BytesBE())
|
||||||
|
dao.Store.Put(sKey, val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -186,7 +186,7 @@ func TestStoreAsTransaction(t *testing.T) {
|
||||||
}
|
}
|
||||||
err := dao.StoreAsTransaction(tx, 0, aer)
|
err := dao.StoreAsTransaction(tx, 0, aer)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = dao.HasTransaction(hash, nil)
|
err = dao.HasTransaction(hash, nil, 0, 0)
|
||||||
require.ErrorIs(t, err, ErrAlreadyExists)
|
require.ErrorIs(t, err, ErrAlreadyExists)
|
||||||
gotAppExecResult, err := dao.GetAppExecResults(hash, trigger.All)
|
gotAppExecResult, err := dao.GetAppExecResults(hash, trigger.All)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
@ -229,7 +229,8 @@ func TestStoreAsTransaction(t *testing.T) {
|
||||||
Stack: []stackitem.Item{},
|
Stack: []stackitem.Item{},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
err := dao.StoreAsTransaction(tx1, 0, aer1)
|
const blockIndex = 5
|
||||||
|
err := dao.StoreAsTransaction(tx1, blockIndex, aer1)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
aer2 := &state.AppExecResult{
|
aer2 := &state.AppExecResult{
|
||||||
Container: hash2,
|
Container: hash2,
|
||||||
|
@ -239,31 +240,35 @@ func TestStoreAsTransaction(t *testing.T) {
|
||||||
Stack: []stackitem.Item{},
|
Stack: []stackitem.Item{},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
err = dao.StoreAsTransaction(tx2, 0, aer2)
|
err = dao.StoreAsTransaction(tx2, blockIndex, aer2)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = dao.HasTransaction(hash1, nil)
|
err = dao.HasTransaction(hash1, nil, 0, 0)
|
||||||
require.ErrorIs(t, err, ErrAlreadyExists)
|
require.ErrorIs(t, err, ErrAlreadyExists)
|
||||||
err = dao.HasTransaction(hash2, nil)
|
err = dao.HasTransaction(hash2, nil, 0, 0)
|
||||||
require.ErrorIs(t, err, ErrAlreadyExists)
|
require.ErrorIs(t, err, ErrAlreadyExists)
|
||||||
|
|
||||||
// Conflicts: unimportant payer.
|
// Conflicts: unimportant payer.
|
||||||
err = dao.HasTransaction(conflictsH, nil)
|
err = dao.HasTransaction(conflictsH, nil, 0, 0)
|
||||||
require.ErrorIs(t, err, ErrHasConflicts)
|
require.ErrorIs(t, err, ErrHasConflicts)
|
||||||
|
|
||||||
// Conflicts: payer is important, conflict isn't malicious, test signer #1.
|
// Conflicts: payer is important, conflict isn't malicious, test signer #1.
|
||||||
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer1}})
|
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer1}}, blockIndex+1, 5)
|
||||||
require.ErrorIs(t, err, ErrHasConflicts)
|
require.ErrorIs(t, err, ErrHasConflicts)
|
||||||
|
|
||||||
// Conflicts: payer is important, conflict isn't malicious, test signer #2.
|
// Conflicts: payer is important, conflict isn't malicious, test signer #2.
|
||||||
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer2}})
|
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer2}}, blockIndex+1, 5)
|
||||||
require.ErrorIs(t, err, ErrHasConflicts)
|
require.ErrorIs(t, err, ErrHasConflicts)
|
||||||
|
|
||||||
// Conflicts: payer is important, conflict isn't malicious, test signer #3.
|
// Conflicts: payer is important, conflict isn't malicious, test signer #3.
|
||||||
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer3}})
|
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer3}}, blockIndex+1, 5)
|
||||||
require.ErrorIs(t, err, ErrHasConflicts)
|
require.ErrorIs(t, err, ErrHasConflicts)
|
||||||
|
|
||||||
|
// Conflicts: payer is important, conflict isn't malicious, but the conflict is far away than MTB.
|
||||||
|
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signer3}}, blockIndex+10, 5)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
// Conflicts: payer is important, conflict is malicious.
|
// Conflicts: payer is important, conflict is malicious.
|
||||||
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signerMalicious}})
|
err = dao.HasTransaction(conflictsH, []transaction.Signer{{Account: signerMalicious}}, blockIndex+1, 5)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
gotAppExecResult, err := dao.GetAppExecResults(hash1, trigger.All)
|
gotAppExecResult, err := dao.GetAppExecResults(hash1, trigger.All)
|
||||||
|
|
Loading…
Reference in a new issue