Browse Source

more handshake replay cleanup

pull/319/head
Ethan Buchman 8 years ago
parent
commit
5046d5b181
4 changed files with 47 additions and 71 deletions
  1. +1
    -1
      blockchain/reactor.go
  2. +28
    -62
      state/execution.go
  3. +17
    -7
      state/execution_test.go
  4. +1
    -1
      types/protobuf.go

+ 1
- 1
blockchain/reactor.go View File

@ -221,7 +221,7 @@ FOR_LOOP:
// We need both to sync the first block. // We need both to sync the first block.
break SYNC_LOOP break SYNC_LOOP
} }
firstParts := first.MakePartSet(bcR.config.GetInt("block_part_size"))
firstParts := first.MakePartSet(bcR.config.GetInt("block_part_size")) // TODO: put part size in parts header?
firstPartsHeader := firstParts.Header() firstPartsHeader := firstParts.Header()
// Finally, verify the first block using the second's commit // Finally, verify the first block using the second's commit
// NOTE: we can probably make this more efficient, but note that calling // NOTE: we can probably make this more efficient, but note that calling


+ 28
- 62
state/execution.go View File

@ -128,7 +128,10 @@ func execBlockOnProxyApp(eventCache types.Fireable, proxyAppConn proxy.AppConnCo
fail.Fail() // XXX fail.Fail() // XXX
log.Info(Fmt("ExecBlock got %v valid txs and %v invalid txs", validTxs, invalidTxs))
log.Info("Executed block", "height", block.Height, "valid txs", validTxs, "invalid txs", invalidTxs)
if len(changedValidators) > 0 {
log.Info("Update to validator set", "updates", changedValidators)
}
return changedValidators, nil return changedValidators, nil
} }
@ -182,10 +185,9 @@ func updateValidators(validators *types.ValidatorSet, changedValidators []*tmsp.
func commitBitArrayFromBlock(block *types.Block) *BitArray { func commitBitArrayFromBlock(block *types.Block) *BitArray {
signed := NewBitArray(len(block.LastCommit.Precommits)) signed := NewBitArray(len(block.LastCommit.Precommits))
for i, precommit := range block.LastCommit.Precommits { for i, precommit := range block.LastCommit.Precommits {
if precommit == nil {
continue
if precommit != nil {
signed.SetIndex(i, true) // val_.LastCommitHeight = block.Height - 1
} }
signed.SetIndex(i, true) // val_.LastCommitHeight = block.Height - 1
} }
return signed return signed
} }
@ -295,6 +297,7 @@ func (m mockMempool) Update(height int, txs []types.Tx) {}
type BlockStore interface { type BlockStore interface {
Height() int Height() int
LoadBlock(height int) *types.Block LoadBlock(height int) *types.Block
LoadBlockMeta(height int) *types.BlockMeta
} }
type Handshaker struct { type Handshaker struct {
@ -309,8 +312,7 @@ func NewHandshaker(config cfg.Config, state *State, store BlockStore) *Handshake
return &Handshaker{config, state, store, 0} return &Handshaker{config, state, store, 0}
} }
// TODO: retry the handshake once if it fails the first time
// ... let Info take an argument determining its behaviour
// TODO: retry the handshake/replay if it fails ?
func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error { func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
// handshake is done via info request on the query conn // handshake is done via info request on the query conn
res, tmspInfo, blockInfo, configInfo := proxyApp.Query().InfoSync() res, tmspInfo, blockInfo, configInfo := proxyApp.Query().InfoSync()
@ -325,8 +327,7 @@ func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
log.Notice("TMSP Handshake", "height", blockInfo.BlockHeight, "block_hash", blockInfo.BlockHash, "app_hash", blockInfo.AppHash) log.Notice("TMSP Handshake", "height", blockInfo.BlockHeight, "block_hash", blockInfo.BlockHash, "app_hash", blockInfo.AppHash)
blockHeight := int(blockInfo.BlockHeight) // safe, should be an int32
blockHash := blockInfo.BlockHash
blockHeight := int(blockInfo.BlockHeight) // XXX: beware overflow
appHash := blockInfo.AppHash appHash := blockInfo.AppHash
if tmspInfo != nil { if tmspInfo != nil {
@ -334,40 +335,13 @@ func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
_ = tmspInfo _ = tmspInfo
} }
// last block (nil if we starting from 0)
var header *types.Header
var partsHeader types.PartSetHeader
// replay all blocks after blockHeight
// if blockHeight == 0, we will replay everything
if blockHeight != 0 {
block := h.store.LoadBlock(blockHeight)
if block == nil {
return ErrUnknownBlock{blockHeight}
}
// check block hash
if !bytes.Equal(block.Hash(), blockHash) {
return ErrBlockHashMismatch{block.Hash(), blockHash, blockHeight}
}
// NOTE: app hash should be in the next block ...
// check app hash
/*if !bytes.Equal(block.Header.AppHash, appHash) {
return fmt.Errorf("Handshake error. App hash at height %d does not match. Got %X, expected %X", blockHeight, appHash, block.Header.AppHash)
}*/
header = block.Header
partsHeader = block.MakePartSet(h.config.GetInt("block_part_size")).Header()
}
if configInfo != nil { if configInfo != nil {
// TODO: set config info // TODO: set config info
_ = configInfo _ = configInfo
} }
// replay blocks up to the latest in the blockstore // replay blocks up to the latest in the blockstore
err := h.ReplayBlocks(appHash, header, partsHeader, proxyApp.Consensus())
err := h.ReplayBlocks(appHash, blockHeight, proxyApp.Consensus())
if err != nil { if err != nil {
return errors.New(Fmt("Error on replay: %v", err)) return errors.New(Fmt("Error on replay: %v", err))
} }
@ -378,27 +352,16 @@ func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
} }
// Replay all blocks after blockHeight and ensure the result matches the current state. // Replay all blocks after blockHeight and ensure the result matches the current state.
func (h *Handshaker) ReplayBlocks(appHash []byte, header *types.Header, partsHeader types.PartSetHeader,
appConnConsensus proxy.AppConnConsensus) error {
func (h *Handshaker) ReplayBlocks(appHash []byte, appBlockHeight int, appConnConsensus proxy.AppConnConsensus) error {
// NOTE/TODO: tendermint may crash after the app commits
// but before it can save the new state root.
// it should save all eg. valset changes before calling Commit.
// then, if tm state is behind app state, the only thing missing can be app hash
var appBlockHeight int
if header != nil {
appBlockHeight = header.Height
}
coreBlockHeight := h.store.Height()
if coreBlockHeight < appBlockHeight {
storeBlockHeight := h.store.Height()
if storeBlockHeight < appBlockHeight {
// if the app is ahead, there's nothing we can do // if the app is ahead, there's nothing we can do
return ErrAppBlockHeightTooHigh{coreBlockHeight, appBlockHeight}
return ErrAppBlockHeightTooHigh{storeBlockHeight, appBlockHeight}
} else if coreBlockHeight == appBlockHeight {
} else if storeBlockHeight == appBlockHeight {
// if we crashed between Commit and SaveState, // if we crashed between Commit and SaveState,
// the state's app hash is stale.
// the state's app hash is stale
// otherwise we're synced // otherwise we're synced
if h.state.Stale { if h.state.Stale {
h.state.Stale = false h.state.Stale = false
@ -407,36 +370,39 @@ func (h *Handshaker) ReplayBlocks(appHash []byte, header *types.Header, partsHea
return nil return nil
} else if h.state.LastBlockHeight == appBlockHeight { } else if h.state.LastBlockHeight == appBlockHeight {
// core is ahead of app but core's state height is at apps height
// store is ahead of app but core's state height is at apps height
// this happens if we crashed after saving the block, // this happens if we crashed after saving the block,
// but before committing it. We should be 1 ahead // but before committing it. We should be 1 ahead
if coreBlockHeight != appBlockHeight+1 {
PanicSanity(Fmt("core.state.height == app.height but core.height (%d) > app.height+1 (%d)", coreBlockHeight, appBlockHeight+1))
if storeBlockHeight != appBlockHeight+1 {
PanicSanity(Fmt("core.state.height == app.height but store.height (%d) > app.height+1 (%d)", storeBlockHeight, appBlockHeight+1))
} }
// check that the blocks last apphash is the states apphash // check that the blocks last apphash is the states apphash
block := h.store.LoadBlock(coreBlockHeight)
block := h.store.LoadBlock(storeBlockHeight)
if !bytes.Equal(block.Header.AppHash, appHash) { if !bytes.Equal(block.Header.AppHash, appHash) {
return ErrLastStateMismatch{coreBlockHeight, block.Header.AppHash, appHash}
return ErrLastStateMismatch{storeBlockHeight, block.Header.AppHash, appHash}
} }
blockMeta := h.store.LoadBlockMeta(storeBlockHeight)
h.nBlocks += 1 h.nBlocks += 1
var eventCache types.Fireable // nil var eventCache types.Fireable // nil
// replay the block against the actual tendermint state // replay the block against the actual tendermint state
return h.state.ApplyBlock(eventCache, appConnConsensus, block, block.MakePartSet(h.config.GetInt("block_part_size")).Header(), mockMempool{})
return h.state.ApplyBlock(eventCache, appConnConsensus, block, blockMeta.PartsHeader, mockMempool{})
} else { } else {
// either we're caught up or there's blocks to replay // either we're caught up or there's blocks to replay
// replay all blocks starting with appBlockHeight+1 // replay all blocks starting with appBlockHeight+1
var eventCache types.Fireable // nil var eventCache types.Fireable // nil
var appHash []byte var appHash []byte
for i := appBlockHeight + 1; i <= coreBlockHeight; i++ {
for i := appBlockHeight + 1; i <= storeBlockHeight; i++ {
h.nBlocks += 1 h.nBlocks += 1
block := h.store.LoadBlock(i) block := h.store.LoadBlock(i)
_, err := execBlockOnProxyApp(eventCache, appConnConsensus, block) _, err := execBlockOnProxyApp(eventCache, appConnConsensus, block)
if err != nil { if err != nil {
// ...
log.Warn("Error executing block on proxy app", "height", i, "err", err)
return err
} }
// Commit block, get hash back // Commit block, get hash back
res := appConnConsensus.CommitSync() res := appConnConsensus.CommitSync()
@ -452,6 +418,6 @@ func (h *Handshaker) ReplayBlocks(appHash []byte, header *types.Header, partsHea
if !bytes.Equal(h.state.AppHash, appHash) { if !bytes.Equal(h.state.AppHash, appHash) {
return errors.New(Fmt("Tendermint state.AppHash does not match AppHash after replay", "expected", h.state.AppHash, "got", appHash)) return errors.New(Fmt("Tendermint state.AppHash does not match AppHash after replay", "expected", h.state.AppHash, "got", appHash))
} }
return nil
} }
return nil // should never happen
} }

+ 17
- 7
state/execution_test.go View File

@ -8,6 +8,7 @@ import (
"github.com/tendermint/tendermint/config/tendermint_test" "github.com/tendermint/tendermint/config/tendermint_test"
// . "github.com/tendermint/go-common" // . "github.com/tendermint/go-common"
cfg "github.com/tendermint/go-config"
"github.com/tendermint/go-crypto" "github.com/tendermint/go-crypto"
dbm "github.com/tendermint/go-db" dbm "github.com/tendermint/go-db"
"github.com/tendermint/tendermint/proxy" "github.com/tendermint/tendermint/proxy"
@ -51,7 +52,7 @@ func TestHandshakeReplayNone(t *testing.T) {
func testHandshakeReplay(t *testing.T, n int) { func testHandshakeReplay(t *testing.T, n int) {
config := tendermint_test.ResetConfig("proxy_test_") config := tendermint_test.ResetConfig("proxy_test_")
state, store := stateAndStore()
state, store := stateAndStore(config)
clientCreator := proxy.NewLocalClientCreator(dummy.NewPersistentDummyApplication(path.Join(config.GetString("db_dir"), "1"))) clientCreator := proxy.NewLocalClientCreator(dummy.NewPersistentDummyApplication(path.Join(config.GetString("db_dir"), "1")))
clientCreator2 := proxy.NewLocalClientCreator(dummy.NewPersistentDummyApplication(path.Join(config.GetString("db_dir"), "2"))) clientCreator2 := proxy.NewLocalClientCreator(dummy.NewPersistentDummyApplication(path.Join(config.GetString("db_dir"), "2")))
proxyApp := proxy.NewAppConns(config, clientCreator, NewHandshaker(config, state, store)) proxyApp := proxy.NewAppConns(config, clientCreator, NewHandshaker(config, state, store))
@ -69,7 +70,7 @@ func testHandshakeReplay(t *testing.T, n int) {
if _, err := proxyApp.Start(); err != nil { if _, err := proxyApp.Start(); err != nil {
t.Fatalf("Error starting proxy app connections: %v", err) t.Fatalf("Error starting proxy app connections: %v", err)
} }
state2, _ := stateAndStore()
state2, _ := stateAndStore(config)
for i := 0; i < n; i++ { for i := 0; i < n; i++ {
block := chain[i] block := chain[i]
err := state2.ApplyBlock(nil, proxyApp.Consensus(), block, block.MakePartSet(testPartSize).Header(), mempool) err := state2.ApplyBlock(nil, proxyApp.Consensus(), block, block.MakePartSet(testPartSize).Header(), mempool)
@ -167,7 +168,7 @@ func makeBlockchain(t *testing.T, proxyApp proxy.AppConns, state *State) (blockc
} }
// fresh state and mock store // fresh state and mock store
func stateAndStore() (*State, *mockBlockStore) {
func stateAndStore(config cfg.Config) (*State, *mockBlockStore) {
stateDB := dbm.NewMemDB() stateDB := dbm.NewMemDB()
return MakeGenesisState(stateDB, &types.GenesisDoc{ return MakeGenesisState(stateDB, &types.GenesisDoc{
ChainID: chainID, ChainID: chainID,
@ -175,19 +176,28 @@ func stateAndStore() (*State, *mockBlockStore) {
types.GenesisValidator{privKey.PubKey(), 10000, "test"}, types.GenesisValidator{privKey.PubKey(), 10000, "test"},
}, },
AppHash: nil, AppHash: nil,
}), NewMockBlockStore(nil)
}), NewMockBlockStore(config, nil)
} }
//---------------------------------- //----------------------------------
// mock block store // mock block store
type mockBlockStore struct { type mockBlockStore struct {
chain []*types.Block
config cfg.Config
chain []*types.Block
} }
func NewMockBlockStore(chain []*types.Block) *mockBlockStore {
return &mockBlockStore{chain}
func NewMockBlockStore(config cfg.Config, chain []*types.Block) *mockBlockStore {
return &mockBlockStore{config, chain}
} }
func (bs *mockBlockStore) Height() int { return len(bs.chain) } func (bs *mockBlockStore) Height() int { return len(bs.chain) }
func (bs *mockBlockStore) LoadBlock(height int) *types.Block { return bs.chain[height-1] } func (bs *mockBlockStore) LoadBlock(height int) *types.Block { return bs.chain[height-1] }
func (bs *mockBlockStore) LoadBlockMeta(height int) *types.BlockMeta {
block := bs.chain[height-1]
return &types.BlockMeta{
Hash: block.Hash(),
Header: block.Header,
PartsHeader: block.MakePartSet(bs.config.GetInt("block_part_size")).Header(),
}
}

+ 1
- 1
types/protobuf.go View File

@ -12,7 +12,7 @@ type tm2pb struct{}
func (tm2pb) Header(header *Header) *types.Header { func (tm2pb) Header(header *Header) *types.Header {
return &types.Header{ return &types.Header{
ChainId: header.ChainID, ChainId: header.ChainID,
Height: int32(header.Height),
Height: uint64(header.Height),
Time: uint64(header.Time.Unix()), Time: uint64(header.Time.Unix()),
NumTxs: uint64(header.NumTxs), NumTxs: uint64(header.NumTxs),
LastBlockId: TM2PB.BlockID(header.LastBlockID), LastBlockId: TM2PB.BlockID(header.LastBlockID),


Loading…
Cancel
Save