2015-03-28 23:44:07 -07:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2017-01-19 13:33:58 +04:00
|
|
|
"fmt"
|
2015-03-28 23:44:07 -07:00
|
|
|
|
2017-01-19 13:33:58 +04:00
|
|
|
fail "github.com/ebuchman/fail-test"
|
2017-02-14 15:33:14 -05:00
|
|
|
abci "github.com/tendermint/abci/types"
|
2017-01-19 13:33:58 +04:00
|
|
|
crypto "github.com/tendermint/go-crypto"
|
2015-12-01 20:12:01 -08:00
|
|
|
"github.com/tendermint/tendermint/proxy"
|
2015-04-01 17:30:16 -07:00
|
|
|
"github.com/tendermint/tendermint/types"
|
2017-04-25 14:50:20 -04:00
|
|
|
cmn "github.com/tendermint/tmlibs/common"
|
2017-05-02 11:53:32 +04:00
|
|
|
"github.com/tendermint/tmlibs/log"
|
2015-03-28 23:44:07 -07:00
|
|
|
)
|
|
|
|
|
2017-04-14 15:33:19 -04:00
|
|
|
//--------------------------------------------------
|
|
|
|
// Execute the block
|
|
|
|
|
2017-04-17 15:24:44 -07:00
|
|
|
// ValExecBlock executes the block, but does NOT mutate State.
|
2017-01-19 13:33:58 +04:00
|
|
|
// + validates the block
|
|
|
|
// + executes block.Txs on the proxyAppConn
|
new pubsub package
comment out failing consensus tests for now
rewrite rpc httpclient to use new pubsub package
import pubsub as tmpubsub, query as tmquery
make event IDs constants
EventKey -> EventTypeKey
rename EventsPubsub to PubSub
mempool does not use pubsub
rename eventsSub to pubsub
new subscribe API
fix channel size issues and consensus tests bugs
refactor rpc client
add missing discardFromChan method
add mutex
rename pubsub to eventBus
remove IsRunning from WSRPCConnection interface (not needed)
add a comment in broadcastNewRoundStepsAndVotes
rename registerEventCallbacks to broadcastNewRoundStepsAndVotes
See https://dave.cheney.net/2014/03/19/channel-axioms
stop eventBuses after reactor tests
remove unnecessary Unsubscribe
return subscribe helper function
move discardFromChan to where it is used
subscribe now returns an err
this gives us ability to refuse to subscribe if pubsub is at its max
capacity.
use context for control overflow
cache queries
handle err when subscribing in replay_test
rename testClientID to testSubscriber
extract var
set channel buffer capacity to 1 in replay_file
fix byzantine_test
unsubscribe from single event, not all events
refactor httpclient to return events to appropriate channels
return failing testReplayCrashBeforeWriteVote test
fix TestValidatorSetChanges
refactor code a bit
fix testReplayCrashBeforeWriteVote
add comment
fix TestValidatorSetChanges
fixes from Bucky's review
update comment [ci skip]
test TxEventBuffer
update changelog
fix TestValidatorSetChanges (2nd attempt)
only do wg.Done when no errors
benchmark event bus
create pubsub server inside NewEventBus
only expose config params (later if needed)
set buffer capacity to 0 so we are not testing cache
new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ}
This should allow to subscribe to all transactions! or a specific one
using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'"
use TimeoutCommit instead of afterPublishEventNewBlockTimeout
TimeoutCommit is the time a node waits after committing a block, before
it goes into the next height. So it will finish everything from the last
block, but then wait a bit. The idea is this gives it time to hear more
votes from other validators, to strengthen the commit it includes in the
next block. But it also gives it time to hear about new transactions.
waitForBlockWithUpdatedVals
rewrite WAL crash tests
Task:
test that we can recover from any WAL crash.
Solution:
the old tests were relying on event hub being run in the same thread (we
were injecting the private validator's last signature).
when considering a rewrite, we considered two possible solutions: write
a "fuzzy" testing system where WAL is crashing upon receiving a new
message, or inject failures and trigger them in tests using something
like https://github.com/coreos/gofail.
remove sleep
no cs.Lock around wal.Save
test different cases (empty block, non-empty block, ...)
comments
add comments
test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks
fixes as per Bucky's last review
reset subscriptions on UnsubscribeAll
use a simple counter to track message for which we panicked
also, set a smaller part size for all test cases
2017-06-26 19:00:30 +04:00
|
|
|
func (s *State) ValExecBlock(txEventPublisher types.TxEventPublisher, proxyAppConn proxy.AppConnConsensus, block *types.Block) (*ABCIResponses, error) {
|
2015-12-01 20:12:01 -08:00
|
|
|
// Validate the block.
|
2016-11-19 19:32:35 -05:00
|
|
|
if err := s.validateBlock(block); err != nil {
|
2017-01-19 13:33:58 +04:00
|
|
|
return nil, ErrInvalidBlock(err)
|
2015-03-28 23:44:07 -07:00
|
|
|
}
|
2015-12-01 20:12:01 -08:00
|
|
|
|
2016-01-06 17:14:20 -08:00
|
|
|
// Execute the block txs
|
new pubsub package
comment out failing consensus tests for now
rewrite rpc httpclient to use new pubsub package
import pubsub as tmpubsub, query as tmquery
make event IDs constants
EventKey -> EventTypeKey
rename EventsPubsub to PubSub
mempool does not use pubsub
rename eventsSub to pubsub
new subscribe API
fix channel size issues and consensus tests bugs
refactor rpc client
add missing discardFromChan method
add mutex
rename pubsub to eventBus
remove IsRunning from WSRPCConnection interface (not needed)
add a comment in broadcastNewRoundStepsAndVotes
rename registerEventCallbacks to broadcastNewRoundStepsAndVotes
See https://dave.cheney.net/2014/03/19/channel-axioms
stop eventBuses after reactor tests
remove unnecessary Unsubscribe
return subscribe helper function
move discardFromChan to where it is used
subscribe now returns an err
this gives us ability to refuse to subscribe if pubsub is at its max
capacity.
use context for control overflow
cache queries
handle err when subscribing in replay_test
rename testClientID to testSubscriber
extract var
set channel buffer capacity to 1 in replay_file
fix byzantine_test
unsubscribe from single event, not all events
refactor httpclient to return events to appropriate channels
return failing testReplayCrashBeforeWriteVote test
fix TestValidatorSetChanges
refactor code a bit
fix testReplayCrashBeforeWriteVote
add comment
fix TestValidatorSetChanges
fixes from Bucky's review
update comment [ci skip]
test TxEventBuffer
update changelog
fix TestValidatorSetChanges (2nd attempt)
only do wg.Done when no errors
benchmark event bus
create pubsub server inside NewEventBus
only expose config params (later if needed)
set buffer capacity to 0 so we are not testing cache
new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ}
This should allow to subscribe to all transactions! or a specific one
using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'"
use TimeoutCommit instead of afterPublishEventNewBlockTimeout
TimeoutCommit is the time a node waits after committing a block, before
it goes into the next height. So it will finish everything from the last
block, but then wait a bit. The idea is this gives it time to hear more
votes from other validators, to strengthen the commit it includes in the
next block. But it also gives it time to hear about new transactions.
waitForBlockWithUpdatedVals
rewrite WAL crash tests
Task:
test that we can recover from any WAL crash.
Solution:
the old tests were relying on event hub being run in the same thread (we
were injecting the private validator's last signature).
when considering a rewrite, we considered two possible solutions: write
a "fuzzy" testing system where WAL is crashing upon receiving a new
message, or inject failures and trigger them in tests using something
like https://github.com/coreos/gofail.
remove sleep
no cs.Lock around wal.Save
test different cases (empty block, non-empty block, ...)
comments
add comments
test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks
fixes as per Bucky's last review
reset subscriptions on UnsubscribeAll
use a simple counter to track message for which we panicked
also, set a smaller part size for all test cases
2017-06-26 19:00:30 +04:00
|
|
|
abciResponses, err := execBlockOnProxyApp(txEventPublisher, proxyAppConn, block, s.logger)
|
2015-12-01 20:12:01 -08:00
|
|
|
if err != nil {
|
2016-01-06 17:14:20 -08:00
|
|
|
// There was some error in proxyApp
|
|
|
|
// TODO Report error and wait for proxyApp to be available.
|
2017-01-19 13:33:58 +04:00
|
|
|
return nil, ErrProxyAppConn(err)
|
2015-12-01 20:12:01 -08:00
|
|
|
}
|
|
|
|
|
2017-04-14 15:33:19 -04:00
|
|
|
return abciResponses, nil
|
2015-03-28 23:44:07 -07:00
|
|
|
}
|
|
|
|
|
2016-01-06 17:14:20 -08:00
|
|
|
// Executes block's transactions on proxyAppConn.
|
2017-01-19 13:33:58 +04:00
|
|
|
// Returns a list of transaction results and updates to the validator set
|
2016-01-06 17:14:20 -08:00
|
|
|
// TODO: Generate a bitmap or otherwise store tx validity in state.
|
new pubsub package
comment out failing consensus tests for now
rewrite rpc httpclient to use new pubsub package
import pubsub as tmpubsub, query as tmquery
make event IDs constants
EventKey -> EventTypeKey
rename EventsPubsub to PubSub
mempool does not use pubsub
rename eventsSub to pubsub
new subscribe API
fix channel size issues and consensus tests bugs
refactor rpc client
add missing discardFromChan method
add mutex
rename pubsub to eventBus
remove IsRunning from WSRPCConnection interface (not needed)
add a comment in broadcastNewRoundStepsAndVotes
rename registerEventCallbacks to broadcastNewRoundStepsAndVotes
See https://dave.cheney.net/2014/03/19/channel-axioms
stop eventBuses after reactor tests
remove unnecessary Unsubscribe
return subscribe helper function
move discardFromChan to where it is used
subscribe now returns an err
this gives us ability to refuse to subscribe if pubsub is at its max
capacity.
use context for control overflow
cache queries
handle err when subscribing in replay_test
rename testClientID to testSubscriber
extract var
set channel buffer capacity to 1 in replay_file
fix byzantine_test
unsubscribe from single event, not all events
refactor httpclient to return events to appropriate channels
return failing testReplayCrashBeforeWriteVote test
fix TestValidatorSetChanges
refactor code a bit
fix testReplayCrashBeforeWriteVote
add comment
fix TestValidatorSetChanges
fixes from Bucky's review
update comment [ci skip]
test TxEventBuffer
update changelog
fix TestValidatorSetChanges (2nd attempt)
only do wg.Done when no errors
benchmark event bus
create pubsub server inside NewEventBus
only expose config params (later if needed)
set buffer capacity to 0 so we are not testing cache
new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ}
This should allow to subscribe to all transactions! or a specific one
using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'"
use TimeoutCommit instead of afterPublishEventNewBlockTimeout
TimeoutCommit is the time a node waits after committing a block, before
it goes into the next height. So it will finish everything from the last
block, but then wait a bit. The idea is this gives it time to hear more
votes from other validators, to strengthen the commit it includes in the
next block. But it also gives it time to hear about new transactions.
waitForBlockWithUpdatedVals
rewrite WAL crash tests
Task:
test that we can recover from any WAL crash.
Solution:
the old tests were relying on event hub being run in the same thread (we
were injecting the private validator's last signature).
when considering a rewrite, we considered two possible solutions: write
a "fuzzy" testing system where WAL is crashing upon receiving a new
message, or inject failures and trigger them in tests using something
like https://github.com/coreos/gofail.
remove sleep
no cs.Lock around wal.Save
test different cases (empty block, non-empty block, ...)
comments
add comments
test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks
fixes as per Bucky's last review
reset subscriptions on UnsubscribeAll
use a simple counter to track message for which we panicked
also, set a smaller part size for all test cases
2017-06-26 19:00:30 +04:00
|
|
|
func execBlockOnProxyApp(txEventPublisher types.TxEventPublisher, proxyAppConn proxy.AppConnConsensus, block *types.Block, logger log.Logger) (*ABCIResponses, error) {
|
2016-01-06 17:14:20 -08:00
|
|
|
var validTxs, invalidTxs = 0, 0
|
2015-12-01 20:12:01 -08:00
|
|
|
|
2017-04-10 22:41:07 +04:00
|
|
|
txIndex := 0
|
2017-04-14 15:33:19 -04:00
|
|
|
abciResponses := NewABCIResponses(block)
|
|
|
|
|
2015-12-01 20:12:01 -08:00
|
|
|
// Execute transactions and get hash
|
2017-01-12 15:53:32 -05:00
|
|
|
proxyCb := func(req *abci.Request, res *abci.Response) {
|
2016-05-14 12:33:27 -04:00
|
|
|
switch r := res.Value.(type) {
|
2017-01-12 15:55:03 -05:00
|
|
|
case *abci.Response_DeliverTx:
|
2016-01-25 14:34:08 -08:00
|
|
|
// TODO: make use of res.Log
|
2016-01-06 17:14:20 -08:00
|
|
|
// TODO: make use of this info
|
|
|
|
// Blocks may include invalid txs.
|
2017-01-12 15:55:03 -05:00
|
|
|
// reqDeliverTx := req.(abci.RequestDeliverTx)
|
2017-01-19 13:33:58 +04:00
|
|
|
txResult := r.DeliverTx
|
2017-12-02 01:47:55 -05:00
|
|
|
if txResult.Code == abci.CodeTypeOK {
|
2017-01-19 13:33:58 +04:00
|
|
|
validTxs++
|
2016-01-06 17:14:20 -08:00
|
|
|
} else {
|
2017-05-02 11:53:32 +04:00
|
|
|
logger.Debug("Invalid tx", "code", txResult.Code, "log", txResult.Log)
|
2017-01-19 13:33:58 +04:00
|
|
|
invalidTxs++
|
|
|
|
}
|
|
|
|
|
2016-06-27 20:43:09 -04:00
|
|
|
// NOTE: if we count we can access the tx from the block instead of
|
|
|
|
// pulling it from the req
|
2017-11-15 15:07:08 -06:00
|
|
|
txEventPublisher.PublishEventTx(types.EventDataTx{types.TxResult{
|
2017-12-01 19:04:53 -06:00
|
|
|
Height: block.Height,
|
2017-11-15 15:07:08 -06:00
|
|
|
Index: uint32(txIndex),
|
|
|
|
Tx: types.Tx(req.GetDeliverTx().Tx),
|
|
|
|
Result: *txResult,
|
|
|
|
}})
|
2017-11-15 14:10:54 -06:00
|
|
|
|
2017-11-15 15:07:08 -06:00
|
|
|
abciResponses.DeliverTx[txIndex] = txResult
|
|
|
|
txIndex++
|
2015-12-01 20:12:01 -08:00
|
|
|
}
|
|
|
|
}
|
2016-01-06 17:14:20 -08:00
|
|
|
proxyAppConn.SetResponseCallback(proxyCb)
|
|
|
|
|
2016-11-03 19:51:22 -04:00
|
|
|
// Begin block
|
2017-11-29 11:22:52 -06:00
|
|
|
_, err := proxyAppConn.BeginBlockSync(abci.RequestBeginBlock{
|
2017-09-22 11:42:40 -04:00
|
|
|
block.Hash(),
|
|
|
|
types.TM2PB.Header(block.Header),
|
2017-12-02 01:47:55 -05:00
|
|
|
nil,
|
|
|
|
nil,
|
2017-09-22 11:42:40 -04:00
|
|
|
})
|
2016-11-03 19:51:22 -04:00
|
|
|
if err != nil {
|
2017-06-14 12:50:49 +04:00
|
|
|
logger.Error("Error in proxyAppConn.BeginBlock", "err", err)
|
2017-04-14 15:33:19 -04:00
|
|
|
return nil, err
|
2016-11-03 19:51:22 -04:00
|
|
|
}
|
2016-08-06 23:30:46 -04:00
|
|
|
|
2016-03-05 20:57:36 -08:00
|
|
|
// Run txs of block
|
2016-01-06 17:14:20 -08:00
|
|
|
for _, tx := range block.Txs {
|
2017-01-12 15:55:03 -05:00
|
|
|
proxyAppConn.DeliverTxAsync(tx)
|
2016-01-06 17:14:20 -08:00
|
|
|
if err := proxyAppConn.Error(); err != nil {
|
2017-04-14 15:33:19 -04:00
|
|
|
return nil, err
|
2015-12-01 20:12:01 -08:00
|
|
|
}
|
|
|
|
}
|
2016-03-05 20:57:36 -08:00
|
|
|
|
|
|
|
// End block
|
2017-12-02 01:47:55 -05:00
|
|
|
abciResponses.EndBlock, err = proxyAppConn.EndBlockSync(abci.RequestEndBlock{block.Height})
|
2016-03-05 20:57:36 -08:00
|
|
|
if err != nil {
|
2017-06-14 12:50:49 +04:00
|
|
|
logger.Error("Error in proxyAppConn.EndBlock", "err", err)
|
2017-04-14 15:33:19 -04:00
|
|
|
return nil, err
|
2016-03-05 20:57:36 -08:00
|
|
|
}
|
2016-09-11 15:32:33 -04:00
|
|
|
|
2017-04-14 20:21:50 -04:00
|
|
|
valDiff := abciResponses.EndBlock.Diffs
|
|
|
|
|
2017-06-14 14:41:36 +08:00
|
|
|
logger.Info("Executed block", "height", block.Height, "validTxs", validTxs, "invalidTxs", invalidTxs)
|
2017-04-14 20:21:50 -04:00
|
|
|
if len(valDiff) > 0 {
|
2017-05-02 11:53:32 +04:00
|
|
|
logger.Info("Update to validator set", "updates", abci.ValidatorsString(valDiff))
|
2016-11-22 18:55:42 -05:00
|
|
|
}
|
2017-04-14 15:33:19 -04:00
|
|
|
|
|
|
|
return abciResponses, nil
|
2016-11-19 19:32:35 -05:00
|
|
|
}
|
|
|
|
|
2017-01-12 15:53:32 -05:00
|
|
|
func updateValidators(validators *types.ValidatorSet, changedValidators []*abci.Validator) error {
|
2016-11-19 19:32:35 -05:00
|
|
|
// TODO: prevent change of 1/3+ at once
|
|
|
|
|
|
|
|
for _, v := range changedValidators {
|
|
|
|
pubkey, err := crypto.PubKeyFromBytes(v.PubKey) // NOTE: expects go-wire encoded pubkey
|
|
|
|
if err != nil {
|
2016-12-02 00:12:06 -05:00
|
|
|
return err
|
2016-11-19 19:32:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
address := pubkey.Address()
|
|
|
|
power := int64(v.Power)
|
2017-12-01 19:04:53 -06:00
|
|
|
// mind the overflow from int64
|
2016-11-19 19:32:35 -05:00
|
|
|
if power < 0 {
|
2017-04-25 14:50:20 -04:00
|
|
|
return errors.New(cmn.Fmt("Power (%d) overflows int64", v.Power))
|
2016-11-19 19:32:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
_, val := validators.GetByAddress(address)
|
|
|
|
if val == nil {
|
|
|
|
// add val
|
|
|
|
added := validators.Add(types.NewValidator(pubkey, power))
|
|
|
|
if !added {
|
2017-04-25 14:50:20 -04:00
|
|
|
return errors.New(cmn.Fmt("Failed to add new validator %X with voting power %d", address, power))
|
2016-11-19 19:32:35 -05:00
|
|
|
}
|
|
|
|
} else if v.Power == 0 {
|
|
|
|
// remove val
|
|
|
|
_, removed := validators.Remove(address)
|
|
|
|
if !removed {
|
2017-04-25 14:50:20 -04:00
|
|
|
return errors.New(cmn.Fmt("Failed to remove validator %X)"))
|
2016-11-19 19:32:35 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// update val
|
|
|
|
val.VotingPower = power
|
|
|
|
updated := validators.Update(val)
|
|
|
|
if !updated {
|
2017-04-25 14:50:20 -04:00
|
|
|
return errors.New(cmn.Fmt("Failed to update validator %X with voting power %d", address, power))
|
2016-11-19 19:32:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 00:12:06 -05:00
|
|
|
return nil
|
2015-12-01 20:12:01 -08:00
|
|
|
}
|
|
|
|
|
2017-09-21 08:49:19 -04:00
|
|
|
// return a bit array of validators that signed the last commit
|
|
|
|
// NOTE: assumes commits have already been authenticated
|
2017-09-21 13:54:34 -04:00
|
|
|
/* function is currently unused
|
2017-09-21 08:49:19 -04:00
|
|
|
func commitBitArrayFromBlock(block *types.Block) *cmn.BitArray {
|
|
|
|
signed := cmn.NewBitArray(len(block.LastCommit.Precommits))
|
|
|
|
for i, precommit := range block.LastCommit.Precommits {
|
|
|
|
if precommit != nil {
|
|
|
|
signed.SetIndex(i, true) // val_.LastCommitHeight = block.Height - 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return signed
|
|
|
|
}
|
2017-09-21 13:54:34 -04:00
|
|
|
*/
|
2017-09-21 08:49:19 -04:00
|
|
|
|
2016-09-11 13:16:23 -04:00
|
|
|
//-----------------------------------------------------
|
|
|
|
// Validate block
|
2015-08-10 20:38:45 -07:00
|
|
|
|
2017-08-21 16:12:07 -04:00
|
|
|
// ValidateBlock validates the block against the state.
|
2016-09-11 13:16:23 -04:00
|
|
|
func (s *State) ValidateBlock(block *types.Block) error {
|
|
|
|
return s.validateBlock(block)
|
2015-08-10 20:38:45 -07:00
|
|
|
}
|
|
|
|
|
2016-09-11 13:16:23 -04:00
|
|
|
func (s *State) validateBlock(block *types.Block) error {
|
|
|
|
// Basic block validation.
|
2017-12-12 13:16:03 +01:00
|
|
|
err := block.ValidateBasic(s.ChainID, s.LastBlockHeight,
|
|
|
|
s.LastBlockTotalTx, s.LastBlockID, s.LastBlockTime, s.AppHash)
|
2016-09-11 13:16:23 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate block LastCommit.
|
|
|
|
if block.Height == 1 {
|
|
|
|
if len(block.LastCommit.Precommits) != 0 {
|
|
|
|
return errors.New("Block at height 1 (first block) should have no LastCommit precommits")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if len(block.LastCommit.Precommits) != s.LastValidators.Size() {
|
2017-04-25 14:50:20 -04:00
|
|
|
return errors.New(cmn.Fmt("Invalid block commit size. Expected %v, got %v",
|
2016-09-11 13:16:23 -04:00
|
|
|
s.LastValidators.Size(), len(block.LastCommit.Precommits)))
|
|
|
|
}
|
|
|
|
err := s.LastValidators.VerifyCommit(
|
|
|
|
s.ChainID, s.LastBlockID, block.Height-1, block.LastCommit)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2015-12-01 20:12:01 -08:00
|
|
|
}
|
2016-08-23 21:44:07 -04:00
|
|
|
|
2017-04-14 15:33:19 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-04-17 15:24:44 -07:00
|
|
|
// ApplyBlock validates & executes the block, updates state w/ ABCI responses,
|
2017-04-14 15:33:19 -04:00
|
|
|
// then commits and updates the mempool atomically, then saves state.
|
|
|
|
|
2017-08-21 16:12:07 -04:00
|
|
|
// ApplyBlock validates the block against the state, executes it against the app,
|
|
|
|
// commits it, and saves the block and state. It's the only function that needs to be called
|
|
|
|
// from outside this package to process and commit an entire block.
|
new pubsub package
comment out failing consensus tests for now
rewrite rpc httpclient to use new pubsub package
import pubsub as tmpubsub, query as tmquery
make event IDs constants
EventKey -> EventTypeKey
rename EventsPubsub to PubSub
mempool does not use pubsub
rename eventsSub to pubsub
new subscribe API
fix channel size issues and consensus tests bugs
refactor rpc client
add missing discardFromChan method
add mutex
rename pubsub to eventBus
remove IsRunning from WSRPCConnection interface (not needed)
add a comment in broadcastNewRoundStepsAndVotes
rename registerEventCallbacks to broadcastNewRoundStepsAndVotes
See https://dave.cheney.net/2014/03/19/channel-axioms
stop eventBuses after reactor tests
remove unnecessary Unsubscribe
return subscribe helper function
move discardFromChan to where it is used
subscribe now returns an err
this gives us ability to refuse to subscribe if pubsub is at its max
capacity.
use context for control overflow
cache queries
handle err when subscribing in replay_test
rename testClientID to testSubscriber
extract var
set channel buffer capacity to 1 in replay_file
fix byzantine_test
unsubscribe from single event, not all events
refactor httpclient to return events to appropriate channels
return failing testReplayCrashBeforeWriteVote test
fix TestValidatorSetChanges
refactor code a bit
fix testReplayCrashBeforeWriteVote
add comment
fix TestValidatorSetChanges
fixes from Bucky's review
update comment [ci skip]
test TxEventBuffer
update changelog
fix TestValidatorSetChanges (2nd attempt)
only do wg.Done when no errors
benchmark event bus
create pubsub server inside NewEventBus
only expose config params (later if needed)
set buffer capacity to 0 so we are not testing cache
new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ}
This should allow to subscribe to all transactions! or a specific one
using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'"
use TimeoutCommit instead of afterPublishEventNewBlockTimeout
TimeoutCommit is the time a node waits after committing a block, before
it goes into the next height. So it will finish everything from the last
block, but then wait a bit. The idea is this gives it time to hear more
votes from other validators, to strengthen the commit it includes in the
next block. But it also gives it time to hear about new transactions.
waitForBlockWithUpdatedVals
rewrite WAL crash tests
Task:
test that we can recover from any WAL crash.
Solution:
the old tests were relying on event hub being run in the same thread (we
were injecting the private validator's last signature).
when considering a rewrite, we considered two possible solutions: write
a "fuzzy" testing system where WAL is crashing upon receiving a new
message, or inject failures and trigger them in tests using something
like https://github.com/coreos/gofail.
remove sleep
no cs.Lock around wal.Save
test different cases (empty block, non-empty block, ...)
comments
add comments
test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks
fixes as per Bucky's last review
reset subscriptions on UnsubscribeAll
use a simple counter to track message for which we panicked
also, set a smaller part size for all test cases
2017-06-26 19:00:30 +04:00
|
|
|
func (s *State) ApplyBlock(txEventPublisher types.TxEventPublisher, proxyAppConn proxy.AppConnConsensus,
|
2017-02-20 20:09:15 -05:00
|
|
|
block *types.Block, partsHeader types.PartSetHeader, mempool types.Mempool) error {
|
2016-09-11 13:16:23 -04:00
|
|
|
|
new pubsub package
comment out failing consensus tests for now
rewrite rpc httpclient to use new pubsub package
import pubsub as tmpubsub, query as tmquery
make event IDs constants
EventKey -> EventTypeKey
rename EventsPubsub to PubSub
mempool does not use pubsub
rename eventsSub to pubsub
new subscribe API
fix channel size issues and consensus tests bugs
refactor rpc client
add missing discardFromChan method
add mutex
rename pubsub to eventBus
remove IsRunning from WSRPCConnection interface (not needed)
add a comment in broadcastNewRoundStepsAndVotes
rename registerEventCallbacks to broadcastNewRoundStepsAndVotes
See https://dave.cheney.net/2014/03/19/channel-axioms
stop eventBuses after reactor tests
remove unnecessary Unsubscribe
return subscribe helper function
move discardFromChan to where it is used
subscribe now returns an err
this gives us ability to refuse to subscribe if pubsub is at its max
capacity.
use context for control overflow
cache queries
handle err when subscribing in replay_test
rename testClientID to testSubscriber
extract var
set channel buffer capacity to 1 in replay_file
fix byzantine_test
unsubscribe from single event, not all events
refactor httpclient to return events to appropriate channels
return failing testReplayCrashBeforeWriteVote test
fix TestValidatorSetChanges
refactor code a bit
fix testReplayCrashBeforeWriteVote
add comment
fix TestValidatorSetChanges
fixes from Bucky's review
update comment [ci skip]
test TxEventBuffer
update changelog
fix TestValidatorSetChanges (2nd attempt)
only do wg.Done when no errors
benchmark event bus
create pubsub server inside NewEventBus
only expose config params (later if needed)
set buffer capacity to 0 so we are not testing cache
new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ}
This should allow to subscribe to all transactions! or a specific one
using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'"
use TimeoutCommit instead of afterPublishEventNewBlockTimeout
TimeoutCommit is the time a node waits after committing a block, before
it goes into the next height. So it will finish everything from the last
block, but then wait a bit. The idea is this gives it time to hear more
votes from other validators, to strengthen the commit it includes in the
next block. But it also gives it time to hear about new transactions.
waitForBlockWithUpdatedVals
rewrite WAL crash tests
Task:
test that we can recover from any WAL crash.
Solution:
the old tests were relying on event hub being run in the same thread (we
were injecting the private validator's last signature).
when considering a rewrite, we considered two possible solutions: write
a "fuzzy" testing system where WAL is crashing upon receiving a new
message, or inject failures and trigger them in tests using something
like https://github.com/coreos/gofail.
remove sleep
no cs.Lock around wal.Save
test different cases (empty block, non-empty block, ...)
comments
add comments
test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks
fixes as per Bucky's last review
reset subscriptions on UnsubscribeAll
use a simple counter to track message for which we panicked
also, set a smaller part size for all test cases
2017-06-26 19:00:30 +04:00
|
|
|
abciResponses, err := s.ValExecBlock(txEventPublisher, proxyAppConn, block)
|
2016-09-11 13:16:23 -04:00
|
|
|
if err != nil {
|
2017-01-19 13:33:58 +04:00
|
|
|
return fmt.Errorf("Exec failed for application: %v", err)
|
2016-09-11 13:16:23 -04:00
|
|
|
}
|
|
|
|
|
2017-04-14 15:33:19 -04:00
|
|
|
fail.Fail() // XXX
|
|
|
|
|
|
|
|
// save the results before we commit
|
|
|
|
s.SaveABCIResponses(abciResponses)
|
|
|
|
|
|
|
|
fail.Fail() // XXX
|
|
|
|
|
|
|
|
// now update the block and validators
|
2017-04-14 20:21:50 -04:00
|
|
|
s.SetBlockAndValidators(block.Header, partsHeader, abciResponses)
|
2017-04-14 15:33:19 -04:00
|
|
|
|
2016-09-11 13:16:23 -04:00
|
|
|
// lock mempool, commit state, update mempoool
|
|
|
|
err = s.CommitStateUpdateMempool(proxyAppConn, block, mempool)
|
|
|
|
if err != nil {
|
2017-01-19 13:33:58 +04:00
|
|
|
return fmt.Errorf("Commit failed for application: %v", err)
|
2016-09-11 13:16:23 -04:00
|
|
|
}
|
2017-01-19 13:33:58 +04:00
|
|
|
|
2017-04-14 15:33:19 -04:00
|
|
|
fail.Fail() // XXX
|
|
|
|
|
2017-09-04 18:27:04 -04:00
|
|
|
// save the state and the validators
|
2017-04-14 15:33:19 -04:00
|
|
|
s.Save()
|
|
|
|
|
2016-09-11 13:16:23 -04:00
|
|
|
return nil
|
|
|
|
}
|
2016-08-23 21:44:07 -04:00
|
|
|
|
2017-08-21 16:12:07 -04:00
|
|
|
// CommitStateUpdateMempool locks the mempool, runs the ABCI Commit message, and updates the mempool.
|
|
|
|
// The Mempool must be locked during commit and update because state is typically reset on Commit and old txs must be replayed
|
|
|
|
// against committed state before new txs are run in the mempool, lest they be invalid.
|
2017-02-20 20:09:15 -05:00
|
|
|
func (s *State) CommitStateUpdateMempool(proxyAppConn proxy.AppConnConsensus, block *types.Block, mempool types.Mempool) error {
|
2016-08-25 00:18:03 -04:00
|
|
|
mempool.Lock()
|
|
|
|
defer mempool.Unlock()
|
|
|
|
|
|
|
|
// Commit block, get hash back
|
2017-11-22 18:55:09 -06:00
|
|
|
res, err := proxyAppConn.CommitSync()
|
|
|
|
if err != nil {
|
|
|
|
s.logger.Error("Client error during proxyAppConn.CommitSync", "err", err)
|
|
|
|
return err
|
|
|
|
}
|
2016-08-25 00:18:03 -04:00
|
|
|
if res.IsErr() {
|
2017-06-14 12:50:49 +04:00
|
|
|
s.logger.Error("Error in proxyAppConn.CommitSync", "err", res)
|
2016-08-25 00:18:03 -04:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
if res.Log != "" {
|
2017-05-02 11:53:32 +04:00
|
|
|
s.logger.Debug("Commit.Log: " + res.Log)
|
2016-08-25 00:18:03 -04:00
|
|
|
}
|
|
|
|
|
2017-05-26 11:57:41 -04:00
|
|
|
s.logger.Info("Committed state", "height", block.Height, "txs", block.NumTxs, "hash", res.Data)
|
2017-05-22 08:16:25 -04:00
|
|
|
|
2016-08-25 00:18:03 -04:00
|
|
|
// Set the state's new AppHash
|
|
|
|
s.AppHash = res.Data
|
|
|
|
|
|
|
|
// Update mempool.
|
2017-09-21 11:42:44 -04:00
|
|
|
return mempool.Update(block.Height, block.Txs)
|
2016-08-25 00:18:03 -04:00
|
|
|
}
|
|
|
|
|
2017-08-21 16:12:07 -04:00
|
|
|
// ExecCommitBlock executes and commits a block on the proxyApp without validating or mutating the state.
|
|
|
|
// It returns the application root hash (result of abci.Commit).
|
2017-05-02 11:53:32 +04:00
|
|
|
func ExecCommitBlock(appConnConsensus proxy.AppConnConsensus, block *types.Block, logger log.Logger) ([]byte, error) {
|
new pubsub package
comment out failing consensus tests for now
rewrite rpc httpclient to use new pubsub package
import pubsub as tmpubsub, query as tmquery
make event IDs constants
EventKey -> EventTypeKey
rename EventsPubsub to PubSub
mempool does not use pubsub
rename eventsSub to pubsub
new subscribe API
fix channel size issues and consensus tests bugs
refactor rpc client
add missing discardFromChan method
add mutex
rename pubsub to eventBus
remove IsRunning from WSRPCConnection interface (not needed)
add a comment in broadcastNewRoundStepsAndVotes
rename registerEventCallbacks to broadcastNewRoundStepsAndVotes
See https://dave.cheney.net/2014/03/19/channel-axioms
stop eventBuses after reactor tests
remove unnecessary Unsubscribe
return subscribe helper function
move discardFromChan to where it is used
subscribe now returns an err
this gives us ability to refuse to subscribe if pubsub is at its max
capacity.
use context for control overflow
cache queries
handle err when subscribing in replay_test
rename testClientID to testSubscriber
extract var
set channel buffer capacity to 1 in replay_file
fix byzantine_test
unsubscribe from single event, not all events
refactor httpclient to return events to appropriate channels
return failing testReplayCrashBeforeWriteVote test
fix TestValidatorSetChanges
refactor code a bit
fix testReplayCrashBeforeWriteVote
add comment
fix TestValidatorSetChanges
fixes from Bucky's review
update comment [ci skip]
test TxEventBuffer
update changelog
fix TestValidatorSetChanges (2nd attempt)
only do wg.Done when no errors
benchmark event bus
create pubsub server inside NewEventBus
only expose config params (later if needed)
set buffer capacity to 0 so we are not testing cache
new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ}
This should allow to subscribe to all transactions! or a specific one
using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'"
use TimeoutCommit instead of afterPublishEventNewBlockTimeout
TimeoutCommit is the time a node waits after committing a block, before
it goes into the next height. So it will finish everything from the last
block, but then wait a bit. The idea is this gives it time to hear more
votes from other validators, to strengthen the commit it includes in the
next block. But it also gives it time to hear about new transactions.
waitForBlockWithUpdatedVals
rewrite WAL crash tests
Task:
test that we can recover from any WAL crash.
Solution:
the old tests were relying on event hub being run in the same thread (we
were injecting the private validator's last signature).
when considering a rewrite, we considered two possible solutions: write
a "fuzzy" testing system where WAL is crashing upon receiving a new
message, or inject failures and trigger them in tests using something
like https://github.com/coreos/gofail.
remove sleep
no cs.Lock around wal.Save
test different cases (empty block, non-empty block, ...)
comments
add comments
test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks
fixes as per Bucky's last review
reset subscriptions on UnsubscribeAll
use a simple counter to track message for which we panicked
also, set a smaller part size for all test cases
2017-06-26 19:00:30 +04:00
|
|
|
_, err := execBlockOnProxyApp(types.NopEventBus{}, appConnConsensus, block, logger)
|
2017-02-17 11:32:56 -05:00
|
|
|
if err != nil {
|
2017-05-02 11:53:32 +04:00
|
|
|
logger.Error("Error executing block on proxy app", "height", block.Height, "err", err)
|
2017-02-17 11:32:56 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Commit block, get hash back
|
2017-11-22 18:55:09 -06:00
|
|
|
res, err := appConnConsensus.CommitSync()
|
|
|
|
if err != nil {
|
|
|
|
logger.Error("Client error during proxyAppConn.CommitSync", "err", res)
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-17 11:32:56 -05:00
|
|
|
if res.IsErr() {
|
2017-06-14 12:50:49 +04:00
|
|
|
logger.Error("Error in proxyAppConn.CommitSync", "err", res)
|
2017-02-17 11:32:56 -05:00
|
|
|
return nil, res
|
|
|
|
}
|
|
|
|
if res.Log != "" {
|
2017-05-02 11:53:32 +04:00
|
|
|
logger.Info("Commit.Log: " + res.Log)
|
2017-02-17 11:32:56 -05:00
|
|
|
}
|
|
|
|
return res.Data, nil
|
|
|
|
}
|