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.

1233 lines
44 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*
  2. * Terms:
  3. NewHeight, NewRound, Propose, Prevote, Precommit represent state machine steps. (aka RoundStep).
  4. To "prevote/precommit" something means to broadcast a prevote/precommit vote for something.
  5. (H,R) means a particular height H and round R. A vote "at (H,R)" is a vote signed with (H,R).
  6. * Proposals:
  7. A proposal is signed and published by the designated proposer at each round.
  8. A proposal at (H,R) is composed of a proposed block of height H, and optionally a POL round number.
  9. The POL round number R' (where R' < R) is set to the latest POL round known to the proposer.
  10. If the proposer is locked on a block, it must include a POL round for the proposal.
  11. * POL and Justification of votes:
  12. A set of +2/3 of prevotes for a particular block or <nil> at (H,R) is called a POL (proof-of-lock).
  13. A POL for <nil> might instead be called a proof-of-unlock, but it's better to have a single terminology for both.
  14. Each precommit which changes the lock at round R must be justified by a POL
  15. where +2/3 prevoted for some block or <nil> at some round, equal to or less than R,
  16. but greater than the last round at which the lock was changed.
  17. POL = Proof-of-Lock = +2/3 prevotes for block B (or +2/3 prevotes for <nil>) at (H,R)
  18. lastLockChangeRound < POLRound <= newLockChangeRound
  19. Without the POLRound <= newLockChangeRound condition, an unlock would be possible from a
  20. future condition that hasn't happened yet, so it destroys deterministic accountability.
  21. The point of the above inequality is to ensure that changes in the lock (locking/unlocking/lock-changing)
  22. are always justified by something that happened "in the past" by round numbers, so if there is a problem,
  23. we can deterministically figure out "when it was caused" and by who.
  24. If there is a blockchain halt or fork, the blame will fall on +1/3 of Byzantine voting power =
  25. who cannot push the blame into earlier rounds. (See lemma 4).
  26. * Block commits:
  27. The set of +2/3 of precommits at the same round for the same block is called a commit.
  28. A block contains the last block's commit which is comprised of +2/3 precommit votes at (H-1,R).
  29. While all the precommits in the commit are from the same height & round (ordered by validator index),
  30. some precommits may be absent (e.g. if the validator's precommit vote didn't reach the proposer in time),
  31. or some precommits may be for different blockhashes for the last block hash (which is fine).
  32. * Consensus State Machine Overview:
  33. During NewHeight/NewRound/Propose/Prevote/Precommit:
  34. * Nodes gossip the proposal block proposed by the designated proposer at round.
  35. * Nodes gossip prevotes/precommits at rounds [0...currentRound+1] (currentRound+1 to allow round-skipping)
  36. * Nodes gossip prevotes for the proposal's POL (proof-of-lock) round if proposed.
  37. * Nodes gossip to late nodes (lagging in height) with precommits of the commit round (aka catchup)
  38. Upon each state transition, the height/round/step is broadcast to neighboring peers.
  39. * NewRound(height:H,round:R):
  40. * Set up new round. --> goto Propose(H,R)
  41. * NOTE: Not much happens in this step. It exists for clarity.
  42. * Propose(height:H,round:R):
  43. * Upon entering Propose:
  44. * The designated proposer proposes a block at (H,R).
  45. * The Propose step ends:
  46. * After `timeoutPropose` after entering Propose. --> goto Prevote(H,R)
  47. * After receiving proposal block and all POL prevotes. --> goto Prevote(H,R)
  48. * After any +2/3 prevotes received at (H,R+1). --> goto Prevote(H,R+1)
  49. * After any +2/3 precommits received at (H,R+1). --> goto Precommit(H,R+1)
  50. * After +2/3 precommits received for a particular block. --> goto Commit(H)
  51. * Prevote(height:H,round:R):
  52. * Upon entering Prevote, each validator broadcasts its prevote vote.
  53. * If the validator is locked on a block, it prevotes that.
  54. * Else, if the proposed block from Propose(H,R) is good, it prevotes that.
  55. * Else, if the proposal is invalid or wasn't received on time, it prevotes <nil>.
  56. * The Prevote step ends:
  57. * After +2/3 prevotes for a particular block or <nil>. --> goto Precommit(H,R)
  58. * After `timeoutPrevote` after receiving any +2/3 prevotes. --> goto Precommit(H,R)
  59. * After any +2/3 prevotes received at (H,R+1). --> goto Prevote(H,R+1)
  60. * After any +2/3 precommits received at (H,R+1). --> goto Precommit(H,R+1)
  61. * After +2/3 precommits received for a particular block. --> goto Commit(H)
  62. * Precommit(height:H,round:R):
  63. * Upon entering Precommit, each validator broadcasts its precommit vote.
  64. * If the validator had seen +2/3 of prevotes for a particular block from Prevote(H,R),
  65. it locks (changes lock to) that block and precommits that block.
  66. * Else, if the validator had seen +2/3 of prevotes for <nil>, it unlocks and precommits <nil>.
  67. * Else, if +2/3 of prevotes for a particular block or <nil> is not received on time,
  68. it precommits what it's locked on, or <nil>.
  69. * The Precommit step ends:
  70. * After +2/3 precommits for a particular block. --> goto Commit(H)
  71. * After +2/3 precommits for <nil>. --> goto NewRound(H,R+1)
  72. * After `timeoutPrecommit` after receiving any +2/3 precommits. --> goto NewRound(H,R+1)
  73. * After any +2/3 prevotes received at (H,R+1). --> goto Prevote(H,R+1)
  74. * After any +2/3 precommits received at (H,R+1). --> goto Precommit(H,R+1)
  75. * Commit(height:H):
  76. * Set CommitTime = now
  77. * Wait until block is received. --> goto NewHeight(H+1)
  78. * NewHeight(height:H):
  79. * Move Precommits to LastCommit and increment height.
  80. * Set StartTime = CommitTime+timeoutCommit
  81. * Wait until `StartTime` to receive straggler commits. --> goto NewRound(H,0)
  82. * Proof of Safety:
  83. If a good validator commits at round R, it's because it saw +2/3 of precommits at round R.
  84. This implies that (assuming tolerance bounds) +1/3 of honest nodes are still locked at round R+1.
  85. These locked validators will remain locked until they see +2/3 prevote for something
  86. else, but this won't happen because +1/3 are locked and honest.
  87. * Proof of Liveness:
  88. Lemma 1: If +1/3 good nodes are locked on two different blocks, the proposers' POLRound will
  89. eventually cause nodes locked from the earlier round to unlock.
  90. -> `timeoutProposalR` increments with round R, while the block.size && POL prevote size
  91. are fixed, so eventually we'll be able to "fully gossip" the block & POL.
  92. TODO: cap the block.size at something reasonable.
  93. Lemma 2: If a good node is at round R, neighboring good nodes will soon catch up to round R.
  94. Lemma 3: If a node at (H,R) receives +2/3 prevotes for a block (or +2/3 for <nil>) at (H,R+1),
  95. it will enter NewRound(H,R+1).
  96. Lemma 4: Terminal conditions imply the existence of deterministic accountability, for
  97. a synchronous (fixed-duration) protocol extension (judgement).
  98. TODO: define terminal conditions (fork and non-decision).
  99. TODO: define new assumptions for the synchronous judgement period.
  100. +-------------------------------------+
  101. v |(Wait til `CommmitTime+timeoutCommit`)
  102. +-----------+ +-----+-----+
  103. +----------> | Propose +--------------+ | NewHeight |
  104. | +-----------+ | +-----------+
  105. | | ^
  106. |(Else, after timeoutPrecommit) v |
  107. +-----+-----+ +-----------+ |
  108. | Precommit | <------------------------+ Prevote | |
  109. +-----+-----+ +-----------+ |
  110. |(When +2/3 Precommits for block found) |
  111. v |
  112. +--------------------------------------------------------------------+
  113. | Commit |
  114. | |
  115. | * Set CommitTime = now; |
  116. | * Wait for block, then stage/save/commit block; |
  117. +--------------------------------------------------------------------+
  118. */
  119. package consensus
  120. import (
  121. "bytes"
  122. "errors"
  123. "fmt"
  124. "sync"
  125. "time"
  126. acm "github.com/tendermint/tendermint/account"
  127. "github.com/tendermint/tendermint/binary"
  128. bc "github.com/tendermint/tendermint/blockchain"
  129. . "github.com/tendermint/tendermint/common"
  130. . "github.com/tendermint/tendermint/consensus/types"
  131. "github.com/tendermint/tendermint/events"
  132. mempl "github.com/tendermint/tendermint/mempool"
  133. sm "github.com/tendermint/tendermint/state"
  134. "github.com/tendermint/tendermint/types"
  135. )
  136. var (
  137. timeoutPropose = 3000 * time.Millisecond // Maximum duration of RoundStepPropose
  138. timeoutPrevote0 = 1000 * time.Millisecond // After any +2/3 prevotes received, wait this long for stragglers.
  139. timeoutPrevoteDelta = 0500 * time.Millisecond // timeoutPrevoteN is timeoutPrevote0 + timeoutPrevoteDelta*N
  140. timeoutPrecommit0 = 1000 * time.Millisecond // After any +2/3 precommits received, wait this long for stragglers.
  141. timeoutPrecommitDelta = 0500 * time.Millisecond // timeoutPrecommitN is timeoutPrecommit0 + timeoutPrecommitDelta*N
  142. timeoutCommit = 2000 * time.Millisecond // After +2/3 commits received for committed block, wait this long for stragglers in the next height's RoundStepNewHeight.
  143. )
  144. var (
  145. ErrInvalidProposalSignature = errors.New("Error invalid proposal signature")
  146. ErrInvalidProposalPOLRound = errors.New("Error invalid proposal POL round")
  147. )
  148. //-----------------------------------------------------------------------------
  149. // RoundStepType enum type
  150. type RoundStepType uint8 // These must be numeric, ordered.
  151. const (
  152. RoundStepNewHeight = RoundStepType(0x01) // Wait til CommitTime + timeoutCommit
  153. RoundStepNewRound = RoundStepType(0x02) // Setup new round and go to RoundStepPropose
  154. RoundStepPropose = RoundStepType(0x03) // Did propose, gossip proposal
  155. RoundStepPrevote = RoundStepType(0x04) // Did prevote, gossip prevotes
  156. RoundStepPrevoteWait = RoundStepType(0x05) // Did receive any +2/3 prevotes, start timeout
  157. RoundStepPrecommit = RoundStepType(0x06) // Did precommit, gossip precommits
  158. RoundStepPrecommitWait = RoundStepType(0x07) // Did receive any +2/3 precommits, start timeout
  159. RoundStepCommit = RoundStepType(0x08) // Entered commit state machine
  160. // NOTE: RoundStepNewHeight acts as RoundStepCommitWait.
  161. )
  162. func (rs RoundStepType) String() string {
  163. switch rs {
  164. case RoundStepNewHeight:
  165. return "RoundStepNewHeight"
  166. case RoundStepNewRound:
  167. return "RoundStepNewRound"
  168. case RoundStepPropose:
  169. return "RoundStepPropose"
  170. case RoundStepPrevote:
  171. return "RoundStepPrevote"
  172. case RoundStepPrevoteWait:
  173. return "RoundStepPrevoteWait"
  174. case RoundStepPrecommit:
  175. return "RoundStepPrecommit"
  176. case RoundStepPrecommitWait:
  177. return "RoundStepPrecommitWait"
  178. case RoundStepCommit:
  179. return "RoundStepCommit"
  180. default:
  181. return "RoundStepUnknown" // Cannot panic.
  182. }
  183. }
  184. //-----------------------------------------------------------------------------
  185. // Immutable when returned from ConsensusState.GetRoundState()
  186. type RoundState struct {
  187. Height int // Height we are working on
  188. Round int
  189. Step RoundStepType
  190. StartTime time.Time
  191. CommitTime time.Time // Subjective time when +2/3 precommits for Block at Round were found
  192. Validators *sm.ValidatorSet
  193. Proposal *Proposal
  194. ProposalBlock *types.Block
  195. ProposalBlockParts *types.PartSet
  196. LockedRound int
  197. LockedBlock *types.Block
  198. LockedBlockParts *types.PartSet
  199. Votes *HeightVoteSet
  200. LastCommit *VoteSet // Last precommits at Height-1
  201. LastValidators *sm.ValidatorSet
  202. }
  203. func (rs *RoundState) String() string {
  204. return rs.StringIndented("")
  205. }
  206. func (rs *RoundState) StringIndented(indent string) string {
  207. return fmt.Sprintf(`RoundState{
  208. %s H:%v R:%v S:%v
  209. %s StartTime: %v
  210. %s CommitTime: %v
  211. %s Validators: %v
  212. %s Proposal: %v
  213. %s ProposalBlock: %v %v
  214. %s LockedRound: %v
  215. %s LockedBlock: %v %v
  216. %s Votes: %v
  217. %s LastCommit: %v
  218. %s LastValidators: %v
  219. %s}`,
  220. indent, rs.Height, rs.Round, rs.Step,
  221. indent, rs.StartTime,
  222. indent, rs.CommitTime,
  223. indent, rs.Validators.StringIndented(indent+" "),
  224. indent, rs.Proposal,
  225. indent, rs.ProposalBlockParts.StringShort(), rs.ProposalBlock.StringShort(),
  226. indent, rs.LockedRound,
  227. indent, rs.LockedBlockParts.StringShort(), rs.LockedBlock.StringShort(),
  228. indent, rs.Votes.StringIndented(indent+" "),
  229. indent, rs.LastCommit.StringShort(),
  230. indent, rs.LastValidators.StringIndented(indent+" "),
  231. indent)
  232. }
  233. func (rs *RoundState) StringShort() string {
  234. return fmt.Sprintf(`RoundState{H:%v R:%v S:%v ST:%v}`,
  235. rs.Height, rs.Round, rs.Step, rs.StartTime)
  236. }
  237. //-----------------------------------------------------------------------------
  238. // Tracks consensus state across block heights and rounds.
  239. type ConsensusState struct {
  240. BaseService
  241. blockStore *bc.BlockStore
  242. mempoolReactor *mempl.MempoolReactor
  243. privValidator *sm.PrivValidator
  244. newStepCh chan *RoundState
  245. mtx sync.Mutex
  246. RoundState
  247. state *sm.State // State until height-1.
  248. stagedBlock *types.Block // Cache last staged block.
  249. stagedState *sm.State // Cache result of staged block.
  250. evsw events.Fireable
  251. evc *events.EventCache // set in stageBlock and passed into state
  252. }
  253. func NewConsensusState(state *sm.State, blockStore *bc.BlockStore, mempoolReactor *mempl.MempoolReactor) *ConsensusState {
  254. cs := &ConsensusState{
  255. blockStore: blockStore,
  256. mempoolReactor: mempoolReactor,
  257. newStepCh: make(chan *RoundState, 10),
  258. }
  259. cs.updateToState(state, true)
  260. // Don't call scheduleRound0 yet.
  261. // We do that upon Start().
  262. cs.maybeRebond()
  263. cs.reconstructLastCommit(state)
  264. cs.BaseService = *NewBaseService(log, "ConsensusState", cs)
  265. return cs
  266. }
  267. // Reconstruct LastCommit from SeenValidation, which we saved along with the block,
  268. // (which happens even before saving the state)
  269. func (cs *ConsensusState) reconstructLastCommit(state *sm.State) {
  270. if state.LastBlockHeight == 0 {
  271. return
  272. }
  273. lastPrecommits := NewVoteSet(state.LastBlockHeight, 0, types.VoteTypePrecommit, state.LastBondedValidators)
  274. seenValidation := cs.blockStore.LoadSeenValidation(state.LastBlockHeight)
  275. for idx, precommit := range seenValidation.Precommits {
  276. if precommit == nil {
  277. continue
  278. }
  279. added, _, err := lastPrecommits.AddByIndex(idx, precommit)
  280. if !added || err != nil {
  281. panic(Fmt("Failed to reconstruct LastCommit: %v", err))
  282. }
  283. }
  284. if !lastPrecommits.HasTwoThirdsMajority() {
  285. panic("Failed to reconstruct LastCommit: Does not have +2/3 maj")
  286. }
  287. cs.LastCommit = lastPrecommits
  288. }
  289. func (cs *ConsensusState) GetState() *sm.State {
  290. cs.mtx.Lock()
  291. defer cs.mtx.Unlock()
  292. return cs.state.Copy()
  293. }
  294. func (cs *ConsensusState) GetRoundState() *RoundState {
  295. cs.mtx.Lock()
  296. defer cs.mtx.Unlock()
  297. return cs.getRoundState()
  298. }
  299. func (cs *ConsensusState) getRoundState() *RoundState {
  300. rs := cs.RoundState // copy
  301. return &rs
  302. }
  303. func (cs *ConsensusState) NewStepCh() chan *RoundState {
  304. return cs.newStepCh
  305. }
  306. func (cs *ConsensusState) AfterStart() {
  307. cs.scheduleRound0(cs.Height)
  308. }
  309. func (cs *ConsensusState) AfterStop() {
  310. // It's mostly asynchronous so, there's not much to stop.
  311. }
  312. // EnterNewRound(height, 0) at cs.StartTime.
  313. func (cs *ConsensusState) scheduleRound0(height int) {
  314. //log.Info("scheduleRound0", "now", time.Now(), "startTime", cs.StartTime)
  315. sleepDuration := cs.StartTime.Sub(time.Now())
  316. go func() {
  317. if 0 < sleepDuration {
  318. time.Sleep(sleepDuration)
  319. }
  320. cs.EnterNewRound(height, 0)
  321. }()
  322. }
  323. // Updates ConsensusState and increments height to match that of state.
  324. // The round becomes 0 and cs.Step becomes RoundStepNewHeight.
  325. func (cs *ConsensusState) updateToState(state *sm.State, contiguous bool) {
  326. // SANITY CHECK
  327. if contiguous && 0 < cs.Height && cs.Height != state.LastBlockHeight {
  328. panic(Fmt("updateToState() expected state height of %v but found %v",
  329. cs.Height, state.LastBlockHeight))
  330. }
  331. if cs.state != nil && cs.state.LastBlockHeight+1 != cs.Height {
  332. // This might happen when someone else is mutating cs.state.
  333. // Someone forgot to pass in state.Copy() somewhere?!
  334. panic(Fmt("Inconsistent cs.state.LastBlockHeight+1 %v vs cs.Height %v",
  335. cs.state.LastBlockHeight+1, cs.Height))
  336. }
  337. // END SANITY CHECK
  338. // If state isn't further out than cs.state, just ignore.
  339. // This happens when SwitchToConsensus() is called in the reactor.
  340. // We don't want to reset e.g. the Votes.
  341. if cs.state != nil && (state.LastBlockHeight <= cs.state.LastBlockHeight) {
  342. log.Notice("Ignoring updateToState()", "newHeight", state.LastBlockHeight+1, "oldHeight", cs.state.LastBlockHeight+1)
  343. return
  344. }
  345. // Reset fields based on state.
  346. validators := state.BondedValidators
  347. height := state.LastBlockHeight + 1 // next desired block height
  348. lastPrecommits := (*VoteSet)(nil)
  349. if contiguous && cs.Votes != nil {
  350. if !cs.Votes.Precommits(cs.Round).HasTwoThirdsMajority() {
  351. panic("updateToState(state, true) called but last Precommit round didn't have +2/3")
  352. }
  353. lastPrecommits = cs.Votes.Precommits(cs.Round)
  354. }
  355. // RoundState fields
  356. cs.Height = height
  357. cs.Round = 0
  358. cs.Step = RoundStepNewHeight
  359. if cs.CommitTime.IsZero() {
  360. // "Now" makes it easier to sync up dev nodes.
  361. // We add timeoutCommit to allow transactions
  362. // to be gathered for the first block.
  363. // And alternative solution that relies on clocks:
  364. // cs.StartTime = state.LastBlockTime.Add(timeoutCommit)
  365. cs.StartTime = time.Now().Add(timeoutCommit)
  366. } else {
  367. cs.StartTime = cs.CommitTime.Add(timeoutCommit)
  368. }
  369. cs.CommitTime = time.Time{}
  370. cs.Validators = validators
  371. cs.Proposal = nil
  372. cs.ProposalBlock = nil
  373. cs.ProposalBlockParts = nil
  374. cs.LockedRound = 0
  375. cs.LockedBlock = nil
  376. cs.LockedBlockParts = nil
  377. cs.Votes = NewHeightVoteSet(height, validators)
  378. cs.LastCommit = lastPrecommits
  379. cs.LastValidators = state.LastBondedValidators
  380. cs.state = state
  381. cs.stagedBlock = nil
  382. cs.stagedState = nil
  383. // Finally, broadcast RoundState
  384. cs.newStepCh <- cs.getRoundState()
  385. }
  386. // If we're unbonded, broadcast RebondTx.
  387. func (cs *ConsensusState) maybeRebond() {
  388. if cs.privValidator == nil || !cs.state.UnbondingValidators.HasAddress(cs.privValidator.Address) {
  389. return
  390. }
  391. rebondTx := &types.RebondTx{
  392. Address: cs.privValidator.Address,
  393. Height: cs.Height,
  394. }
  395. err := cs.privValidator.SignRebondTx(cs.state.ChainID, rebondTx)
  396. if err == nil {
  397. err := cs.mempoolReactor.BroadcastTx(rebondTx)
  398. if err != nil {
  399. log.Error("Failed to broadcast RebondTx",
  400. "height", cs.Height, "round", cs.Round, "tx", rebondTx, "error", err)
  401. } else {
  402. log.Notice("Signed and broadcast RebondTx",
  403. "height", cs.Height, "round", cs.Round, "tx", rebondTx)
  404. }
  405. } else {
  406. log.Warn("Error signing RebondTx", "height", cs.Height, "round", cs.Round, "tx", rebondTx, "error", err)
  407. }
  408. }
  409. func (cs *ConsensusState) SetPrivValidator(priv *sm.PrivValidator) {
  410. cs.mtx.Lock()
  411. defer cs.mtx.Unlock()
  412. cs.privValidator = priv
  413. }
  414. //-----------------------------------------------------------------------------
  415. // Enter: +2/3 precommits for nil at (height,round-1)
  416. // Enter: `timeoutPrecommits` after any +2/3 precommits from (height,round-1)
  417. // Enter: `startTime = commitTime+timeoutCommit` from NewHeight(height)
  418. // NOTE: cs.StartTime was already set for height.
  419. func (cs *ConsensusState) EnterNewRound(height int, round int) {
  420. cs.mtx.Lock()
  421. defer cs.mtx.Unlock()
  422. if cs.Height != height || round < cs.Round || (cs.Round == round && cs.Step != RoundStepNewHeight) {
  423. log.Info(Fmt("EnterNewRound(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  424. return
  425. }
  426. if now := time.Now(); cs.StartTime.After(now) {
  427. log.Warn("Need to set a buffer and log.Warn() here for sanity.", "startTime", cs.StartTime, "now", now)
  428. }
  429. log.Notice(Fmt("EnterNewRound(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  430. // Increment validators if necessary
  431. validators := cs.Validators
  432. if cs.Round < round {
  433. validators = validators.Copy()
  434. validators.IncrementAccum(round - cs.Round)
  435. }
  436. // Setup new round
  437. cs.Round = round
  438. cs.Step = RoundStepNewRound
  439. cs.Validators = validators
  440. if round == 0 {
  441. // We've already reset these upon new height,
  442. // and meanwhile we might have received a proposal
  443. // for round 0.
  444. } else {
  445. cs.Proposal = nil
  446. cs.ProposalBlock = nil
  447. cs.ProposalBlockParts = nil
  448. }
  449. cs.Votes.SetRound(round + 1) // also track next round (round+1) to allow round-skipping
  450. // Immediately go to EnterPropose.
  451. go cs.EnterPropose(height, round)
  452. }
  453. // Enter: from NewRound(height,round).
  454. func (cs *ConsensusState) EnterPropose(height int, round int) {
  455. cs.mtx.Lock()
  456. defer cs.mtx.Unlock()
  457. if cs.Height != height || round < cs.Round || (cs.Round == round && RoundStepPropose <= cs.Step) {
  458. log.Info(Fmt("EnterPropose(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  459. return
  460. }
  461. log.Info(Fmt("EnterPropose(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  462. defer func() {
  463. // Done EnterPropose:
  464. cs.Round = round
  465. cs.Step = RoundStepPropose
  466. cs.newStepCh <- cs.getRoundState()
  467. // If we already have the proposal + POL, then goto Prevote
  468. if cs.isProposalComplete() {
  469. go cs.EnterPrevote(height, cs.Round)
  470. }
  471. }()
  472. // This step times out after `timeoutPropose`
  473. go func() {
  474. time.Sleep(timeoutPropose)
  475. cs.EnterPrevote(height, round)
  476. }()
  477. // Nothing more to do if we're not a validator
  478. if cs.privValidator == nil {
  479. return
  480. }
  481. if !bytes.Equal(cs.Validators.Proposer().Address, cs.privValidator.Address) {
  482. log.Info("EnterPropose: Not our turn to propose", "proposer", cs.Validators.Proposer().Address, "privValidator", cs.privValidator)
  483. } else {
  484. log.Info("EnterPropose: Our turn to propose", "proposer", cs.Validators.Proposer().Address, "privValidator", cs.privValidator)
  485. cs.decideProposal(height, round)
  486. }
  487. }
  488. // Decides on the next proposal and sets them onto cs.Proposal*
  489. func (cs *ConsensusState) decideProposal(height int, round int) {
  490. var block *types.Block
  491. var blockParts *types.PartSet
  492. // Decide on block
  493. if cs.LockedBlock != nil {
  494. // If we're locked onto a block, just choose that.
  495. block, blockParts = cs.LockedBlock, cs.LockedBlockParts
  496. } else {
  497. // Create a new proposal block from state/txs from the mempool.
  498. block, blockParts = cs.createProposalBlock()
  499. }
  500. // Make proposal
  501. proposal := NewProposal(height, round, blockParts.Header(), cs.Votes.POLRound())
  502. err := cs.privValidator.SignProposal(cs.state.ChainID, proposal)
  503. if err == nil {
  504. log.Notice("Signed and set proposal", "height", height, "round", round, "proposal", proposal)
  505. log.Info(Fmt("Signed and set proposal block: %v", block))
  506. // Set fields
  507. cs.Proposal = proposal
  508. cs.ProposalBlock = block
  509. cs.ProposalBlockParts = blockParts
  510. } else {
  511. log.Warn("EnterPropose: Error signing proposal", "height", height, "round", round, "error", err)
  512. }
  513. }
  514. // Returns true if the proposal block is complete &&
  515. // (if POLRound was proposed, we have +2/3 prevotes from there).
  516. func (cs *ConsensusState) isProposalComplete() bool {
  517. if cs.Proposal == nil || cs.ProposalBlock == nil {
  518. return false
  519. }
  520. if cs.Proposal.POLRound < 0 {
  521. return true
  522. } else {
  523. return cs.Votes.Prevotes(cs.Proposal.POLRound).HasTwoThirdsMajority()
  524. }
  525. }
  526. // Create the next block to propose and return it.
  527. // NOTE: make it side-effect free for clarity.
  528. func (cs *ConsensusState) createProposalBlock() (block *types.Block, blockParts *types.PartSet) {
  529. var validation *types.Validation
  530. if cs.Height == 1 {
  531. // We're creating a proposal for the first block.
  532. // The validation is empty, but not nil.
  533. validation = &types.Validation{}
  534. } else if cs.LastCommit.HasTwoThirdsMajority() {
  535. // Make the validation from LastCommit
  536. validation = cs.LastCommit.MakeValidation()
  537. } else {
  538. // This shouldn't happen.
  539. log.Error("EnterPropose: Cannot propose anything: No validation for the previous block.")
  540. return
  541. }
  542. txs := cs.mempoolReactor.Mempool.GetProposalTxs()
  543. block = &types.Block{
  544. Header: &types.Header{
  545. ChainID: cs.state.ChainID,
  546. Height: cs.Height,
  547. Time: time.Now(),
  548. Fees: 0, // TODO fees
  549. NumTxs: len(txs),
  550. LastBlockHash: cs.state.LastBlockHash,
  551. LastBlockParts: cs.state.LastBlockParts,
  552. StateHash: nil, // Will set afterwards.
  553. },
  554. LastValidation: validation,
  555. Data: &types.Data{
  556. Txs: txs,
  557. },
  558. }
  559. // Set the block.Header.StateHash.
  560. err := cs.state.ComputeBlockStateHash(block)
  561. if err != nil {
  562. log.Error("EnterPropose: Error setting state hash", "error", err)
  563. return
  564. }
  565. blockParts = block.MakePartSet()
  566. return block, blockParts
  567. }
  568. // Enter: `timeoutPropose` after entering Propose.
  569. // Enter: proposal block and POL is ready.
  570. // Enter: any +2/3 prevotes for future round.
  571. // Prevote for LockedBlock if we're locked, or ProposalBlock if valid.
  572. // Otherwise vote nil.
  573. func (cs *ConsensusState) EnterPrevote(height int, round int) {
  574. cs.mtx.Lock()
  575. defer cs.mtx.Unlock()
  576. if cs.Height != height || round < cs.Round || (cs.Round == round && RoundStepPrevote <= cs.Step) {
  577. log.Info(Fmt("EnterPrevote(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  578. return
  579. }
  580. log.Info(Fmt("EnterPrevote(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  581. // Sign and broadcast vote as necessary
  582. cs.doPrevote(height, round)
  583. // Done EnterPrevote:
  584. cs.Round = round
  585. cs.Step = RoundStepPrevote
  586. cs.newStepCh <- cs.getRoundState()
  587. /* This isn't necessary because addVote() does it for us.
  588. if cs.Votes.Prevotes(round).HasTwoThirdsAny() {
  589. go cs.EnterPrevoteWait(height, round)
  590. }*/
  591. }
  592. func (cs *ConsensusState) doPrevote(height int, round int) {
  593. // If a block is locked, prevote that.
  594. if cs.LockedBlock != nil {
  595. log.Info("EnterPrevote: Block was locked")
  596. cs.signAddVote(types.VoteTypePrevote, cs.LockedBlock.Hash(), cs.LockedBlockParts.Header())
  597. return
  598. }
  599. // If ProposalBlock is nil, prevote nil.
  600. if cs.ProposalBlock == nil {
  601. log.Warn("EnterPrevote: ProposalBlock is nil")
  602. cs.signAddVote(types.VoteTypePrevote, nil, types.PartSetHeader{})
  603. return
  604. }
  605. // Try staging cs.ProposalBlock
  606. err := cs.stageBlock(cs.ProposalBlock, cs.ProposalBlockParts)
  607. if err != nil {
  608. // ProposalBlock is invalid, prevote nil.
  609. log.Warn("EnterPrevote: ProposalBlock is invalid", "error", err)
  610. cs.signAddVote(types.VoteTypePrevote, nil, types.PartSetHeader{})
  611. return
  612. }
  613. // Prevote cs.ProposalBlock
  614. cs.signAddVote(types.VoteTypePrevote, cs.ProposalBlock.Hash(), cs.ProposalBlockParts.Header())
  615. return
  616. }
  617. // Enter: any +2/3 prevotes at next round.
  618. func (cs *ConsensusState) EnterPrevoteWait(height int, round int) {
  619. cs.mtx.Lock()
  620. defer cs.mtx.Unlock()
  621. if cs.Height != height || round < cs.Round || (cs.Round == round && RoundStepPrevoteWait <= cs.Step) {
  622. log.Info(Fmt("EnterPrevoteWait(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  623. return
  624. }
  625. if !cs.Votes.Prevotes(round).HasTwoThirdsAny() {
  626. panic(Fmt("EnterPrevoteWait(%v/%v), but Prevotes does not have any +2/3 votes", height, round))
  627. }
  628. log.Info(Fmt("EnterPrevoteWait(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  629. // Done EnterPrevoteWait:
  630. cs.Round = round
  631. cs.Step = RoundStepPrevoteWait
  632. cs.newStepCh <- cs.getRoundState()
  633. // After `timeoutPrevote0+timeoutPrevoteDelta*round`, EnterPrecommit()
  634. go func() {
  635. time.Sleep(timeoutPrevote0 + timeoutPrevote0*time.Duration(round))
  636. cs.EnterPrecommit(height, round)
  637. }()
  638. }
  639. // Enter: +2/3 precomits for block or nil.
  640. // Enter: `timeoutPrevote` after any +2/3 prevotes.
  641. // Enter: any +2/3 precommits for next round.
  642. // Lock & precommit the ProposalBlock if we have enough prevotes for it,
  643. // else, unlock an existing lock and precommit nil if +2/3 of prevotes were nil,
  644. // else, precommit locked block or nil otherwise.
  645. func (cs *ConsensusState) EnterPrecommit(height int, round int) {
  646. cs.mtx.Lock()
  647. defer cs.mtx.Unlock()
  648. if cs.Height != height || round < cs.Round || (cs.Round == round && RoundStepPrecommit <= cs.Step) {
  649. log.Info(Fmt("EnterPrecommit(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  650. return
  651. }
  652. log.Info(Fmt("EnterPrecommit(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  653. defer func() {
  654. // Done EnterPrecommit:
  655. cs.Round = round
  656. cs.Step = RoundStepPrecommit
  657. cs.newStepCh <- cs.getRoundState()
  658. /* This isn't necessary because addVote() does it for us.
  659. if cs.Votes.Precommits(round).HasTwoThirdsAny() {
  660. go cs.EnterPrecommitWait(height, round)
  661. }*/
  662. }()
  663. hash, partsHeader, ok := cs.Votes.Prevotes(round).TwoThirdsMajority()
  664. // If we don't have two thirds of prevotes, just precommit locked block or nil
  665. if !ok {
  666. if cs.LockedBlock != nil {
  667. log.Info("EnterPrecommit: No +2/3 prevotes during EnterPrecommit. Precommitting lock.")
  668. cs.signAddVote(types.VoteTypePrecommit, cs.LockedBlock.Hash(), cs.LockedBlockParts.Header())
  669. } else {
  670. log.Info("EnterPrecommit: No +2/3 prevotes during EnterPrecommit. Precommitting nil.")
  671. cs.signAddVote(types.VoteTypePrecommit, nil, types.PartSetHeader{})
  672. }
  673. return
  674. }
  675. // +2/3 prevoted nil. Unlock and precommit nil.
  676. if len(hash) == 0 {
  677. if cs.LockedBlock == nil {
  678. log.Info("EnterPrecommit: +2/3 prevoted for nil.")
  679. } else {
  680. log.Info("EnterPrecommit: +2/3 prevoted for nil. Unlocking")
  681. cs.LockedRound = 0
  682. cs.LockedBlock = nil
  683. cs.LockedBlockParts = nil
  684. }
  685. cs.signAddVote(types.VoteTypePrecommit, nil, types.PartSetHeader{})
  686. return
  687. }
  688. // At this point, +2/3 prevoted for a particular block.
  689. // If +2/3 prevoted for already locked block, precommit it.
  690. if cs.LockedBlock.HashesTo(hash) {
  691. log.Info("EnterPrecommit: +2/3 prevoted locked block.")
  692. cs.signAddVote(types.VoteTypePrecommit, hash, partsHeader)
  693. return
  694. }
  695. // If +2/3 prevoted for proposal block, stage and precommit it
  696. if cs.ProposalBlock.HashesTo(hash) {
  697. log.Info("EnterPrecommit: +2/3 prevoted proposal block.")
  698. // Validate the block.
  699. if err := cs.stageBlock(cs.ProposalBlock, cs.ProposalBlockParts); err != nil {
  700. panic(Fmt("EnterPrecommit: +2/3 prevoted for an invalid block: %v", err))
  701. }
  702. cs.LockedRound = round
  703. cs.LockedBlock = cs.ProposalBlock
  704. cs.LockedBlockParts = cs.ProposalBlockParts
  705. cs.signAddVote(types.VoteTypePrecommit, hash, partsHeader)
  706. return
  707. }
  708. // Otherwise, we need to fetch the +2/3 prevoted block.
  709. // Unlock and precommit nil.
  710. // The +2/3 prevotes for this round is the POL for our unlock.
  711. if cs.Votes.POLRound() < round {
  712. panic(Fmt("This POLRound shold be %v but got %", round, cs.Votes.POLRound()))
  713. }
  714. cs.LockedRound = 0
  715. cs.LockedBlock = nil
  716. cs.LockedBlockParts = nil
  717. if !cs.ProposalBlockParts.HasHeader(partsHeader) {
  718. cs.ProposalBlock = nil
  719. cs.ProposalBlockParts = types.NewPartSetFromHeader(partsHeader)
  720. }
  721. cs.signAddVote(types.VoteTypePrecommit, nil, types.PartSetHeader{})
  722. return
  723. }
  724. // Enter: any +2/3 precommits for next round.
  725. func (cs *ConsensusState) EnterPrecommitWait(height int, round int) {
  726. cs.mtx.Lock()
  727. defer cs.mtx.Unlock()
  728. if cs.Height != height || round < cs.Round || (cs.Round == round && RoundStepPrecommitWait <= cs.Step) {
  729. log.Info(Fmt("EnterPrecommitWait(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  730. return
  731. }
  732. if !cs.Votes.Precommits(round).HasTwoThirdsAny() {
  733. panic(Fmt("EnterPrecommitWait(%v/%v), but Precommits does not have any +2/3 votes", height, round))
  734. }
  735. log.Info(Fmt("EnterPrecommitWait(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  736. // Done EnterPrecommitWait:
  737. cs.Round = round
  738. cs.Step = RoundStepPrecommitWait
  739. cs.newStepCh <- cs.getRoundState()
  740. // After `timeoutPrecommit0+timeoutPrecommitDelta*round`, EnterNewRound()
  741. go func() {
  742. time.Sleep(timeoutPrecommit0 + timeoutPrecommitDelta*time.Duration(round))
  743. // If we have +2/3 of precommits for a particular block (or nil),
  744. // we already entered commit (or the next round).
  745. // So just try to transition to the next round,
  746. // which is what we'd do otherwise.
  747. cs.EnterNewRound(height, round+1)
  748. }()
  749. }
  750. // Enter: +2/3 precommits for block
  751. func (cs *ConsensusState) EnterCommit(height int) {
  752. cs.mtx.Lock()
  753. defer cs.mtx.Unlock()
  754. if cs.Height != height || RoundStepCommit <= cs.Step {
  755. log.Info(Fmt("EnterCommit(%v): Invalid args. Current step: %v/%v/%v", height, cs.Height, cs.Round, cs.Step))
  756. return
  757. }
  758. log.Info(Fmt("EnterCommit(%v). Current: %v/%v/%v", height, cs.Height, cs.Round, cs.Step))
  759. defer func() {
  760. // Done Entercommit:
  761. // keep ca.Round the same, it points to the right Precommits set.
  762. cs.Step = RoundStepCommit
  763. cs.newStepCh <- cs.getRoundState()
  764. // Maybe finalize immediately.
  765. cs.tryFinalizeCommit(height)
  766. }()
  767. // SANITY CHECK
  768. hash, partsHeader, ok := cs.Votes.Precommits(cs.Round).TwoThirdsMajority()
  769. if !ok {
  770. panic("RunActionCommit() expects +2/3 precommits")
  771. }
  772. // END SANITY CHECK
  773. // The Locked* fields no longer matter.
  774. // Move them over to ProposalBlock if they match the commit hash,
  775. // otherwise they can now be cleared.
  776. if cs.LockedBlock.HashesTo(hash) {
  777. cs.ProposalBlock = cs.LockedBlock
  778. cs.ProposalBlockParts = cs.LockedBlockParts
  779. cs.LockedRound = 0
  780. cs.LockedBlock = nil
  781. cs.LockedBlockParts = nil
  782. } else {
  783. cs.LockedRound = 0
  784. cs.LockedBlock = nil
  785. cs.LockedBlockParts = nil
  786. }
  787. // If we don't have the block being committed, set up to get it.
  788. if !cs.ProposalBlock.HashesTo(hash) {
  789. if !cs.ProposalBlockParts.HasHeader(partsHeader) {
  790. // We're getting the wrong block.
  791. // Set up ProposalBlockParts and keep waiting.
  792. cs.ProposalBlock = nil
  793. cs.ProposalBlockParts = types.NewPartSetFromHeader(partsHeader)
  794. } else {
  795. // We just need to keep waiting.
  796. }
  797. }
  798. }
  799. // If we have the block AND +2/3 commits for it, finalize.
  800. func (cs *ConsensusState) tryFinalizeCommit(height int) {
  801. // SANITY CHECK
  802. if cs.Height != height {
  803. panic(Fmt("tryFinalizeCommit() cs.Height: %v vs height: %v", cs.Height, height))
  804. }
  805. // END SANITY CHECK
  806. hash, _, ok := cs.Votes.Precommits(cs.Round).TwoThirdsMajority()
  807. if !ok || len(hash) == 0 {
  808. return // There was no +2/3 majority, or +2/3 was for <nil>.
  809. }
  810. if !cs.ProposalBlock.HashesTo(hash) {
  811. return // We don't have the commit block.
  812. }
  813. go cs.FinalizeCommit(height)
  814. }
  815. // Increment height and goto RoundStepNewHeight
  816. func (cs *ConsensusState) FinalizeCommit(height int) {
  817. cs.mtx.Lock()
  818. defer cs.mtx.Unlock()
  819. if cs.Height != height || cs.Step != RoundStepCommit {
  820. log.Info(Fmt("FinalizeCommit(%v): Invalid args. Current step: %v/%v/%v", height, cs.Height, cs.Round, cs.Step))
  821. return
  822. }
  823. hash, header, ok := cs.Votes.Precommits(cs.Round).TwoThirdsMajority()
  824. // SANITY CHECK
  825. if !ok {
  826. panic(Fmt("Cannot FinalizeCommit, commit does not have two thirds majority"))
  827. }
  828. if !cs.ProposalBlockParts.HasHeader(header) {
  829. panic(Fmt("Expected ProposalBlockParts header to be commit header"))
  830. }
  831. if !cs.ProposalBlock.HashesTo(hash) {
  832. panic(Fmt("Cannot FinalizeCommit, ProposalBlock does not hash to commit hash"))
  833. }
  834. if err := cs.stageBlock(cs.ProposalBlock, cs.ProposalBlockParts); err != nil {
  835. panic(Fmt("+2/3 committed an invalid block: %v", err))
  836. }
  837. // END SANITY CHECK
  838. log.Info(Fmt("Finalizing commit of block: %v", cs.ProposalBlock))
  839. // We have the block, so stage/save/commit-vote.
  840. cs.saveBlock(cs.ProposalBlock, cs.ProposalBlockParts, cs.Votes.Precommits(cs.Round))
  841. // Increment height.
  842. cs.updateToState(cs.stagedState, true)
  843. // cs.StartTime is already set.
  844. // Schedule Round0 to start soon.
  845. go cs.scheduleRound0(height + 1)
  846. // If we're unbonded, broadcast RebondTx.
  847. cs.maybeRebond()
  848. // By here,
  849. // * cs.Height has been increment to height+1
  850. // * cs.Step is now RoundStepNewHeight
  851. // * cs.StartTime is set to when we will start round0.
  852. return
  853. }
  854. //-----------------------------------------------------------------------------
  855. func (cs *ConsensusState) SetProposal(proposal *Proposal) error {
  856. cs.mtx.Lock()
  857. defer cs.mtx.Unlock()
  858. // Already have one
  859. if cs.Proposal != nil {
  860. return nil
  861. }
  862. // Does not apply
  863. if proposal.Height != cs.Height || proposal.Round != cs.Round {
  864. return nil
  865. }
  866. // We don't care about the proposal if we're already in RoundStepCommit.
  867. if RoundStepCommit <= cs.Step {
  868. return nil
  869. }
  870. // Verify POLRound, which must be -1 or between 0 and proposal.Round exclusive.
  871. if proposal.POLRound != -1 &&
  872. (proposal.POLRound < 0 || proposal.Round <= proposal.POLRound) {
  873. return ErrInvalidProposalPOLRound
  874. }
  875. // Verify signature
  876. if !cs.Validators.Proposer().PubKey.VerifyBytes(acm.SignBytes(cs.state.ChainID, proposal), proposal.Signature) {
  877. return ErrInvalidProposalSignature
  878. }
  879. cs.Proposal = proposal
  880. cs.ProposalBlockParts = types.NewPartSetFromHeader(proposal.BlockPartsHeader)
  881. return nil
  882. }
  883. // NOTE: block is not necessarily valid.
  884. func (cs *ConsensusState) AddProposalBlockPart(height int, part *types.Part) (added bool, err error) {
  885. cs.mtx.Lock()
  886. defer cs.mtx.Unlock()
  887. // Blocks might be reused, so round mismatch is OK
  888. if cs.Height != height {
  889. return false, nil
  890. }
  891. // We're not expecting a block part.
  892. if cs.ProposalBlockParts == nil {
  893. return false, nil // TODO: bad peer? Return error?
  894. }
  895. added, err = cs.ProposalBlockParts.AddPart(part)
  896. if err != nil {
  897. return added, err
  898. }
  899. if added && cs.ProposalBlockParts.IsComplete() {
  900. // Added and completed!
  901. var n int64
  902. var err error
  903. cs.ProposalBlock = binary.ReadBinary(&types.Block{}, cs.ProposalBlockParts.GetReader(), &n, &err).(*types.Block)
  904. log.Info("Received complete proposal", "hash", cs.ProposalBlock.Hash())
  905. if cs.Step == RoundStepPropose && cs.isProposalComplete() {
  906. // Move onto the next step
  907. go cs.EnterPrevote(height, cs.Round)
  908. } else if cs.Step == RoundStepCommit {
  909. // If we're waiting on the proposal block...
  910. cs.tryFinalizeCommit(height)
  911. }
  912. return true, err
  913. }
  914. return added, nil
  915. }
  916. func (cs *ConsensusState) AddVote(address []byte, vote *types.Vote, peerKey string) (added bool, index int, err error) {
  917. cs.mtx.Lock()
  918. defer cs.mtx.Unlock()
  919. return cs.addVote(address, vote, peerKey)
  920. }
  921. //-----------------------------------------------------------------------------
  922. func (cs *ConsensusState) addVote(address []byte, vote *types.Vote, peerKey string) (added bool, index int, err error) {
  923. log.Info("addVote", "voteHeight", vote.Height, "voteType", vote.Type, "csHeight", cs.Height)
  924. // A precommit for the previous height?
  925. if vote.Height+1 == cs.Height && vote.Type == types.VoteTypePrecommit {
  926. added, index, err = cs.LastCommit.AddByAddress(address, vote)
  927. if added {
  928. log.Info(Fmt("Added to lastPrecommits: %v", cs.LastCommit.StringShort()))
  929. }
  930. return
  931. }
  932. // A prevote/precommit for this height?
  933. if vote.Height == cs.Height {
  934. height := cs.Height
  935. added, index, err = cs.Votes.AddByAddress(address, vote, peerKey)
  936. if added {
  937. switch vote.Type {
  938. case types.VoteTypePrevote:
  939. prevotes := cs.Votes.Prevotes(vote.Round)
  940. log.Info(Fmt("Added to prevotes: %v", prevotes.StringShort()))
  941. // First, unlock if prevotes is a valid POL.
  942. // >> lockRound < POLRound <= unlockOrChangeLockRound (see spec)
  943. // NOTE: If (lockRound < POLRound) but !(POLRound <= unlockOrChangeLockRound),
  944. // we'll still EnterNewRound(H,vote.R) and EnterPrecommit(H,vote.R) to process it
  945. // there.
  946. if (cs.LockedBlock != nil) && (cs.LockedRound < vote.Round) && (vote.Round <= cs.Round) {
  947. hash, _, ok := prevotes.TwoThirdsMajority()
  948. if ok && !cs.LockedBlock.HashesTo(hash) {
  949. log.Notice("Unlocking because of POL.", "lockedRound", cs.LockedRound, "POLRound", vote.Round)
  950. cs.LockedRound = 0
  951. cs.LockedBlock = nil
  952. cs.LockedBlockParts = nil
  953. }
  954. }
  955. if cs.Round <= vote.Round && prevotes.HasTwoThirdsAny() {
  956. // Round-skip over to PrevoteWait or goto Precommit.
  957. go func() {
  958. if cs.Round < vote.Round {
  959. cs.EnterNewRound(height, vote.Round)
  960. }
  961. if prevotes.HasTwoThirdsMajority() {
  962. cs.EnterPrecommit(height, vote.Round)
  963. } else {
  964. cs.EnterPrevote(height, vote.Round)
  965. cs.EnterPrevoteWait(height, vote.Round)
  966. }
  967. }()
  968. } else if cs.Proposal != nil && 0 <= cs.Proposal.POLRound && cs.Proposal.POLRound == vote.Round {
  969. // If the proposal is now complete, enter prevote of cs.Round.
  970. if cs.isProposalComplete() {
  971. go cs.EnterPrevote(height, cs.Round)
  972. }
  973. }
  974. case types.VoteTypePrecommit:
  975. precommits := cs.Votes.Precommits(vote.Round)
  976. log.Info(Fmt("Added to precommit: %v", precommits.StringShort()))
  977. if cs.Round <= vote.Round && precommits.HasTwoThirdsAny() {
  978. go func() {
  979. hash, _, ok := precommits.TwoThirdsMajority()
  980. if ok && len(hash) == 0 {
  981. cs.EnterNewRound(height, vote.Round+1)
  982. return
  983. } else if cs.Round < vote.Round {
  984. cs.EnterNewRound(height, vote.Round)
  985. }
  986. if ok {
  987. cs.EnterCommit(height)
  988. } else {
  989. cs.EnterPrecommit(height, vote.Round)
  990. cs.EnterPrecommitWait(height, vote.Round)
  991. }
  992. }()
  993. }
  994. default:
  995. panic(Fmt("Unexpected vote type %X", vote.Type)) // Should not happen.
  996. }
  997. }
  998. // Either duplicate, or error upon cs.Votes.AddByAddress()
  999. return
  1000. }
  1001. // Height mismatch, bad peer?
  1002. log.Info("Vote ignored and not added", "voteHeight", vote.Height, "csHeight", cs.Height)
  1003. return
  1004. }
  1005. func (cs *ConsensusState) stageBlock(block *types.Block, blockParts *types.PartSet) error {
  1006. if block == nil {
  1007. panic("Cannot stage nil block")
  1008. }
  1009. // Already staged?
  1010. blockHash := block.Hash()
  1011. if cs.stagedBlock != nil && len(blockHash) != 0 && bytes.Equal(cs.stagedBlock.Hash(), blockHash) {
  1012. return nil
  1013. }
  1014. // Create a copy of the state for staging
  1015. stateCopy := cs.state.Copy()
  1016. // reset the event cache and pass it into the state
  1017. cs.evc = events.NewEventCache(cs.evsw)
  1018. stateCopy.SetFireable(cs.evc)
  1019. // Commit block onto the copied state.
  1020. // NOTE: Basic validation is done in state.AppendBlock().
  1021. err := sm.ExecBlock(stateCopy, block, blockParts.Header())
  1022. if err != nil {
  1023. return err
  1024. } else {
  1025. cs.stagedBlock = block
  1026. cs.stagedState = stateCopy
  1027. return nil
  1028. }
  1029. }
  1030. func (cs *ConsensusState) signAddVote(type_ byte, hash []byte, header types.PartSetHeader) *types.Vote {
  1031. if cs.privValidator == nil || !cs.Validators.HasAddress(cs.privValidator.Address) {
  1032. return nil
  1033. }
  1034. vote := &types.Vote{
  1035. Height: cs.Height,
  1036. Round: cs.Round,
  1037. Type: type_,
  1038. BlockHash: hash,
  1039. BlockParts: header,
  1040. }
  1041. err := cs.privValidator.SignVote(cs.state.ChainID, vote)
  1042. if err == nil {
  1043. _, _, err := cs.addVote(cs.privValidator.Address, vote, "")
  1044. log.Notice("Signed and added vote", "height", cs.Height, "round", cs.Round, "vote", vote, "error", err)
  1045. return vote
  1046. } else {
  1047. log.Warn("Error signing vote", "height", cs.Height, "round", cs.Round, "vote", vote, "error", err)
  1048. return nil
  1049. }
  1050. }
  1051. // Save Block, save the +2/3 Commits we've seen
  1052. func (cs *ConsensusState) saveBlock(block *types.Block, blockParts *types.PartSet, commits *VoteSet) {
  1053. // The proposal must be valid.
  1054. if err := cs.stageBlock(block, blockParts); err != nil {
  1055. panic(Fmt("saveBlock() an invalid block: %v", err))
  1056. }
  1057. // Save to blockStore.
  1058. if cs.blockStore.Height() < block.Height {
  1059. seenValidation := commits.MakeValidation()
  1060. cs.blockStore.SaveBlock(block, blockParts, seenValidation)
  1061. }
  1062. // Save the state.
  1063. cs.stagedState.Save()
  1064. // Update mempool.
  1065. cs.mempoolReactor.Mempool.ResetForBlockAndState(block, cs.stagedState)
  1066. // Fire off event
  1067. go func(block *types.Block) {
  1068. cs.evsw.FireEvent(types.EventStringNewBlock(), block)
  1069. cs.evc.Flush()
  1070. }(block)
  1071. }
  1072. // implements events.Eventable
  1073. func (cs *ConsensusState) SetFireable(evsw events.Fireable) {
  1074. cs.evsw = evsw
  1075. }
  1076. func (cs *ConsensusState) String() string {
  1077. return Fmt("ConsensusState(H:%v R:%v S:%v", cs.Height, cs.Round, cs.Step)
  1078. }