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.

1528 lines
52 KiB

10 years ago
7 years ago
8 years ago
7 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
8 years ago
8 years ago
10 years ago
10 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
10 years ago
9 years ago
9 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
10 years ago
10 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
10 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
9 years ago
9 years ago
8 years ago
9 years ago
8 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
8 years ago
10 years ago
8 years ago
10 years ago
8 years ago
9 years ago
9 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
7 years ago
7 years ago
10 years ago
8 years ago
8 years ago
10 years ago
8 years ago
10 years ago
10 years ago
10 years ago
8 years ago
9 years ago
9 years ago
9 years ago
8 years ago
7 years ago
10 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
8 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
7 years ago
8 years ago
8 years ago
8 years ago
10 years ago
8 years ago
10 years ago
10 years ago
8 years ago
8 years ago
10 years ago
10 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
8 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
10 years ago
10 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
10 years ago
10 years ago
8 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
10 years ago
10 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
9 years ago
8 years ago
8 years ago
9 years ago
8 years ago
10 years ago
8 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
8 years ago
9 years ago
9 years ago
8 years ago
10 years ago
10 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
8 years ago
9 years ago
7 years ago
10 years ago
10 years ago
  1. package consensus
  2. import (
  3. "bytes"
  4. "errors"
  5. "fmt"
  6. "reflect"
  7. "runtime/debug"
  8. "sync"
  9. "time"
  10. fail "github.com/ebuchman/fail-test"
  11. wire "github.com/tendermint/go-wire"
  12. cmn "github.com/tendermint/tmlibs/common"
  13. "github.com/tendermint/tmlibs/log"
  14. cfg "github.com/tendermint/tendermint/config"
  15. cstypes "github.com/tendermint/tendermint/consensus/types"
  16. "github.com/tendermint/tendermint/p2p"
  17. sm "github.com/tendermint/tendermint/state"
  18. "github.com/tendermint/tendermint/types"
  19. )
  20. //-----------------------------------------------------------------------------
  21. // Config
  22. const (
  23. proposalHeartbeatIntervalSeconds = 2
  24. )
  25. //-----------------------------------------------------------------------------
  26. // Errors
  27. var (
  28. ErrInvalidProposalSignature = errors.New("Error invalid proposal signature")
  29. ErrInvalidProposalPOLRound = errors.New("Error invalid proposal POL round")
  30. ErrAddingVote = errors.New("Error adding vote")
  31. ErrVoteHeightMismatch = errors.New("Error vote height mismatch")
  32. )
  33. //-----------------------------------------------------------------------------
  34. var (
  35. msgQueueSize = 1000
  36. )
  37. // msgs from the reactor which may update the state
  38. type msgInfo struct {
  39. Msg ConsensusMessage `json:"msg"`
  40. PeerID p2p.ID `json:"peer_key"`
  41. }
  42. // internally generated messages which may update the state
  43. type timeoutInfo struct {
  44. Duration time.Duration `json:"duration"`
  45. Height int64 `json:"height"`
  46. Round int `json:"round"`
  47. Step cstypes.RoundStepType `json:"step"`
  48. }
  49. func (ti *timeoutInfo) String() string {
  50. return fmt.Sprintf("%v ; %d/%d %v", ti.Duration, ti.Height, ti.Round, ti.Step)
  51. }
  52. // ConsensusState handles execution of the consensus algorithm.
  53. // It processes votes and proposals, and upon reaching agreement,
  54. // commits blocks to the chain and executes them against the application.
  55. // The internal state machine receives input from peers, the internal validator, and from a timer.
  56. type ConsensusState struct {
  57. cmn.BaseService
  58. // config details
  59. config *cfg.ConsensusConfig
  60. privValidator types.PrivValidator // for signing votes
  61. // services for creating and executing blocks
  62. // TODO: encapsulate all of this in one "BlockManager"
  63. blockExec *sm.BlockExecutor
  64. blockStore types.BlockStore
  65. mempool types.Mempool
  66. evpool types.EvidencePool
  67. // internal state
  68. mtx sync.Mutex
  69. cstypes.RoundState
  70. state sm.State // State until height-1.
  71. // state changes may be triggered by: msgs from peers,
  72. // msgs from ourself, or by timeouts
  73. peerMsgQueue chan msgInfo
  74. internalMsgQueue chan msgInfo
  75. timeoutTicker TimeoutTicker
  76. // we use eventBus to trigger msg broadcasts in the reactor,
  77. // and to notify external subscribers, eg. through a websocket
  78. eventBus *types.EventBus
  79. // a Write-Ahead Log ensures we can recover from any kind of crash
  80. // and helps us avoid signing conflicting votes
  81. wal WAL
  82. replayMode bool // so we don't log signing errors during replay
  83. doWALCatchup bool // determines if we even try to do the catchup
  84. // for tests where we want to limit the number of transitions the state makes
  85. nSteps int
  86. // some functions can be overwritten for testing
  87. decideProposal func(height int64, round int)
  88. doPrevote func(height int64, round int)
  89. setProposal func(proposal *types.Proposal) error
  90. // closed when we finish shutting down
  91. done chan struct{}
  92. }
  93. // NewConsensusState returns a new ConsensusState.
  94. func NewConsensusState(config *cfg.ConsensusConfig, state sm.State, blockExec *sm.BlockExecutor, blockStore types.BlockStore, mempool types.Mempool, evpool types.EvidencePool) *ConsensusState {
  95. cs := &ConsensusState{
  96. config: config,
  97. blockExec: blockExec,
  98. blockStore: blockStore,
  99. mempool: mempool,
  100. peerMsgQueue: make(chan msgInfo, msgQueueSize),
  101. internalMsgQueue: make(chan msgInfo, msgQueueSize),
  102. timeoutTicker: NewTimeoutTicker(),
  103. done: make(chan struct{}),
  104. doWALCatchup: true,
  105. wal: nilWAL{},
  106. evpool: evpool,
  107. }
  108. // set function defaults (may be overwritten before calling Start)
  109. cs.decideProposal = cs.defaultDecideProposal
  110. cs.doPrevote = cs.defaultDoPrevote
  111. cs.setProposal = cs.defaultSetProposal
  112. cs.updateToState(state)
  113. // Don't call scheduleRound0 yet.
  114. // We do that upon Start().
  115. cs.reconstructLastCommit(state)
  116. cs.BaseService = *cmn.NewBaseService(nil, "ConsensusState", cs)
  117. return cs
  118. }
  119. //----------------------------------------
  120. // Public interface
  121. // SetLogger implements Service.
  122. func (cs *ConsensusState) SetLogger(l log.Logger) {
  123. cs.BaseService.Logger = l
  124. cs.timeoutTicker.SetLogger(l)
  125. }
  126. // SetEventBus sets event bus.
  127. func (cs *ConsensusState) SetEventBus(b *types.EventBus) {
  128. cs.eventBus = b
  129. cs.blockExec.SetEventBus(b)
  130. }
  131. // String returns a string.
  132. func (cs *ConsensusState) String() string {
  133. // better not to access shared variables
  134. return cmn.Fmt("ConsensusState") //(H:%v R:%v S:%v", cs.Height, cs.Round, cs.Step)
  135. }
  136. // GetState returns a copy of the chain state.
  137. func (cs *ConsensusState) GetState() sm.State {
  138. cs.mtx.Lock()
  139. defer cs.mtx.Unlock()
  140. return cs.state.Copy()
  141. }
  142. // GetRoundState returns a copy of the internal consensus state.
  143. func (cs *ConsensusState) GetRoundState() *cstypes.RoundState {
  144. cs.mtx.Lock()
  145. defer cs.mtx.Unlock()
  146. return cs.getRoundState()
  147. }
  148. func (cs *ConsensusState) getRoundState() *cstypes.RoundState {
  149. rs := cs.RoundState // copy
  150. return &rs
  151. }
  152. // GetValidators returns a copy of the current validators.
  153. func (cs *ConsensusState) GetValidators() (int64, []*types.Validator) {
  154. cs.mtx.Lock()
  155. defer cs.mtx.Unlock()
  156. return cs.state.LastBlockHeight, cs.state.Validators.Copy().Validators
  157. }
  158. // SetPrivValidator sets the private validator account for signing votes.
  159. func (cs *ConsensusState) SetPrivValidator(priv types.PrivValidator) {
  160. cs.mtx.Lock()
  161. defer cs.mtx.Unlock()
  162. cs.privValidator = priv
  163. }
  164. // SetTimeoutTicker sets the local timer. It may be useful to overwrite for testing.
  165. func (cs *ConsensusState) SetTimeoutTicker(timeoutTicker TimeoutTicker) {
  166. cs.mtx.Lock()
  167. defer cs.mtx.Unlock()
  168. cs.timeoutTicker = timeoutTicker
  169. }
  170. // LoadCommit loads the commit for a given height.
  171. func (cs *ConsensusState) LoadCommit(height int64) *types.Commit {
  172. cs.mtx.Lock()
  173. defer cs.mtx.Unlock()
  174. if height == cs.blockStore.Height() {
  175. return cs.blockStore.LoadSeenCommit(height)
  176. }
  177. return cs.blockStore.LoadBlockCommit(height)
  178. }
  179. // OnStart implements cmn.Service.
  180. // It loads the latest state via the WAL, and starts the timeout and receive routines.
  181. func (cs *ConsensusState) OnStart() error {
  182. // we may set the WAL in testing before calling Start,
  183. // so only OpenWAL if its still the nilWAL
  184. if _, ok := cs.wal.(nilWAL); ok {
  185. walFile := cs.config.WalFile()
  186. wal, err := cs.OpenWAL(walFile)
  187. if err != nil {
  188. cs.Logger.Error("Error loading ConsensusState wal", "err", err.Error())
  189. return err
  190. }
  191. cs.wal = wal
  192. }
  193. // we need the timeoutRoutine for replay so
  194. // we don't block on the tick chan.
  195. // NOTE: we will get a build up of garbage go routines
  196. // firing on the tockChan until the receiveRoutine is started
  197. // to deal with them (by that point, at most one will be valid)
  198. err := cs.timeoutTicker.Start()
  199. if err != nil {
  200. return err
  201. }
  202. // we may have lost some votes if the process crashed
  203. // reload from consensus log to catchup
  204. if cs.doWALCatchup {
  205. if err := cs.catchupReplay(cs.Height); err != nil {
  206. cs.Logger.Error("Error on catchup replay. Proceeding to start ConsensusState anyway", "err", err.Error())
  207. // NOTE: if we ever do return an error here,
  208. // make sure to stop the timeoutTicker
  209. }
  210. }
  211. // now start the receiveRoutine
  212. go cs.receiveRoutine(0)
  213. // schedule the first round!
  214. // use GetRoundState so we don't race the receiveRoutine for access
  215. cs.scheduleRound0(cs.GetRoundState())
  216. return nil
  217. }
  218. // timeoutRoutine: receive requests for timeouts on tickChan and fire timeouts on tockChan
  219. // receiveRoutine: serializes processing of proposoals, block parts, votes; coordinates state transitions
  220. func (cs *ConsensusState) startRoutines(maxSteps int) {
  221. err := cs.timeoutTicker.Start()
  222. if err != nil {
  223. cs.Logger.Error("Error starting timeout ticker", "err", err)
  224. return
  225. }
  226. go cs.receiveRoutine(maxSteps)
  227. }
  228. // OnStop implements cmn.Service. It stops all routines and waits for the WAL to finish.
  229. func (cs *ConsensusState) OnStop() {
  230. cs.BaseService.OnStop()
  231. cs.timeoutTicker.Stop()
  232. // Make BaseService.Wait() wait until cs.wal.Wait()
  233. if cs.IsRunning() {
  234. cs.wal.Wait()
  235. }
  236. }
  237. // Wait waits for the the main routine to return.
  238. // NOTE: be sure to Stop() the event switch and drain
  239. // any event channels or this may deadlock
  240. func (cs *ConsensusState) Wait() {
  241. <-cs.done
  242. }
  243. // OpenWAL opens a file to log all consensus messages and timeouts for deterministic accountability
  244. func (cs *ConsensusState) OpenWAL(walFile string) (WAL, error) {
  245. wal, err := NewWAL(walFile, cs.config.WalLight)
  246. if err != nil {
  247. cs.Logger.Error("Failed to open WAL for consensus state", "wal", walFile, "err", err)
  248. return nil, err
  249. }
  250. wal.SetLogger(cs.Logger.With("wal", walFile))
  251. if err := wal.Start(); err != nil {
  252. return nil, err
  253. }
  254. return wal, nil
  255. }
  256. //------------------------------------------------------------
  257. // Public interface for passing messages into the consensus state, possibly causing a state transition.
  258. // If peerID == "", the msg is considered internal.
  259. // Messages are added to the appropriate queue (peer or internal).
  260. // If the queue is full, the function may block.
  261. // TODO: should these return anything or let callers just use events?
  262. // AddVote inputs a vote.
  263. func (cs *ConsensusState) AddVote(vote *types.Vote, peerID p2p.ID) (added bool, err error) {
  264. if peerID == "" {
  265. cs.internalMsgQueue <- msgInfo{&VoteMessage{vote}, ""}
  266. } else {
  267. cs.peerMsgQueue <- msgInfo{&VoteMessage{vote}, peerID}
  268. }
  269. // TODO: wait for event?!
  270. return false, nil
  271. }
  272. // SetProposal inputs a proposal.
  273. func (cs *ConsensusState) SetProposal(proposal *types.Proposal, peerID p2p.ID) error {
  274. if peerID == "" {
  275. cs.internalMsgQueue <- msgInfo{&ProposalMessage{proposal}, ""}
  276. } else {
  277. cs.peerMsgQueue <- msgInfo{&ProposalMessage{proposal}, peerID}
  278. }
  279. // TODO: wait for event?!
  280. return nil
  281. }
  282. // AddProposalBlockPart inputs a part of the proposal block.
  283. func (cs *ConsensusState) AddProposalBlockPart(height int64, round int, part *types.Part, peerID p2p.ID) error {
  284. if peerID == "" {
  285. cs.internalMsgQueue <- msgInfo{&BlockPartMessage{height, round, part}, ""}
  286. } else {
  287. cs.peerMsgQueue <- msgInfo{&BlockPartMessage{height, round, part}, peerID}
  288. }
  289. // TODO: wait for event?!
  290. return nil
  291. }
  292. // SetProposalAndBlock inputs the proposal and all block parts.
  293. func (cs *ConsensusState) SetProposalAndBlock(proposal *types.Proposal, block *types.Block, parts *types.PartSet, peerID p2p.ID) error {
  294. if err := cs.SetProposal(proposal, peerID); err != nil {
  295. return err
  296. }
  297. for i := 0; i < parts.Total(); i++ {
  298. part := parts.GetPart(i)
  299. if err := cs.AddProposalBlockPart(proposal.Height, proposal.Round, part, peerID); err != nil {
  300. return err
  301. }
  302. }
  303. return nil
  304. }
  305. //------------------------------------------------------------
  306. // internal functions for managing the state
  307. func (cs *ConsensusState) updateHeight(height int64) {
  308. cs.Height = height
  309. }
  310. func (cs *ConsensusState) updateRoundStep(round int, step cstypes.RoundStepType) {
  311. cs.Round = round
  312. cs.Step = step
  313. }
  314. // enterNewRound(height, 0) at cs.StartTime.
  315. func (cs *ConsensusState) scheduleRound0(rs *cstypes.RoundState) {
  316. //cs.Logger.Info("scheduleRound0", "now", time.Now(), "startTime", cs.StartTime)
  317. sleepDuration := rs.StartTime.Sub(time.Now()) // nolint: gotype, gosimple
  318. cs.scheduleTimeout(sleepDuration, rs.Height, 0, cstypes.RoundStepNewHeight)
  319. }
  320. // Attempt to schedule a timeout (by sending timeoutInfo on the tickChan)
  321. func (cs *ConsensusState) scheduleTimeout(duration time.Duration, height int64, round int, step cstypes.RoundStepType) {
  322. cs.timeoutTicker.ScheduleTimeout(timeoutInfo{duration, height, round, step})
  323. }
  324. // send a msg into the receiveRoutine regarding our own proposal, block part, or vote
  325. func (cs *ConsensusState) sendInternalMessage(mi msgInfo) {
  326. select {
  327. case cs.internalMsgQueue <- mi:
  328. default:
  329. // NOTE: using the go-routine means our votes can
  330. // be processed out of order.
  331. // TODO: use CList here for strict determinism and
  332. // attempt push to internalMsgQueue in receiveRoutine
  333. cs.Logger.Info("Internal msg queue is full. Using a go-routine")
  334. go func() { cs.internalMsgQueue <- mi }()
  335. }
  336. }
  337. // Reconstruct LastCommit from SeenCommit, which we saved along with the block,
  338. // (which happens even before saving the state)
  339. func (cs *ConsensusState) reconstructLastCommit(state sm.State) {
  340. if state.LastBlockHeight == 0 {
  341. return
  342. }
  343. seenCommit := cs.blockStore.LoadSeenCommit(state.LastBlockHeight)
  344. lastPrecommits := types.NewVoteSet(state.ChainID, state.LastBlockHeight, seenCommit.Round(), types.VoteTypePrecommit, state.LastValidators)
  345. for _, precommit := range seenCommit.Precommits {
  346. if precommit == nil {
  347. continue
  348. }
  349. added, err := lastPrecommits.AddVote(precommit)
  350. if !added || err != nil {
  351. cmn.PanicCrisis(cmn.Fmt("Failed to reconstruct LastCommit: %v", err))
  352. }
  353. }
  354. if !lastPrecommits.HasTwoThirdsMajority() {
  355. cmn.PanicSanity("Failed to reconstruct LastCommit: Does not have +2/3 maj")
  356. }
  357. cs.LastCommit = lastPrecommits
  358. }
  359. // Updates ConsensusState and increments height to match that of state.
  360. // The round becomes 0 and cs.Step becomes cstypes.RoundStepNewHeight.
  361. func (cs *ConsensusState) updateToState(state sm.State) {
  362. if cs.CommitRound > -1 && 0 < cs.Height && cs.Height != state.LastBlockHeight {
  363. cmn.PanicSanity(cmn.Fmt("updateToState() expected state height of %v but found %v",
  364. cs.Height, state.LastBlockHeight))
  365. }
  366. if !cs.state.IsEmpty() && cs.state.LastBlockHeight+1 != cs.Height {
  367. // This might happen when someone else is mutating cs.state.
  368. // Someone forgot to pass in state.Copy() somewhere?!
  369. cmn.PanicSanity(cmn.Fmt("Inconsistent cs.state.LastBlockHeight+1 %v vs cs.Height %v",
  370. cs.state.LastBlockHeight+1, cs.Height))
  371. }
  372. // If state isn't further out than cs.state, just ignore.
  373. // This happens when SwitchToConsensus() is called in the reactor.
  374. // We don't want to reset e.g. the Votes.
  375. if !cs.state.IsEmpty() && (state.LastBlockHeight <= cs.state.LastBlockHeight) {
  376. cs.Logger.Info("Ignoring updateToState()", "newHeight", state.LastBlockHeight+1, "oldHeight", cs.state.LastBlockHeight+1)
  377. return
  378. }
  379. // Reset fields based on state.
  380. validators := state.Validators
  381. lastPrecommits := (*types.VoteSet)(nil)
  382. if cs.CommitRound > -1 && cs.Votes != nil {
  383. if !cs.Votes.Precommits(cs.CommitRound).HasTwoThirdsMajority() {
  384. cmn.PanicSanity("updateToState(state) called but last Precommit round didn't have +2/3")
  385. }
  386. lastPrecommits = cs.Votes.Precommits(cs.CommitRound)
  387. }
  388. // Next desired block height
  389. height := state.LastBlockHeight + 1
  390. // RoundState fields
  391. cs.updateHeight(height)
  392. cs.updateRoundStep(0, cstypes.RoundStepNewHeight)
  393. if cs.CommitTime.IsZero() {
  394. // "Now" makes it easier to sync up dev nodes.
  395. // We add timeoutCommit to allow transactions
  396. // to be gathered for the first block.
  397. // And alternative solution that relies on clocks:
  398. // cs.StartTime = state.LastBlockTime.Add(timeoutCommit)
  399. cs.StartTime = cs.config.Commit(time.Now())
  400. } else {
  401. cs.StartTime = cs.config.Commit(cs.CommitTime)
  402. }
  403. cs.Validators = validators
  404. cs.Proposal = nil
  405. cs.ProposalBlock = nil
  406. cs.ProposalBlockParts = nil
  407. cs.LockedRound = 0
  408. cs.LockedBlock = nil
  409. cs.LockedBlockParts = nil
  410. cs.ValidRound = 0
  411. cs.ValidBlock = nil
  412. cs.ValidBlockParts = nil
  413. cs.Votes = cstypes.NewHeightVoteSet(state.ChainID, height, validators)
  414. cs.CommitRound = -1
  415. cs.LastCommit = lastPrecommits
  416. cs.LastValidators = state.LastValidators
  417. cs.state = state
  418. // Finally, broadcast RoundState
  419. cs.newStep()
  420. }
  421. func (cs *ConsensusState) newStep() {
  422. rs := cs.RoundStateEvent()
  423. cs.wal.Save(rs)
  424. cs.nSteps += 1
  425. // newStep is called by updateToStep in NewConsensusState before the eventBus is set!
  426. if cs.eventBus != nil {
  427. cs.eventBus.PublishEventNewRoundStep(rs)
  428. }
  429. }
  430. //-----------------------------------------
  431. // the main go routines
  432. // receiveRoutine handles messages which may cause state transitions.
  433. // it's argument (n) is the number of messages to process before exiting - use 0 to run forever
  434. // It keeps the RoundState and is the only thing that updates it.
  435. // Updates (state transitions) happen on timeouts, complete proposals, and 2/3 majorities.
  436. // ConsensusState must be locked before any internal state is updated.
  437. func (cs *ConsensusState) receiveRoutine(maxSteps int) {
  438. defer func() {
  439. if r := recover(); r != nil {
  440. cs.Logger.Error("CONSENSUS FAILURE!!!", "err", r, "stack", string(debug.Stack()))
  441. }
  442. }()
  443. for {
  444. if maxSteps > 0 {
  445. if cs.nSteps >= maxSteps {
  446. cs.Logger.Info("reached max steps. exiting receive routine")
  447. cs.nSteps = 0
  448. return
  449. }
  450. }
  451. rs := cs.RoundState
  452. var mi msgInfo
  453. select {
  454. case height := <-cs.mempool.TxsAvailable():
  455. cs.handleTxsAvailable(height)
  456. case mi = <-cs.peerMsgQueue:
  457. cs.wal.Save(mi)
  458. // handles proposals, block parts, votes
  459. // may generate internal events (votes, complete proposals, 2/3 majorities)
  460. cs.handleMsg(mi)
  461. case mi = <-cs.internalMsgQueue:
  462. cs.wal.Save(mi)
  463. // handles proposals, block parts, votes
  464. cs.handleMsg(mi)
  465. case ti := <-cs.timeoutTicker.Chan(): // tockChan:
  466. cs.wal.Save(ti)
  467. // if the timeout is relevant to the rs
  468. // go to the next step
  469. cs.handleTimeout(ti, rs)
  470. case <-cs.Quit():
  471. // NOTE: the internalMsgQueue may have signed messages from our
  472. // priv_val that haven't hit the WAL, but its ok because
  473. // priv_val tracks LastSig
  474. // close wal now that we're done writing to it
  475. cs.wal.Stop()
  476. close(cs.done)
  477. return
  478. }
  479. }
  480. }
  481. // state transitions on complete-proposal, 2/3-any, 2/3-one
  482. func (cs *ConsensusState) handleMsg(mi msgInfo) {
  483. cs.mtx.Lock()
  484. defer cs.mtx.Unlock()
  485. var err error
  486. msg, peerID := mi.Msg, mi.PeerID
  487. switch msg := msg.(type) {
  488. case *ProposalMessage:
  489. // will not cause transition.
  490. // once proposal is set, we can receive block parts
  491. err = cs.setProposal(msg.Proposal)
  492. case *BlockPartMessage:
  493. // if the proposal is complete, we'll enterPrevote or tryFinalizeCommit
  494. _, err = cs.addProposalBlockPart(msg.Height, msg.Part, peerID != "")
  495. if err != nil && msg.Round != cs.Round {
  496. err = nil
  497. }
  498. case *VoteMessage:
  499. // attempt to add the vote and dupeout the validator if its a duplicate signature
  500. // if the vote gives us a 2/3-any or 2/3-one, we transition
  501. err := cs.tryAddVote(msg.Vote, peerID)
  502. if err == ErrAddingVote {
  503. // TODO: punish peer
  504. // We probably don't want to stop the peer here. The vote does not
  505. // necessarily comes from a malicious peer but can be just broadcasted by
  506. // a typical peer.
  507. // https://github.com/tendermint/tendermint/issues/1281
  508. }
  509. // NOTE: the vote is broadcast to peers by the reactor listening
  510. // for vote events
  511. // TODO: If rs.Height == vote.Height && rs.Round < vote.Round,
  512. // the peer is sending us CatchupCommit precommits.
  513. // We could make note of this and help filter in broadcastHasVoteMessage().
  514. default:
  515. cs.Logger.Error("Unknown msg type", reflect.TypeOf(msg))
  516. }
  517. if err != nil {
  518. cs.Logger.Error("Error with msg", "type", reflect.TypeOf(msg), "peer", peerID, "err", err, "msg", msg)
  519. }
  520. }
  521. func (cs *ConsensusState) handleTimeout(ti timeoutInfo, rs cstypes.RoundState) {
  522. cs.Logger.Debug("Received tock", "timeout", ti.Duration, "height", ti.Height, "round", ti.Round, "step", ti.Step)
  523. // timeouts must be for current height, round, step
  524. if ti.Height != rs.Height || ti.Round < rs.Round || (ti.Round == rs.Round && ti.Step < rs.Step) {
  525. cs.Logger.Debug("Ignoring tock because we're ahead", "height", rs.Height, "round", rs.Round, "step", rs.Step)
  526. return
  527. }
  528. // the timeout will now cause a state transition
  529. cs.mtx.Lock()
  530. defer cs.mtx.Unlock()
  531. switch ti.Step {
  532. case cstypes.RoundStepNewHeight:
  533. // NewRound event fired from enterNewRound.
  534. // XXX: should we fire timeout here (for timeout commit)?
  535. cs.enterNewRound(ti.Height, 0)
  536. case cstypes.RoundStepNewRound:
  537. cs.enterPropose(ti.Height, 0)
  538. case cstypes.RoundStepPropose:
  539. cs.eventBus.PublishEventTimeoutPropose(cs.RoundStateEvent())
  540. cs.enterPrevote(ti.Height, ti.Round)
  541. case cstypes.RoundStepPrevoteWait:
  542. cs.eventBus.PublishEventTimeoutWait(cs.RoundStateEvent())
  543. cs.enterPrecommit(ti.Height, ti.Round)
  544. case cstypes.RoundStepPrecommitWait:
  545. cs.eventBus.PublishEventTimeoutWait(cs.RoundStateEvent())
  546. cs.enterNewRound(ti.Height, ti.Round+1)
  547. default:
  548. panic(cmn.Fmt("Invalid timeout step: %v", ti.Step))
  549. }
  550. }
  551. func (cs *ConsensusState) handleTxsAvailable(height int64) {
  552. cs.mtx.Lock()
  553. defer cs.mtx.Unlock()
  554. // we only need to do this for round 0
  555. cs.enterPropose(height, 0)
  556. }
  557. //-----------------------------------------------------------------------------
  558. // State functions
  559. // Used internally by handleTimeout and handleMsg to make state transitions
  560. // Enter: `timeoutNewHeight` by startTime (commitTime+timeoutCommit),
  561. // or, if SkipTimeout==true, after receiving all precommits from (height,round-1)
  562. // Enter: `timeoutPrecommits` after any +2/3 precommits from (height,round-1)
  563. // Enter: +2/3 precommits for nil at (height,round-1)
  564. // Enter: +2/3 prevotes any or +2/3 precommits for block or any from (height, round)
  565. // NOTE: cs.StartTime was already set for height.
  566. func (cs *ConsensusState) enterNewRound(height int64, round int) {
  567. if cs.Height != height || round < cs.Round || (cs.Round == round && cs.Step != cstypes.RoundStepNewHeight) {
  568. cs.Logger.Debug(cmn.Fmt("enterNewRound(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  569. return
  570. }
  571. if now := time.Now(); cs.StartTime.After(now) {
  572. cs.Logger.Info("Need to set a buffer and log message here for sanity.", "startTime", cs.StartTime, "now", now)
  573. }
  574. cs.Logger.Info(cmn.Fmt("enterNewRound(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  575. // Increment validators if necessary
  576. validators := cs.Validators
  577. if cs.Round < round {
  578. validators = validators.Copy()
  579. validators.IncrementAccum(round - cs.Round)
  580. }
  581. // Setup new round
  582. // we don't fire newStep for this step,
  583. // but we fire an event, so update the round step first
  584. cs.updateRoundStep(round, cstypes.RoundStepNewRound)
  585. cs.Validators = validators
  586. if round == 0 {
  587. // We've already reset these upon new height,
  588. // and meanwhile we might have received a proposal
  589. // for round 0.
  590. } else {
  591. cs.Proposal = nil
  592. cs.ProposalBlock = nil
  593. cs.ProposalBlockParts = nil
  594. }
  595. cs.Votes.SetRound(round + 1) // also track next round (round+1) to allow round-skipping
  596. cs.eventBus.PublishEventNewRound(cs.RoundStateEvent())
  597. // Wait for txs to be available in the mempool
  598. // before we enterPropose in round 0. If the last block changed the app hash,
  599. // we may need an empty "proof" block, and enterPropose immediately.
  600. waitForTxs := cs.config.WaitForTxs() && round == 0 && !cs.needProofBlock(height)
  601. if waitForTxs {
  602. if cs.config.CreateEmptyBlocksInterval > 0 {
  603. cs.scheduleTimeout(cs.config.EmptyBlocksInterval(), height, round, cstypes.RoundStepNewRound)
  604. }
  605. go cs.proposalHeartbeat(height, round)
  606. } else {
  607. cs.enterPropose(height, round)
  608. }
  609. }
  610. // needProofBlock returns true on the first height (so the genesis app hash is signed right away)
  611. // and where the last block (height-1) caused the app hash to change
  612. func (cs *ConsensusState) needProofBlock(height int64) bool {
  613. if height == 1 {
  614. return true
  615. }
  616. lastBlockMeta := cs.blockStore.LoadBlockMeta(height - 1)
  617. return !bytes.Equal(cs.state.AppHash, lastBlockMeta.Header.AppHash)
  618. }
  619. func (cs *ConsensusState) proposalHeartbeat(height int64, round int) {
  620. counter := 0
  621. addr := cs.privValidator.GetAddress()
  622. valIndex, v := cs.Validators.GetByAddress(addr)
  623. if v == nil {
  624. // not a validator
  625. valIndex = -1
  626. }
  627. chainID := cs.state.ChainID
  628. for {
  629. rs := cs.GetRoundState()
  630. // if we've already moved on, no need to send more heartbeats
  631. if rs.Step > cstypes.RoundStepNewRound || rs.Round > round || rs.Height > height {
  632. return
  633. }
  634. heartbeat := &types.Heartbeat{
  635. Height: rs.Height,
  636. Round: rs.Round,
  637. Sequence: counter,
  638. ValidatorAddress: addr,
  639. ValidatorIndex: valIndex,
  640. }
  641. cs.privValidator.SignHeartbeat(chainID, heartbeat)
  642. cs.eventBus.PublishEventProposalHeartbeat(types.EventDataProposalHeartbeat{heartbeat})
  643. counter += 1
  644. time.Sleep(proposalHeartbeatIntervalSeconds * time.Second)
  645. }
  646. }
  647. // Enter (CreateEmptyBlocks): from enterNewRound(height,round)
  648. // Enter (CreateEmptyBlocks, CreateEmptyBlocksInterval > 0 ): after enterNewRound(height,round), after timeout of CreateEmptyBlocksInterval
  649. // Enter (!CreateEmptyBlocks) : after enterNewRound(height,round), once txs are in the mempool
  650. func (cs *ConsensusState) enterPropose(height int64, round int) {
  651. if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPropose <= cs.Step) {
  652. cs.Logger.Debug(cmn.Fmt("enterPropose(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  653. return
  654. }
  655. cs.Logger.Info(cmn.Fmt("enterPropose(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  656. defer func() {
  657. // Done enterPropose:
  658. cs.updateRoundStep(round, cstypes.RoundStepPropose)
  659. cs.newStep()
  660. // If we have the whole proposal + POL, then goto Prevote now.
  661. // else, we'll enterPrevote when the rest of the proposal is received (in AddProposalBlockPart),
  662. // or else after timeoutPropose
  663. if cs.isProposalComplete() {
  664. cs.enterPrevote(height, cs.Round)
  665. }
  666. }()
  667. // If we don't get the proposal and all block parts quick enough, enterPrevote
  668. cs.scheduleTimeout(cs.config.Propose(round), height, round, cstypes.RoundStepPropose)
  669. // Nothing more to do if we're not a validator
  670. if cs.privValidator == nil {
  671. cs.Logger.Debug("This node is not a validator")
  672. return
  673. }
  674. // if not a validator, we're done
  675. if !cs.Validators.HasAddress(cs.privValidator.GetAddress()) {
  676. cs.Logger.Debug("This node is not a validator")
  677. return
  678. }
  679. cs.Logger.Debug("This node is a validator")
  680. if cs.isProposer() {
  681. cs.Logger.Info("enterPropose: Our turn to propose", "proposer", cs.Validators.GetProposer().Address, "privValidator", cs.privValidator)
  682. cs.decideProposal(height, round)
  683. } else {
  684. cs.Logger.Info("enterPropose: Not our turn to propose", "proposer", cs.Validators.GetProposer().Address, "privValidator", cs.privValidator)
  685. }
  686. }
  687. func (cs *ConsensusState) isProposer() bool {
  688. return bytes.Equal(cs.Validators.GetProposer().Address, cs.privValidator.GetAddress())
  689. }
  690. func (cs *ConsensusState) defaultDecideProposal(height int64, round int) {
  691. var block *types.Block
  692. var blockParts *types.PartSet
  693. // Decide on block
  694. if cs.LockedBlock != nil {
  695. // If we're locked onto a block, just choose that.
  696. block, blockParts = cs.LockedBlock, cs.LockedBlockParts
  697. } else if cs.ValidBlock != nil {
  698. // If there is valid block, choose that.
  699. block, blockParts = cs.ValidBlock, cs.ValidBlockParts
  700. } else {
  701. // Create a new proposal block from state/txs from the mempool.
  702. block, blockParts = cs.createProposalBlock()
  703. if block == nil { // on error
  704. return
  705. }
  706. }
  707. // Make proposal
  708. polRound, polBlockID := cs.Votes.POLInfo()
  709. proposal := types.NewProposal(height, round, blockParts.Header(), polRound, polBlockID)
  710. if err := cs.privValidator.SignProposal(cs.state.ChainID, proposal); err == nil {
  711. // Set fields
  712. /* fields set by setProposal and addBlockPart
  713. cs.Proposal = proposal
  714. cs.ProposalBlock = block
  715. cs.ProposalBlockParts = blockParts
  716. */
  717. // send proposal and block parts on internal msg queue
  718. cs.sendInternalMessage(msgInfo{&ProposalMessage{proposal}, ""})
  719. for i := 0; i < blockParts.Total(); i++ {
  720. part := blockParts.GetPart(i)
  721. cs.sendInternalMessage(msgInfo{&BlockPartMessage{cs.Height, cs.Round, part}, ""})
  722. }
  723. cs.Logger.Info("Signed proposal", "height", height, "round", round, "proposal", proposal)
  724. cs.Logger.Debug(cmn.Fmt("Signed proposal block: %v", block))
  725. } else {
  726. if !cs.replayMode {
  727. cs.Logger.Error("enterPropose: Error signing proposal", "height", height, "round", round, "err", err)
  728. }
  729. }
  730. }
  731. // Returns true if the proposal block is complete &&
  732. // (if POLRound was proposed, we have +2/3 prevotes from there).
  733. func (cs *ConsensusState) isProposalComplete() bool {
  734. if cs.Proposal == nil || cs.ProposalBlock == nil {
  735. return false
  736. }
  737. // we have the proposal. if there's a POLRound,
  738. // make sure we have the prevotes from it too
  739. if cs.Proposal.POLRound < 0 {
  740. return true
  741. } else {
  742. // if this is false the proposer is lying or we haven't received the POL yet
  743. return cs.Votes.Prevotes(cs.Proposal.POLRound).HasTwoThirdsMajority()
  744. }
  745. }
  746. // Create the next block to propose and return it.
  747. // Returns nil block upon error.
  748. // NOTE: keep it side-effect free for clarity.
  749. func (cs *ConsensusState) createProposalBlock() (block *types.Block, blockParts *types.PartSet) {
  750. var commit *types.Commit
  751. if cs.Height == 1 {
  752. // We're creating a proposal for the first block.
  753. // The commit is empty, but not nil.
  754. commit = &types.Commit{}
  755. } else if cs.LastCommit.HasTwoThirdsMajority() {
  756. // Make the commit from LastCommit
  757. commit = cs.LastCommit.MakeCommit()
  758. } else {
  759. // This shouldn't happen.
  760. cs.Logger.Error("enterPropose: Cannot propose anything: No commit for the previous block.")
  761. return
  762. }
  763. // Mempool validated transactions
  764. txs := cs.mempool.Reap(cs.config.MaxBlockSizeTxs)
  765. block, parts := cs.state.MakeBlock(cs.Height, txs, commit)
  766. evidence := cs.evpool.PendingEvidence()
  767. block.AddEvidence(evidence)
  768. return block, parts
  769. }
  770. // Enter: `timeoutPropose` after entering Propose.
  771. // Enter: proposal block and POL is ready.
  772. // Enter: any +2/3 prevotes for future round.
  773. // Prevote for LockedBlock if we're locked, or ProposalBlock if valid.
  774. // Otherwise vote nil.
  775. func (cs *ConsensusState) enterPrevote(height int64, round int) {
  776. if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrevote <= cs.Step) {
  777. cs.Logger.Debug(cmn.Fmt("enterPrevote(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  778. return
  779. }
  780. defer func() {
  781. // Done enterPrevote:
  782. cs.updateRoundStep(round, cstypes.RoundStepPrevote)
  783. cs.newStep()
  784. }()
  785. // fire event for how we got here
  786. if cs.isProposalComplete() {
  787. cs.eventBus.PublishEventCompleteProposal(cs.RoundStateEvent())
  788. } else {
  789. // we received +2/3 prevotes for a future round
  790. // TODO: catchup event?
  791. }
  792. cs.Logger.Info(cmn.Fmt("enterPrevote(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  793. // Sign and broadcast vote as necessary
  794. cs.doPrevote(height, round)
  795. // Once `addVote` hits any +2/3 prevotes, we will go to PrevoteWait
  796. // (so we have more time to try and collect +2/3 prevotes for a single block)
  797. }
  798. func (cs *ConsensusState) defaultDoPrevote(height int64, round int) {
  799. logger := cs.Logger.With("height", height, "round", round)
  800. // If a block is locked, prevote that.
  801. if cs.LockedBlock != nil {
  802. logger.Info("enterPrevote: Block was locked")
  803. cs.signAddVote(types.VoteTypePrevote, cs.LockedBlock.Hash(), cs.LockedBlockParts.Header())
  804. return
  805. }
  806. // If ProposalBlock is nil, prevote nil.
  807. if cs.ProposalBlock == nil {
  808. logger.Info("enterPrevote: ProposalBlock is nil")
  809. cs.signAddVote(types.VoteTypePrevote, nil, types.PartSetHeader{})
  810. return
  811. }
  812. // Validate proposal block
  813. err := cs.blockExec.ValidateBlock(cs.state, cs.ProposalBlock)
  814. if err != nil {
  815. // ProposalBlock is invalid, prevote nil.
  816. logger.Error("enterPrevote: ProposalBlock is invalid", "err", err)
  817. cs.signAddVote(types.VoteTypePrevote, nil, types.PartSetHeader{})
  818. return
  819. }
  820. // Prevote cs.ProposalBlock
  821. // NOTE: the proposal signature is validated when it is received,
  822. // and the proposal block parts are validated as they are received (against the merkle hash in the proposal)
  823. logger.Info("enterPrevote: ProposalBlock is valid")
  824. cs.signAddVote(types.VoteTypePrevote, cs.ProposalBlock.Hash(), cs.ProposalBlockParts.Header())
  825. }
  826. // Enter: any +2/3 prevotes at next round.
  827. func (cs *ConsensusState) enterPrevoteWait(height int64, round int) {
  828. if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrevoteWait <= cs.Step) {
  829. cs.Logger.Debug(cmn.Fmt("enterPrevoteWait(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  830. return
  831. }
  832. if !cs.Votes.Prevotes(round).HasTwoThirdsAny() {
  833. cmn.PanicSanity(cmn.Fmt("enterPrevoteWait(%v/%v), but Prevotes does not have any +2/3 votes", height, round))
  834. }
  835. cs.Logger.Info(cmn.Fmt("enterPrevoteWait(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  836. defer func() {
  837. // Done enterPrevoteWait:
  838. cs.updateRoundStep(round, cstypes.RoundStepPrevoteWait)
  839. cs.newStep()
  840. }()
  841. // Wait for some more prevotes; enterPrecommit
  842. cs.scheduleTimeout(cs.config.Prevote(round), height, round, cstypes.RoundStepPrevoteWait)
  843. }
  844. // Enter: `timeoutPrevote` after any +2/3 prevotes.
  845. // Enter: +2/3 precomits for block or nil.
  846. // Enter: any +2/3 precommits for next round.
  847. // Lock & precommit the ProposalBlock if we have enough prevotes for it (a POL in this round)
  848. // else, unlock an existing lock and precommit nil if +2/3 of prevotes were nil,
  849. // else, precommit nil otherwise.
  850. func (cs *ConsensusState) enterPrecommit(height int64, round int) {
  851. if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrecommit <= cs.Step) {
  852. cs.Logger.Debug(cmn.Fmt("enterPrecommit(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  853. return
  854. }
  855. cs.Logger.Info(cmn.Fmt("enterPrecommit(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  856. defer func() {
  857. // Done enterPrecommit:
  858. cs.updateRoundStep(round, cstypes.RoundStepPrecommit)
  859. cs.newStep()
  860. }()
  861. blockID, ok := cs.Votes.Prevotes(round).TwoThirdsMajority()
  862. // If we don't have a polka, we must precommit nil
  863. if !ok {
  864. if cs.LockedBlock != nil {
  865. cs.Logger.Info("enterPrecommit: No +2/3 prevotes during enterPrecommit while we're locked. Precommitting nil")
  866. } else {
  867. cs.Logger.Info("enterPrecommit: No +2/3 prevotes during enterPrecommit. Precommitting nil.")
  868. }
  869. cs.signAddVote(types.VoteTypePrecommit, nil, types.PartSetHeader{})
  870. return
  871. }
  872. // At this point +2/3 prevoted for a particular block or nil
  873. cs.eventBus.PublishEventPolka(cs.RoundStateEvent())
  874. // the latest POLRound should be this round
  875. polRound, _ := cs.Votes.POLInfo()
  876. if polRound < round {
  877. cmn.PanicSanity(cmn.Fmt("This POLRound should be %v but got %", round, polRound))
  878. }
  879. // +2/3 prevoted nil. Unlock and precommit nil.
  880. if len(blockID.Hash) == 0 {
  881. if cs.LockedBlock == nil {
  882. cs.Logger.Info("enterPrecommit: +2/3 prevoted for nil.")
  883. } else {
  884. cs.Logger.Info("enterPrecommit: +2/3 prevoted for nil. Unlocking")
  885. cs.LockedRound = 0
  886. cs.LockedBlock = nil
  887. cs.LockedBlockParts = nil
  888. cs.eventBus.PublishEventUnlock(cs.RoundStateEvent())
  889. }
  890. cs.signAddVote(types.VoteTypePrecommit, nil, types.PartSetHeader{})
  891. return
  892. }
  893. // At this point, +2/3 prevoted for a particular block.
  894. // If we're already locked on that block, precommit it, and update the LockedRound
  895. if cs.LockedBlock.HashesTo(blockID.Hash) {
  896. cs.Logger.Info("enterPrecommit: +2/3 prevoted locked block. Relocking")
  897. cs.LockedRound = round
  898. cs.eventBus.PublishEventRelock(cs.RoundStateEvent())
  899. cs.signAddVote(types.VoteTypePrecommit, blockID.Hash, blockID.PartsHeader)
  900. return
  901. }
  902. // If +2/3 prevoted for proposal block, stage and precommit it
  903. if cs.ProposalBlock.HashesTo(blockID.Hash) {
  904. cs.Logger.Info("enterPrecommit: +2/3 prevoted proposal block. Locking", "hash", blockID.Hash)
  905. // Validate the block.
  906. if err := cs.blockExec.ValidateBlock(cs.state, cs.ProposalBlock); err != nil {
  907. cmn.PanicConsensus(cmn.Fmt("enterPrecommit: +2/3 prevoted for an invalid block: %v", err))
  908. }
  909. cs.LockedRound = round
  910. cs.LockedBlock = cs.ProposalBlock
  911. cs.LockedBlockParts = cs.ProposalBlockParts
  912. cs.eventBus.PublishEventLock(cs.RoundStateEvent())
  913. cs.signAddVote(types.VoteTypePrecommit, blockID.Hash, blockID.PartsHeader)
  914. return
  915. }
  916. // There was a polka in this round for a block we don't have.
  917. // Fetch that block, unlock, and precommit nil.
  918. // The +2/3 prevotes for this round is the POL for our unlock.
  919. // TODO: In the future save the POL prevotes for justification.
  920. cs.LockedRound = 0
  921. cs.LockedBlock = nil
  922. cs.LockedBlockParts = nil
  923. if !cs.ProposalBlockParts.HasHeader(blockID.PartsHeader) {
  924. cs.ProposalBlock = nil
  925. cs.ProposalBlockParts = types.NewPartSetFromHeader(blockID.PartsHeader)
  926. }
  927. cs.eventBus.PublishEventUnlock(cs.RoundStateEvent())
  928. cs.signAddVote(types.VoteTypePrecommit, nil, types.PartSetHeader{})
  929. }
  930. // Enter: any +2/3 precommits for next round.
  931. func (cs *ConsensusState) enterPrecommitWait(height int64, round int) {
  932. if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrecommitWait <= cs.Step) {
  933. cs.Logger.Debug(cmn.Fmt("enterPrecommitWait(%v/%v): Invalid args. Current step: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  934. return
  935. }
  936. if !cs.Votes.Precommits(round).HasTwoThirdsAny() {
  937. cmn.PanicSanity(cmn.Fmt("enterPrecommitWait(%v/%v), but Precommits does not have any +2/3 votes", height, round))
  938. }
  939. cs.Logger.Info(cmn.Fmt("enterPrecommitWait(%v/%v). Current: %v/%v/%v", height, round, cs.Height, cs.Round, cs.Step))
  940. defer func() {
  941. // Done enterPrecommitWait:
  942. cs.updateRoundStep(round, cstypes.RoundStepPrecommitWait)
  943. cs.newStep()
  944. }()
  945. // Wait for some more precommits; enterNewRound
  946. cs.scheduleTimeout(cs.config.Precommit(round), height, round, cstypes.RoundStepPrecommitWait)
  947. }
  948. // Enter: +2/3 precommits for block
  949. func (cs *ConsensusState) enterCommit(height int64, commitRound int) {
  950. if cs.Height != height || cstypes.RoundStepCommit <= cs.Step {
  951. cs.Logger.Debug(cmn.Fmt("enterCommit(%v/%v): Invalid args. Current step: %v/%v/%v", height, commitRound, cs.Height, cs.Round, cs.Step))
  952. return
  953. }
  954. cs.Logger.Info(cmn.Fmt("enterCommit(%v/%v). Current: %v/%v/%v", height, commitRound, cs.Height, cs.Round, cs.Step))
  955. defer func() {
  956. // Done enterCommit:
  957. // keep cs.Round the same, commitRound points to the right Precommits set.
  958. cs.updateRoundStep(cs.Round, cstypes.RoundStepCommit)
  959. cs.CommitRound = commitRound
  960. cs.CommitTime = time.Now()
  961. cs.newStep()
  962. // Maybe finalize immediately.
  963. cs.tryFinalizeCommit(height)
  964. }()
  965. blockID, ok := cs.Votes.Precommits(commitRound).TwoThirdsMajority()
  966. if !ok {
  967. cmn.PanicSanity("RunActionCommit() expects +2/3 precommits")
  968. }
  969. // The Locked* fields no longer matter.
  970. // Move them over to ProposalBlock if they match the commit hash,
  971. // otherwise they'll be cleared in updateToState.
  972. if cs.LockedBlock.HashesTo(blockID.Hash) {
  973. cs.ProposalBlock = cs.LockedBlock
  974. cs.ProposalBlockParts = cs.LockedBlockParts
  975. }
  976. // If we don't have the block being committed, set up to get it.
  977. if !cs.ProposalBlock.HashesTo(blockID.Hash) {
  978. if !cs.ProposalBlockParts.HasHeader(blockID.PartsHeader) {
  979. // We're getting the wrong block.
  980. // Set up ProposalBlockParts and keep waiting.
  981. cs.ProposalBlock = nil
  982. cs.ProposalBlockParts = types.NewPartSetFromHeader(blockID.PartsHeader)
  983. } else {
  984. // We just need to keep waiting.
  985. }
  986. }
  987. }
  988. // If we have the block AND +2/3 commits for it, finalize.
  989. func (cs *ConsensusState) tryFinalizeCommit(height int64) {
  990. if cs.Height != height {
  991. cmn.PanicSanity(cmn.Fmt("tryFinalizeCommit() cs.Height: %v vs height: %v", cs.Height, height))
  992. }
  993. blockID, ok := cs.Votes.Precommits(cs.CommitRound).TwoThirdsMajority()
  994. if !ok || len(blockID.Hash) == 0 {
  995. cs.Logger.Error("Attempt to finalize failed. There was no +2/3 majority, or +2/3 was for <nil>.", "height", height)
  996. return
  997. }
  998. if !cs.ProposalBlock.HashesTo(blockID.Hash) {
  999. // TODO: this happens every time if we're not a validator (ugly logs)
  1000. // TODO: ^^ wait, why does it matter that we're a validator?
  1001. cs.Logger.Info("Attempt to finalize failed. We don't have the commit block.", "height", height, "proposal-block", cs.ProposalBlock.Hash(), "commit-block", blockID.Hash)
  1002. return
  1003. }
  1004. // go
  1005. cs.finalizeCommit(height)
  1006. }
  1007. // Increment height and goto cstypes.RoundStepNewHeight
  1008. func (cs *ConsensusState) finalizeCommit(height int64) {
  1009. if cs.Height != height || cs.Step != cstypes.RoundStepCommit {
  1010. cs.Logger.Debug(cmn.Fmt("finalizeCommit(%v): Invalid args. Current step: %v/%v/%v", height, cs.Height, cs.Round, cs.Step))
  1011. return
  1012. }
  1013. blockID, ok := cs.Votes.Precommits(cs.CommitRound).TwoThirdsMajority()
  1014. block, blockParts := cs.ProposalBlock, cs.ProposalBlockParts
  1015. if !ok {
  1016. cmn.PanicSanity(cmn.Fmt("Cannot finalizeCommit, commit does not have two thirds majority"))
  1017. }
  1018. if !blockParts.HasHeader(blockID.PartsHeader) {
  1019. cmn.PanicSanity(cmn.Fmt("Expected ProposalBlockParts header to be commit header"))
  1020. }
  1021. if !block.HashesTo(blockID.Hash) {
  1022. cmn.PanicSanity(cmn.Fmt("Cannot finalizeCommit, ProposalBlock does not hash to commit hash"))
  1023. }
  1024. if err := cs.blockExec.ValidateBlock(cs.state, block); err != nil {
  1025. cmn.PanicConsensus(cmn.Fmt("+2/3 committed an invalid block: %v", err))
  1026. }
  1027. cs.Logger.Info(cmn.Fmt("Finalizing commit of block with %d txs", block.NumTxs),
  1028. "height", block.Height, "hash", block.Hash(), "root", block.AppHash)
  1029. cs.Logger.Info(cmn.Fmt("%v", block))
  1030. fail.Fail() // XXX
  1031. // Save to blockStore.
  1032. if cs.blockStore.Height() < block.Height {
  1033. // NOTE: the seenCommit is local justification to commit this block,
  1034. // but may differ from the LastCommit included in the next block
  1035. precommits := cs.Votes.Precommits(cs.CommitRound)
  1036. seenCommit := precommits.MakeCommit()
  1037. cs.blockStore.SaveBlock(block, blockParts, seenCommit)
  1038. } else {
  1039. // Happens during replay if we already saved the block but didn't commit
  1040. cs.Logger.Info("Calling finalizeCommit on already stored block", "height", block.Height)
  1041. }
  1042. fail.Fail() // XXX
  1043. // Finish writing to the WAL for this height.
  1044. // NOTE: If we fail before writing this, we'll never write it,
  1045. // and just recover by running ApplyBlock in the Handshake.
  1046. // If we moved it before persisting the block, we'd have to allow
  1047. // WAL replay for blocks with an #ENDHEIGHT
  1048. // As is, ConsensusState should not be started again
  1049. // until we successfully call ApplyBlock (ie. here or in Handshake after restart)
  1050. cs.wal.Save(EndHeightMessage{height})
  1051. fail.Fail() // XXX
  1052. // Create a copy of the state for staging
  1053. // and an event cache for txs
  1054. stateCopy := cs.state.Copy()
  1055. // Execute and commit the block, update and save the state, and update the mempool.
  1056. // NOTE: the block.AppHash wont reflect these txs until the next block
  1057. var err error
  1058. stateCopy, err = cs.blockExec.ApplyBlock(stateCopy, types.BlockID{block.Hash(), blockParts.Header()}, block)
  1059. if err != nil {
  1060. cs.Logger.Error("Error on ApplyBlock. Did the application crash? Please restart tendermint", "err", err)
  1061. err := cmn.Kill()
  1062. if err != nil {
  1063. cs.Logger.Error("Failed to kill this process - please do so manually", "err", err)
  1064. }
  1065. return
  1066. }
  1067. fail.Fail() // XXX
  1068. // NewHeightStep!
  1069. cs.updateToState(stateCopy)
  1070. fail.Fail() // XXX
  1071. // cs.StartTime is already set.
  1072. // Schedule Round0 to start soon.
  1073. cs.scheduleRound0(&cs.RoundState)
  1074. // By here,
  1075. // * cs.Height has been increment to height+1
  1076. // * cs.Step is now cstypes.RoundStepNewHeight
  1077. // * cs.StartTime is set to when we will start round0.
  1078. }
  1079. //-----------------------------------------------------------------------------
  1080. func (cs *ConsensusState) defaultSetProposal(proposal *types.Proposal) error {
  1081. // Already have one
  1082. // TODO: possibly catch double proposals
  1083. if cs.Proposal != nil {
  1084. return nil
  1085. }
  1086. // Does not apply
  1087. if proposal.Height != cs.Height || proposal.Round != cs.Round {
  1088. return nil
  1089. }
  1090. // We don't care about the proposal if we're already in cstypes.RoundStepCommit.
  1091. if cstypes.RoundStepCommit <= cs.Step {
  1092. return nil
  1093. }
  1094. // Verify POLRound, which must be -1 or between 0 and proposal.Round exclusive.
  1095. if proposal.POLRound != -1 &&
  1096. (proposal.POLRound < 0 || proposal.Round <= proposal.POLRound) {
  1097. return ErrInvalidProposalPOLRound
  1098. }
  1099. // Verify signature
  1100. if !cs.Validators.GetProposer().PubKey.VerifyBytes(proposal.SignBytes(cs.state.ChainID), proposal.Signature) {
  1101. return ErrInvalidProposalSignature
  1102. }
  1103. cs.Proposal = proposal
  1104. cs.ProposalBlockParts = types.NewPartSetFromHeader(proposal.BlockPartsHeader)
  1105. return nil
  1106. }
  1107. // NOTE: block is not necessarily valid.
  1108. // Asynchronously triggers either enterPrevote (before we timeout of propose) or tryFinalizeCommit, once we have the full block.
  1109. func (cs *ConsensusState) addProposalBlockPart(height int64, part *types.Part, verify bool) (added bool, err error) {
  1110. // Blocks might be reused, so round mismatch is OK
  1111. if cs.Height != height {
  1112. return false, nil
  1113. }
  1114. // We're not expecting a block part.
  1115. if cs.ProposalBlockParts == nil {
  1116. return false, nil // TODO: bad peer? Return error?
  1117. }
  1118. added, err = cs.ProposalBlockParts.AddPart(part, verify)
  1119. if err != nil {
  1120. return added, err
  1121. }
  1122. if added && cs.ProposalBlockParts.IsComplete() {
  1123. // Added and completed!
  1124. var n int
  1125. var err error
  1126. cs.ProposalBlock = wire.ReadBinary(&types.Block{}, cs.ProposalBlockParts.GetReader(),
  1127. cs.state.ConsensusParams.BlockSize.MaxBytes, &n, &err).(*types.Block)
  1128. // NOTE: it's possible to receive complete proposal blocks for future rounds without having the proposal
  1129. cs.Logger.Info("Received complete proposal block", "height", cs.ProposalBlock.Height, "hash", cs.ProposalBlock.Hash())
  1130. if cs.Step == cstypes.RoundStepPropose && cs.isProposalComplete() {
  1131. // Move onto the next step
  1132. cs.enterPrevote(height, cs.Round)
  1133. } else if cs.Step == cstypes.RoundStepCommit {
  1134. // If we're waiting on the proposal block...
  1135. cs.tryFinalizeCommit(height)
  1136. }
  1137. return true, err
  1138. }
  1139. return added, nil
  1140. }
  1141. // Attempt to add the vote. if its a duplicate signature, dupeout the validator
  1142. func (cs *ConsensusState) tryAddVote(vote *types.Vote, peerID p2p.ID) error {
  1143. _, err := cs.addVote(vote, peerID)
  1144. if err != nil {
  1145. // If the vote height is off, we'll just ignore it,
  1146. // But if it's a conflicting sig, add it to the cs.evpool.
  1147. // If it's otherwise invalid, punish peer.
  1148. if err == ErrVoteHeightMismatch {
  1149. return err
  1150. } else if voteErr, ok := err.(*types.ErrVoteConflictingVotes); ok {
  1151. if bytes.Equal(vote.ValidatorAddress, cs.privValidator.GetAddress()) {
  1152. cs.Logger.Error("Found conflicting vote from ourselves. Did you unsafe_reset a validator?", "height", vote.Height, "round", vote.Round, "type", vote.Type)
  1153. return err
  1154. }
  1155. cs.evpool.AddEvidence(voteErr.DuplicateVoteEvidence)
  1156. return err
  1157. } else {
  1158. // Probably an invalid signature / Bad peer.
  1159. // Seems this can also err sometimes with "Unexpected step" - perhaps not from a bad peer ?
  1160. cs.Logger.Error("Error attempting to add vote", "err", err)
  1161. return ErrAddingVote
  1162. }
  1163. }
  1164. return nil
  1165. }
  1166. //-----------------------------------------------------------------------------
  1167. func (cs *ConsensusState) addVote(vote *types.Vote, peerID p2p.ID) (added bool, err error) {
  1168. cs.Logger.Debug("addVote", "voteHeight", vote.Height, "voteType", vote.Type, "valIndex", vote.ValidatorIndex, "csHeight", cs.Height)
  1169. // A precommit for the previous height?
  1170. // These come in while we wait timeoutCommit
  1171. if vote.Height+1 == cs.Height {
  1172. if !(cs.Step == cstypes.RoundStepNewHeight && vote.Type == types.VoteTypePrecommit) {
  1173. // TODO: give the reason ..
  1174. // fmt.Errorf("tryAddVote: Wrong height, not a LastCommit straggler commit.")
  1175. return added, ErrVoteHeightMismatch
  1176. }
  1177. added, err = cs.LastCommit.AddVote(vote)
  1178. if !added {
  1179. return added, err
  1180. }
  1181. cs.Logger.Info(cmn.Fmt("Added to lastPrecommits: %v", cs.LastCommit.StringShort()))
  1182. cs.eventBus.PublishEventVote(types.EventDataVote{vote})
  1183. // if we can skip timeoutCommit and have all the votes now,
  1184. if cs.config.SkipTimeoutCommit && cs.LastCommit.HasAll() {
  1185. // go straight to new round (skip timeout commit)
  1186. // cs.scheduleTimeout(time.Duration(0), cs.Height, 0, cstypes.RoundStepNewHeight)
  1187. cs.enterNewRound(cs.Height, 0)
  1188. }
  1189. return
  1190. }
  1191. // Height mismatch is ignored.
  1192. // Not necessarily a bad peer, but not favourable behaviour.
  1193. if vote.Height != cs.Height {
  1194. err = ErrVoteHeightMismatch
  1195. cs.Logger.Info("Vote ignored and not added", "voteHeight", vote.Height, "csHeight", cs.Height, "err", err)
  1196. return
  1197. }
  1198. height := cs.Height
  1199. added, err = cs.Votes.AddVote(vote, peerID)
  1200. if !added {
  1201. // Either duplicate, or error upon cs.Votes.AddByIndex()
  1202. return
  1203. }
  1204. cs.eventBus.PublishEventVote(types.EventDataVote{vote})
  1205. switch vote.Type {
  1206. case types.VoteTypePrevote:
  1207. prevotes := cs.Votes.Prevotes(vote.Round)
  1208. cs.Logger.Info("Added to prevote", "vote", vote, "prevotes", prevotes.StringShort())
  1209. blockID, ok := prevotes.TwoThirdsMajority()
  1210. // First, unlock if prevotes is a valid POL.
  1211. // >> lockRound < POLRound <= unlockOrChangeLockRound (see spec)
  1212. // NOTE: If (lockRound < POLRound) but !(POLRound <= unlockOrChangeLockRound),
  1213. // we'll still enterNewRound(H,vote.R) and enterPrecommit(H,vote.R) to process it
  1214. // there.
  1215. if (cs.LockedBlock != nil) && (cs.LockedRound < vote.Round) && (vote.Round <= cs.Round) {
  1216. if ok && !cs.LockedBlock.HashesTo(blockID.Hash) {
  1217. cs.Logger.Info("Unlocking because of POL.", "lockedRound", cs.LockedRound, "POLRound", vote.Round)
  1218. cs.LockedRound = 0
  1219. cs.LockedBlock = nil
  1220. cs.LockedBlockParts = nil
  1221. cs.eventBus.PublishEventUnlock(cs.RoundStateEvent())
  1222. }
  1223. }
  1224. // Update ValidBlock
  1225. if ok && !blockID.IsZero() && !cs.ValidBlock.HashesTo(blockID.Hash) && vote.Round > cs.ValidRound {
  1226. // update valid value
  1227. if cs.ProposalBlock.HashesTo(blockID.Hash) {
  1228. cs.ValidRound = vote.Round
  1229. cs.ValidBlock = cs.ProposalBlock
  1230. cs.ValidBlockParts = cs.ProposalBlockParts
  1231. }
  1232. //TODO: We might want to update ValidBlock also in case we don't have that block yet,
  1233. // and obtain the required block using gossiping
  1234. }
  1235. if cs.Round <= vote.Round && prevotes.HasTwoThirdsAny() {
  1236. // Round-skip over to PrevoteWait or goto Precommit.
  1237. cs.enterNewRound(height, vote.Round) // if the vote is ahead of us
  1238. if prevotes.HasTwoThirdsMajority() {
  1239. cs.enterPrecommit(height, vote.Round)
  1240. } else {
  1241. cs.enterPrevote(height, vote.Round) // if the vote is ahead of us
  1242. cs.enterPrevoteWait(height, vote.Round)
  1243. }
  1244. } else if cs.Proposal != nil && 0 <= cs.Proposal.POLRound && cs.Proposal.POLRound == vote.Round {
  1245. // If the proposal is now complete, enter prevote of cs.Round.
  1246. if cs.isProposalComplete() {
  1247. cs.enterPrevote(height, cs.Round)
  1248. }
  1249. }
  1250. case types.VoteTypePrecommit:
  1251. precommits := cs.Votes.Precommits(vote.Round)
  1252. cs.Logger.Info("Added to precommit", "vote", vote, "precommits", precommits.StringShort())
  1253. blockID, ok := precommits.TwoThirdsMajority()
  1254. if ok {
  1255. if len(blockID.Hash) == 0 {
  1256. cs.enterNewRound(height, vote.Round+1)
  1257. } else {
  1258. cs.enterNewRound(height, vote.Round)
  1259. cs.enterPrecommit(height, vote.Round)
  1260. cs.enterCommit(height, vote.Round)
  1261. if cs.config.SkipTimeoutCommit && precommits.HasAll() {
  1262. // if we have all the votes now,
  1263. // go straight to new round (skip timeout commit)
  1264. // cs.scheduleTimeout(time.Duration(0), cs.Height, 0, cstypes.RoundStepNewHeight)
  1265. cs.enterNewRound(cs.Height, 0)
  1266. }
  1267. }
  1268. } else if cs.Round <= vote.Round && precommits.HasTwoThirdsAny() {
  1269. cs.enterNewRound(height, vote.Round)
  1270. cs.enterPrecommit(height, vote.Round)
  1271. cs.enterPrecommitWait(height, vote.Round)
  1272. }
  1273. default:
  1274. panic(cmn.Fmt("Unexpected vote type %X", vote.Type)) // go-wire should prevent this.
  1275. }
  1276. return
  1277. }
  1278. func (cs *ConsensusState) signVote(type_ byte, hash []byte, header types.PartSetHeader) (*types.Vote, error) {
  1279. addr := cs.privValidator.GetAddress()
  1280. valIndex, _ := cs.Validators.GetByAddress(addr)
  1281. vote := &types.Vote{
  1282. ValidatorAddress: addr,
  1283. ValidatorIndex: valIndex,
  1284. Height: cs.Height,
  1285. Round: cs.Round,
  1286. Timestamp: time.Now().UTC(),
  1287. Type: type_,
  1288. BlockID: types.BlockID{hash, header},
  1289. }
  1290. err := cs.privValidator.SignVote(cs.state.ChainID, vote)
  1291. return vote, err
  1292. }
  1293. // sign the vote and publish on internalMsgQueue
  1294. func (cs *ConsensusState) signAddVote(type_ byte, hash []byte, header types.PartSetHeader) *types.Vote {
  1295. // if we don't have a key or we're not in the validator set, do nothing
  1296. if cs.privValidator == nil || !cs.Validators.HasAddress(cs.privValidator.GetAddress()) {
  1297. return nil
  1298. }
  1299. vote, err := cs.signVote(type_, hash, header)
  1300. if err == nil {
  1301. cs.sendInternalMessage(msgInfo{&VoteMessage{vote}, ""})
  1302. cs.Logger.Info("Signed and pushed vote", "height", cs.Height, "round", cs.Round, "vote", vote, "err", err)
  1303. return vote
  1304. } else {
  1305. //if !cs.replayMode {
  1306. cs.Logger.Error("Error signing vote", "height", cs.Height, "round", cs.Round, "vote", vote, "err", err)
  1307. //}
  1308. return nil
  1309. }
  1310. }
  1311. //---------------------------------------------------------
  1312. func CompareHRS(h1 int64, r1 int, s1 cstypes.RoundStepType, h2 int64, r2 int, s2 cstypes.RoundStepType) int {
  1313. if h1 < h2 {
  1314. return -1
  1315. } else if h1 > h2 {
  1316. return 1
  1317. }
  1318. if r1 < r2 {
  1319. return -1
  1320. } else if r1 > r2 {
  1321. return 1
  1322. }
  1323. if s1 < s2 {
  1324. return -1
  1325. } else if s1 > s2 {
  1326. return 1
  1327. }
  1328. return 0
  1329. }