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.

401 lines
13 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. package consensus
  2. import (
  3. "bytes"
  4. "errors"
  5. "fmt"
  6. "io"
  7. "reflect"
  8. "strconv"
  9. "strings"
  10. "time"
  11. abci "github.com/tendermint/abci/types"
  12. wire "github.com/tendermint/go-wire"
  13. auto "github.com/tendermint/tmlibs/autofile"
  14. cmn "github.com/tendermint/tmlibs/common"
  15. "github.com/tendermint/tmlibs/log"
  16. "github.com/tendermint/tendermint/proxy"
  17. sm "github.com/tendermint/tendermint/state"
  18. "github.com/tendermint/tendermint/types"
  19. )
  20. // Functionality to replay blocks and messages on recovery from a crash.
  21. // There are two general failure scenarios: failure during consensus, and failure while applying the block.
  22. // The former is handled by the WAL, the latter by the proxyApp Handshake on restart,
  23. // which ultimately hands off the work to the WAL.
  24. //-----------------------------------------
  25. // recover from failure during consensus
  26. // by replaying messages from the WAL
  27. // Unmarshal and apply a single message to the consensus state
  28. // as if it were received in receiveRoutine
  29. // Lines that start with "#" are ignored.
  30. // NOTE: receiveRoutine should not be running
  31. func (cs *ConsensusState) readReplayMessage(msgBytes []byte, newStepCh chan interface{}) error {
  32. // Skip over empty and meta lines
  33. if len(msgBytes) == 0 || msgBytes[0] == '#' {
  34. return nil
  35. }
  36. var err error
  37. var msg TimedWALMessage
  38. wire.ReadJSON(&msg, msgBytes, &err)
  39. if err != nil {
  40. fmt.Println("MsgBytes:", msgBytes, string(msgBytes))
  41. return fmt.Errorf("Error reading json data: %v", err)
  42. }
  43. // for logging
  44. switch m := msg.Msg.(type) {
  45. case types.EventDataRoundState:
  46. cs.Logger.Info("Replay: New Step", "height", m.Height, "round", m.Round, "step", m.Step)
  47. // these are playback checks
  48. ticker := time.After(time.Second * 2)
  49. if newStepCh != nil {
  50. select {
  51. case mi := <-newStepCh:
  52. m2 := mi.(types.EventDataRoundState)
  53. if m.Height != m2.Height || m.Round != m2.Round || m.Step != m2.Step {
  54. return fmt.Errorf("RoundState mismatch. Got %v; Expected %v", m2, m)
  55. }
  56. case <-ticker:
  57. return fmt.Errorf("Failed to read off newStepCh")
  58. }
  59. }
  60. case msgInfo:
  61. peerKey := m.PeerKey
  62. if peerKey == "" {
  63. peerKey = "local"
  64. }
  65. switch msg := m.Msg.(type) {
  66. case *ProposalMessage:
  67. p := msg.Proposal
  68. cs.Logger.Info("Replay: Proposal", "height", p.Height, "round", p.Round, "header",
  69. p.BlockPartsHeader, "pol", p.POLRound, "peer", peerKey)
  70. case *BlockPartMessage:
  71. cs.Logger.Info("Replay: BlockPart", "height", msg.Height, "round", msg.Round, "peer", peerKey)
  72. case *VoteMessage:
  73. v := msg.Vote
  74. cs.Logger.Info("Replay: Vote", "height", v.Height, "round", v.Round, "type", v.Type,
  75. "blockID", v.BlockID, "peer", peerKey)
  76. }
  77. cs.handleMsg(m)
  78. case timeoutInfo:
  79. cs.Logger.Info("Replay: Timeout", "height", m.Height, "round", m.Round, "step", m.Step, "dur", m.Duration)
  80. cs.handleTimeout(m, cs.RoundState)
  81. default:
  82. return fmt.Errorf("Replay: Unknown TimedWALMessage type: %v", reflect.TypeOf(msg.Msg))
  83. }
  84. return nil
  85. }
  86. // replay only those messages since the last block.
  87. // timeoutRoutine should run concurrently to read off tickChan
  88. func (cs *ConsensusState) catchupReplay(csHeight int) error {
  89. // set replayMode
  90. cs.replayMode = true
  91. defer func() { cs.replayMode = false }()
  92. // Ensure that ENDHEIGHT for this height doesn't exist
  93. // NOTE: This is just a sanity check. As far as we know things work fine without it,
  94. // and Handshake could reuse ConsensusState if it weren't for this check (since we can crash after writing ENDHEIGHT).
  95. gr, found, err := cs.wal.group.Search("#ENDHEIGHT: ", makeHeightSearchFunc(csHeight))
  96. if gr != nil {
  97. gr.Close()
  98. }
  99. if found {
  100. return errors.New(cmn.Fmt("WAL should not contain #ENDHEIGHT %d.", csHeight))
  101. }
  102. // Search for last height marker
  103. gr, found, err = cs.wal.group.Search("#ENDHEIGHT: ", makeHeightSearchFunc(csHeight-1))
  104. if err == io.EOF {
  105. cs.Logger.Error("Replay: wal.group.Search returned EOF", "#ENDHEIGHT", csHeight-1)
  106. } else if err != nil {
  107. return err
  108. } else {
  109. defer gr.Close()
  110. }
  111. if !found {
  112. return errors.New(cmn.Fmt("Cannot replay height %d. WAL does not contain #ENDHEIGHT for %d.", csHeight, csHeight-1))
  113. }
  114. cs.Logger.Info("Catchup by replaying consensus messages", "height", csHeight)
  115. for {
  116. line, err := gr.ReadLine()
  117. if err != nil {
  118. if err == io.EOF {
  119. break
  120. } else {
  121. return err
  122. }
  123. }
  124. // NOTE: since the priv key is set when the msgs are received
  125. // it will attempt to eg double sign but we can just ignore it
  126. // since the votes will be replayed and we'll get to the next step
  127. if err := cs.readReplayMessage([]byte(line), nil); err != nil {
  128. return err
  129. }
  130. }
  131. cs.Logger.Info("Replay: Done")
  132. return nil
  133. }
  134. //--------------------------------------------------------------------------------
  135. // Parses marker lines of the form:
  136. // #ENDHEIGHT: 12345
  137. func makeHeightSearchFunc(height int) auto.SearchFunc {
  138. return func(line string) (int, error) {
  139. line = strings.TrimRight(line, "\n")
  140. parts := strings.Split(line, " ")
  141. if len(parts) != 2 {
  142. return -1, errors.New("Line did not have 2 parts")
  143. }
  144. i, err := strconv.Atoi(parts[1])
  145. if err != nil {
  146. return -1, errors.New("Failed to parse INFO: " + err.Error())
  147. }
  148. if height < i {
  149. return 1, nil
  150. } else if height == i {
  151. return 0, nil
  152. } else {
  153. return -1, nil
  154. }
  155. }
  156. }
  157. //----------------------------------------------
  158. // Recover from failure during block processing
  159. // by handshaking with the app to figure out where
  160. // we were last and using the WAL to recover there
  161. type Handshaker struct {
  162. state *sm.State
  163. store types.BlockStore
  164. logger log.Logger
  165. nBlocks int // number of blocks applied to the state
  166. }
  167. func NewHandshaker(state *sm.State, store types.BlockStore) *Handshaker {
  168. return &Handshaker{state, store, log.NewNopLogger(), 0}
  169. }
  170. func (h *Handshaker) SetLogger(l log.Logger) {
  171. h.logger = l
  172. }
  173. func (h *Handshaker) NBlocks() int {
  174. return h.nBlocks
  175. }
  176. // TODO: retry the handshake/replay if it fails ?
  177. func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
  178. // handshake is done via info request on the query conn
  179. res, err := proxyApp.Query().InfoSync()
  180. if err != nil {
  181. return errors.New(cmn.Fmt("Error calling Info: %v", err))
  182. }
  183. blockHeight := int(res.LastBlockHeight) // XXX: beware overflow
  184. appHash := res.LastBlockAppHash
  185. h.logger.Info("ABCI Handshake", "appHeight", blockHeight, "appHash", fmt.Sprintf("%X", appHash))
  186. // TODO: check version
  187. // replay blocks up to the latest in the blockstore
  188. _, err = h.ReplayBlocks(appHash, blockHeight, proxyApp)
  189. if err != nil {
  190. return errors.New(cmn.Fmt("Error on replay: %v", err))
  191. }
  192. h.logger.Info("Completed ABCI Handshake - Tendermint and App are synced", "appHeight", blockHeight, "appHash", fmt.Sprintf("%X", appHash))
  193. // TODO: (on restart) replay mempool
  194. return nil
  195. }
  196. // Replay all blocks since appBlockHeight and ensure the result matches the current state.
  197. // Returns the final AppHash or an error
  198. func (h *Handshaker) ReplayBlocks(appHash []byte, appBlockHeight int, proxyApp proxy.AppConns) ([]byte, error) {
  199. storeBlockHeight := h.store.Height()
  200. stateBlockHeight := h.state.LastBlockHeight
  201. h.logger.Info("ABCI Replay Blocks", "appHeight", appBlockHeight, "storeHeight", storeBlockHeight, "stateHeight", stateBlockHeight)
  202. // If appBlockHeight == 0 it means that we are at genesis and hence should send InitChain
  203. if appBlockHeight == 0 {
  204. validators := types.TM2PB.Validators(h.state.Validators)
  205. proxyApp.Consensus().InitChainSync(validators)
  206. }
  207. // First handle edge cases and constraints on the storeBlockHeight
  208. if storeBlockHeight == 0 {
  209. return appHash, h.checkAppHash(appHash)
  210. } else if storeBlockHeight < appBlockHeight {
  211. // the app should never be ahead of the store (but this is under app's control)
  212. return appHash, sm.ErrAppBlockHeightTooHigh{storeBlockHeight, appBlockHeight}
  213. } else if storeBlockHeight < stateBlockHeight {
  214. // the state should never be ahead of the store (this is under tendermint's control)
  215. cmn.PanicSanity(cmn.Fmt("StateBlockHeight (%d) > StoreBlockHeight (%d)", stateBlockHeight, storeBlockHeight))
  216. } else if storeBlockHeight > stateBlockHeight+1 {
  217. // store should be at most one ahead of the state (this is under tendermint's control)
  218. cmn.PanicSanity(cmn.Fmt("StoreBlockHeight (%d) > StateBlockHeight + 1 (%d)", storeBlockHeight, stateBlockHeight+1))
  219. }
  220. // Now either store is equal to state, or one ahead.
  221. // For each, consider all cases of where the app could be, given app <= store
  222. if storeBlockHeight == stateBlockHeight {
  223. // Tendermint ran Commit and saved the state.
  224. // Either the app is asking for replay, or we're all synced up.
  225. if appBlockHeight < storeBlockHeight {
  226. // the app is behind, so replay blocks, but no need to go through WAL (state is already synced to store)
  227. return h.replayBlocks(proxyApp, appBlockHeight, storeBlockHeight, false)
  228. } else if appBlockHeight == storeBlockHeight {
  229. // We're good!
  230. return appHash, h.checkAppHash(appHash)
  231. }
  232. } else if storeBlockHeight == stateBlockHeight+1 {
  233. // We saved the block in the store but haven't updated the state,
  234. // so we'll need to replay a block using the WAL.
  235. if appBlockHeight < stateBlockHeight {
  236. // the app is further behind than it should be, so replay blocks
  237. // but leave the last block to go through the WAL
  238. return h.replayBlocks(proxyApp, appBlockHeight, storeBlockHeight, true)
  239. } else if appBlockHeight == stateBlockHeight {
  240. // We haven't run Commit (both the state and app are one block behind),
  241. // so replayBlock with the real app.
  242. // NOTE: We could instead use the cs.WAL on cs.Start,
  243. // but we'd have to allow the WAL to replay a block that wrote it's ENDHEIGHT
  244. h.logger.Info("Replay last block using real app")
  245. return h.replayBlock(storeBlockHeight, proxyApp.Consensus())
  246. } else if appBlockHeight == storeBlockHeight {
  247. // We ran Commit, but didn't save the state, so replayBlock with mock app
  248. abciResponses := h.state.LoadABCIResponses()
  249. mockApp := newMockProxyApp(appHash, abciResponses)
  250. h.logger.Info("Replay last block using mock app")
  251. return h.replayBlock(storeBlockHeight, mockApp)
  252. }
  253. }
  254. cmn.PanicSanity("Should never happen")
  255. return nil, nil
  256. }
  257. func (h *Handshaker) replayBlocks(proxyApp proxy.AppConns, appBlockHeight, storeBlockHeight int, mutateState bool) ([]byte, error) {
  258. // App is further behind than it should be, so we need to replay blocks.
  259. // We replay all blocks from appBlockHeight+1.
  260. //
  261. // Note that we don't have an old version of the state,
  262. // so we by-pass state validation/mutation using sm.ExecCommitBlock.
  263. // This also means we won't be saving validator sets if they change during this period.
  264. //
  265. // If mutateState == true, the final block is replayed with h.replayBlock()
  266. var appHash []byte
  267. var err error
  268. finalBlock := storeBlockHeight
  269. if mutateState {
  270. finalBlock -= 1
  271. }
  272. for i := appBlockHeight + 1; i <= finalBlock; i++ {
  273. h.logger.Info("Applying block", "height", i)
  274. block := h.store.LoadBlock(i)
  275. appHash, err = sm.ExecCommitBlock(proxyApp.Consensus(), block, h.logger)
  276. if err != nil {
  277. return nil, err
  278. }
  279. h.nBlocks += 1
  280. }
  281. if mutateState {
  282. // sync the final block
  283. return h.replayBlock(storeBlockHeight, proxyApp.Consensus())
  284. }
  285. return appHash, h.checkAppHash(appHash)
  286. }
  287. // ApplyBlock on the proxyApp with the last block.
  288. func (h *Handshaker) replayBlock(height int, proxyApp proxy.AppConnConsensus) ([]byte, error) {
  289. mempool := types.MockMempool{}
  290. var eventCache types.Fireable // nil
  291. block := h.store.LoadBlock(height)
  292. meta := h.store.LoadBlockMeta(height)
  293. if err := h.state.ApplyBlock(eventCache, proxyApp, block, meta.BlockID.PartsHeader, mempool); err != nil {
  294. return nil, err
  295. }
  296. h.nBlocks += 1
  297. return h.state.AppHash, nil
  298. }
  299. func (h *Handshaker) checkAppHash(appHash []byte) error {
  300. if !bytes.Equal(h.state.AppHash, appHash) {
  301. panic(errors.New(cmn.Fmt("Tendermint state.AppHash does not match AppHash after replay. Got %X, expected %X", appHash, h.state.AppHash)).Error())
  302. return nil
  303. }
  304. return nil
  305. }
  306. //--------------------------------------------------------------------------------
  307. // mockProxyApp uses ABCIResponses to give the right results
  308. // Useful because we don't want to call Commit() twice for the same block on the real app.
  309. func newMockProxyApp(appHash []byte, abciResponses *sm.ABCIResponses) proxy.AppConnConsensus {
  310. clientCreator := proxy.NewLocalClientCreator(&mockProxyApp{
  311. appHash: appHash,
  312. abciResponses: abciResponses,
  313. })
  314. cli, _ := clientCreator.NewABCIClient()
  315. cli.Start()
  316. return proxy.NewAppConnConsensus(cli)
  317. }
  318. type mockProxyApp struct {
  319. abci.BaseApplication
  320. appHash []byte
  321. txCount int
  322. abciResponses *sm.ABCIResponses
  323. }
  324. func (mock *mockProxyApp) DeliverTx(tx []byte) abci.Result {
  325. r := mock.abciResponses.DeliverTx[mock.txCount]
  326. mock.txCount += 1
  327. return abci.Result{
  328. r.Code,
  329. r.Data,
  330. r.Log,
  331. }
  332. }
  333. func (mock *mockProxyApp) EndBlock(height uint64) abci.ResponseEndBlock {
  334. mock.txCount = 0
  335. return mock.abciResponses.EndBlock
  336. }
  337. func (mock *mockProxyApp) Commit() abci.Result {
  338. return abci.NewResultOK(mock.appHash, "")
  339. }