You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

504 lines
16 KiB

7 years ago
6 years ago
6 years ago
6 years ago
pubsub 2.0 (#3227) * green pubsub tests :OK: * get rid of clientToQueryMap * Subscribe and SubscribeUnbuffered * start adapting other pkgs to new pubsub * nope * rename MsgAndTags to Message * remove TagMap it does not bring any additional benefits * bring back EventSubscriber * fix test * fix data race in TestStartNextHeightCorrectly ``` Write at 0x00c0001c7418 by goroutine 796: github.com/tendermint/tendermint/consensus.TestStartNextHeightCorrectly() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:1296 +0xad testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Previous read at 0x00c0001c7418 by goroutine 858: github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1631 +0x1366 github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1476 +0x8f github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg() /go/src/github.com/tendermint/tendermint/consensus/state.go:667 +0xa1e github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine() /go/src/github.com/tendermint/tendermint/consensus/state.go:628 +0x794 Goroutine 796 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 testing.runTests.func1() /usr/local/go/src/testing/testing.go:1119 +0xa8 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 testing.runTests() /usr/local/go/src/testing/testing.go:1117 +0x4ee testing.(*M).Run() /usr/local/go/src/testing/testing.go:1034 +0x2ee main.main() _testmain.go:214 +0x332 Goroutine 858 (running) created at: github.com/tendermint/tendermint/consensus.(*ConsensusState).startRoutines() /go/src/github.com/tendermint/tendermint/consensus/state.go:334 +0x221 github.com/tendermint/tendermint/consensus.startTestRound() /go/src/github.com/tendermint/tendermint/consensus/common_test.go:122 +0x63 github.com/tendermint/tendermint/consensus.TestStateFullRound1() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:255 +0x397 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ``` * fixes after my own review * fix formatting * wait 100ms before kicking a subscriber out + a test for indexer_service * fixes after my second review * no timeout * add changelog entries * fix merge conflicts * fix typos after Thane's review Co-Authored-By: melekes <anton.kalyaev@gmail.com> * reformat code * rewrite indexer service in the attempt to fix failing test https://github.com/tendermint/tendermint/pull/3227/#issuecomment-462316527 * Revert "rewrite indexer service in the attempt to fix failing test" This reverts commit 0d9107a098230de7138abb1c201877c246e89ed1. * another attempt to fix indexer * fixes after Ethan's review * use unbuffered channel when indexing transactions Refs https://github.com/tendermint/tendermint/pull/3227#discussion_r258786716 * add a comment for EventBus#SubscribeUnbuffered * format code
6 years ago
6 years ago
8 years ago
pubsub 2.0 (#3227) * green pubsub tests :OK: * get rid of clientToQueryMap * Subscribe and SubscribeUnbuffered * start adapting other pkgs to new pubsub * nope * rename MsgAndTags to Message * remove TagMap it does not bring any additional benefits * bring back EventSubscriber * fix test * fix data race in TestStartNextHeightCorrectly ``` Write at 0x00c0001c7418 by goroutine 796: github.com/tendermint/tendermint/consensus.TestStartNextHeightCorrectly() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:1296 +0xad testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Previous read at 0x00c0001c7418 by goroutine 858: github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1631 +0x1366 github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1476 +0x8f github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg() /go/src/github.com/tendermint/tendermint/consensus/state.go:667 +0xa1e github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine() /go/src/github.com/tendermint/tendermint/consensus/state.go:628 +0x794 Goroutine 796 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 testing.runTests.func1() /usr/local/go/src/testing/testing.go:1119 +0xa8 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 testing.runTests() /usr/local/go/src/testing/testing.go:1117 +0x4ee testing.(*M).Run() /usr/local/go/src/testing/testing.go:1034 +0x2ee main.main() _testmain.go:214 +0x332 Goroutine 858 (running) created at: github.com/tendermint/tendermint/consensus.(*ConsensusState).startRoutines() /go/src/github.com/tendermint/tendermint/consensus/state.go:334 +0x221 github.com/tendermint/tendermint/consensus.startTestRound() /go/src/github.com/tendermint/tendermint/consensus/common_test.go:122 +0x63 github.com/tendermint/tendermint/consensus.TestStateFullRound1() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:255 +0x397 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ``` * fixes after my own review * fix formatting * wait 100ms before kicking a subscriber out + a test for indexer_service * fixes after my second review * no timeout * add changelog entries * fix merge conflicts * fix typos after Thane's review Co-Authored-By: melekes <anton.kalyaev@gmail.com> * reformat code * rewrite indexer service in the attempt to fix failing test https://github.com/tendermint/tendermint/pull/3227/#issuecomment-462316527 * Revert "rewrite indexer service in the attempt to fix failing test" This reverts commit 0d9107a098230de7138abb1c201877c246e89ed1. * another attempt to fix indexer * fixes after Ethan's review * use unbuffered channel when indexing transactions Refs https://github.com/tendermint/tendermint/pull/3227#discussion_r258786716 * add a comment for EventBus#SubscribeUnbuffered * format code
6 years ago
pubsub 2.0 (#3227) * green pubsub tests :OK: * get rid of clientToQueryMap * Subscribe and SubscribeUnbuffered * start adapting other pkgs to new pubsub * nope * rename MsgAndTags to Message * remove TagMap it does not bring any additional benefits * bring back EventSubscriber * fix test * fix data race in TestStartNextHeightCorrectly ``` Write at 0x00c0001c7418 by goroutine 796: github.com/tendermint/tendermint/consensus.TestStartNextHeightCorrectly() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:1296 +0xad testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Previous read at 0x00c0001c7418 by goroutine 858: github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1631 +0x1366 github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1476 +0x8f github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg() /go/src/github.com/tendermint/tendermint/consensus/state.go:667 +0xa1e github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine() /go/src/github.com/tendermint/tendermint/consensus/state.go:628 +0x794 Goroutine 796 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 testing.runTests.func1() /usr/local/go/src/testing/testing.go:1119 +0xa8 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 testing.runTests() /usr/local/go/src/testing/testing.go:1117 +0x4ee testing.(*M).Run() /usr/local/go/src/testing/testing.go:1034 +0x2ee main.main() _testmain.go:214 +0x332 Goroutine 858 (running) created at: github.com/tendermint/tendermint/consensus.(*ConsensusState).startRoutines() /go/src/github.com/tendermint/tendermint/consensus/state.go:334 +0x221 github.com/tendermint/tendermint/consensus.startTestRound() /go/src/github.com/tendermint/tendermint/consensus/common_test.go:122 +0x63 github.com/tendermint/tendermint/consensus.TestStateFullRound1() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:255 +0x397 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ``` * fixes after my own review * fix formatting * wait 100ms before kicking a subscriber out + a test for indexer_service * fixes after my second review * no timeout * add changelog entries * fix merge conflicts * fix typos after Thane's review Co-Authored-By: melekes <anton.kalyaev@gmail.com> * reformat code * rewrite indexer service in the attempt to fix failing test https://github.com/tendermint/tendermint/pull/3227/#issuecomment-462316527 * Revert "rewrite indexer service in the attempt to fix failing test" This reverts commit 0d9107a098230de7138abb1c201877c246e89ed1. * another attempt to fix indexer * fixes after Ethan's review * use unbuffered channel when indexing transactions Refs https://github.com/tendermint/tendermint/pull/3227#discussion_r258786716 * add a comment for EventBus#SubscribeUnbuffered * format code
6 years ago
pubsub 2.0 (#3227) * green pubsub tests :OK: * get rid of clientToQueryMap * Subscribe and SubscribeUnbuffered * start adapting other pkgs to new pubsub * nope * rename MsgAndTags to Message * remove TagMap it does not bring any additional benefits * bring back EventSubscriber * fix test * fix data race in TestStartNextHeightCorrectly ``` Write at 0x00c0001c7418 by goroutine 796: github.com/tendermint/tendermint/consensus.TestStartNextHeightCorrectly() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:1296 +0xad testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Previous read at 0x00c0001c7418 by goroutine 858: github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1631 +0x1366 github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1476 +0x8f github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg() /go/src/github.com/tendermint/tendermint/consensus/state.go:667 +0xa1e github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine() /go/src/github.com/tendermint/tendermint/consensus/state.go:628 +0x794 Goroutine 796 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 testing.runTests.func1() /usr/local/go/src/testing/testing.go:1119 +0xa8 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 testing.runTests() /usr/local/go/src/testing/testing.go:1117 +0x4ee testing.(*M).Run() /usr/local/go/src/testing/testing.go:1034 +0x2ee main.main() _testmain.go:214 +0x332 Goroutine 858 (running) created at: github.com/tendermint/tendermint/consensus.(*ConsensusState).startRoutines() /go/src/github.com/tendermint/tendermint/consensus/state.go:334 +0x221 github.com/tendermint/tendermint/consensus.startTestRound() /go/src/github.com/tendermint/tendermint/consensus/common_test.go:122 +0x63 github.com/tendermint/tendermint/consensus.TestStateFullRound1() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:255 +0x397 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ``` * fixes after my own review * fix formatting * wait 100ms before kicking a subscriber out + a test for indexer_service * fixes after my second review * no timeout * add changelog entries * fix merge conflicts * fix typos after Thane's review Co-Authored-By: melekes <anton.kalyaev@gmail.com> * reformat code * rewrite indexer service in the attempt to fix failing test https://github.com/tendermint/tendermint/pull/3227/#issuecomment-462316527 * Revert "rewrite indexer service in the attempt to fix failing test" This reverts commit 0d9107a098230de7138abb1c201877c246e89ed1. * another attempt to fix indexer * fixes after Ethan's review * use unbuffered channel when indexing transactions Refs https://github.com/tendermint/tendermint/pull/3227#discussion_r258786716 * add a comment for EventBus#SubscribeUnbuffered * format code
6 years ago
pubsub 2.0 (#3227) * green pubsub tests :OK: * get rid of clientToQueryMap * Subscribe and SubscribeUnbuffered * start adapting other pkgs to new pubsub * nope * rename MsgAndTags to Message * remove TagMap it does not bring any additional benefits * bring back EventSubscriber * fix test * fix data race in TestStartNextHeightCorrectly ``` Write at 0x00c0001c7418 by goroutine 796: github.com/tendermint/tendermint/consensus.TestStartNextHeightCorrectly() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:1296 +0xad testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Previous read at 0x00c0001c7418 by goroutine 858: github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1631 +0x1366 github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote() /go/src/github.com/tendermint/tendermint/consensus/state.go:1476 +0x8f github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg() /go/src/github.com/tendermint/tendermint/consensus/state.go:667 +0xa1e github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine() /go/src/github.com/tendermint/tendermint/consensus/state.go:628 +0x794 Goroutine 796 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 testing.runTests.func1() /usr/local/go/src/testing/testing.go:1119 +0xa8 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 testing.runTests() /usr/local/go/src/testing/testing.go:1117 +0x4ee testing.(*M).Run() /usr/local/go/src/testing/testing.go:1034 +0x2ee main.main() _testmain.go:214 +0x332 Goroutine 858 (running) created at: github.com/tendermint/tendermint/consensus.(*ConsensusState).startRoutines() /go/src/github.com/tendermint/tendermint/consensus/state.go:334 +0x221 github.com/tendermint/tendermint/consensus.startTestRound() /go/src/github.com/tendermint/tendermint/consensus/common_test.go:122 +0x63 github.com/tendermint/tendermint/consensus.TestStateFullRound1() /go/src/github.com/tendermint/tendermint/consensus/state_test.go:255 +0x397 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ``` * fixes after my own review * fix formatting * wait 100ms before kicking a subscriber out + a test for indexer_service * fixes after my second review * no timeout * add changelog entries * fix merge conflicts * fix typos after Thane's review Co-Authored-By: melekes <anton.kalyaev@gmail.com> * reformat code * rewrite indexer service in the attempt to fix failing test https://github.com/tendermint/tendermint/pull/3227/#issuecomment-462316527 * Revert "rewrite indexer service in the attempt to fix failing test" This reverts commit 0d9107a098230de7138abb1c201877c246e89ed1. * another attempt to fix indexer * fixes after Ethan's review * use unbuffered channel when indexing transactions Refs https://github.com/tendermint/tendermint/pull/3227#discussion_r258786716 * add a comment for EventBus#SubscribeUnbuffered * format code
6 years ago
8 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
8 years ago
6 years ago
8 years ago
8 years ago
WAL: better errors and new fail point (#3246) * privval: more info in errors * wal: change Debug logs to Info * wal: log and return error on corrupted wal instead of panicing * fail: Exit right away instead of sending interupt * consensus: FAIL before handling our own vote allows to replicate #3089: - run using `FAIL_TEST_INDEX=0` - delete some bytes from the end of the WAL - start normally Results in logs like: ``` I[2019-02-03|18:12:58.225] Searching for height module=consensus wal=/Users/ethanbuchman/.tendermint/data/cs.wal/wal height=1 min=0 max=0 E[2019-02-03|18:12:58.225] Error on catchup replay. Proceeding to start ConsensusState anyway module=consensus err="failed to read data: EOF" I[2019-02-03|18:12:58.225] Started node module=main nodeInfo="{ProtocolVersion:{P2P:6 Block:9 App:1} ID_:35e87e93f2e31f305b65a5517fd2102331b56002 ListenAddr:tcp://0.0.0.0:26656 Network:test-chain-J8JvJH Version:0.29.1 Channels:4020212223303800 Moniker:Ethans-MacBook-Pro.local Other:{TxIndex:on RPCAddress:tcp://0.0.0.0:26657}}" E[2019-02-03|18:12:58.226] Couldn't connect to any seeds module=p2p I[2019-02-03|18:12:59.229] Timed out module=consensus dur=998.568ms height=1 round=0 step=RoundStepNewHeight I[2019-02-03|18:12:59.230] enterNewRound(1/0). Current: 1/0/RoundStepNewHeight module=consensus height=1 round=0 I[2019-02-03|18:12:59.230] enterPropose(1/0). Current: 1/0/RoundStepNewRound module=consensus height=1 round=0 I[2019-02-03|18:12:59.230] enterPropose: Our turn to propose module=consensus height=1 round=0 proposer=AD278B7767B05D7FBEB76207024C650988FA77D5 privValidator="PrivValidator{AD278B7767B05D7FBEB76207024C650988FA77D5 LH:1, LR:0, LS:2}" E[2019-02-03|18:12:59.230] enterPropose: Error signing proposal module=consensus height=1 round=0 err="Error signing proposal: Step regression at height 1 round 0. Got 1, last step 2" I[2019-02-03|18:13:02.233] Timed out module=consensus dur=3s height=1 round=0 step=RoundStepPropose I[2019-02-03|18:13:02.233] enterPrevote(1/0). Current: 1/0/RoundStepPropose module=consensus I[2019-02-03|18:13:02.233] enterPrevote: ProposalBlock is nil module=consensus height=1 round=0 E[2019-02-03|18:13:02.234] Error signing vote module=consensus height=1 round=0 vote="Vote{0:AD278B7767B0 1/00/1(Prevote) 000000000000 000000000000 @ 2019-02-04T02:13:02.233897Z}" err="Error signing vote: Conflicting data" ``` Notice the EOF, the step regression, and the conflicting data. * wal: change errors to be DataCorruptionError * exit on corrupt WAL * fix log * fix new line
6 years ago
8 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
6 years ago
6 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
  1. package consensus
  2. import (
  3. "bytes"
  4. "fmt"
  5. "hash/crc32"
  6. "io"
  7. "reflect"
  8. //"strconv"
  9. //"strings"
  10. "time"
  11. abci "github.com/tendermint/tendermint/abci/types"
  12. //auto "github.com/tendermint/tendermint/libs/autofile"
  13. cmn "github.com/tendermint/tendermint/libs/common"
  14. dbm "github.com/tendermint/tendermint/libs/db"
  15. "github.com/tendermint/tendermint/libs/log"
  16. "github.com/tendermint/tendermint/proxy"
  17. sm "github.com/tendermint/tendermint/state"
  18. "github.com/tendermint/tendermint/types"
  19. "github.com/tendermint/tendermint/version"
  20. )
  21. var crc32c = crc32.MakeTable(crc32.Castagnoli)
  22. // Functionality to replay blocks and messages on recovery from a crash.
  23. // There are two general failure scenarios:
  24. //
  25. // 1. failure during consensus
  26. // 2. failure while applying the block
  27. //
  28. // The former is handled by the WAL, the latter by the proxyApp Handshake on
  29. // restart, which ultimately hands off the work to the WAL.
  30. //-----------------------------------------
  31. // 1. Recover from failure during consensus
  32. // (by replaying messages from the WAL)
  33. //-----------------------------------------
  34. // Unmarshal and apply a single message to the consensus state as if it were
  35. // received in receiveRoutine. Lines that start with "#" are ignored.
  36. // NOTE: receiveRoutine should not be running.
  37. func (cs *ConsensusState) readReplayMessage(msg *TimedWALMessage, newStepSub types.Subscription) error {
  38. // Skip meta messages which exist for demarcating boundaries.
  39. if _, ok := msg.Msg.(EndHeightMessage); ok {
  40. return nil
  41. }
  42. // for logging
  43. switch m := msg.Msg.(type) {
  44. case types.EventDataRoundState:
  45. cs.Logger.Info("Replay: New Step", "height", m.Height, "round", m.Round, "step", m.Step)
  46. // these are playback checks
  47. ticker := time.After(time.Second * 2)
  48. if newStepSub != nil {
  49. select {
  50. case stepMsg := <-newStepSub.Out():
  51. m2 := stepMsg.Data().(types.EventDataRoundState)
  52. if m.Height != m2.Height || m.Round != m2.Round || m.Step != m2.Step {
  53. return fmt.Errorf("RoundState mismatch. Got %v; Expected %v", m2, m)
  54. }
  55. case <-newStepSub.Cancelled():
  56. return fmt.Errorf("Failed to read off newStepSub.Out(). newStepSub was cancelled")
  57. case <-ticker:
  58. return fmt.Errorf("Failed to read off newStepSub.Out()")
  59. }
  60. }
  61. case msgInfo:
  62. peerID := m.PeerID
  63. if peerID == "" {
  64. peerID = "local"
  65. }
  66. switch msg := m.Msg.(type) {
  67. case *ProposalMessage:
  68. p := msg.Proposal
  69. cs.Logger.Info("Replay: Proposal", "height", p.Height, "round", p.Round, "header",
  70. p.BlockID.PartsHeader, "pol", p.POLRound, "peer", peerID)
  71. case *BlockPartMessage:
  72. cs.Logger.Info("Replay: BlockPart", "height", msg.Height, "round", msg.Round, "peer", peerID)
  73. case *VoteMessage:
  74. v := msg.Vote
  75. cs.Logger.Info("Replay: Vote", "height", v.Height, "round", v.Round, "type", v.Type,
  76. "blockID", v.BlockID, "peer", peerID)
  77. }
  78. cs.handleMsg(m)
  79. case timeoutInfo:
  80. cs.Logger.Info("Replay: Timeout", "height", m.Height, "round", m.Round, "step", m.Step, "dur", m.Duration)
  81. cs.handleTimeout(m, cs.RoundState)
  82. default:
  83. return fmt.Errorf("Replay: Unknown TimedWALMessage type: %v", reflect.TypeOf(msg.Msg))
  84. }
  85. return nil
  86. }
  87. // Replay only those messages since the last block. `timeoutRoutine` should
  88. // run concurrently to read off tickChan.
  89. func (cs *ConsensusState) catchupReplay(csHeight int64) error {
  90. // Set replayMode to true so we don't log signing errors.
  91. cs.replayMode = true
  92. defer func() { cs.replayMode = false }()
  93. // Ensure that #ENDHEIGHT for this height doesn't exist.
  94. // NOTE: This is just a sanity check. As far as we know things work fine
  95. // without it, and Handshake could reuse ConsensusState if it weren't for
  96. // this check (since we can crash after writing #ENDHEIGHT).
  97. //
  98. // Ignore data corruption errors since this is a sanity check.
  99. gr, found, err := cs.wal.SearchForEndHeight(csHeight, &WALSearchOptions{IgnoreDataCorruptionErrors: true})
  100. if err != nil {
  101. return err
  102. }
  103. if gr != nil {
  104. if err := gr.Close(); err != nil {
  105. return err
  106. }
  107. }
  108. if found {
  109. return fmt.Errorf("WAL should not contain #ENDHEIGHT %d", csHeight)
  110. }
  111. // Search for last height marker.
  112. //
  113. // Ignore data corruption errors in previous heights because we only care about last height
  114. gr, found, err = cs.wal.SearchForEndHeight(csHeight-1, &WALSearchOptions{IgnoreDataCorruptionErrors: true})
  115. if err == io.EOF {
  116. cs.Logger.Error("Replay: wal.group.Search returned EOF", "#ENDHEIGHT", csHeight-1)
  117. } else if err != nil {
  118. return err
  119. }
  120. if !found {
  121. return fmt.Errorf("Cannot replay height %d. WAL does not contain #ENDHEIGHT for %d", csHeight, csHeight-1)
  122. }
  123. defer gr.Close() // nolint: errcheck
  124. cs.Logger.Info("Catchup by replaying consensus messages", "height", csHeight)
  125. var msg *TimedWALMessage
  126. dec := WALDecoder{gr}
  127. for {
  128. msg, err = dec.Decode()
  129. if err == io.EOF {
  130. break
  131. } else if IsDataCorruptionError(err) {
  132. cs.Logger.Error("data has been corrupted in last height of consensus WAL", "err", err, "height", csHeight)
  133. return err
  134. } else if err != nil {
  135. return err
  136. }
  137. // NOTE: since the priv key is set when the msgs are received
  138. // it will attempt to eg double sign but we can just ignore it
  139. // since the votes will be replayed and we'll get to the next step
  140. if err := cs.readReplayMessage(msg, nil); err != nil {
  141. return err
  142. }
  143. }
  144. cs.Logger.Info("Replay: Done")
  145. return nil
  146. }
  147. //--------------------------------------------------------------------------------
  148. // Parses marker lines of the form:
  149. // #ENDHEIGHT: 12345
  150. /*
  151. func makeHeightSearchFunc(height int64) auto.SearchFunc {
  152. return func(line string) (int, error) {
  153. line = strings.TrimRight(line, "\n")
  154. parts := strings.Split(line, " ")
  155. if len(parts) != 2 {
  156. return -1, errors.New("Line did not have 2 parts")
  157. }
  158. i, err := strconv.Atoi(parts[1])
  159. if err != nil {
  160. return -1, errors.New("Failed to parse INFO: " + err.Error())
  161. }
  162. if height < i {
  163. return 1, nil
  164. } else if height == i {
  165. return 0, nil
  166. } else {
  167. return -1, nil
  168. }
  169. }
  170. }*/
  171. //---------------------------------------------------
  172. // 2. Recover from failure while applying the block.
  173. // (by handshaking with the app to figure out where
  174. // we were last, and using the WAL to recover there.)
  175. //---------------------------------------------------
  176. type Handshaker struct {
  177. stateDB dbm.DB
  178. initialState sm.State
  179. store sm.BlockStore
  180. eventBus types.BlockEventPublisher
  181. genDoc *types.GenesisDoc
  182. logger log.Logger
  183. nBlocks int // number of blocks applied to the state
  184. }
  185. func NewHandshaker(stateDB dbm.DB, state sm.State,
  186. store sm.BlockStore, genDoc *types.GenesisDoc) *Handshaker {
  187. return &Handshaker{
  188. stateDB: stateDB,
  189. initialState: state,
  190. store: store,
  191. eventBus: types.NopEventBus{},
  192. genDoc: genDoc,
  193. logger: log.NewNopLogger(),
  194. nBlocks: 0,
  195. }
  196. }
  197. func (h *Handshaker) SetLogger(l log.Logger) {
  198. h.logger = l
  199. }
  200. // SetEventBus - sets the event bus for publishing block related events.
  201. // If not called, it defaults to types.NopEventBus.
  202. func (h *Handshaker) SetEventBus(eventBus types.BlockEventPublisher) {
  203. h.eventBus = eventBus
  204. }
  205. func (h *Handshaker) NBlocks() int {
  206. return h.nBlocks
  207. }
  208. // TODO: retry the handshake/replay if it fails ?
  209. func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
  210. // Handshake is done via ABCI Info on the query conn.
  211. res, err := proxyApp.Query().InfoSync(proxy.RequestInfo)
  212. if err != nil {
  213. return fmt.Errorf("Error calling Info: %v", err)
  214. }
  215. blockHeight := int64(res.LastBlockHeight)
  216. if blockHeight < 0 {
  217. return fmt.Errorf("Got a negative last block height (%d) from the app", blockHeight)
  218. }
  219. appHash := res.LastBlockAppHash
  220. h.logger.Info("ABCI Handshake App Info",
  221. "height", blockHeight,
  222. "hash", fmt.Sprintf("%X", appHash),
  223. "software-version", res.Version,
  224. "protocol-version", res.AppVersion,
  225. )
  226. // Set AppVersion on the state.
  227. h.initialState.Version.Consensus.App = version.Protocol(res.AppVersion)
  228. sm.SaveState(h.stateDB, h.initialState)
  229. // Replay blocks up to the latest in the blockstore.
  230. _, err = h.ReplayBlocks(h.initialState, appHash, blockHeight, proxyApp)
  231. if err != nil {
  232. return fmt.Errorf("Error on replay: %v", err)
  233. }
  234. h.logger.Info("Completed ABCI Handshake - Tendermint and App are synced",
  235. "appHeight", blockHeight, "appHash", fmt.Sprintf("%X", appHash))
  236. // TODO: (on restart) replay mempool
  237. return nil
  238. }
  239. // Replay all blocks since appBlockHeight and ensure the result matches the current state.
  240. // Returns the final AppHash or an error.
  241. func (h *Handshaker) ReplayBlocks(
  242. state sm.State,
  243. appHash []byte,
  244. appBlockHeight int64,
  245. proxyApp proxy.AppConns,
  246. ) ([]byte, error) {
  247. storeBlockHeight := h.store.Height()
  248. stateBlockHeight := state.LastBlockHeight
  249. h.logger.Info("ABCI Replay Blocks", "appHeight", appBlockHeight, "storeHeight", storeBlockHeight, "stateHeight", stateBlockHeight)
  250. // If appBlockHeight == 0 it means that we are at genesis and hence should send InitChain.
  251. if appBlockHeight == 0 {
  252. validators := make([]*types.Validator, len(h.genDoc.Validators))
  253. for i, val := range h.genDoc.Validators {
  254. validators[i] = types.NewValidator(val.PubKey, val.Power)
  255. }
  256. validatorSet := types.NewValidatorSet(validators)
  257. nextVals := types.TM2PB.ValidatorUpdates(validatorSet)
  258. csParams := types.TM2PB.ConsensusParams(h.genDoc.ConsensusParams)
  259. req := abci.RequestInitChain{
  260. Time: h.genDoc.GenesisTime,
  261. ChainId: h.genDoc.ChainID,
  262. ConsensusParams: csParams,
  263. Validators: nextVals,
  264. AppStateBytes: h.genDoc.AppState,
  265. }
  266. res, err := proxyApp.Consensus().InitChainSync(req)
  267. if err != nil {
  268. return nil, err
  269. }
  270. if stateBlockHeight == 0 { //we only update state when we are in initial state
  271. // If the app returned validators or consensus params, update the state.
  272. if len(res.Validators) > 0 {
  273. vals, err := types.PB2TM.ValidatorUpdates(res.Validators)
  274. if err != nil {
  275. return nil, err
  276. }
  277. state.Validators = types.NewValidatorSet(vals)
  278. state.NextValidators = types.NewValidatorSet(vals)
  279. } else {
  280. // If validator set is not set in genesis and still empty after InitChain, exit.
  281. if len(h.genDoc.Validators) == 0 {
  282. return nil, fmt.Errorf("Validator set is nil in genesis and still empty after InitChain")
  283. }
  284. }
  285. if res.ConsensusParams != nil {
  286. state.ConsensusParams = state.ConsensusParams.Update(res.ConsensusParams)
  287. }
  288. sm.SaveState(h.stateDB, state)
  289. }
  290. }
  291. // First handle edge cases and constraints on the storeBlockHeight.
  292. if storeBlockHeight == 0 {
  293. return appHash, checkAppHash(state, appHash)
  294. } else if storeBlockHeight < appBlockHeight {
  295. // the app should never be ahead of the store (but this is under app's control)
  296. return appHash, sm.ErrAppBlockHeightTooHigh{CoreHeight: storeBlockHeight, AppHeight: appBlockHeight}
  297. } else if storeBlockHeight < stateBlockHeight {
  298. // the state should never be ahead of the store (this is under tendermint's control)
  299. cmn.PanicSanity(fmt.Sprintf("StateBlockHeight (%d) > StoreBlockHeight (%d)", stateBlockHeight, storeBlockHeight))
  300. } else if storeBlockHeight > stateBlockHeight+1 {
  301. // store should be at most one ahead of the state (this is under tendermint's control)
  302. cmn.PanicSanity(fmt.Sprintf("StoreBlockHeight (%d) > StateBlockHeight + 1 (%d)", storeBlockHeight, stateBlockHeight+1))
  303. }
  304. var err error
  305. // Now either store is equal to state, or one ahead.
  306. // For each, consider all cases of where the app could be, given app <= store
  307. if storeBlockHeight == stateBlockHeight {
  308. // Tendermint ran Commit and saved the state.
  309. // Either the app is asking for replay, or we're all synced up.
  310. if appBlockHeight < storeBlockHeight {
  311. // the app is behind, so replay blocks, but no need to go through WAL (state is already synced to store)
  312. return h.replayBlocks(state, proxyApp, appBlockHeight, storeBlockHeight, false)
  313. } else if appBlockHeight == storeBlockHeight {
  314. // We're good!
  315. return appHash, checkAppHash(state, appHash)
  316. }
  317. } else if storeBlockHeight == stateBlockHeight+1 {
  318. // We saved the block in the store but haven't updated the state,
  319. // so we'll need to replay a block using the WAL.
  320. if appBlockHeight < stateBlockHeight {
  321. // the app is further behind than it should be, so replay blocks
  322. // but leave the last block to go through the WAL
  323. return h.replayBlocks(state, proxyApp, appBlockHeight, storeBlockHeight, true)
  324. } else if appBlockHeight == stateBlockHeight {
  325. // We haven't run Commit (both the state and app are one block behind),
  326. // so replayBlock with the real app.
  327. // NOTE: We could instead use the cs.WAL on cs.Start,
  328. // but we'd have to allow the WAL to replay a block that wrote it's #ENDHEIGHT
  329. h.logger.Info("Replay last block using real app")
  330. state, err = h.replayBlock(state, storeBlockHeight, proxyApp.Consensus())
  331. return state.AppHash, err
  332. } else if appBlockHeight == storeBlockHeight {
  333. // We ran Commit, but didn't save the state, so replayBlock with mock app
  334. abciResponses, err := sm.LoadABCIResponses(h.stateDB, storeBlockHeight)
  335. if err != nil {
  336. return nil, err
  337. }
  338. mockApp := newMockProxyApp(appHash, abciResponses)
  339. h.logger.Info("Replay last block using mock app")
  340. state, err = h.replayBlock(state, storeBlockHeight, mockApp)
  341. return state.AppHash, err
  342. }
  343. }
  344. cmn.PanicSanity("Should never happen")
  345. return nil, nil
  346. }
  347. func (h *Handshaker) replayBlocks(state sm.State, proxyApp proxy.AppConns, appBlockHeight, storeBlockHeight int64, mutateState bool) ([]byte, error) {
  348. // App is further behind than it should be, so we need to replay blocks.
  349. // We replay all blocks from appBlockHeight+1.
  350. //
  351. // Note that we don't have an old version of the state,
  352. // so we by-pass state validation/mutation using sm.ExecCommitBlock.
  353. // This also means we won't be saving validator sets if they change during this period.
  354. // TODO: Load the historical information to fix this and just use state.ApplyBlock
  355. //
  356. // If mutateState == true, the final block is replayed with h.replayBlock()
  357. var appHash []byte
  358. var err error
  359. finalBlock := storeBlockHeight
  360. if mutateState {
  361. finalBlock--
  362. }
  363. for i := appBlockHeight + 1; i <= finalBlock; i++ {
  364. h.logger.Info("Applying block", "height", i)
  365. block := h.store.LoadBlock(i)
  366. appHash, err = sm.ExecCommitBlock(proxyApp.Consensus(), block, h.logger, state.LastValidators, h.stateDB)
  367. if err != nil {
  368. return nil, err
  369. }
  370. h.nBlocks++
  371. }
  372. if mutateState {
  373. // sync the final block
  374. state, err = h.replayBlock(state, storeBlockHeight, proxyApp.Consensus())
  375. if err != nil {
  376. return nil, err
  377. }
  378. appHash = state.AppHash
  379. }
  380. return appHash, checkAppHash(state, appHash)
  381. }
  382. // ApplyBlock on the proxyApp with the last block.
  383. func (h *Handshaker) replayBlock(state sm.State, height int64, proxyApp proxy.AppConnConsensus) (sm.State, error) {
  384. block := h.store.LoadBlock(height)
  385. meta := h.store.LoadBlockMeta(height)
  386. blockExec := sm.NewBlockExecutor(h.stateDB, h.logger, proxyApp, sm.MockMempool{}, sm.MockEvidencePool{})
  387. blockExec.SetEventBus(h.eventBus)
  388. var err error
  389. state, err = blockExec.ApplyBlock(state, meta.BlockID, block)
  390. if err != nil {
  391. return sm.State{}, err
  392. }
  393. h.nBlocks++
  394. return state, nil
  395. }
  396. func checkAppHash(state sm.State, appHash []byte) error {
  397. if !bytes.Equal(state.AppHash, appHash) {
  398. panic(fmt.Errorf("Tendermint state.AppHash does not match AppHash after replay. Got %X, expected %X", appHash, state.AppHash).Error())
  399. }
  400. return nil
  401. }
  402. //--------------------------------------------------------------------------------
  403. // mockProxyApp uses ABCIResponses to give the right results
  404. // Useful because we don't want to call Commit() twice for the same block on the real app.
  405. func newMockProxyApp(appHash []byte, abciResponses *sm.ABCIResponses) proxy.AppConnConsensus {
  406. clientCreator := proxy.NewLocalClientCreator(&mockProxyApp{
  407. appHash: appHash,
  408. abciResponses: abciResponses,
  409. })
  410. cli, _ := clientCreator.NewABCIClient()
  411. err := cli.Start()
  412. if err != nil {
  413. panic(err)
  414. }
  415. return proxy.NewAppConnConsensus(cli)
  416. }
  417. type mockProxyApp struct {
  418. abci.BaseApplication
  419. appHash []byte
  420. txCount int
  421. abciResponses *sm.ABCIResponses
  422. }
  423. func (mock *mockProxyApp) DeliverTx(tx []byte) abci.ResponseDeliverTx {
  424. r := mock.abciResponses.DeliverTx[mock.txCount]
  425. mock.txCount++
  426. return *r
  427. }
  428. func (mock *mockProxyApp) EndBlock(req abci.RequestEndBlock) abci.ResponseEndBlock {
  429. mock.txCount = 0
  430. return *mock.abciResponses.EndBlock
  431. }
  432. func (mock *mockProxyApp) Commit() abci.ResponseCommit {
  433. return abci.ResponseCommit{Data: mock.appHash}
  434. }