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.

127 lines
5.1 KiB

  1. # ADR 029: Check block txs before prevote
  2. ## Changelog
  3. 04-10-2018: Update with link to issue
  4. [#2384](https://github.com/tendermint/tendermint/issues/2384) and reason for rejection
  5. 19-09-2018: Initial Draft
  6. ## Context
  7. We currently check a tx's validity through 2 ways.
  8. 1. Through checkTx in mempool connection.
  9. 2. Through deliverTx in consensus connection.
  10. The 1st is called when external tx comes in, so the node should be a proposer this time. The 2nd is called when external block comes in and reach the commit phase, the node doesn't need to be the proposer of the block, however it should check the txs in that block.
  11. In the 2nd situation, if there are many invalid txs in the block, it would be too late for all nodes to discover that most txs in the block are invalid, and we'd better not record invalid txs in the blockchain too.
  12. ## Proposed solution
  13. Therefore, we should find a way to check the txs' validity before send out a prevote. Currently we have cs.isProposalComplete() to judge whether a block is complete. We can have
  14. ```
  15. func (blockExec *BlockExecutor) CheckBlock(block *types.Block) error {
  16. // check txs of block.
  17. for _, tx := range block.Txs {
  18. reqRes := blockExec.proxyApp.CheckTxAsync(tx)
  19. reqRes.Wait()
  20. if reqRes.Response == nil || reqRes.Response.GetCheckTx() == nil || reqRes.Response.GetCheckTx().Code != abci.CodeTypeOK {
  21. return errors.Errorf("tx %v check failed. response: %v", tx, reqRes.Response)
  22. }
  23. }
  24. return nil
  25. }
  26. ```
  27. such a method in BlockExecutor to check all txs' validity in that block.
  28. However, this method should not be implemented like that, because checkTx will share the same state used in mempool in the app. So we should define a new interface method checkBlock in Application to indicate it to use the same state as deliverTx.
  29. ```
  30. type Application interface {
  31. // Info/Query Connection
  32. Info(RequestInfo) ResponseInfo // Return application info
  33. Query(RequestQuery) ResponseQuery // Query for state
  34. // Mempool Connection
  35. CheckTx(tx []byte) ResponseCheckTx // Validate a tx for the mempool
  36. // Consensus Connection
  37. InitChain(RequestInitChain) ResponseInitChain // Initialize blockchain with validators and other info from TendermintCore
  38. CheckBlock(RequestCheckBlock) ResponseCheckBlock
  39. BeginBlock(RequestBeginBlock) ResponseBeginBlock // Signals the beginning of a block
  40. DeliverTx(tx []byte) ResponseDeliverTx // Deliver a tx for full processing
  41. EndBlock(RequestEndBlock) ResponseEndBlock // Signals the end of a block, returns changes to the validator set
  42. Commit() ResponseCommit // Commit the state and return the application Merkle root hash
  43. }
  44. ```
  45. All app should implement that method. For example, counter:
  46. ```
  47. func (app *CounterApplication) CheckBlock(block types.Request_CheckBlock) types.ResponseCheckBlock {
  48. if app.serial {
  49. app.originalTxCount = app.txCount //backup the txCount state
  50. for _, tx := range block.CheckBlock.Block.Txs {
  51. if len(tx) > 8 {
  52. return types.ResponseCheckBlock{
  53. Code: code.CodeTypeEncodingError,
  54. Log: fmt.Sprintf("Max tx size is 8 bytes, got %d", len(tx))}
  55. }
  56. tx8 := make([]byte, 8)
  57. copy(tx8[len(tx8)-len(tx):], tx)
  58. txValue := binary.BigEndian.Uint64(tx8)
  59. if txValue < uint64(app.txCount) {
  60. return types.ResponseCheckBlock{
  61. Code: code.CodeTypeBadNonce,
  62. Log: fmt.Sprintf("Invalid nonce. Expected >= %v, got %v", app.txCount, txValue)}
  63. }
  64. app.txCount++
  65. }
  66. }
  67. return types.ResponseCheckBlock{Code: code.CodeTypeOK}
  68. }
  69. ```
  70. In BeginBlock, the app should restore the state to the orignal state before checking the block:
  71. ```
  72. func (app *CounterApplication) DeliverTx(tx []byte) types.ResponseDeliverTx {
  73. if app.serial {
  74. app.txCount = app.originalTxCount //restore the txCount state
  75. }
  76. app.txCount++
  77. return types.ResponseDeliverTx{Code: code.CodeTypeOK}
  78. }
  79. ```
  80. The txCount is like the nonce in ethermint, it should be restored when entering the deliverTx phase. While some operation like checking the tx signature needs not to be done again. So the deliverTx can focus on how a tx can be applied, ignoring the checking of the tx, because all the checking has already been done in the checkBlock phase before.
  81. An optional optimization is alter the deliverTx to deliverBlock. For the block has already been checked by checkBlock, so all the txs in it are valid. So the app can cache the block, and in the deliverBlock phase, it just needs to apply the block in the cache. This optimization can save network current in deliverTx.
  82. ## Status
  83. Rejected
  84. ## Decision
  85. Performance impact is considered too great. See [#2384](https://github.com/tendermint/tendermint/issues/2384)
  86. ## Consequences
  87. ### Positive
  88. - more robust to defend the adversary to propose a block full of invalid txs.
  89. ### Negative
  90. - add a new interface method. app logic needs to adjust to appeal to it.
  91. - sending all the tx data over the ABCI twice
  92. - potentially redundant validations (eg. signature checks in both CheckBlock and
  93. DeliverTx)
  94. ### Neutral